-
Notifications
You must be signed in to change notification settings - Fork 207
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Translation Helper for dev #1844
Merged
Merged
Changes from 4 commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
debf3ca
Translation helper controler
boehsermoe dd0711c
PHPdoc
boehsermoe 7117b27
PHPdoc
boehsermoe 9cb7c7d
Reformat
boehsermoe 5f902ee
Changelog #1844
boehsermoe 1019876
Merge branch 'master' into translation-controller
boehsermoe File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,70 @@ | ||
<?php | ||
|
||
namespace luya\dev; | ||
|
||
/** | ||
* Dev tool for translators. This is only a helper tool for developer to edit the many translation files in different repositories. | ||
* | ||
* Provides functions to add new translations. | ||
* | ||
* Usage | ||
* | ||
* ```sh | ||
* ./vendor/bin/luyadev translation/add luya-module-cms cmsadmin | ||
* ``` | ||
* | ||
* @author Bennet Klarhölter <[email protected]> | ||
* @since 1.0.6 | ||
*/ | ||
class TranslationController extends BaseDevCommand | ||
{ | ||
/** | ||
* @var bool Outputs the operations but will not execute anything. | ||
*/ | ||
public $dry = false; | ||
|
||
public function options($actionId) | ||
{ | ||
return array_merge(['dry'], parent::options($actionId)); | ||
} | ||
|
||
/** | ||
* Add a new translation to a repository by filename (for admin and frondend). | ||
* | ||
* @param string $repo Name of the repo directory (e.g. luya-module-cms) | ||
* @param string $filename Name of the php file without suffix (e.g. cmsadmin) | ||
* @param string $language (Optional) Add the translation only to one language. Use shortcode e.g. en, de, ... | ||
*/ | ||
public function actionAdd($repo, $filename, $language = "*") | ||
{ | ||
$repoPath = "repos/$repo"; | ||
$messageFiles = glob("$repoPath/src/**/messages/$language/$filename.php") ?: glob("$repoPath/src/messages/$language/$filename.php"); | ||
|
||
$this->outputInfo('Following files will be affected:'); | ||
$this->output(implode("\n", $messageFiles) . "\n"); | ||
|
||
$key = $this->prompt('Insert translation key:'); | ||
$text = $this->prompt('Insert translation text:'); | ||
|
||
foreach ($messageFiles as $messageFile) { | ||
$content = file_get_contents($messageFile); | ||
$newContent = preg_replace("/(\];)/", "\t'$key' => '$text',\n$1", $content); | ||
|
||
if (!$this->dry) { | ||
file_put_contents($messageFile, $newContent); | ||
} else { | ||
$this->outputInfo($messageFile); | ||
} | ||
} | ||
|
||
if (!$this->dry) { | ||
if (exec("[ -d $repoPath/.git ] && command -v git")) { | ||
$diffCommand = "git --git-dir=$repoPath/.git --work-tree=$repoPath diff -- " . str_replace($repoPath . '/', '', implode(" ", $messageFiles)); | ||
exec($diffCommand, $diff); | ||
$this->output(implode("\n", $diff)); | ||
} | ||
|
||
$this->outputSuccess("Translations added. Review the changes before you commit them!"); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Version should be 1.0.11