18 lines
428 B
PHP
18 lines
428 B
PHP
<?php
|
|
|
|
class WPML_TM_Jobs_Daily_Summary_Report_Model implements WPML_TM_Jobs_Summary_Report_Model {
|
|
|
|
/**
|
|
* @return string
|
|
*/
|
|
public function get_subject() {
|
|
return __( 'Translation updates for %1$s for %2$s', 'wpml-translation-management' );
|
|
}
|
|
|
|
/**
|
|
* @return string
|
|
*/
|
|
public function get_summary_text() {
|
|
return __( 'Today %1$s had the following %2$s translation updates', 'wpml-translation-management' );
|
|
}
|
|
} |