Index: src/apps/screens.c =================================================================== --- src/apps/screens.c (revision 26735) +++ src/apps/screens.c (working copy) @@ -623,6 +623,8 @@ LANG_ID3_YEAR, LANG_ID3_LENGTH, LANG_ID3_PLAYLIST, + LANG_ID3_PLAYCOUNT, + LANG_ID3_RATING, LANG_ID3_BITRATE, LANG_ID3_FREQUENCY, #if CONFIG_CODEC == SWCODEC @@ -739,6 +741,14 @@ case LANG_ID3_COMPOSER: val=id3->composer; break; + case LANG_ID3_PLAYCOUNT: + snprintf(buffer, buffer_len, "%d", (int)id3->playcount); + val = buffer; + break; + case LANG_ID3_RATING: + snprintf(buffer, buffer_len, "%d", (int)id3->rating); + val = buffer; + break; } return val && *val ? val : NULL; } Index: src/apps/lang/english.lang =================================================================== --- src/apps/lang/english.lang (revision 26735) +++ src/apps/lang/english.lang (working copy) @@ -12554,3 +12554,31 @@ *: "open picture flow" + + id: LANG_ID3_PLAYCOUNT + desc: in tag viewer + user: core + + *: "Play Count" + + + *: "Play Count" + + + *: "" + + + + id: LANG_ID3_RATING + desc: in tag viewer + user: core + + *: "Rating" + + + *: "Rating" + + + *: "" + +