Skip to content

Commit

Permalink
Change wording from Never to No
Browse files Browse the repository at this point in the history
  • Loading branch information
nonproto committed Jan 14, 2025
1 parent b718146 commit 6301041
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ enum class FeedScreenType {
}

enum class FeedHistoryGroup {
Never,
No,
Series,
Day,
Week,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ private fun LazyListScope.historyContent(
var expanded by remember { mutableStateOf(false) }
var selectedText =
when (historyGrouping) {
FeedHistoryGroup.Never -> R.string.group_never
FeedHistoryGroup.No -> R.string.group_no
FeedHistoryGroup.Series -> R.string.group_by_series
FeedHistoryGroup.Day -> R.string.group_by_day
FeedHistoryGroup.Week -> R.string.group_by_week
Expand Down Expand Up @@ -146,7 +146,7 @@ private fun LazyListScope.historyContent(
FeedHistoryGroup.values().forEach { entry ->
val textRes =
when (entry) {
FeedHistoryGroup.Never -> R.string.group_never
FeedHistoryGroup.No -> R.string.group_no
FeedHistoryGroup.Series -> R.string.group_by_series
FeedHistoryGroup.Day -> R.string.group_by_day
FeedHistoryGroup.Week -> R.string.group_by_week
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ private fun getDateString(
historyGroupType: FeedHistoryGroup = FeedHistoryGroup.Day,
isRecent: Boolean = false,
): String {
if (historyGroupType == FeedHistoryGroup.Never || historyGroupType == FeedHistoryGroup.Series) {
if (historyGroupType == FeedHistoryGroup.No || historyGroupType == FeedHistoryGroup.Series) {
return ""
}

Expand Down
2 changes: 1 addition & 1 deletion constants/src/main/res/values/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -368,7 +368,7 @@
<string name="show_updated_time">Show updated time</string>
<string name="sort_fetched_time">Sort by fetched time</string>
<string name="group_chapters_together">Group chapters</string>
<string name="group_never">Never</string>
<string name="group_no">No</string>
<string name="group_by_series">By series</string>
<string name="group_by_day">By day</string>
<string name="group_by_week">By week</string>
Expand Down

0 comments on commit 6301041

Please sign in to comment.