'; $link .= esc_html__( 'Settings', 'wplingua' ); $link .= ''; $settings[] = $link; return $settings; } /** * Display a notice if the plugin is activate but not configured * * @return string */ function wplng_admin_notice_no_key_set() { $url = add_query_arg( 'page', 'wplingua-settings', get_admin_url() . 'admin.php' ); $html = '
'; $html .= '

'; $html .= ' '; $html .= esc_html__( 'wpLingua - Translation solution for multilingual website', 'wplingua' ); $html .= '

'; $html .= '

'; $html .= esc_html__( 'wpLingua is installed, but not yet configured. You are just a few clicks away from making your site multilingual!', 'wplingua' ); $html .= '
'; $html .= ''; $html .= esc_html__( 'Go to the configuration page', 'wplingua' ); $html .= ''; $html .= '

'; $html .= '
'; echo $html; }