Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
VLC-Android
Manage
Activity
Members
Labels
Plan
Issues
528
Issue boards
Milestones
Wiki
Code
Merge requests
14
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
VideoLAN
VLC-Android
Commits
bb1baadd
Commit
bb1baadd
authored
6 years ago
by
Geoffrey Métais
Browse files
Options
Downloads
Patches
Plain Diff
Change "Songs" category to "Tracks"
parent
6d99c8e1
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
vlc-android/src/org/videolan/vlc/gui/audio/AudioBrowserFragment.java
+1
-1
1 addition, 1 deletion
.../src/org/videolan/vlc/gui/audio/AudioBrowserFragment.java
vlc-android/src/org/videolan/vlc/gui/tv/MainTvFragment.kt
+1
-1
1 addition, 1 deletion
vlc-android/src/org/videolan/vlc/gui/tv/MainTvFragment.kt
with
2 additions
and
2 deletions
vlc-android/src/org/videolan/vlc/gui/audio/AudioBrowserFragment.java
+
1
−
1
View file @
bb1baadd
...
...
@@ -141,7 +141,7 @@ public class AudioBrowserFragment extends BaseAudioBrowser implements SwipeRefre
final
String
[]
titles
=
new
String
[]
{
getString
(
R
.
string
.
artists
),
getString
(
R
.
string
.
albums
),
getString
(
R
.
string
.
song
s
),
getString
(
R
.
string
.
track
s
),
getString
(
R
.
string
.
genres
),
getString
(
R
.
string
.
playlists
),
};
...
...
This diff is collapsed.
Click to expand it.
vlc-android/src/org/videolan/vlc/gui/tv/MainTvFragment.kt
+
1
−
1
View file @
bb1baadd
...
...
@@ -151,7 +151,7 @@ class MainTvFragment : BrowseSupportFragment(), OnItemViewSelectedListener, OnIt
DummyItem
(
Constants
.
CATEGORY_ARTISTS
,
getString
(
R
.
string
.
artists
),
""
),
DummyItem
(
Constants
.
CATEGORY_ALBUMS
,
getString
(
R
.
string
.
albums
),
""
),
DummyItem
(
Constants
.
CATEGORY_GENRES
,
getString
(
R
.
string
.
genres
),
""
),
DummyItem
(
Constants
.
CATEGORY_SONGS
,
getString
(
R
.
string
.
song
s
),
""
)
DummyItem
(
Constants
.
CATEGORY_SONGS
,
getString
(
R
.
string
.
track
s
),
""
)
)
if
(
current
!==
null
)
list
.
add
(
0
,
current
)
categoriesAdapter
.
setItems
(
list
.
toList
(),
diffCallback
)
...
...
This diff is collapsed.
Click to expand it.
Geoffrey Métais
@Dekans
mentioned in issue
#435 (closed)
·
6 years ago
mentioned in issue
#435 (closed)
mentioned in issue #435
Toggle commit list
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment