mirror of
https://github.com/Einundzwanzig-Podcast/einundzwanzig-portal.git
synced 2025-12-17 07:14:23 +00:00
65 lines
2.1 KiB
PHP
65 lines
2.1 KiB
PHP
<?php
|
|
|
|
namespace JoeDixon\Translation\Console\Commands;
|
|
|
|
class AddTranslationKeyCommand extends BaseCommand
|
|
{
|
|
/**
|
|
* The name and signature of the console command.
|
|
*
|
|
* @var string
|
|
*/
|
|
protected $signature = 'translation:add-translation-key';
|
|
|
|
/**
|
|
* The console command description.
|
|
*
|
|
* @var string
|
|
*/
|
|
protected $description = 'Add a new language key for the application';
|
|
|
|
/**
|
|
* Execute the console command.
|
|
*
|
|
* @return mixed
|
|
*/
|
|
public function handle()
|
|
{
|
|
$language = $this->ask(__('translation::translation.prompt_language_for_key'));
|
|
|
|
// we know this should be single or group so we can use the `anticipate`
|
|
// method to give our users a helping hand
|
|
$type = $this->anticipate(__('translation::translation.prompt_type'), ['single', 'group']);
|
|
|
|
// if the group type is selected, prompt for the group key
|
|
if ($type === 'group') {
|
|
$file = $this->ask(__('translation::translation.prompt_group'));
|
|
}
|
|
$key = $this->ask(__('translation::translation.prompt_key'));
|
|
$value = $this->ask(__('translation::translation.prompt_value'));
|
|
|
|
// attempt to add the key for single or group and fail gracefully if
|
|
// exception is thrown
|
|
if ($type === 'single') {
|
|
try {
|
|
$this->translation->addSingleTranslation($language, 'single', $key, $value);
|
|
|
|
return $this->info(__('translation::translation.language_key_added'));
|
|
} catch (\Exception $e) {
|
|
return $this->error($e->getMessage());
|
|
}
|
|
} elseif ($type === 'group') {
|
|
try {
|
|
$file = str_replace('.php', '', $file);
|
|
$this->translation->addGroupTranslation($language, $file, $key, $value);
|
|
|
|
return $this->info(__('translation::translation.language_key_added'));
|
|
} catch (\Exception $e) {
|
|
return $this->error($e->getMessage());
|
|
}
|
|
} else {
|
|
return $this->error(__('translation::translation.type_error'));
|
|
}
|
|
}
|
|
}
|