This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
function language_detector_admin_notices() { | |
// Get the current language locale | |
$language = get_locale(); | |
// Check if the nag screen has been disabled for this language | |
if ( false === get_option( 'plugin_slug_language_detector_' . $language, false ) ) { | |
// Check if a translation file already exists for this language | |
if ( $loaded = load_plugin_textdomain( 'text_domain', false, plugin_dir_path( __FILE__ ) . '/languages/' ) ) { |