mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-14 08:01:38 +01:00
raise version to b1 and make it a constant so localized strings don't
have to change each time.
This commit is contained in:
parent
377fc3c87a
commit
541cfc9925
4 changed files with 4 additions and 2 deletions
|
@ -247,7 +247,7 @@
|
|||
<string name="dictionary">Diccionari:</string>
|
||||
|
||||
<!-- about dialog stuff -->
|
||||
<string name="about_versf">Crosswords per a l\'Android, Versió 4.4 a1,
|
||||
<string name="about_versf">Crosswords per a l\'Android, Versió %s,
|
||||
rev %s.</string>
|
||||
<string name="about_copyright">Copyright (C) 1998-2010 d\'Eric
|
||||
House. Aquest programari es troba sota la Llicència Pública General GNU.</string>
|
||||
|
|
|
@ -261,7 +261,7 @@
|
|||
<string name="dictionary">Dictionary:</string>
|
||||
|
||||
<!-- about dialog stuff -->
|
||||
<string name="about_versf">Crosswords for Android, Version 4.4 a3,
|
||||
<string name="about_versf">Crosswords for Android, Version %s,
|
||||
rev %s.</string>
|
||||
<string name="about_copyright">Copyright (C) 1998-2010 by Eric
|
||||
House. This software is released under the GNU Public
|
||||
|
|
|
@ -90,6 +90,7 @@ public class Utils {
|
|||
final View view = factory.inflate( R.layout.about_dlg, null );
|
||||
TextView vers = (TextView)view.findViewById( R.id.version_string );
|
||||
vers.setText( String.format( context.getString(R.string.about_versf),
|
||||
XWConstants.VERSION_STR,
|
||||
SvnVersion.VERS ) );
|
||||
|
||||
TextView xlator = (TextView)view.findViewById( R.id.about_xlator );
|
||||
|
|
|
@ -23,4 +23,5 @@ package org.eehouse.android.xw4;
|
|||
public interface XWConstants {
|
||||
public static final String GAME_EXTN = ".xwg";
|
||||
public static final String DICT_EXTN = ".xwd";
|
||||
public static final String VERSION_STR = "4.4 b1";
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue