Clarify language

This commit is contained in:
Dominik Schürmann
2014-05-07 09:05:28 +02:00
parent e97cdbd9ad
commit dc382a2ddd
4 changed files with 8 additions and 8 deletions

View File

@@ -140,7 +140,7 @@ public class ViewKeyActivity extends ActionBarActivity implements
Bundle keyDetailsBundle = new Bundle();
keyDetailsBundle.putParcelable(ViewKeyKeysFragment.ARG_DATA_URI, dataUri);
mTabsAdapter.addTab(ViewKeyKeysFragment.class,
keyDetailsBundle, getString(R.string.key_view_tab_keys_details));
keyDetailsBundle, getString(R.string.key_view_tab_keys));
Bundle certBundle = new Bundle();
certBundle.putParcelable(ViewKeyCertsFragment.ARG_DATA_URI, dataUri);

View File

@@ -187,7 +187,7 @@ public class ViewKeyShareFragment extends Fragment implements
if (fingerprintOnly) {
title = getResources().getString(R.string.title_share_fingerprint_with);
} else {
title = getResources().getString(R.string.title_share_key_with);
title = getResources().getString(R.string.title_share_key);
}
startActivity(Intent.createChooser(sendIntent, title));
}