settings_factory->get_term_meta_keys(); } /** * @param string $key * * @return WPML_Term_Custom_Field_Setting */ protected function get_setting( $key ) { return $this->settings_factory->term_meta_setting( $key ); } /** * @return string */ protected function get_title() { return __( 'Custom Term Meta Translation', 'wpml-translation-management' ); } /** * @return string */ protected function kind_shorthand() { return 'tcf'; } public function get_no_data_message() { return __( 'No term meta found. It is possible that they will only show up here after you add/create them.', 'wpml-translation-management' ); } public function get_column_header( $id ) { $header = $id; if('name' === $id) { $header = __( 'Term Meta', 'wpml-translation-management' ); } return $header; } }