From 856c6ae4bd3c8bff9e0af7c959f53006d57f5bd0 Mon Sep 17 00:00:00 2001 From: Kijin Sung Date: Wed, 31 Jan 2018 23:40:29 +0900 Subject: [PATCH] Standardize on upvote/downvote instead of recommend/not recommend --- common/lang/en.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/common/lang/en.php b/common/lang/en.php index cce0402b5..fd557c7dd 100644 --- a/common/lang/en.php +++ b/common/lang/en.php @@ -27,8 +27,8 @@ $lang->cmd_replace = 'Replace'; $lang->cmd_confirm = 'Confirm'; $lang->cmd_cancel = 'Cancel'; $lang->cmd_back = 'Go Back'; -$lang->cmd_vote = 'Recommend'; -$lang->cmd_vote_down = 'Not recommend'; +$lang->cmd_vote = 'Upvote'; +$lang->cmd_vote_down = 'Downvote'; $lang->cmd_declare = 'Report'; $lang->cmd_cancel_declare = 'Cancel Report'; $lang->cmd_declared_list = 'Reported List'; @@ -265,13 +265,13 @@ $lang->fail_to_registed = 'Failed to register.'; $lang->fail_to_update = 'Fail to update.'; $lang->fail_to_delete = 'Failed to delete.'; $lang->fail_to_move = 'Failed to move.'; -$lang->failed_voted = 'No permission to Recommend.'; -$lang->failed_blamed = 'No permission to Not Recommend.'; +$lang->failed_voted = 'No permission to upvote.'; +$lang->failed_blamed = 'No permission to downvote.'; $lang->failed_declared = 'No permission to Report.'; $lang->fail_to_delete_have_children = 'Cannot delete the article with comments.'; $lang->confirm_submit = 'Are you sure you want to submit?'; $lang->confirm_logout = 'Are you sure you want to sign out?'; -$lang->confirm_vote = 'Are you sure you want to recommend?'; +$lang->confirm_vote = 'Are you sure you want to upvote?'; $lang->confirm_delete = 'Are you sure you want to delete?'; $lang->confirm_restore = 'Are you sure you want to restore?'; $lang->confirm_move = 'Are you sure you want to move?';