diff options
Diffstat (limited to 'cli')
| -rw-r--r-- | cli/i18n/I18nFile.php | 24 | ||||
| -rw-r--r-- | cli/i18n/I18nValue.php | 8 |
2 files changed, 16 insertions, 16 deletions
diff --git a/cli/i18n/I18nFile.php b/cli/i18n/I18nFile.php index 50b2d5023..ef8f8776e 100644 --- a/cli/i18n/I18nFile.php +++ b/cli/i18n/I18nFile.php @@ -152,20 +152,20 @@ class I18nFile { $translation = preg_replace($patterns, $replacements, $translation); return <<<OUTPUT - <?php +<?php - /******************************************************************************/ - /* Each entry of that file can be associated with a comment to indicate its */ - /* state. When there is no comment, it means the entry is fully translated. */ - /* The recognized comments are (comment matching is case-insensitive): */ - /* + TODO: the entry has never been translated. */ - /* + DIRTY: the entry has been translated but needs to be updated. */ - /* + IGNORE: the entry does not need to be translated. */ - /* When a comment is not recognized, it is discarded. */ - /******************************************************************************/ +/******************************************************************************/ +/* Each entry of that file can be associated with a comment to indicate its */ +/* state. When there is no comment, it means the entry is fully translated. */ +/* The recognized comments are (comment matching is case-insensitive): */ +/* + TODO: the entry has never been translated. */ +/* + DIRTY: the entry has been translated but needs to be updated. */ +/* + IGNORE: the entry does not need to be translated. */ +/* When a comment is not recognized, it is discarded. */ +/******************************************************************************/ - return {$translation}; +return {$translation}; - OUTPUT; +OUTPUT; } } diff --git a/cli/i18n/I18nValue.php b/cli/i18n/I18nValue.php index e691b8574..8ca843b26 100644 --- a/cli/i18n/I18nValue.php +++ b/cli/i18n/I18nValue.php @@ -1,10 +1,10 @@ <?php class I18nValue { - private const STATE_DIRTY = 'dirty'; - private const STATE_IGNORE = 'ignore'; - private const STATE_TODO = 'todo'; - private const STATES = [ + const STATE_DIRTY = 'dirty'; + const STATE_IGNORE = 'ignore'; + const STATE_TODO = 'todo'; + const STATES = [ self::STATE_DIRTY, self::STATE_IGNORE, self::STATE_TODO, |
