mirror of
https://github.com/FreshRSS/FreshRSS.git
synced 2026-02-08 04:21:07 -05:00
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.
26 lines
341 B
PHP
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();
|
|
|
|
}
|