Remove false friend 'eventually' (#3005)

Remove (user-facing) occurrences of wrong usage of the word
'**_eventually_**' (wrongly translated → german '**_eventuell_**' `!=`
english '**_eventual(ly_)**').
This commit is contained in:
Donien 2025-09-10 08:54:04 +02:00 committed by GitHub
parent 6749b4fb08
commit 3702ffc94e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
5 changed files with 11 additions and 11 deletions

View File

@ -111,8 +111,8 @@ class IcingaObjectFieldForm extends DirectorObjectForm
$this->addFilterElement('var_filter', [
'description' => $this->translate(
'You might want to show this field only when certain conditions are met.'
. ' Otherwise it will not be available and values eventually set before'
. ' will be cleared once stored'
. ' Be careful, if previously satisfied conditions are no longer met'
. ' and the object is updated, the field\'s value will be lost.'
),
'columns' => $filterFields,
]);

View File

@ -17,8 +17,8 @@ the Director.
The Director uses the Icinga 2 API to ship the configuration. It does
so by shipping full config packages, it does not deal with single
objects. This makes deployments much faster. It also makes it easier to
eventually use Director in parallel with manual configuration or
configuration shipped by other tools.
use Director in parallel with manual configuration or configuration
shipped by other tools.
Internally, Icinga 2 manages part of its configuration in its `var/lib`
directory. This is usually to be found in `/var/lib/icinga2`. Config

View File

@ -137,7 +137,7 @@ Use this command to modify specific properties of an existing Icinga object.
| `--<key> <value>` | Provide all properties as single command line options |
| `--append-<key> <value>` | Appends to array values, like `imports`, |
| | `groups` or `vars.system_owners` |
| `--remove-<key> [<value>]` | Remove a specific property, eventually only |
| `--remove-<key> [<value>]` | Remove a specific property, potentially only |
| | when matching `value`. In case the property is an |
| | array it will remove just `value` when given |
| `--json` | Otherwise provide all options as a JSON string |
@ -174,7 +174,7 @@ you whether an object has either been created or (not) modified.
With `set` you only set the specified properties and do not touch the other
ones. You could also want to completely override an object, purging all other
eventually existing and unspecified parameters. Please use `--replace` if this
unspecified parameters that might already exist. Please use `--replace` if this
is the desired behaviour.
@ -504,8 +504,8 @@ You can override this by adding the `--force` parameter. It will then tell you:
Config matches active stage, deploying anyway
```
In case you want to do not want `deploy` to waste time to re-render your
config or in case you decide to re-deploy a specific, eventually older config
In case you do not want `deploy` to waste time re-rendering your config
or in case you decide to re-deploy a specific, possibly older, config
version the `deploy` command allows you to provide a specific checksum:
```shell

View File

@ -2,8 +2,8 @@
=====================
The [background daemon](75-Background-Daemon.md) is responsible for running
Jobs accoring our schedule. Director allows you to schedule eventually long-
running tasks so that they can run in the background.
jobs according to our schedule. Director allows you to schedule long-
running tasks, so they can run in the background.
Currently this includes:

View File

@ -446,7 +446,7 @@ class KickstartHelper
$object->delete();
} catch (Exception $e) {
throw new RuntimeException(sprintf(
"Failed to remove %s '%s', it's eventually still in use",
"Failed to remove %s '%s', it might still be in use",
$typeName,
$object->getObjectName()
), 0, $e);