This is the bug/patch tracker for Rockbox. Click here for more information.
Quick links: Bugs · Patches · Rockbox frontpage
FS#10976 - String <untagged> isn't in language files
Attached to Project:
Rockbox
Opened by Marek Salaba (salaba) - Sunday, 07 February 2010, 00:33 GMT+2
Last edited by Jonathan Gordon (jdgordon) - Thursday, 20 May 2010, 15:25 GMT+2
Opened by Marek Salaba (salaba) - Sunday, 07 February 2010, 00:33 GMT+2
Last edited by Jonathan Gordon (jdgordon) - Thursday, 20 May 2010, 15:25 GMT+2
|
DetailsI found that string <untagged> using in tag browser / tag cache
isn't in language files. Here is my example which could be added to english.lang, but it is still necessary to make the necessary modifications to the source code to interpret it, to which I do not have any apprentice of an experienced. <phrase> id: LANG_TAGNAVI_UNTAGGED desc: "<untagged>" entry in tag browser user: core <source> *: "<untagged>" </source> <dest> *: "<untagged>" </dest> <voice> *: "untagged" </voice> </phrase> |
This task depends upon
Closed by Jonathan Gordon (jdgordon)
Thursday, 20 May 2010, 15:25 GMT+2
Reason for closing: Fixed
Additional comments about closing: in r26192.
Thursday, 20 May 2010, 15:25 GMT+2
Reason for closing: Fixed
Additional comments about closing: in r26192.
on line 96 :
#define UNTAGGED "<Untagged>"
Other string for tag bwovser / tag cache are defined in file /apps/tagtree.c
on lines 1150 :
dptr->name = str(LANG_TAGNAVI_ALL_TRACKS);
and line 1157 :
dptr->name = str(LANG_TAGNAVI_RANDOM);
I think that would be sufficient to adjust in file /apps/tagcache.c
the line 96 like this :
#define UNTAGGED LANG_TAGNAVI_UNTAGGED
And add new id: LANG_TAGNAVI_UNTAGGED to file /apps/lang/english.lang
as I wrote example in base of this report.
The way to do it is to rename the entry in tagtree.c when the search results are loaded.
See please
FS#10992.We will waiting to cominting.