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

Change label of reply button from "Publish" to "Reply" #3980

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
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 @@ -444,7 +444,7 @@ class TalkReplyActivity : BaseActivity(), UserMentionInputView.Listener, EditPre
updateEditLicenseText()
setSaveButtonEnabled(true)
supportActionBar?.title = getString(R.string.edit_preview)
binding.replyNextButton.text = getString(R.string.description_edit_save)
binding.replyNextButton.text = getString(R.string.talk_reply_save)
messagePreviewFragment.showPreview(viewModel.pageTitle, getWikitextForPreview())
EditAttemptStepEvent.logSaveIntent(viewModel.pageTitle)
}
Expand Down
1 change: 1 addition & 0 deletions app/src/main/res/values-qq/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -1306,6 +1306,7 @@
<string name="talk_page_empty_title">Title text for stating that this talk page is currently empty.</string>
<string name="talk_page_empty_content">Content test for stating that this talk page is currently empty.</string>
<string name="talk_add_reply">Button label for adding a reply to a talk page topic.\n\nThe functionality is similar to {{msg-mw|Discussiontools-replylink}}, so the translation can be identical.</string>
<string name="talk_reply_save">Button label for submitting a reply.\n\nThe functionality is similar to {{msg-mw|Discussiontools-replywidget-reply}}, so the translation can be identical.</string>
<string name="talk_no_subject">Label for talk page topic that does not have a title.</string>
<string name="talk_reply_subject">Hint for text field for entering a new talk page topic.</string>
<string name="talk_reply_hint">Hint for text field for composing a reply to the current talk page topic.</string>
Expand Down
1 change: 1 addition & 0 deletions app/src/main/res/values/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -1363,6 +1363,7 @@
<string name="talk_page_empty_title">The conversation starts here</string>
<string name="talk_page_empty_content">Talk pages are where people discuss how to make Wikipedia content the best it can be. Start by adding a new discussion topic to connect and collaborate with a community of Wikipedians.</string>
<string name="talk_add_reply">Reply</string>
<string name="talk_reply_save">Reply</string>
<string name="talk_no_subject">(No subject)</string>
<string name="talk_reply_subject">Subject</string>
<string name="talk_reply_hint">Compose response</string>
Expand Down
Loading