Skip to content
Snippets Groups Projects
Commit d8c4ee23 authored by Diogo Simao Marques's avatar Diogo Simao Marques Committed by Felix Paul Kühne
Browse files

SortModel: Update the label of the default criteria

The default criteria's localized label is updated to "Custom" to match
its purpose.
parent 2d1ae60c
No related branches found
No related tags found
1 merge request!1443MediaViewController: Add the sorting criteria in the menu for playlists
Pipeline #574411 passed with stages
in 6 minutes and 33 seconds
......@@ -432,6 +432,7 @@
"NB_ALBUM" = "Number of albums";
"LAST_PLAYBACK_DATE" = "Last playback date";
"TRACK_ID" = "Track ID";
"CUSTOM" = "Custom";
// MARK: - VLCNetworkLoginTVViewController
......
......@@ -71,7 +71,7 @@ extension VLCMLSortingCriteria: CustomStringConvertible {
case .trackID:
return NSLocalizedString("TRACK_ID", comment: "")
case .default:
return NSLocalizedString("DEFAULT", comment: "")
return NSLocalizedString("CUSTOM", comment: "")
@unknown default:
return NSLocalizedString("DEFAULT", comment: "")
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment