', $url ), sprintf( 'WordPress.org', $url ) ), [ 'a' => [ 'href' => [], 'target' => [], 'rel' => [], ], ] ); } /** * Show plugin version in the update footer. * * @param string|mixed $content The content that will be printed. * * @return string|mixed */ public function update_footer( $content ) { if ( ! $this->is_options_screen() ) { return $content; } return sprintf( /* translators: 1: plugin version. */ __( 'Version %s', 'cyr2lat' ), CYR_TO_LAT_VERSION ); } }