diff options
Diffstat (limited to 'src/web/_views/template/post.php')
-rw-r--r-- | src/web/_views/template/post.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/web/_views/template/post.php b/src/web/_views/template/post.php index fb8cef5..3dcae8f 100644 --- a/src/web/_views/template/post.php +++ b/src/web/_views/template/post.php @@ -21,7 +21,7 @@ $post_attrs['likeId'] = $post['like_id']; } ?> - <span class="likes dim"><span class="count"><?=$post['like_count']?></span><?=' ' . lang('likes')?></span> + <span class="likes dim"><span class="count"><?=$post['like_count']?></span><?=' ' . ucfirst(lang('likes'))?></span> <?php if ($self): ?> <hr> <div class="row"> @@ -76,8 +76,8 @@ autocomplete="off" type="text" name="text" - placeholder="<?=lang('action_new_comment_text')?>" - aria-label="<?=lang('action_new_comment_tip')?>" + placeholder="<?=ucfirst(lang('action_new_comment_text'))?>" + aria-label="<?=ucfirst(lang('action_new_comment_tip'))?>" > </form> </div> |