'translate-slugs', 'title' => __( 'Translate slugs', 'polylang' ), 'description' => $this->get_description(), ) ); } /** * Returns the module description. * * @since 3.1 * * @return string */ protected function get_description() { return __( 'Allows to translate custom post types and taxonomies slugs in URLs.', 'polylang' ); } /** * Tells if the module is active. * * @since 1.9 * * @return bool */ public function is_active() { return false; } /** * Displays an upgrade message. * * @since 1.9 * * @return string */ public function get_upgrade_message() { return $this->default_upgrade_message(); } }