File properties plugin: Add disc number.
Change-Id: I98c9ccdffdaae8c5c9117212365ae82b9bf2147c
This commit is contained in:
parent
5ddfd37a8c
commit
41e471e50e
2 changed files with 19 additions and 1 deletions
|
@ -16038,3 +16038,17 @@
|
|||
*: "Track number"
|
||||
</voice>
|
||||
</phrase>
|
||||
<phrase>
|
||||
id: LANG_PROPERTIES_DISCNUM
|
||||
desc: in properties plugin
|
||||
user: core
|
||||
<source>
|
||||
*: "[Discnum]"
|
||||
</source>
|
||||
<dest>
|
||||
*: "[Discnum]"
|
||||
</dest>
|
||||
<voice>
|
||||
*: "Disc number"
|
||||
</voice>
|
||||
</phrase>
|
||||
|
|
|
@ -40,6 +40,7 @@ char str_album[MAX_PATH];
|
|||
char str_genre[MAX_PATH];
|
||||
char str_comment[MAX_PATH];
|
||||
char str_year[MAX_PATH];
|
||||
char str_discnum[MAX_PATH];
|
||||
char str_tracknum[MAX_PATH];
|
||||
char str_duration[32];
|
||||
|
||||
|
@ -65,6 +66,7 @@ static const unsigned char* const props_file[] =
|
|||
ID2P(LANG_PROPERTIES_GENRE), str_genre,
|
||||
ID2P(LANG_PROPERTIES_COMMENT), str_comment,
|
||||
ID2P(LANG_PROPERTIES_YEAR), str_year,
|
||||
ID2P(LANG_PROPERTIES_DISCNUM), str_discnum,
|
||||
ID2P(LANG_PROPERTIES_TRACKNUM), str_tracknum,
|
||||
ID2P(LANG_PROPERTIES_DURATION), str_duration,
|
||||
};
|
||||
|
@ -145,9 +147,11 @@ static bool file_properties(const char* selected_file)
|
|||
"%s", id3.comment ? id3.comment : "");
|
||||
rb->snprintf(str_year, sizeof str_year,
|
||||
"%s", id3.year_string ? id3.year_string : "");
|
||||
rb->snprintf(str_discnum, sizeof str_discnum,
|
||||
"%s", id3.disc_string ? id3.disc_string : "");
|
||||
rb->snprintf(str_tracknum, sizeof str_tracknum,
|
||||
"%s", id3.track_string ? id3.track_string : "");
|
||||
num_properties += 9;
|
||||
num_properties += 10;
|
||||
|
||||
if (dur > 0)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue