Skip to content

Commit

Permalink
feat: min for blog
Browse files Browse the repository at this point in the history
  • Loading branch information
YulikK committed Jun 4, 2024
1 parent 6277051 commit 8e3c960
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/entities/Post/view/PostView.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ export default class PostView {
private createCardInfoHTML(): string {
const ln = getStore().getState().currentLanguage;
const read =
ln === 'en' ? `Read in ${this.post.time.toString()} minutes` : `Читать за ${this.post.time.toString()} минуты`;
ln === 'en' ? `Read in ${this.post.time.toString()} min.` : `Читать за ${this.post.time.toString()} мин.`;
const readMore = ln === 'en' ? 'Read more...' : 'Читать далее...';
const content = `
<article class=${styles.article}>
Expand Down

0 comments on commit 8e3c960

Please sign in to comment.