Skip to content

Commit

Permalink
fix/#766_tiny_text_change_for_new_alt_text (#769)
Browse files Browse the repository at this point in the history
  • Loading branch information
rizaardiyanto1412 authored Sep 24, 2024
1 parent db3c8ea commit f19e366
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions core/Requirement/Image_alt_count.php
Original file line number Diff line number Diff line change
Expand Up @@ -39,15 +39,15 @@ class Image_alt_count extends Base_counter
*/
public function init_language()
{
$this->lang['label'] = __('Number of character in alt text for all images', 'publishpress-checklists');
$this->lang['label_settings'] = __('Number of character in alt text for all images', 'publishpress-checklists');
$this->lang['label_min_singular'] = __('Minimum of %d character in alt text for all images', 'publishpress-checklists');
$this->lang['label_min_plural'] = __('Minimum of %d characters in alt text for all images', 'publishpress-checklists');
$this->lang['label_max_singular'] = __('Maximum of %d character in alt text for all images', 'publishpress-checklists');
$this->lang['label_max_plural'] = __('Maximum of %d characters in alt text for all images', 'publishpress-checklists');
$this->lang['label_exact_singular'] = __('%d character in alt text for all images', 'publishpress-checklists');
$this->lang['label_exact_plural'] = __('%d characters in alt text for all images', 'publishpress-checklists');
$this->lang['label_between'] = __('Between %d and %d characters in alt text for all images', 'publishpress-checklists');
$this->lang['label'] = __('Number of characters in Alt text', 'publishpress-checklists');
$this->lang['label_settings'] = __('Number of characters in Alt text', 'publishpress-checklists');
$this->lang['label_min_singular'] = __('Minimum of %d character in Alt text', 'publishpress-checklists');
$this->lang['label_min_plural'] = __('Minimum of %d characters in Alt text', 'publishpress-checklists');
$this->lang['label_max_singular'] = __('Maximum of %d character in Alt text', 'publishpress-checklists');
$this->lang['label_max_plural'] = __('Maximum of %d characters in Alt text', 'publishpress-checklists');
$this->lang['label_exact_singular'] = __('%d character in Alt text', 'publishpress-checklists');
$this->lang['label_exact_plural'] = __('%d characters in Alt text', 'publishpress-checklists');
$this->lang['label_between'] = __('Between %d and %d characters in Alt text', 'publishpress-checklists');
}

/**
Expand Down

0 comments on commit f19e366

Please sign in to comment.