Skip to content

Commit

Permalink
Fix i18n domain to use Core translations.
Browse files Browse the repository at this point in the history
  • Loading branch information
sirreal committed Sep 12, 2024
1 parent 2a5ba59 commit 4d8d9cb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/interactivity-api.php
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ function ( $data ) {
if ( ! isset( $data['i18n'] ) ) {

Check failure on line 41 in lib/interactivity-api.php

View workflow job for this annotation

GitHub Actions / PHP coding standards

Line indented incorrectly; expected 4 tabs, found 5
$data['i18n'] = array();
}

Check failure on line 43 in lib/interactivity-api.php

View workflow job for this annotation

GitHub Actions / PHP coding standards

Line indented incorrectly; expected 4 tabs, found 5
$data['i18n']['loading'] = __( 'Loading page, please wait.', 'gutenberg' );
$data['i18n']['loaded'] = __( 'Page Loaded.', 'gutenberg' );
$data['i18n']['loading'] = __( 'Loading page, please wait.', 'default' );
$data['i18n']['loaded'] = __( 'Page Loaded.', 'default' );
return $data;
}

Check failure on line 47 in lib/interactivity-api.php

View workflow job for this annotation

GitHub Actions / PHP coding standards

Line indented incorrectly; expected 3 tabs, found 4
);
Expand Down

0 comments on commit 4d8d9cb

Please sign in to comment.