fix
This commit is contained in:
parent
afaf61f652
commit
467ea20abe
1 changed files with 2 additions and 2 deletions
|
@ -351,10 +351,10 @@ public class HelpScreenDialogFragment extends DialogFragment implements Expandab
|
||||||
|
|
||||||
String edition = "";
|
String edition = "";
|
||||||
if (!this.getString(R.string.app_edition).equals("")) {
|
if (!this.getString(R.string.app_edition).equals("")) {
|
||||||
edition = R.getString(R.string.shared_string_release) + " : \t" + this.getString(R.string.app_edition);
|
edition = this.getString(R.string.shared_string_release) + " : \t" + this.getString(R.string.app_edition);
|
||||||
}
|
}
|
||||||
String version = Version.getFullVersion(getOsmandApplication()) + "\n" + edition
|
String version = Version.getFullVersion(getOsmandApplication()) + "\n" + edition
|
||||||
// + "\n\n" + R.getString(R.string.about_content);
|
// + "\n\n" + this.getString(R.string.about_content);
|
||||||
|
|
||||||
MyMenuItem.Builder builder = new MyMenuItem.Builder()
|
MyMenuItem.Builder builder = new MyMenuItem.Builder()
|
||||||
.setTitle(R.string.shared_string_about)
|
.setTitle(R.string.shared_string_about)
|
||||||
|
|
Loading…
Reference in a new issue