mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-09 05:24:44 +01:00
don't break r.{string,plurals}.id across lines: my script's too dumb
to recognize them then
This commit is contained in:
parent
ca09c48d95
commit
805f160556
2 changed files with 5 additions and 7 deletions
|
@ -338,8 +338,7 @@ public class BoardDelegate extends DelegateBase
|
|||
lstnr = new OnClickListener() {
|
||||
public void onClick( DialogInterface dialog,
|
||||
int whichButton ) {
|
||||
showNotAgainDlgThen( R.string.
|
||||
not_again_lookup,
|
||||
showNotAgainDlgThen( R.string.not_again_lookup,
|
||||
R.string.
|
||||
key_na_lookup,
|
||||
Action.LOOKUP_ACTION );
|
||||
|
|
|
@ -358,9 +358,8 @@ public class UpdateCheckReceiver extends BroadcastReceiver {
|
|||
int nAdded = LocUtils.addXlations( m_context, data );
|
||||
if ( 0 < nAdded ) {
|
||||
gotOne = true;
|
||||
String msg =
|
||||
LocUtils.getQuantityString( m_context, R.plurals
|
||||
.new_xlations_fmt,
|
||||
String msg = LocUtils
|
||||
.getQuantityString( m_context, R.plurals.new_xlations_fmt,
|
||||
nAdded, nAdded );
|
||||
Utils.showToast( m_context, msg );
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue