Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[#328] 초대코드 복사 문구 변경 #329

Merged
merged 2 commits into from
Oct 1, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ fun GroupCreationCompleteScreen(
content = {
GroupCreationCompleteContent(
clipboardManager = LocalClipboardManager.current,
copyLinkMessage = stringResource(id = R.string.button_copy_link_message),
copyLinkMessage = stringResource(id = R.string.button_copy_code_message),
invitationMessage = stringResource(id = R.string.invitation_message),
playStoreUrl = stringResource(id = R.string.play_store_url),
appStoreUrl = stringResource(id = R.string.app_store_url),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ fun GroupMemberScreen(
viewModel: GroupMemberViewModel = hiltViewModel(),
) {
val clipboardManager = LocalClipboardManager.current
val copyLinkMessage = stringResource(id = R.string.button_copy_link_message)
val copyLinkMessage = stringResource(id = R.string.button_copy_code_message)
val invitationMessage = stringResource(id = R.string.invitation_message)
val playStoreUrl = stringResource(id = R.string.play_store_url)
val appStoreUrl = stringResource(id = R.string.app_store_url)
Expand Down
4 changes: 2 additions & 2 deletions presentation/src/main/res/values/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -78,15 +78,15 @@
<string name="group_member_list_title">그룹원</string>
<string name="group_add_more_member">그룹원을 추가하고 싶으세요?</string>
<string name="group_maximum_count">그룹 최대 인원은 6명이에요.</string>
<string name="button_copy_link">초대코드 복사</string>
<string name="button_copy_link">코드 복사</string>
<string name="vote_icon">투표 아이콘</string>
<string name="vote_dislike_desc">싫어요</string>
<string name="vote_like_desc">좋아요</string>
<string name="vote_dialog_title">나가실건가요?</string>
<string name="vote_dialog_content">페이지를 나가면\n처음부터 다시 투표 하게돼요.</string>
<string name="vote_dialog_exit">나가기</string>
<string name="vote_dialog_keep_vote">계속 투표하기</string>
<string name="button_copy_link_message">링크를 복사했어요.</string>
<string name="button_copy_code_message">코드를 복사했어요.</string>

<string name="group_add_description">그룹의 대표 사진을 추가해 주세요</string>
<string name="group_add">이미지 추가</string>
Expand Down
Loading