aboutsummaryrefslogtreecommitdiff
path: root/cli
diff options
context:
space:
mode:
Diffstat (limited to 'cli')
-rw-r--r--cli/i18n/I18nData.php27
-rwxr-xr-xcli/manipulate.translation.php17
2 files changed, 40 insertions, 4 deletions
diff --git a/cli/i18n/I18nData.php b/cli/i18n/I18nData.php
index 981c19e62..7d2e39a95 100644
--- a/cli/i18n/I18nData.php
+++ b/cli/i18n/I18nData.php
@@ -98,7 +98,7 @@ class I18nData {
*/
public function addLanguage(string $language, ?string $reference = null): void {
if (array_key_exists($language, $this->data)) {
- throw new Exception('The selected language already exist.');
+ throw new Exception('The selected language already exists.');
}
if (!is_string($reference) || !array_key_exists($reference, $this->data)) {
$reference = static::REFERENCE_LANGUAGE;
@@ -221,7 +221,7 @@ class I18nData {
}
if ($this->isKnown($key)) {
- throw new Exception('The selected key already exist.');
+ throw new Exception('The selected key already exists.');
}
$parentKey = $this->getParentKey($key);
@@ -249,6 +249,29 @@ class I18nData {
}
/**
+ * Move an existing key into a new location
+ * @throws Exception
+ */
+ public function moveKey(string $key, string $newKey): void {
+ if (!$this->isKnown($key) && !$this->isKnown($this->getEmptySibling($key))) {
+ throw new Exception('The selected key does not exist');
+ }
+ if ($this->isKnown($newKey)) {
+ throw new Exception('Cannot move key to a location that already exists.');
+ }
+
+ $keyPrefix = $this->isParent($key) ? $key . '.' : $key;
+ foreach ($this->getAvailableLanguages() as $language) {
+ foreach ($this->data[$language][$this->getFilenamePrefix($key)] as $k => $v) {
+ if (str_starts_with($k, $keyPrefix)) {
+ $this->data[$language][$this->getFilenamePrefix($newKey)][str_replace($key, $newKey, $k)] = $v;
+ unset($this->data[$language][$this->getFilenamePrefix($key)][$k]);
+ }
+ }
+ }
+ }
+
+ /**
* Add a value for a key for the selected language.
*
* @throws Exception
diff --git a/cli/manipulate.translation.php b/cli/manipulate.translation.php
index 1c4a30ca6..59f28ec78 100755
--- a/cli/manipulate.translation.php
+++ b/cli/manipulate.translation.php
@@ -9,6 +9,7 @@ require_once dirname(__DIR__) . '/constants.php';
$cliOptions = new class extends CliOptionsParser {
public string $action;
public string $key;
+ public string $newKey;
public string $value;
public string $language;
public string $originLanguage;
@@ -18,6 +19,7 @@ $cliOptions = new class extends CliOptionsParser {
public function __construct() {
$this->addRequiredOption('action', (new CliOption('action', 'a')));
$this->addOption('key', (new CliOption('key', 'k')));
+ $this->addOption('newKey', (new CliOption('new-key', 'n')));
$this->addOption('value', (new CliOption('value', 'v')));
$this->addOption('language', (new CliOption('language', 'l')));
$this->addOption('originLanguage', (new CliOption('origin-language', 'o')));
@@ -56,6 +58,14 @@ switch ($cliOptions->action) {
exit;
}
break;
+ case 'move':
+ if (isset($cliOptions->key) && isset($cliOptions->newKey)) {
+ $i18nData->moveKey($cliOptions->key, $cliOptions->newKey);
+ } else {
+ error('You need to specify the key to move and its new location.');
+ exit;
+ }
+ break;
case 'delete':
if (isset($cliOptions->key)) {
$i18nData->removeKey($cliOptions->key);
@@ -131,7 +141,7 @@ DESCRIPTION
Manipulate translation files.
-a, --action=ACTION
- select the action to perform. Available actions are add, delete,
+ select the action to perform. Available actions are add, move, delete,
exist, format, ignore, and ignore_unmodified. This option is mandatory.
-k, --key=KEY select the key to work on.
-v, --value=VAL select the value to set.
@@ -176,6 +186,9 @@ Example 10: check if a key exist.
Example 11: add a new file to all languages
php $file -a add -k my_file.php
-HELP;
+
+Example 12:\tmove an existing key into a new location
+ php $file -a move -k my_key -n new_location
+HELP, PHP_EOL;
exit();
}