Rename "profile" text to "entry"

This commit is contained in:
Alexander Bakker 2020-04-11 14:37:28 +02:00
parent 866466d158
commit 0a4a933a2a
13 changed files with 6 additions and 24 deletions

View file

@ -99,8 +99,8 @@ public class AegisApplication extends Application {
intent.setAction(Intent.ACTION_MAIN);
ShortcutInfo shortcut = new ShortcutInfo.Builder(this, "shortcut_new")
.setShortLabel(getString(R.string.new_profile))
.setLongLabel(getString(R.string.add_new_profile))
.setShortLabel(getString(R.string.new_entry))
.setLongLabel(getString(R.string.add_new_entry))
.setIcon(Icon.createWithResource(this, R.drawable.ic_qr_code))
.setIntent(intent)
.build();

View file

@ -105,7 +105,7 @@ public class EditEntryActivity extends AegisActivity {
_groups = new TreeSet<>(Collator.getInstance());
_groups.addAll(intent.getStringArrayListExtra("groups"));
if (_isNew) {
setTitle(R.string.add_new_profile);
setTitle(R.string.add_new_entry);
}
String selectedGroup = intent.getStringExtra("selectedGroup");