diff options
author | Jonathan Gordon <rockbox@jdgordon.info> | 2010-05-20 13:24:50 +0000 |
---|---|---|
committer | Jonathan Gordon <rockbox@jdgordon.info> | 2010-05-20 13:24:50 +0000 |
commit | 0e263d5b779f19033730fff7ec6f16b0715a976d (patch) | |
tree | 01097b13b3779d85b9bf0d4cf4183555ad36ea13 /apps/tagcache.h | |
parent | 24aeac2a754aa310894d3d057e827983b597e4f8 (diff) |
accept FS#10992 by Rui Araújo to fix FS#10976 - make the <Untagged> string translatable
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26192 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/tagcache.h')
-rw-r--r-- | apps/tagcache.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/apps/tagcache.h b/apps/tagcache.h index 1488c3bd39..15b4251ddc 100644 --- a/apps/tagcache.h +++ b/apps/tagcache.h @@ -95,6 +95,9 @@ enum tag_type { tag_artist = 0, tag_album, tag_genre, tag_title, /* Serialized DB. */ #define TAGCACHE_STATEFILE ROCKBOX_DIR "/database_state.tcd" +/* Tag to be used on untagged files. */ +#define UNTAGGED "<Untagged>" + /* Numeric tags (we can use these tags with conditional clauses). */ #define TAGCACHE_NUMERIC_TAGS ((1LU << tag_year) | (1LU << tag_discnumber) | \ (1LU << tag_tracknumber) | (1LU << tag_length) | (1LU << tag_bitrate) | \ |