diff options
author | Sean Leonard <meanderingcode@aetherislands.net> | 2014-03-03 14:29:02 -0800 |
---|---|---|
committer | Sean Leonard <meanderingcode@aetherislands.net> | 2014-03-12 14:21:28 -0700 |
commit | 718e4195d175ce4a7f0b5e5e1c3c14d8ccb237c4 (patch) | |
tree | fd5049463da75ae3cefa55a3bd1212d3ab0a205a /src/se | |
parent | c57c4d06541616e5843c0df738a95e8f16ec5693 (diff) |
Remove crowdin.net references
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); } } |