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/tagtree.c | |
| parent | 24aeac2a754aa310894d3d057e827983b597e4f8 (diff) | |
| download | rockbox-0e263d5b779f19033730fff7ec6f16b0715a976d.zip rockbox-0e263d5b779f19033730fff7ec6f16b0715a976d.tar.gz rockbox-0e263d5b779f19033730fff7ec6f16b0715a976d.tar.bz2 rockbox-0e263d5b779f19033730fff7ec6f16b0715a976d.tar.xz | |
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/tagtree.c')
| -rw-r--r-- | apps/tagtree.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/apps/tagtree.c b/apps/tagtree.c index 3b13df0..8c7f7a2 100644 --- a/apps/tagtree.c +++ b/apps/tagtree.c @@ -1169,6 +1169,12 @@ static int retrieve_entries(struct tree_context *c, int offset, bool init) if (total_count++ < offset) continue; + if ( strcmp(tcs.result , UNTAGGED ) == 0) + { + tcs.result_len = strlcpy(tcs.result, + str(LANG_TAGNAVI_UNTAGGED), TAG_MAXLEN )+1; + } + dptr->newtable = NAVIBROWSE; if (tag == tag_title || tag == tag_filename) { |