Files
FreshRSS/cli/i18n/I18nValidatorInterface.php
Alexis Degrugillier 127b7f0a3a Change i18n process (#4131)
Before, the ignore info were stored in a different file which was a bit cumbersome
for new comers. Now, this info is stored directly in the translation file as a
comment.

Before, there was no way of telling translators that a previously translated string
was in need of a new translation. Now, the dirty information is there to convey that
info.
2022-01-08 14:00:26 +01:00

26 lines
341 B
PHP

<?php
interface I18nValidatorInterface {
/**
* Display the validation result.
* Empty if there are no errors.
*
* @return array
*/
public function displayResult();
/**
* @return bool
*/
public function validate();
/**
* Display the validation report.
*
* @return string
*/
public function displayReport();
}