Account titles replaced with profile instead

This commit is contained in:
Yaroslav Berezanskyi 2015-08-16 14:24:33 +03:00
parent 258651297c
commit 8be9953f6c
2 changed files with 3 additions and 3 deletions

View File

@ -307,7 +307,7 @@ public abstract class BaseActivity extends AppCompatActivity implements
@SuppressWarnings("ConstantConditions")
private void showProfileCreateDialog() {
MaterialDialog dialog = new MaterialDialog.Builder(this)
.title("New account")
.title("New profile")
.positiveText(R.string.dialog_button_create)
.negativeText(R.string.dialog_button_cancel)
.customView(R.layout.profile_create_dialog, true)
@ -526,7 +526,7 @@ public abstract class BaseActivity extends AppCompatActivity implements
@Override
public void onDAppAdd() {
Dialog dialog = new MaterialDialog.Builder(this)
.title("Add new one")
.title("Add new DApp")
.customView(R.layout.dapp_form, true)
.positiveText(R.string.save)
.negativeText(R.string.cancel)

View File

@ -23,6 +23,6 @@
android:layout_marginLeft="16dp"
android:layout_marginStart="16dp"
android:textColor="@android:color/black"
android:text="Add account"/>
android:text="Add profile"/>
</LinearLayout>