Skip to content

Commit

Permalink
Merge pull request #252 from alexclassroom/master
Browse files Browse the repository at this point in the history
Add missing text domain. Thanks for contributing!
  • Loading branch information
lloc authored Nov 29, 2023
2 parents cbbed55 + 6001f66 commit 44d50f4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions includes/MslsAdmin.php
Original file line number Diff line number Diff line change
Expand Up @@ -116,12 +116,12 @@ public function has_problems() {

if ( $this->options->is_empty() ) {
$message = sprintf(
__( 'Multisite Language Switcher is almost ready. You must <a href="%s">complete the configuration process</a>.' ),
__( 'Multisite Language Switcher is almost ready. You must <a href="%s">complete the configuration process</a>.', 'multisite-language-switcher' ),
esc_url( admin_url( $this->get_options_page_link() ) )
);
} elseif ( 1 == count( $this->options->get_available_languages() ) ) {
$message = sprintf(
__( 'There are no language files installed. You can <a href="%s">manually install some language files</a> or you could use a <a href="%s">plugin</a> to download these files automatically.' ),
__( 'There are no language files installed. You can <a href="%s">manually install some language files</a> or you could use a <a href="%s">plugin</a> to download these files automatically.', 'multisite-language-switcher' ),
esc_url( 'http://codex.wordpress.org/Installing_WordPress_in_Your_Language#Manually_Installing_Language_Files' ),
esc_url( 'http://wordpress.org/plugins/wp-native-dashboard/' )
);
Expand Down

0 comments on commit 44d50f4

Please sign in to comment.