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

Add long-form ‘Top All’ string #1103

Merged
merged 1 commit into from
Jul 27, 2023
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
2 changes: 1 addition & 1 deletion app/src/main/java/com/jerboa/Utils.kt
Original file line number Diff line number Diff line change
Expand Up @@ -1114,7 +1114,7 @@ val MAP_SORT_TYPE_LONG_FORM = mapOf(
SortType.TopWeek to R.string.dialogs_top_week,
SortType.TopMonth to R.string.dialogs_top_month,
SortType.TopYear to R.string.dialogs_top_year,
SortType.TopAll to R.string.sorttype_topall,
SortType.TopAll to R.string.dialogs_top_all,
SortType.MostComments to R.string.dialogs_most_comments,
SortType.NewComments to R.string.dialogs_new_comments,
SortType.TopHour to R.string.dialogs_top_hour,
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 @@ -132,6 +132,7 @@
<string name="dialogs_top_month">Top Month</string>
<string name="dialogs_top_week">Top Week</string>
<string name="dialogs_top_year">Top Year</string>
<string name="dialogs_top_all">Top All</string>
<string name="dialogs_old">Old</string>
<string name="dialogs_unread">Unread</string>
<string name="dialogs_server_version_outdated">Server version (%1$s) is under the minimum supported version (%2$s).\n\nPlease inform your administrator and login to another instance, or sign out and use the default instance.</string>
Expand Down