Frumph / comicpress

ComicPress the Comic Publishing Theme for WordPress
http://frumph.net
25 stars 9 forks source link

blank space for text "moods are available" #79

Closed kniebremser closed 5 years ago

kniebremser commented 5 years ago

https://github.com/Frumph/comicpress/blob/b2bb957e7c887a1978350d82e265445e67b54837/functions/moods.php#L72

The blank space at the beginning of the text should be commented out by the text. In translation, the space could be forgotten. then it might look like this: 5moods are available. correct would be: 5 moods are available.

Unfortunately I can not test it because I do not use moods

Frumph commented 5 years ago

echo $count .'&nbsp;'.__( 'moods are available.', 'comicpress' ).'<br />

the . means to 'add this to the current statement' sort of attitude the nbsp; is the ascii character for space so that should work yah?

kniebremser commented 5 years ago

echo $count . ' '. __( 'moods are available.', 'comicpress' ).'<br />

I would favor this solution.