refactor(editor): Apply Prettier (no-changelog) (#4920)

*  Adjust `format` script

* 🔥 Remove exemption for `editor-ui`

* 🎨 Prettify

* 👕 Fix lint
This commit is contained in:
Iván Ovejero
2022-12-14 10:04:10 +01:00
committed by GitHub
parent bcde07e032
commit 5ca2148c7e
284 changed files with 19247 additions and 15540 deletions

View File

@@ -8,7 +8,7 @@ Certain base text strings accept [singular and plural versions](https://kazupon.
```json
{
"tagsView.inUse": "{count} workflow | {count} workflows",
"tagsView.inUse": "{count} workflow | {count} workflows"
}
```
@@ -43,7 +43,7 @@ As a convenience, the base text file may contain the special key `_reusableBaseT
"duplicateWorkflowDialog.save": "@:_reusableBaseText.save",
"saveButton.save": "@:_reusableBaseText.save",
"saveButton.saving": "🇩🇪 Saving",
"saveButton.saved": "🇩🇪 Saved",
"saveButton.saved": "🇩🇪 Saved"
}
```
@@ -93,7 +93,7 @@ Currently only the keys `oauth.clientId` and `oauth.clientSecret` are supported
```json
{
"_reusableDynamicText.oauth2.clientId": "🇩🇪 Client ID",
"_reusableDynamicText.oauth2.clientSecret": "🇩🇪 Client Secret",
"_reusableDynamicText.oauth2.clientSecret": "🇩🇪 Client Secret"
}
```
@@ -105,7 +105,7 @@ Webhook node:
```json
{
"nodeView.eventTriggerDescription": "🇩🇪 Waiting for you to call the Test URL",
"nodeView.eventTriggerDescription": "🇩🇪 Waiting for you to call the Test URL"
}
```

View File

@@ -18,6 +18,7 @@ Currently, n8n does _not_ allow for internalization of:
- options that rely on `loadOptionsMethod`.
Pending functionality:
- Search in nodes panel by translated node name
- UI responsiveness to differently sized strings
- Locale-aware number formatting
@@ -101,6 +102,7 @@ credentials
├── githubApi.json
└── githubOAuth2Api.json
```
Every credential must have its own credential translation file.
The name of the credential translation file must be sourced from the credential's `description.name` property:
@@ -186,7 +188,7 @@ The object for each node credential parameter allows for the keys `displayName`,
"server.displayName": "🇩🇪 Github Server",
"server.description": "🇩🇪 The server to connect to. Only has to be set if Github Enterprise is used.",
"user.placeholder": "🇩🇪 Hans",
"accessToken.placeholder": "🇩🇪 123",
"accessToken.placeholder": "🇩🇪 123"
}
```
@@ -218,7 +220,7 @@ export class Github implements INodeType {
```json
{
"header.displayName": "🇩🇪 GitHub",
"header.description": "🇩🇪 Consume GitHub API",
"header.description": "🇩🇪 Consume GitHub API"
}
```
@@ -255,7 +257,7 @@ export class Github implements INodeType {
```json
{
"nodeView.resource.displayName": "🇩🇪 Resource",
"nodeView.resource.displayName": "🇩🇪 Resource"
}
```
@@ -280,7 +282,7 @@ Allowed keys: `displayName`, `description`, `placeholder`
{
"nodeView.owner.displayName": "🇩🇪 Repository Owner",
"nodeView.owner.placeholder": "🇩🇪 n8n-io",
"nodeView.owner.description": "🇩🇪 Owner of the repository",
"nodeView.owner.description": "🇩🇪 Owner of the repository"
}
```
@@ -319,7 +321,7 @@ Allowed subkeys: `options.{optionName}.displayName` and `options.{optionName}.de
"nodeView.resource.displayName": "🇩🇪 Resource",
"nodeView.resource.description": "🇩🇪 Resource to operate on",
"nodeView.resource.options.file.name": "🇩🇪 File",
"nodeView.resource.options.issue.name": "🇩🇪 Issue",
"nodeView.resource.options.issue.name": "🇩🇪 Issue"
}
```
@@ -333,7 +335,7 @@ For nodes whose credentials may be used in the HTTP Request node, an additional
{
"nodeView.resource.options.file.name": "🇩🇪 File",
"nodeView.resource.options.issue.name": "🇩🇪 Issue",
"nodeView.resource.options.__CUSTOM_API_CALL__.name": "🇩🇪 Custom API Call",
"nodeView.resource.options.__CUSTOM_API_CALL__.name": "🇩🇪 Custom API Call"
}
```
@@ -444,7 +446,7 @@ Example of `fixedCollection` parameter:
"nodeView.additionalParameters.options.author.values.name.placeholder": "🇩🇪 Jan",
"nodeView.additionalParameters.options.author.values.email.displayName": "🇩🇪 Email",
"nodeView.additionalParameters.options.author.values.email.description": "🇩🇪 Email of the author of the commit",
"nodeView.additionalParameters.options.author.values.email.placeholder": "🇩🇪 jan@n8n.io",
"nodeView.additionalParameters.options.author.values.email.placeholder": "🇩🇪 jan@n8n.io"
}
```