mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-02-06 20:45:54 +01:00
use same counter title for wordlist and studylist browsers
This commit is contained in:
parent
0b01caf262
commit
c426741fa1
3 changed files with 3 additions and 4 deletions
|
@ -2167,7 +2167,6 @@
|
|||
<string name="sel_groupsf">Groups: %d</string>
|
||||
<string name="summary_thumbsize">Thumbnail size</string>
|
||||
<string name="thumb_off">Disabled</string>
|
||||
<string name="sel_dictsf">Wordlists: %d</string>
|
||||
|
||||
<!-- <string name="summary_thumb_enabled">Display snapshots of games</string> -->
|
||||
|
||||
|
@ -2230,7 +2229,7 @@
|
|||
|
||||
<string name="slmenu_select_all">Select all</string>
|
||||
<string name="slmenu_deselect_all">Unselect all</string>
|
||||
<string name="sel_wordsf">Words: %d</string>
|
||||
<string name="sel_itemsf">Selected: %d</string>
|
||||
<string name="slmenu_lookup_sel">Look up</string>
|
||||
|
||||
</resources>
|
||||
|
|
|
@ -741,7 +741,7 @@ public class DictsActivity extends XWExpandableListActivity
|
|||
{
|
||||
int nSels = m_selDicts.size();
|
||||
if ( 0 < nSels ) {
|
||||
setTitle( getString( R.string.sel_dictsf, nSels ) );
|
||||
setTitle( getString( R.string.sel_itemsf, nSels ) );
|
||||
} else {
|
||||
setTitle( m_origTitle );
|
||||
}
|
||||
|
|
|
@ -301,7 +301,7 @@ public class StudyList extends XWListActivity
|
|||
if ( 0 == nSels ) {
|
||||
newTitle = m_origTitle;
|
||||
} else {
|
||||
newTitle = getString( R.string.sel_wordsf, nSels );
|
||||
newTitle = getString( R.string.sel_itemsf, nSels );
|
||||
}
|
||||
setTitle( newTitle );
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue