-
Notifications
You must be signed in to change notification settings - Fork 527
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
Fix #2817: Add label for ReadingTextSizeActivity #2930
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@arjunrkaushik PTAL.
@@ -63,7 +63,8 @@ | |||
android:theme="@style/OppiaThemeWithoutActionBar" /> | |||
<activity | |||
android:name=".app.options.ReadingTextSizeActivity" | |||
android:theme="@style/OppiaThemeWithoutActionBar" /> | |||
android:theme="@style/OppiaThemeWithoutActionBar" | |||
android:label="@string/reading_text_size"/> | |||
<activity |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It requires reformatting.
And also please append label
to the string id.
@@ -196,22 +194,22 @@ class AppVersionActivityTest { | |||
private fun getDateTime(dateTimeTimestamp: Long): String? { | |||
return oppiaDateTimeFormatter.formatDateFromDateString( | |||
OppiaDateTimeFormatter.DD_MMM_YYYY, | |||
dateTimeTimestamp, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This file isn't related to this PR, revert the changes of this file.
Also please choose a descriptive branch name and avoid including your name in the branch name. You can look at our wiki to see how to choose a good branch name. |
return ReadingTextSizeActivity.createReadingTextSizeActivityIntent( | ||
ApplicationProvider.getApplicationContext(), | ||
READING_TEXT_SIZE, | ||
summaryValue = null |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@prayutsu What do i pass as the summary value?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@arjunrkaushik you can pass "Small"
@arjunrkaushik Any updates on this? |
Closing this PR as no further update |
Explanation
Fixes #2817: Add label for ReadingTextSizeActivity as Reading Text Size
Checklist