LanguageCombinationConstraint.php in Translation Management Tool 8
File
translators/tmgmt_local/skills/src/Plugin/Validation/Constraint/LanguageCombinationConstraint.php
View source
<?php
namespace Drupal\tmgmt_language_combination\Plugin\Validation\Constraint;
use Symfony\Component\Validator\Constraint;
class LanguageCombinationConstraint extends Constraint {
public $noDifferentMessage = 'The \'from\' and \'to\' language fields can\'t have the same value.';
public $uniqueMessage = 'The language combination has to be unique.';
}