diff options
author | Parménides GV <parmegv@sdf.org> | 2014-03-12 22:56:15 +0100 |
---|---|---|
committer | Parménides GV <parmegv@sdf.org> | 2014-03-12 22:56:15 +0100 |
commit | 608653a64648fd6d7e37987ee4a160a3dd68f775 (patch) | |
tree | 15c43e989c384813bf6b1ca328cbf3161e3e3348 /src/se | |
parent | a2427c1c41bad1fcd8626ca0659465ab3b74d9a2 (diff) | |
parent | 2945761806c655b4809f2a812f0d8ad4da35be53 (diff) |
Merge branch 'feature/about-view-transifex-link' into develop
Diffstat (limited to 'src/se')
-rw-r--r-- | src/se/leap/bitmaskclient/AboutActivity.java | 12 |
1 files changed, 2 insertions, 10 deletions
diff --git a/src/se/leap/bitmaskclient/AboutActivity.java b/src/se/leap/bitmaskclient/AboutActivity.java index a3320c81..6d025422 100644 --- a/src/se/leap/bitmaskclient/AboutActivity.java +++ b/src/se/leap/bitmaskclient/AboutActivity.java @@ -18,7 +18,7 @@ public class AboutActivity extends Activity { @Override protected void onCreate(Bundle savedInstanceState) { - super.onCreate(savedInstanceState); + super.onCreate(savedInstanceState); setContentView(R.layout.about); TextView ver = (TextView) findViewById(R.id.version); @@ -34,15 +34,7 @@ public class AboutActivity extends Activity { ver.setText(getString(R.string.version_info,name,version)); - - TextView translation = (TextView) findViewById(R.id.translation); - - // Don't print a text for myself - if ( getString(R.string.translationby).contains("Arne Schwabe")) - translation.setVisibility(TextView.INVISIBLE); - else - translation.setText(R.string.translationby); - setResult(VIEWED); + setResult(VIEWED); } } |