Skip to content

Commit

Permalink
평가->리뷰
Browse files Browse the repository at this point in the history
  • Loading branch information
easyhooon committed Jun 20, 2021
1 parent 299ae73 commit da1a1bd
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ class AddCommentActivity : AppCompatActivity() {
}

val ad = AlertDialog.Builder(this)
ad.setMessage("평가를 등록하시겠습니까? \n(무분별한 비난의 경우 관리자의 의해 삭제 조치될 수 있습니다.) ")
ad.setMessage("리뷰를 등록하시겠습니까? \n(무분별한 비난의 경우 관리자의 의해 삭제 조치될 수 있습니다.) ")
ad.setPositiveButton(
"취소"
) { dialog, _ ->
Expand All @@ -163,7 +163,7 @@ class AddCommentActivity : AppCompatActivity() {
ad.setNegativeButton(
"등록"
) { dialog, _ ->
Toast.makeText(this, "평가가 등록되었습니다", Toast.LENGTH_SHORT).show()
Toast.makeText(this, "리뷰가 등록되었습니다", Toast.LENGTH_SHORT).show()
showProgress()
addComment()

Expand Down
2 changes: 1 addition & 1 deletion app/src/main/res/menu/chat_option_menu.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@

<item
android:id="@+id/adminEvaluate"
android:title="평가하기"/>
android:title="리뷰하기"/>
</menu>

0 comments on commit da1a1bd

Please sign in to comment.