Remove no-break space characters with regular spaces (#11232)

There are quite a few other occurrences all over the translation files,
some of which feel intentionally placed.
This commit is contained in:
Nicola Krumschmidt
2022-01-24 15:43:57 +01:00
committed by GitHub
parent f685c66185
commit aa5da81fc0
6 changed files with 8 additions and 8 deletions

View File

@@ -27,7 +27,7 @@ jobs:
steps:
- name: Check for skippable jobs
id: skip_check
# Switch back to fkirc/skip-duplicate-actions@master once https://github.com/fkirc/skip-duplicate-actions/pull/159 has been merged
# Switch back to fkirc/skip-duplicate-actions@master once https://github.com/fkirc/skip-duplicate-actions/pull/159 has been merged
uses: paescuj/skip-duplicate-actions@path-filters
# Don't skip any jobs if the pre-check should fail for any reason
# (setting this on step-level makes sure the pre-check will still be marked as 'passed',

View File

@@ -33,7 +33,7 @@ Learn more at...
## Installing
Directus requires NodeJS 10+. Create a new project with our simple CLI tool:
Directus requires NodeJS 10+. Create a new project with our simple CLI tool:
```
npm init directus-project my-project

View File

@@ -31,7 +31,7 @@ const changes: [string, string, Record<string, any>?][] = [
['toggle', 'boolean'],
['translations', 'translations'],
['tree-view', 'list-o2m-tree-view'],
['user', 'select-dropdown-m2o', { template: '{{avatar.$thumbnail}} {{first_name}} {{last_name}}' }],
['user', 'select-dropdown-m2o', { template: '{{avatar.$thumbnail}} {{first_name}} {{last_name}}' }],
['wysiwyg', 'input-rich-text-html'],
// System:

View File

@@ -30,7 +30,7 @@ const systemDefaults: Record<string, Partial<Preset>> = {
cards: {
icon: 'insert_drive_file',
title: '{{ title }}',
subtitle: '{{ type }} • {{ filesize }}',
subtitle: '{{ type }} • {{ filesize }}',
size: 4,
imageFit: 'crop',
},

View File

@@ -25,7 +25,7 @@ ARG REPOSITORY=directus/directus
LABEL directus.version="${VERSION}"
# Default environment variables
# (see https://docs.directus.io/reference/environment-variables/)
# (see https://docs.directus.io/reference/environment-variables/)
ENV \
DB_CLIENT="sqlite3" \
DB_FILENAME="/directus/database/database.sqlite" \

View File

@@ -49,11 +49,11 @@ The register function receives the two parameters `router` and `context`. `route
`context` is an object with the following properties:
- `services` — All API internal services.
- `exceptions` API exception objects that can be used to throw "proper" errors.
- `exceptions` API exception objects that can be used to throw "proper" errors.
- `database` — Knex instance that is connected to the current database.
- `getSchema` — Async function that reads the full available schema for use in services
- `env` Parsed environment variables.
- `logger` [Pino](https://github.com/pinojs/pino) instance.
- `env` Parsed environment variables.
- `logger` [Pino](https://github.com/pinojs/pino) instance.
- `emitter` — [Event emitter](https://github.com/directus/directus/blob/main/api/src/emitter.ts) instance that can be
used to trigger custom events for other extensions.