diff --git a/app/src/main/java/eu/faircode/email/ActivityView.java b/app/src/main/java/eu/faircode/email/ActivityView.java index 9820ef84..2187a53a 100644 --- a/app/src/main/java/eu/faircode/email/ActivityView.java +++ b/app/src/main/java/eu/faircode/email/ActivityView.java @@ -38,18 +38,20 @@ import android.support.v4.widget.DrawerLayout; import android.support.v7.app.ActionBarDrawerToggle; import android.util.Log; import android.view.LayoutInflater; -import android.view.Menu; -import android.view.MenuInflater; import android.view.MenuItem; import android.view.View; import android.view.ViewGroup; import android.widget.AdapterView; import android.widget.ArrayAdapter; -import android.widget.CheckBox; +import android.widget.ImageView; import android.widget.ListView; import android.widget.TextView; +import java.text.Collator; +import java.util.Collections; +import java.util.Comparator; import java.util.List; +import java.util.Locale; public class ActivityView extends ActivityBase implements FragmentManager.OnBackStackChangedListener, SharedPreferences.OnSharedPreferenceChangeListener { private boolean newIntent = false; @@ -101,8 +103,8 @@ public class ActivityView extends ActivityBase implements FragmentManager.OnBack public void onItemClick(AdapterView parent, View view, int position, long id) { DrawerItem item = (DrawerItem) parent.getAdapter().getItem(position); switch (item.getId()) { - case R.string.menu_folders: - onMenuFolders(); + case -1: + onMenuFolders((long) item.getData()); break; case R.string.menu_setup: onMenuSetup(); @@ -115,15 +117,39 @@ public class ActivityView extends ActivityBase implements FragmentManager.OnBack break; } - if (!item.isCheckable()) - drawerLayout.closeDrawer(drawerList); + drawerLayout.closeDrawer(drawerList); } }); PreferenceManager.getDefaultSharedPreferences(this).registerOnSharedPreferenceChangeListener(this); getSupportFragmentManager().addOnBackStackChangedListener(this); - updateDrawer(); + DB.getInstance(this).account().liveAccounts().observe(this, new Observer>() { + @Override + public void onChanged(@Nullable List accounts) { + ArrayAdapterDrawer drawerArray = new ArrayAdapterDrawer(ActivityView.this, R.layout.item_drawer); + + final Collator collator = Collator.getInstance(Locale.getDefault()); + collator.setStrength(Collator.SECONDARY); // Case insensitive, process accents etc + + Collections.sort(accounts, new Comparator() { + @Override + public int compare(EntityAccount a1, EntityAccount a2) { + return collator.compare(a1.name, a2.name); + } + }); + + for (EntityAccount account : accounts) + drawerArray.add(new DrawerItem(-1, R.drawable.baseline_folder_24, account.name, account.id)); + + drawerArray.add(new DrawerItem(ActivityView.this, R.drawable.baseline_settings_applications_24, R.string.menu_setup)); + if (getIntentFAQ().resolveActivity(getPackageManager()) != null) + drawerArray.add(new DrawerItem(ActivityView.this, R.drawable.baseline_question_answer_24, R.string.menu_faq)); + drawerArray.add(new DrawerItem(ActivityView.this, R.drawable.baseline_help_24, R.string.menu_about)); + + drawerList.setAdapter(drawerArray); + } + }); if (getSupportFragmentManager().getFragments().size() == 0) init(); @@ -216,20 +242,6 @@ public class ActivityView extends ActivityBase implements FragmentManager.OnBack init(); } - @Override - public boolean onCreateOptionsMenu(Menu menu) { - MenuInflater inflater = getMenuInflater(); - inflater.inflate(R.menu.menu_view, menu); - return true; - } - - @Override - public boolean onPrepareOptionsMenu(Menu menu) { - SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(this); - menu.findItem(R.id.menu_folders).setVisible(prefs.getBoolean("eula" , false)); - return super.onPrepareOptionsMenu(menu); - } - @Override public boolean onOptionsItemSelected(MenuItem item) { if (drawerToggle.onOptionsItemSelected(item)) @@ -239,9 +251,6 @@ public class ActivityView extends ActivityBase implements FragmentManager.OnBack case android.R.id.home: getSupportFragmentManager().popBackStack(); return true; - case R.id.menu_folders: - onMenuFolders(); - return true; default: return false; } @@ -280,26 +289,23 @@ public class ActivityView extends ActivityBase implements FragmentManager.OnBack } } - public void updateDrawer() { - ArrayAdapterDrawer drawerArray = new ArrayAdapterDrawer(this, R.layout.item_drawer); - drawerArray.add(new DrawerItem(ActivityView.this, R.string.menu_setup)); - if (getIntentFAQ().resolveActivity(getPackageManager()) != null) - drawerArray.add(new DrawerItem(ActivityView.this, R.string.menu_faq)); - drawerArray.add(new DrawerItem(ActivityView.this, R.string.menu_about)); - drawerList.setAdapter(drawerArray); - } - private Intent getIntentFAQ() { Intent intent = new Intent(Intent.ACTION_VIEW); intent.setData(Uri.parse("https://github.com/M66B/open-source-email/blob/master/FAQ.md")); return intent; } - private void onMenuFolders() { + private void onMenuFolders(long account) { getSupportFragmentManager().popBackStack("unified" , 0); + Bundle args = new Bundle(); + args.putLong("account" , account); + + FragmentFolders fragment = new FragmentFolders(); + fragment.setArguments(args); + FragmentTransaction fragmentTransaction = getSupportFragmentManager().beginTransaction(); - fragmentTransaction.replace(R.id.content_frame, new FragmentFolders()).addToBackStack("folders"); + fragmentTransaction.replace(R.id.content_frame, fragment).addToBackStack("folders"); fragmentTransaction.commit(); } @@ -319,38 +325,29 @@ public class ActivityView extends ActivityBase implements FragmentManager.OnBack private class DrawerItem { private int id; + private int icon; private String title; - private boolean checkable; - private boolean checked; + private Object data; - DrawerItem(Context context, int title) { + DrawerItem(Context context, int icon, int title) { this.id = title; + this.icon = icon; this.title = context.getString(title); - this.checkable = false; - this.checked = false; } - DrawerItem(Context context, int title, boolean checked) { - this.id = title; - this.title = context.getString(title); - this.checkable = true; - this.checked = checked; + DrawerItem(int id, int icon, String title, Object data) { + this.id = id; + this.icon = icon; + this.title = title; + this.data = data; } public int getId() { return this.id; } - public String getTitle() { - return this.title; - } - - public boolean isCheckable() { - return this.checkable; - } - - public boolean isChecked() { - return this.checked; + public Object getData() { + return this.data; } } @@ -372,11 +369,11 @@ public class ActivityView extends ActivityBase implements FragmentManager.OnBack DrawerItem item = getItem(position); + ImageView iv = row.findViewById(R.id.ivItem); TextView tv = row.findViewById(R.id.tvItem); - CheckBox cb = row.findViewById(R.id.cbItem); - tv.setText(item.getTitle()); - cb.setVisibility(item.isCheckable() ? View.VISIBLE : View.GONE); - cb.setChecked(item.isChecked()); + + iv.setImageResource(item.icon); + tv.setText(item.title); return row; } diff --git a/app/src/main/java/eu/faircode/email/AdapterFolder.java b/app/src/main/java/eu/faircode/email/AdapterFolder.java index 66a93eed..36f8e783 100644 --- a/app/src/main/java/eu/faircode/email/AdapterFolder.java +++ b/app/src/main/java/eu/faircode/email/AdapterFolder.java @@ -51,20 +51,20 @@ public class AdapterFolder extends RecyclerView.Adapter 0) + tvName.setText(context.getString(R.string.title_folder_unseen, name, folder.unseen)); + else + tvName.setText(name); tvName.setTypeface(null, folder.unseen > 0 ? Typeface.BOLD : Typeface.NORMAL); tvName.setTextColor(Helper.resolveColor(context, folder.unseen > 0 ? R.attr.colorUnread : android.R.attr.textColorSecondary)); - tvAfter.setText(Integer.toString(folder.after)); - tvAfter.setVisibility(folder.synchronize ? View.VISIBLE : View.INVISIBLE); - - ivSync.setVisibility(folder.synchronize ? View.VISIBLE : View.INVISIBLE); - - tvAccount.setText(folder.accountName); - tvAccount.setVisibility(EntityFolder.TYPE_OUTBOX.equals(folder.type) ? View.GONE : View.VISIBLE); + tvMessages.setText(Integer.toString(folder.messages)); int resid = context.getResources().getIdentifier( "title_folder_" + folder.type.toLowerCase(), "string" , context.getPackageName()); tvType.setText(resid > 0 ? context.getString(resid) : folder.type); + + tvAfter.setText(Integer.toString(folder.after)); + tvAfter.setVisibility(folder.synchronize ? View.VISIBLE : View.INVISIBLE); + + ivSync.setVisibility(folder.synchronize ? View.VISIBLE : View.INVISIBLE); } @Override diff --git a/app/src/main/java/eu/faircode/email/FragmentAbout.java b/app/src/main/java/eu/faircode/email/FragmentAbout.java index 5ca5a7d1..5d29936c 100644 --- a/app/src/main/java/eu/faircode/email/FragmentAbout.java +++ b/app/src/main/java/eu/faircode/email/FragmentAbout.java @@ -25,7 +25,6 @@ import android.support.annotation.NonNull; import android.support.annotation.Nullable; import android.util.Log; import android.view.LayoutInflater; -import android.view.Menu; import android.view.View; import android.view.ViewGroup; import android.widget.Button; @@ -45,7 +44,6 @@ public class FragmentAbout extends FragmentEx { @Nullable public View onCreateView(@NonNull LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) { setSubtitle(R.string.menu_about); - setHasOptionsMenu(true); View view = inflater.inflate(R.layout.fragment_about, container, false); @@ -97,9 +95,4 @@ public class FragmentAbout extends FragmentEx { return view; } - - @Override - public void onPrepareOptionsMenu(Menu menu) { - menu.clear(); - } } diff --git a/app/src/main/java/eu/faircode/email/FragmentFolders.java b/app/src/main/java/eu/faircode/email/FragmentFolders.java index a8feacca..ba1b3d83 100644 --- a/app/src/main/java/eu/faircode/email/FragmentFolders.java +++ b/app/src/main/java/eu/faircode/email/FragmentFolders.java @@ -28,7 +28,6 @@ import android.support.design.widget.FloatingActionButton; import android.support.v7.widget.LinearLayoutManager; import android.support.v7.widget.RecyclerView; import android.view.LayoutInflater; -import android.view.Menu; import android.view.View; import android.view.ViewGroup; import android.widget.ProgressBar; @@ -48,7 +47,6 @@ public class FragmentFolders extends FragmentEx { @Nullable public View onCreateView(@NonNull LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) { setSubtitle(R.string.title_list_folders); - setHasOptionsMenu(true); View view = inflater.inflate(R.layout.fragment_folders, container, false); @@ -94,9 +92,4 @@ public class FragmentFolders extends FragmentEx { return view; } - - @Override - public void onPrepareOptionsMenu(Menu menu) { - menu.clear(); - } } diff --git a/app/src/main/res/drawable-hdpi/baseline_help_black_18.png b/app/src/main/res/drawable-hdpi/baseline_help_black_18.png new file mode 100755 index 00000000..32634e62 Binary files /dev/null and b/app/src/main/res/drawable-hdpi/baseline_help_black_18.png differ diff --git a/app/src/main/res/drawable-hdpi/baseline_help_black_24.png b/app/src/main/res/drawable-hdpi/baseline_help_black_24.png new file mode 100755 index 00000000..5e282bce Binary files /dev/null and b/app/src/main/res/drawable-hdpi/baseline_help_black_24.png differ diff --git a/app/src/main/res/drawable-hdpi/baseline_help_black_36.png b/app/src/main/res/drawable-hdpi/baseline_help_black_36.png new file mode 100755 index 00000000..aea20a0b Binary files /dev/null and b/app/src/main/res/drawable-hdpi/baseline_help_black_36.png differ diff --git a/app/src/main/res/drawable-hdpi/baseline_help_black_48.png b/app/src/main/res/drawable-hdpi/baseline_help_black_48.png new file mode 100755 index 00000000..16ef4529 Binary files /dev/null and b/app/src/main/res/drawable-hdpi/baseline_help_black_48.png differ diff --git a/app/src/main/res/drawable-hdpi/baseline_help_white_18.png b/app/src/main/res/drawable-hdpi/baseline_help_white_18.png new file mode 100755 index 00000000..098fe4f4 Binary files /dev/null and b/app/src/main/res/drawable-hdpi/baseline_help_white_18.png differ diff --git a/app/src/main/res/drawable-hdpi/baseline_help_white_24.png b/app/src/main/res/drawable-hdpi/baseline_help_white_24.png new file mode 100755 index 00000000..2d022bf9 Binary files /dev/null and b/app/src/main/res/drawable-hdpi/baseline_help_white_24.png differ diff --git a/app/src/main/res/drawable-hdpi/baseline_help_white_36.png b/app/src/main/res/drawable-hdpi/baseline_help_white_36.png new file mode 100755 index 00000000..7555f3a8 Binary files /dev/null and b/app/src/main/res/drawable-hdpi/baseline_help_white_36.png differ diff --git a/app/src/main/res/drawable-hdpi/baseline_help_white_48.png b/app/src/main/res/drawable-hdpi/baseline_help_white_48.png new file mode 100755 index 00000000..0ea764fc Binary files /dev/null and b/app/src/main/res/drawable-hdpi/baseline_help_white_48.png differ diff --git a/app/src/main/res/drawable-hdpi/baseline_question_answer_black_18.png b/app/src/main/res/drawable-hdpi/baseline_question_answer_black_18.png new file mode 100755 index 00000000..5ea7e1c8 Binary files /dev/null and b/app/src/main/res/drawable-hdpi/baseline_question_answer_black_18.png differ diff --git a/app/src/main/res/drawable-hdpi/baseline_question_answer_black_24.png b/app/src/main/res/drawable-hdpi/baseline_question_answer_black_24.png new file mode 100755 index 00000000..3f46522a Binary files /dev/null and b/app/src/main/res/drawable-hdpi/baseline_question_answer_black_24.png differ diff --git a/app/src/main/res/drawable-hdpi/baseline_question_answer_black_36.png b/app/src/main/res/drawable-hdpi/baseline_question_answer_black_36.png new file mode 100755 index 00000000..1a8fc3f1 Binary files /dev/null and b/app/src/main/res/drawable-hdpi/baseline_question_answer_black_36.png differ diff --git a/app/src/main/res/drawable-hdpi/baseline_question_answer_black_48.png b/app/src/main/res/drawable-hdpi/baseline_question_answer_black_48.png new file mode 100755 index 00000000..859acc6a Binary files /dev/null and b/app/src/main/res/drawable-hdpi/baseline_question_answer_black_48.png differ diff --git a/app/src/main/res/drawable-hdpi/baseline_question_answer_white_18.png b/app/src/main/res/drawable-hdpi/baseline_question_answer_white_18.png new file mode 100755 index 00000000..5463f683 Binary files /dev/null and b/app/src/main/res/drawable-hdpi/baseline_question_answer_white_18.png differ diff --git a/app/src/main/res/drawable-hdpi/baseline_question_answer_white_24.png b/app/src/main/res/drawable-hdpi/baseline_question_answer_white_24.png new file mode 100755 index 00000000..67924a5a Binary files /dev/null and b/app/src/main/res/drawable-hdpi/baseline_question_answer_white_24.png differ diff --git a/app/src/main/res/drawable-hdpi/baseline_question_answer_white_36.png b/app/src/main/res/drawable-hdpi/baseline_question_answer_white_36.png new file mode 100755 index 00000000..586d4397 Binary files /dev/null and b/app/src/main/res/drawable-hdpi/baseline_question_answer_white_36.png differ diff --git a/app/src/main/res/drawable-hdpi/baseline_question_answer_white_48.png b/app/src/main/res/drawable-hdpi/baseline_question_answer_white_48.png new file mode 100755 index 00000000..255b8270 Binary files /dev/null and b/app/src/main/res/drawable-hdpi/baseline_question_answer_white_48.png differ diff --git a/app/src/main/res/drawable-hdpi/baseline_settings_applications_black_18.png b/app/src/main/res/drawable-hdpi/baseline_settings_applications_black_18.png new file mode 100755 index 00000000..6d5b2790 Binary files /dev/null and b/app/src/main/res/drawable-hdpi/baseline_settings_applications_black_18.png differ diff --git a/app/src/main/res/drawable-hdpi/baseline_settings_applications_black_24.png b/app/src/main/res/drawable-hdpi/baseline_settings_applications_black_24.png new file mode 100755 index 00000000..62643efc Binary files /dev/null and b/app/src/main/res/drawable-hdpi/baseline_settings_applications_black_24.png differ diff --git a/app/src/main/res/drawable-hdpi/baseline_settings_applications_black_36.png b/app/src/main/res/drawable-hdpi/baseline_settings_applications_black_36.png new file mode 100755 index 00000000..b4d05d45 Binary files /dev/null and b/app/src/main/res/drawable-hdpi/baseline_settings_applications_black_36.png differ diff --git a/app/src/main/res/drawable-hdpi/baseline_settings_applications_black_48.png b/app/src/main/res/drawable-hdpi/baseline_settings_applications_black_48.png new file mode 100755 index 00000000..dde108b6 Binary files /dev/null and b/app/src/main/res/drawable-hdpi/baseline_settings_applications_black_48.png differ diff --git a/app/src/main/res/drawable-hdpi/baseline_settings_applications_white_18.png b/app/src/main/res/drawable-hdpi/baseline_settings_applications_white_18.png new file mode 100755 index 00000000..d37cf84a Binary files /dev/null and b/app/src/main/res/drawable-hdpi/baseline_settings_applications_white_18.png differ diff --git a/app/src/main/res/drawable-hdpi/baseline_settings_applications_white_24.png b/app/src/main/res/drawable-hdpi/baseline_settings_applications_white_24.png new file mode 100755 index 00000000..be9f07a2 Binary files /dev/null and b/app/src/main/res/drawable-hdpi/baseline_settings_applications_white_24.png differ diff --git a/app/src/main/res/drawable-hdpi/baseline_settings_applications_white_36.png b/app/src/main/res/drawable-hdpi/baseline_settings_applications_white_36.png new file mode 100755 index 00000000..3af42f9e Binary files /dev/null and b/app/src/main/res/drawable-hdpi/baseline_settings_applications_white_36.png differ diff --git a/app/src/main/res/drawable-hdpi/baseline_settings_applications_white_48.png b/app/src/main/res/drawable-hdpi/baseline_settings_applications_white_48.png new file mode 100755 index 00000000..4c1aa8c0 Binary files /dev/null and b/app/src/main/res/drawable-hdpi/baseline_settings_applications_white_48.png differ diff --git a/app/src/main/res/drawable-mdpi/baseline_help_black_18.png b/app/src/main/res/drawable-mdpi/baseline_help_black_18.png new file mode 100755 index 00000000..295008fd Binary files /dev/null and b/app/src/main/res/drawable-mdpi/baseline_help_black_18.png differ diff --git a/app/src/main/res/drawable-mdpi/baseline_help_black_24.png b/app/src/main/res/drawable-mdpi/baseline_help_black_24.png new file mode 100755 index 00000000..1991c1e3 Binary files /dev/null and b/app/src/main/res/drawable-mdpi/baseline_help_black_24.png differ diff --git a/app/src/main/res/drawable-mdpi/baseline_help_black_36.png b/app/src/main/res/drawable-mdpi/baseline_help_black_36.png new file mode 100755 index 00000000..5e282bce Binary files /dev/null and b/app/src/main/res/drawable-mdpi/baseline_help_black_36.png differ diff --git a/app/src/main/res/drawable-mdpi/baseline_help_black_48.png b/app/src/main/res/drawable-mdpi/baseline_help_black_48.png new file mode 100755 index 00000000..4d6a2f52 Binary files /dev/null and b/app/src/main/res/drawable-mdpi/baseline_help_black_48.png differ diff --git a/app/src/main/res/drawable-mdpi/baseline_help_white_18.png b/app/src/main/res/drawable-mdpi/baseline_help_white_18.png new file mode 100755 index 00000000..c80c3ab3 Binary files /dev/null and b/app/src/main/res/drawable-mdpi/baseline_help_white_18.png differ diff --git a/app/src/main/res/drawable-mdpi/baseline_help_white_24.png b/app/src/main/res/drawable-mdpi/baseline_help_white_24.png new file mode 100755 index 00000000..9737d730 Binary files /dev/null and b/app/src/main/res/drawable-mdpi/baseline_help_white_24.png differ diff --git a/app/src/main/res/drawable-mdpi/baseline_help_white_36.png b/app/src/main/res/drawable-mdpi/baseline_help_white_36.png new file mode 100755 index 00000000..2d022bf9 Binary files /dev/null and b/app/src/main/res/drawable-mdpi/baseline_help_white_36.png differ diff --git a/app/src/main/res/drawable-mdpi/baseline_help_white_48.png b/app/src/main/res/drawable-mdpi/baseline_help_white_48.png new file mode 100755 index 00000000..657949a4 Binary files /dev/null and b/app/src/main/res/drawable-mdpi/baseline_help_white_48.png differ diff --git a/app/src/main/res/drawable-mdpi/baseline_question_answer_black_18.png b/app/src/main/res/drawable-mdpi/baseline_question_answer_black_18.png new file mode 100755 index 00000000..66da789b Binary files /dev/null and b/app/src/main/res/drawable-mdpi/baseline_question_answer_black_18.png differ diff --git a/app/src/main/res/drawable-mdpi/baseline_question_answer_black_24.png b/app/src/main/res/drawable-mdpi/baseline_question_answer_black_24.png new file mode 100755 index 00000000..d003d5e4 Binary files /dev/null and b/app/src/main/res/drawable-mdpi/baseline_question_answer_black_24.png differ diff --git a/app/src/main/res/drawable-mdpi/baseline_question_answer_black_36.png b/app/src/main/res/drawable-mdpi/baseline_question_answer_black_36.png new file mode 100755 index 00000000..3f46522a Binary files /dev/null and b/app/src/main/res/drawable-mdpi/baseline_question_answer_black_36.png differ diff --git a/app/src/main/res/drawable-mdpi/baseline_question_answer_black_48.png b/app/src/main/res/drawable-mdpi/baseline_question_answer_black_48.png new file mode 100755 index 00000000..9061029e Binary files /dev/null and b/app/src/main/res/drawable-mdpi/baseline_question_answer_black_48.png differ diff --git a/app/src/main/res/drawable-mdpi/baseline_question_answer_white_18.png b/app/src/main/res/drawable-mdpi/baseline_question_answer_white_18.png new file mode 100755 index 00000000..310adaac Binary files /dev/null and b/app/src/main/res/drawable-mdpi/baseline_question_answer_white_18.png differ diff --git a/app/src/main/res/drawable-mdpi/baseline_question_answer_white_24.png b/app/src/main/res/drawable-mdpi/baseline_question_answer_white_24.png new file mode 100755 index 00000000..e87df752 Binary files /dev/null and b/app/src/main/res/drawable-mdpi/baseline_question_answer_white_24.png differ diff --git a/app/src/main/res/drawable-mdpi/baseline_question_answer_white_36.png b/app/src/main/res/drawable-mdpi/baseline_question_answer_white_36.png new file mode 100755 index 00000000..67924a5a Binary files /dev/null and b/app/src/main/res/drawable-mdpi/baseline_question_answer_white_36.png differ diff --git a/app/src/main/res/drawable-mdpi/baseline_question_answer_white_48.png b/app/src/main/res/drawable-mdpi/baseline_question_answer_white_48.png new file mode 100755 index 00000000..731f89c8 Binary files /dev/null and b/app/src/main/res/drawable-mdpi/baseline_question_answer_white_48.png differ diff --git a/app/src/main/res/drawable-mdpi/baseline_settings_applications_black_18.png b/app/src/main/res/drawable-mdpi/baseline_settings_applications_black_18.png new file mode 100755 index 00000000..ddbb2cd3 Binary files /dev/null and b/app/src/main/res/drawable-mdpi/baseline_settings_applications_black_18.png differ diff --git a/app/src/main/res/drawable-mdpi/baseline_settings_applications_black_24.png b/app/src/main/res/drawable-mdpi/baseline_settings_applications_black_24.png new file mode 100755 index 00000000..b3da5785 Binary files /dev/null and b/app/src/main/res/drawable-mdpi/baseline_settings_applications_black_24.png differ diff --git a/app/src/main/res/drawable-mdpi/baseline_settings_applications_black_36.png b/app/src/main/res/drawable-mdpi/baseline_settings_applications_black_36.png new file mode 100755 index 00000000..62643efc Binary files /dev/null and b/app/src/main/res/drawable-mdpi/baseline_settings_applications_black_36.png differ diff --git a/app/src/main/res/drawable-mdpi/baseline_settings_applications_black_48.png b/app/src/main/res/drawable-mdpi/baseline_settings_applications_black_48.png new file mode 100755 index 00000000..6a75c2e2 Binary files /dev/null and b/app/src/main/res/drawable-mdpi/baseline_settings_applications_black_48.png differ diff --git a/app/src/main/res/drawable-mdpi/baseline_settings_applications_white_18.png b/app/src/main/res/drawable-mdpi/baseline_settings_applications_white_18.png new file mode 100755 index 00000000..e9e5a173 Binary files /dev/null and b/app/src/main/res/drawable-mdpi/baseline_settings_applications_white_18.png differ diff --git a/app/src/main/res/drawable-mdpi/baseline_settings_applications_white_24.png b/app/src/main/res/drawable-mdpi/baseline_settings_applications_white_24.png new file mode 100755 index 00000000..691c8e4e Binary files /dev/null and b/app/src/main/res/drawable-mdpi/baseline_settings_applications_white_24.png differ diff --git a/app/src/main/res/drawable-mdpi/baseline_settings_applications_white_36.png b/app/src/main/res/drawable-mdpi/baseline_settings_applications_white_36.png new file mode 100755 index 00000000..be9f07a2 Binary files /dev/null and b/app/src/main/res/drawable-mdpi/baseline_settings_applications_white_36.png differ diff --git a/app/src/main/res/drawable-mdpi/baseline_settings_applications_white_48.png b/app/src/main/res/drawable-mdpi/baseline_settings_applications_white_48.png new file mode 100755 index 00000000..5d7a1bce Binary files /dev/null and b/app/src/main/res/drawable-mdpi/baseline_settings_applications_white_48.png differ diff --git a/app/src/main/res/drawable-xhdpi/baseline_help_black_18.png b/app/src/main/res/drawable-xhdpi/baseline_help_black_18.png new file mode 100755 index 00000000..5e282bce Binary files /dev/null and b/app/src/main/res/drawable-xhdpi/baseline_help_black_18.png differ diff --git a/app/src/main/res/drawable-xhdpi/baseline_help_black_24.png b/app/src/main/res/drawable-xhdpi/baseline_help_black_24.png new file mode 100755 index 00000000..4d6a2f52 Binary files /dev/null and b/app/src/main/res/drawable-xhdpi/baseline_help_black_24.png differ diff --git a/app/src/main/res/drawable-xhdpi/baseline_help_black_36.png b/app/src/main/res/drawable-xhdpi/baseline_help_black_36.png new file mode 100755 index 00000000..16ef4529 Binary files /dev/null and b/app/src/main/res/drawable-xhdpi/baseline_help_black_36.png differ diff --git a/app/src/main/res/drawable-xhdpi/baseline_help_black_48.png b/app/src/main/res/drawable-xhdpi/baseline_help_black_48.png new file mode 100755 index 00000000..a469548d Binary files /dev/null and b/app/src/main/res/drawable-xhdpi/baseline_help_black_48.png differ diff --git a/app/src/main/res/drawable-xhdpi/baseline_help_white_18.png b/app/src/main/res/drawable-xhdpi/baseline_help_white_18.png new file mode 100755 index 00000000..2d022bf9 Binary files /dev/null and b/app/src/main/res/drawable-xhdpi/baseline_help_white_18.png differ diff --git a/app/src/main/res/drawable-xhdpi/baseline_help_white_24.png b/app/src/main/res/drawable-xhdpi/baseline_help_white_24.png new file mode 100755 index 00000000..657949a4 Binary files /dev/null and b/app/src/main/res/drawable-xhdpi/baseline_help_white_24.png differ diff --git a/app/src/main/res/drawable-xhdpi/baseline_help_white_36.png b/app/src/main/res/drawable-xhdpi/baseline_help_white_36.png new file mode 100755 index 00000000..0ea764fc Binary files /dev/null and b/app/src/main/res/drawable-xhdpi/baseline_help_white_36.png differ diff --git a/app/src/main/res/drawable-xhdpi/baseline_help_white_48.png b/app/src/main/res/drawable-xhdpi/baseline_help_white_48.png new file mode 100755 index 00000000..478a7856 Binary files /dev/null and b/app/src/main/res/drawable-xhdpi/baseline_help_white_48.png differ diff --git a/app/src/main/res/drawable-xhdpi/baseline_question_answer_black_18.png b/app/src/main/res/drawable-xhdpi/baseline_question_answer_black_18.png new file mode 100755 index 00000000..3f46522a Binary files /dev/null and b/app/src/main/res/drawable-xhdpi/baseline_question_answer_black_18.png differ diff --git a/app/src/main/res/drawable-xhdpi/baseline_question_answer_black_24.png b/app/src/main/res/drawable-xhdpi/baseline_question_answer_black_24.png new file mode 100755 index 00000000..9061029e Binary files /dev/null and b/app/src/main/res/drawable-xhdpi/baseline_question_answer_black_24.png differ diff --git a/app/src/main/res/drawable-xhdpi/baseline_question_answer_black_36.png b/app/src/main/res/drawable-xhdpi/baseline_question_answer_black_36.png new file mode 100755 index 00000000..859acc6a Binary files /dev/null and b/app/src/main/res/drawable-xhdpi/baseline_question_answer_black_36.png differ diff --git a/app/src/main/res/drawable-xhdpi/baseline_question_answer_black_48.png b/app/src/main/res/drawable-xhdpi/baseline_question_answer_black_48.png new file mode 100755 index 00000000..94942f6a Binary files /dev/null and b/app/src/main/res/drawable-xhdpi/baseline_question_answer_black_48.png differ diff --git a/app/src/main/res/drawable-xhdpi/baseline_question_answer_white_18.png b/app/src/main/res/drawable-xhdpi/baseline_question_answer_white_18.png new file mode 100755 index 00000000..67924a5a Binary files /dev/null and b/app/src/main/res/drawable-xhdpi/baseline_question_answer_white_18.png differ diff --git a/app/src/main/res/drawable-xhdpi/baseline_question_answer_white_24.png b/app/src/main/res/drawable-xhdpi/baseline_question_answer_white_24.png new file mode 100755 index 00000000..731f89c8 Binary files /dev/null and b/app/src/main/res/drawable-xhdpi/baseline_question_answer_white_24.png differ diff --git a/app/src/main/res/drawable-xhdpi/baseline_question_answer_white_36.png b/app/src/main/res/drawable-xhdpi/baseline_question_answer_white_36.png new file mode 100755 index 00000000..255b8270 Binary files /dev/null and b/app/src/main/res/drawable-xhdpi/baseline_question_answer_white_36.png differ diff --git a/app/src/main/res/drawable-xhdpi/baseline_question_answer_white_48.png b/app/src/main/res/drawable-xhdpi/baseline_question_answer_white_48.png new file mode 100755 index 00000000..0d697e0f Binary files /dev/null and b/app/src/main/res/drawable-xhdpi/baseline_question_answer_white_48.png differ diff --git a/app/src/main/res/drawable-xhdpi/baseline_settings_applications_black_18.png b/app/src/main/res/drawable-xhdpi/baseline_settings_applications_black_18.png new file mode 100755 index 00000000..62643efc Binary files /dev/null and b/app/src/main/res/drawable-xhdpi/baseline_settings_applications_black_18.png differ diff --git a/app/src/main/res/drawable-xhdpi/baseline_settings_applications_black_24.png b/app/src/main/res/drawable-xhdpi/baseline_settings_applications_black_24.png new file mode 100755 index 00000000..6a75c2e2 Binary files /dev/null and b/app/src/main/res/drawable-xhdpi/baseline_settings_applications_black_24.png differ diff --git a/app/src/main/res/drawable-xhdpi/baseline_settings_applications_black_36.png b/app/src/main/res/drawable-xhdpi/baseline_settings_applications_black_36.png new file mode 100755 index 00000000..dde108b6 Binary files /dev/null and b/app/src/main/res/drawable-xhdpi/baseline_settings_applications_black_36.png differ diff --git a/app/src/main/res/drawable-xhdpi/baseline_settings_applications_black_48.png b/app/src/main/res/drawable-xhdpi/baseline_settings_applications_black_48.png new file mode 100755 index 00000000..ec56814c Binary files /dev/null and b/app/src/main/res/drawable-xhdpi/baseline_settings_applications_black_48.png differ diff --git a/app/src/main/res/drawable-xhdpi/baseline_settings_applications_white_18.png b/app/src/main/res/drawable-xhdpi/baseline_settings_applications_white_18.png new file mode 100755 index 00000000..be9f07a2 Binary files /dev/null and b/app/src/main/res/drawable-xhdpi/baseline_settings_applications_white_18.png differ diff --git a/app/src/main/res/drawable-xhdpi/baseline_settings_applications_white_24.png b/app/src/main/res/drawable-xhdpi/baseline_settings_applications_white_24.png new file mode 100755 index 00000000..5d7a1bce Binary files /dev/null and b/app/src/main/res/drawable-xhdpi/baseline_settings_applications_white_24.png differ diff --git a/app/src/main/res/drawable-xhdpi/baseline_settings_applications_white_36.png b/app/src/main/res/drawable-xhdpi/baseline_settings_applications_white_36.png new file mode 100755 index 00000000..4c1aa8c0 Binary files /dev/null and b/app/src/main/res/drawable-xhdpi/baseline_settings_applications_white_36.png differ diff --git a/app/src/main/res/drawable-xhdpi/baseline_settings_applications_white_48.png b/app/src/main/res/drawable-xhdpi/baseline_settings_applications_white_48.png new file mode 100755 index 00000000..9bc146f8 Binary files /dev/null and b/app/src/main/res/drawable-xhdpi/baseline_settings_applications_white_48.png differ diff --git a/app/src/main/res/drawable-xxhdpi/baseline_help_black_18.png b/app/src/main/res/drawable-xxhdpi/baseline_help_black_18.png new file mode 100755 index 00000000..aea20a0b Binary files /dev/null and b/app/src/main/res/drawable-xxhdpi/baseline_help_black_18.png differ diff --git a/app/src/main/res/drawable-xxhdpi/baseline_help_black_24.png b/app/src/main/res/drawable-xxhdpi/baseline_help_black_24.png new file mode 100755 index 00000000..16ef4529 Binary files /dev/null and b/app/src/main/res/drawable-xxhdpi/baseline_help_black_24.png differ diff --git a/app/src/main/res/drawable-xxhdpi/baseline_help_black_36.png b/app/src/main/res/drawable-xxhdpi/baseline_help_black_36.png new file mode 100755 index 00000000..bad963e6 Binary files /dev/null and b/app/src/main/res/drawable-xxhdpi/baseline_help_black_36.png differ diff --git a/app/src/main/res/drawable-xxhdpi/baseline_help_black_48.png b/app/src/main/res/drawable-xxhdpi/baseline_help_black_48.png new file mode 100755 index 00000000..a0dbcb0f Binary files /dev/null and b/app/src/main/res/drawable-xxhdpi/baseline_help_black_48.png differ diff --git a/app/src/main/res/drawable-xxhdpi/baseline_help_white_18.png b/app/src/main/res/drawable-xxhdpi/baseline_help_white_18.png new file mode 100755 index 00000000..7555f3a8 Binary files /dev/null and b/app/src/main/res/drawable-xxhdpi/baseline_help_white_18.png differ diff --git a/app/src/main/res/drawable-xxhdpi/baseline_help_white_24.png b/app/src/main/res/drawable-xxhdpi/baseline_help_white_24.png new file mode 100755 index 00000000..0ea764fc Binary files /dev/null and b/app/src/main/res/drawable-xxhdpi/baseline_help_white_24.png differ diff --git a/app/src/main/res/drawable-xxhdpi/baseline_help_white_36.png b/app/src/main/res/drawable-xxhdpi/baseline_help_white_36.png new file mode 100755 index 00000000..32a0e941 Binary files /dev/null and b/app/src/main/res/drawable-xxhdpi/baseline_help_white_36.png differ diff --git a/app/src/main/res/drawable-xxhdpi/baseline_help_white_48.png b/app/src/main/res/drawable-xxhdpi/baseline_help_white_48.png new file mode 100755 index 00000000..efa2b955 Binary files /dev/null and b/app/src/main/res/drawable-xxhdpi/baseline_help_white_48.png differ diff --git a/app/src/main/res/drawable-xxhdpi/baseline_question_answer_black_18.png b/app/src/main/res/drawable-xxhdpi/baseline_question_answer_black_18.png new file mode 100755 index 00000000..1a8fc3f1 Binary files /dev/null and b/app/src/main/res/drawable-xxhdpi/baseline_question_answer_black_18.png differ diff --git a/app/src/main/res/drawable-xxhdpi/baseline_question_answer_black_24.png b/app/src/main/res/drawable-xxhdpi/baseline_question_answer_black_24.png new file mode 100755 index 00000000..859acc6a Binary files /dev/null and b/app/src/main/res/drawable-xxhdpi/baseline_question_answer_black_24.png differ diff --git a/app/src/main/res/drawable-xxhdpi/baseline_question_answer_black_36.png b/app/src/main/res/drawable-xxhdpi/baseline_question_answer_black_36.png new file mode 100755 index 00000000..b934d633 Binary files /dev/null and b/app/src/main/res/drawable-xxhdpi/baseline_question_answer_black_36.png differ diff --git a/app/src/main/res/drawable-xxhdpi/baseline_question_answer_black_48.png b/app/src/main/res/drawable-xxhdpi/baseline_question_answer_black_48.png new file mode 100755 index 00000000..41e461a6 Binary files /dev/null and b/app/src/main/res/drawable-xxhdpi/baseline_question_answer_black_48.png differ diff --git a/app/src/main/res/drawable-xxhdpi/baseline_question_answer_white_18.png b/app/src/main/res/drawable-xxhdpi/baseline_question_answer_white_18.png new file mode 100755 index 00000000..586d4397 Binary files /dev/null and b/app/src/main/res/drawable-xxhdpi/baseline_question_answer_white_18.png differ diff --git a/app/src/main/res/drawable-xxhdpi/baseline_question_answer_white_24.png b/app/src/main/res/drawable-xxhdpi/baseline_question_answer_white_24.png new file mode 100755 index 00000000..255b8270 Binary files /dev/null and b/app/src/main/res/drawable-xxhdpi/baseline_question_answer_white_24.png differ diff --git a/app/src/main/res/drawable-xxhdpi/baseline_question_answer_white_36.png b/app/src/main/res/drawable-xxhdpi/baseline_question_answer_white_36.png new file mode 100755 index 00000000..a2296a1a Binary files /dev/null and b/app/src/main/res/drawable-xxhdpi/baseline_question_answer_white_36.png differ diff --git a/app/src/main/res/drawable-xxhdpi/baseline_question_answer_white_48.png b/app/src/main/res/drawable-xxhdpi/baseline_question_answer_white_48.png new file mode 100755 index 00000000..8c2c774e Binary files /dev/null and b/app/src/main/res/drawable-xxhdpi/baseline_question_answer_white_48.png differ diff --git a/app/src/main/res/drawable-xxhdpi/baseline_settings_applications_black_18.png b/app/src/main/res/drawable-xxhdpi/baseline_settings_applications_black_18.png new file mode 100755 index 00000000..b4d05d45 Binary files /dev/null and b/app/src/main/res/drawable-xxhdpi/baseline_settings_applications_black_18.png differ diff --git a/app/src/main/res/drawable-xxhdpi/baseline_settings_applications_black_24.png b/app/src/main/res/drawable-xxhdpi/baseline_settings_applications_black_24.png new file mode 100755 index 00000000..dde108b6 Binary files /dev/null and b/app/src/main/res/drawable-xxhdpi/baseline_settings_applications_black_24.png differ diff --git a/app/src/main/res/drawable-xxhdpi/baseline_settings_applications_black_36.png b/app/src/main/res/drawable-xxhdpi/baseline_settings_applications_black_36.png new file mode 100755 index 00000000..08561899 Binary files /dev/null and b/app/src/main/res/drawable-xxhdpi/baseline_settings_applications_black_36.png differ diff --git a/app/src/main/res/drawable-xxhdpi/baseline_settings_applications_black_48.png b/app/src/main/res/drawable-xxhdpi/baseline_settings_applications_black_48.png new file mode 100755 index 00000000..efb61e70 Binary files /dev/null and b/app/src/main/res/drawable-xxhdpi/baseline_settings_applications_black_48.png differ diff --git a/app/src/main/res/drawable-xxhdpi/baseline_settings_applications_white_18.png b/app/src/main/res/drawable-xxhdpi/baseline_settings_applications_white_18.png new file mode 100755 index 00000000..3af42f9e Binary files /dev/null and b/app/src/main/res/drawable-xxhdpi/baseline_settings_applications_white_18.png differ diff --git a/app/src/main/res/drawable-xxhdpi/baseline_settings_applications_white_24.png b/app/src/main/res/drawable-xxhdpi/baseline_settings_applications_white_24.png new file mode 100755 index 00000000..4c1aa8c0 Binary files /dev/null and b/app/src/main/res/drawable-xxhdpi/baseline_settings_applications_white_24.png differ diff --git a/app/src/main/res/drawable-xxhdpi/baseline_settings_applications_white_36.png b/app/src/main/res/drawable-xxhdpi/baseline_settings_applications_white_36.png new file mode 100755 index 00000000..afc16734 Binary files /dev/null and b/app/src/main/res/drawable-xxhdpi/baseline_settings_applications_white_36.png differ diff --git a/app/src/main/res/drawable-xxhdpi/baseline_settings_applications_white_48.png b/app/src/main/res/drawable-xxhdpi/baseline_settings_applications_white_48.png new file mode 100755 index 00000000..2c237b6f Binary files /dev/null and b/app/src/main/res/drawable-xxhdpi/baseline_settings_applications_white_48.png differ diff --git a/app/src/main/res/drawable-xxxhdpi/baseline_help_black_18.png b/app/src/main/res/drawable-xxxhdpi/baseline_help_black_18.png new file mode 100755 index 00000000..16ef4529 Binary files /dev/null and b/app/src/main/res/drawable-xxxhdpi/baseline_help_black_18.png differ diff --git a/app/src/main/res/drawable-xxxhdpi/baseline_help_black_24.png b/app/src/main/res/drawable-xxxhdpi/baseline_help_black_24.png new file mode 100755 index 00000000..a469548d Binary files /dev/null and b/app/src/main/res/drawable-xxxhdpi/baseline_help_black_24.png differ diff --git a/app/src/main/res/drawable-xxxhdpi/baseline_help_black_36.png b/app/src/main/res/drawable-xxxhdpi/baseline_help_black_36.png new file mode 100755 index 00000000..a0dbcb0f Binary files /dev/null and b/app/src/main/res/drawable-xxxhdpi/baseline_help_black_36.png differ diff --git a/app/src/main/res/drawable-xxxhdpi/baseline_help_black_48.png b/app/src/main/res/drawable-xxxhdpi/baseline_help_black_48.png new file mode 100755 index 00000000..38765339 Binary files /dev/null and b/app/src/main/res/drawable-xxxhdpi/baseline_help_black_48.png differ diff --git a/app/src/main/res/drawable-xxxhdpi/baseline_help_white_18.png b/app/src/main/res/drawable-xxxhdpi/baseline_help_white_18.png new file mode 100755 index 00000000..0ea764fc Binary files /dev/null and b/app/src/main/res/drawable-xxxhdpi/baseline_help_white_18.png differ diff --git a/app/src/main/res/drawable-xxxhdpi/baseline_help_white_24.png b/app/src/main/res/drawable-xxxhdpi/baseline_help_white_24.png new file mode 100755 index 00000000..478a7856 Binary files /dev/null and b/app/src/main/res/drawable-xxxhdpi/baseline_help_white_24.png differ diff --git a/app/src/main/res/drawable-xxxhdpi/baseline_help_white_36.png b/app/src/main/res/drawable-xxxhdpi/baseline_help_white_36.png new file mode 100755 index 00000000..efa2b955 Binary files /dev/null and b/app/src/main/res/drawable-xxxhdpi/baseline_help_white_36.png differ diff --git a/app/src/main/res/drawable-xxxhdpi/baseline_help_white_48.png b/app/src/main/res/drawable-xxxhdpi/baseline_help_white_48.png new file mode 100755 index 00000000..8c655920 Binary files /dev/null and b/app/src/main/res/drawable-xxxhdpi/baseline_help_white_48.png differ diff --git a/app/src/main/res/drawable-xxxhdpi/baseline_question_answer_black_18.png b/app/src/main/res/drawable-xxxhdpi/baseline_question_answer_black_18.png new file mode 100755 index 00000000..859acc6a Binary files /dev/null and b/app/src/main/res/drawable-xxxhdpi/baseline_question_answer_black_18.png differ diff --git a/app/src/main/res/drawable-xxxhdpi/baseline_question_answer_black_24.png b/app/src/main/res/drawable-xxxhdpi/baseline_question_answer_black_24.png new file mode 100755 index 00000000..94942f6a Binary files /dev/null and b/app/src/main/res/drawable-xxxhdpi/baseline_question_answer_black_24.png differ diff --git a/app/src/main/res/drawable-xxxhdpi/baseline_question_answer_black_36.png b/app/src/main/res/drawable-xxxhdpi/baseline_question_answer_black_36.png new file mode 100755 index 00000000..41e461a6 Binary files /dev/null and b/app/src/main/res/drawable-xxxhdpi/baseline_question_answer_black_36.png differ diff --git a/app/src/main/res/drawable-xxxhdpi/baseline_question_answer_black_48.png b/app/src/main/res/drawable-xxxhdpi/baseline_question_answer_black_48.png new file mode 100755 index 00000000..15e811c6 Binary files /dev/null and b/app/src/main/res/drawable-xxxhdpi/baseline_question_answer_black_48.png differ diff --git a/app/src/main/res/drawable-xxxhdpi/baseline_question_answer_white_18.png b/app/src/main/res/drawable-xxxhdpi/baseline_question_answer_white_18.png new file mode 100755 index 00000000..255b8270 Binary files /dev/null and b/app/src/main/res/drawable-xxxhdpi/baseline_question_answer_white_18.png differ diff --git a/app/src/main/res/drawable-xxxhdpi/baseline_question_answer_white_24.png b/app/src/main/res/drawable-xxxhdpi/baseline_question_answer_white_24.png new file mode 100755 index 00000000..0d697e0f Binary files /dev/null and b/app/src/main/res/drawable-xxxhdpi/baseline_question_answer_white_24.png differ diff --git a/app/src/main/res/drawable-xxxhdpi/baseline_question_answer_white_36.png b/app/src/main/res/drawable-xxxhdpi/baseline_question_answer_white_36.png new file mode 100755 index 00000000..8c2c774e Binary files /dev/null and b/app/src/main/res/drawable-xxxhdpi/baseline_question_answer_white_36.png differ diff --git a/app/src/main/res/drawable-xxxhdpi/baseline_question_answer_white_48.png b/app/src/main/res/drawable-xxxhdpi/baseline_question_answer_white_48.png new file mode 100755 index 00000000..c6f403f1 Binary files /dev/null and b/app/src/main/res/drawable-xxxhdpi/baseline_question_answer_white_48.png differ diff --git a/app/src/main/res/drawable-xxxhdpi/baseline_settings_applications_black_18.png b/app/src/main/res/drawable-xxxhdpi/baseline_settings_applications_black_18.png new file mode 100755 index 00000000..dde108b6 Binary files /dev/null and b/app/src/main/res/drawable-xxxhdpi/baseline_settings_applications_black_18.png differ diff --git a/app/src/main/res/drawable-xxxhdpi/baseline_settings_applications_black_24.png b/app/src/main/res/drawable-xxxhdpi/baseline_settings_applications_black_24.png new file mode 100755 index 00000000..ec56814c Binary files /dev/null and b/app/src/main/res/drawable-xxxhdpi/baseline_settings_applications_black_24.png differ diff --git a/app/src/main/res/drawable-xxxhdpi/baseline_settings_applications_black_36.png b/app/src/main/res/drawable-xxxhdpi/baseline_settings_applications_black_36.png new file mode 100755 index 00000000..efb61e70 Binary files /dev/null and b/app/src/main/res/drawable-xxxhdpi/baseline_settings_applications_black_36.png differ diff --git a/app/src/main/res/drawable-xxxhdpi/baseline_settings_applications_black_48.png b/app/src/main/res/drawable-xxxhdpi/baseline_settings_applications_black_48.png new file mode 100755 index 00000000..148a505b Binary files /dev/null and b/app/src/main/res/drawable-xxxhdpi/baseline_settings_applications_black_48.png differ diff --git a/app/src/main/res/drawable-xxxhdpi/baseline_settings_applications_white_18.png b/app/src/main/res/drawable-xxxhdpi/baseline_settings_applications_white_18.png new file mode 100755 index 00000000..4c1aa8c0 Binary files /dev/null and b/app/src/main/res/drawable-xxxhdpi/baseline_settings_applications_white_18.png differ diff --git a/app/src/main/res/drawable-xxxhdpi/baseline_settings_applications_white_24.png b/app/src/main/res/drawable-xxxhdpi/baseline_settings_applications_white_24.png new file mode 100755 index 00000000..9bc146f8 Binary files /dev/null and b/app/src/main/res/drawable-xxxhdpi/baseline_settings_applications_white_24.png differ diff --git a/app/src/main/res/drawable-xxxhdpi/baseline_settings_applications_white_36.png b/app/src/main/res/drawable-xxxhdpi/baseline_settings_applications_white_36.png new file mode 100755 index 00000000..2c237b6f Binary files /dev/null and b/app/src/main/res/drawable-xxxhdpi/baseline_settings_applications_white_36.png differ diff --git a/app/src/main/res/drawable-xxxhdpi/baseline_settings_applications_white_48.png b/app/src/main/res/drawable-xxxhdpi/baseline_settings_applications_white_48.png new file mode 100755 index 00000000..70ea4468 Binary files /dev/null and b/app/src/main/res/drawable-xxxhdpi/baseline_settings_applications_white_48.png differ diff --git a/app/src/main/res/drawable/baseline_help_24.xml b/app/src/main/res/drawable/baseline_help_24.xml new file mode 100755 index 00000000..0f0039ca --- /dev/null +++ b/app/src/main/res/drawable/baseline_help_24.xml @@ -0,0 +1,10 @@ + + + diff --git a/app/src/main/res/drawable/baseline_question_answer_24.xml b/app/src/main/res/drawable/baseline_question_answer_24.xml new file mode 100755 index 00000000..41a3f8d9 --- /dev/null +++ b/app/src/main/res/drawable/baseline_question_answer_24.xml @@ -0,0 +1,10 @@ + + + diff --git a/app/src/main/res/drawable/baseline_settings_applications_24.xml b/app/src/main/res/drawable/baseline_settings_applications_24.xml new file mode 100755 index 00000000..05aec289 --- /dev/null +++ b/app/src/main/res/drawable/baseline_settings_applications_24.xml @@ -0,0 +1,10 @@ + + + diff --git a/app/src/main/res/layout/item_drawer.xml b/app/src/main/res/layout/item_drawer.xml index f10389c2..c51e455a 100644 --- a/app/src/main/res/layout/item_drawer.xml +++ b/app/src/main/res/layout/item_drawer.xml @@ -6,27 +6,26 @@ android:paddingEnd="?android:attr/listPreferredItemPaddingEnd" android:paddingStart="?android:attr/listPreferredItemPaddingStart"> + + - - \ No newline at end of file diff --git a/app/src/main/res/layout/item_folder.xml b/app/src/main/res/layout/item_folder.xml index f5b34bf6..f1f07dbb 100644 --- a/app/src/main/res/layout/item_folder.xml +++ b/app/src/main/res/layout/item_folder.xml @@ -14,52 +14,61 @@ android:ellipsize="start" android:text="Name" android:textAppearance="@style/TextAppearance.AppCompat.Medium" - app:layout_constraintBottom_toBottomOf="@+id/ivSync" + app:layout_constraintBottom_toBottomOf="@+id/ivMessages" app:layout_constraintEnd_toStartOf="@+id/tvAfter" app:layout_constraintStart_toStartOf="parent" - app:layout_constraintTop_toTopOf="@+id/ivSync" /> + app:layout_constraintTop_toTopOf="@+id/ivMessages" /> + app:layout_constraintBottom_toBottomOf="@+id/ivMessages" + app:layout_constraintEnd_toStartOf="@+id/ivMessages" + app:layout_constraintTop_toTopOf="@+id/ivMessages" /> + app:layout_constraintTop_toTopOf="@+id/ivSync" /> + + + app:layout_constraintTop_toBottomOf="@id/ivMessages" /> + app:layout_constraintTop_toBottomOf="@id/ivSync" /> \ No newline at end of file diff --git a/app/src/main/res/menu/menu_view.xml b/app/src/main/res/menu/menu_view.xml deleted file mode 100644 index c8686094..00000000 --- a/app/src/main/res/menu/menu_view.xml +++ /dev/null @@ -1,10 +0,0 @@ - - - - - diff --git a/app/src/main/res/values-af/strings.xml b/app/src/main/res/values-af/strings.xml index ef712259..d774b3c4 100644 --- a/app/src/main/res/values-af/strings.xml +++ b/app/src/main/res/values-af/strings.xml @@ -9,7 +9,6 @@ %1$d operation(s) pending %1$d new message(s) \'%1$s\' failed - Folders Setup FAQ About @@ -59,7 +58,6 @@ Password missing IDLE not supported Local drafts - %1$s (%2$d/%3$d) Synchronize (receive messages) Synchronize (days) Unified inbox @@ -104,7 +102,7 @@ Recipient missing Draft trashed Draft saved - Message queued + Sending message Long press item to edit properties Debug info Please describe the problem and indicate the time of the problem: diff --git a/app/src/main/res/values-ar-rBH/strings.xml b/app/src/main/res/values-ar-rBH/strings.xml index ef712259..d774b3c4 100644 --- a/app/src/main/res/values-ar-rBH/strings.xml +++ b/app/src/main/res/values-ar-rBH/strings.xml @@ -9,7 +9,6 @@ %1$d operation(s) pending %1$d new message(s) \'%1$s\' failed - Folders Setup FAQ About @@ -59,7 +58,6 @@ Password missing IDLE not supported Local drafts - %1$s (%2$d/%3$d) Synchronize (receive messages) Synchronize (days) Unified inbox @@ -104,7 +102,7 @@ Recipient missing Draft trashed Draft saved - Message queued + Sending message Long press item to edit properties Debug info Please describe the problem and indicate the time of the problem: diff --git a/app/src/main/res/values-ar-rEG/strings.xml b/app/src/main/res/values-ar-rEG/strings.xml index ef712259..d774b3c4 100644 --- a/app/src/main/res/values-ar-rEG/strings.xml +++ b/app/src/main/res/values-ar-rEG/strings.xml @@ -9,7 +9,6 @@ %1$d operation(s) pending %1$d new message(s) \'%1$s\' failed - Folders Setup FAQ About @@ -59,7 +58,6 @@ Password missing IDLE not supported Local drafts - %1$s (%2$d/%3$d) Synchronize (receive messages) Synchronize (days) Unified inbox @@ -104,7 +102,7 @@ Recipient missing Draft trashed Draft saved - Message queued + Sending message Long press item to edit properties Debug info Please describe the problem and indicate the time of the problem: diff --git a/app/src/main/res/values-ar-rSA/strings.xml b/app/src/main/res/values-ar-rSA/strings.xml index ef712259..d774b3c4 100644 --- a/app/src/main/res/values-ar-rSA/strings.xml +++ b/app/src/main/res/values-ar-rSA/strings.xml @@ -9,7 +9,6 @@ %1$d operation(s) pending %1$d new message(s) \'%1$s\' failed - Folders Setup FAQ About @@ -59,7 +58,6 @@ Password missing IDLE not supported Local drafts - %1$s (%2$d/%3$d) Synchronize (receive messages) Synchronize (days) Unified inbox @@ -104,7 +102,7 @@ Recipient missing Draft trashed Draft saved - Message queued + Sending message Long press item to edit properties Debug info Please describe the problem and indicate the time of the problem: diff --git a/app/src/main/res/values-ar-rYE/strings.xml b/app/src/main/res/values-ar-rYE/strings.xml index ef712259..d774b3c4 100644 --- a/app/src/main/res/values-ar-rYE/strings.xml +++ b/app/src/main/res/values-ar-rYE/strings.xml @@ -9,7 +9,6 @@ %1$d operation(s) pending %1$d new message(s) \'%1$s\' failed - Folders Setup FAQ About @@ -59,7 +58,6 @@ Password missing IDLE not supported Local drafts - %1$s (%2$d/%3$d) Synchronize (receive messages) Synchronize (days) Unified inbox @@ -104,7 +102,7 @@ Recipient missing Draft trashed Draft saved - Message queued + Sending message Long press item to edit properties Debug info Please describe the problem and indicate the time of the problem: diff --git a/app/src/main/res/values-ar/strings.xml b/app/src/main/res/values-ar/strings.xml index ef712259..d774b3c4 100644 --- a/app/src/main/res/values-ar/strings.xml +++ b/app/src/main/res/values-ar/strings.xml @@ -9,7 +9,6 @@ %1$d operation(s) pending %1$d new message(s) \'%1$s\' failed - Folders Setup FAQ About @@ -59,7 +58,6 @@ Password missing IDLE not supported Local drafts - %1$s (%2$d/%3$d) Synchronize (receive messages) Synchronize (days) Unified inbox @@ -104,7 +102,7 @@ Recipient missing Draft trashed Draft saved - Message queued + Sending message Long press item to edit properties Debug info Please describe the problem and indicate the time of the problem: diff --git a/app/src/main/res/values-ca/strings.xml b/app/src/main/res/values-ca/strings.xml index ef712259..d774b3c4 100644 --- a/app/src/main/res/values-ca/strings.xml +++ b/app/src/main/res/values-ca/strings.xml @@ -9,7 +9,6 @@ %1$d operation(s) pending %1$d new message(s) \'%1$s\' failed - Folders Setup FAQ About @@ -59,7 +58,6 @@ Password missing IDLE not supported Local drafts - %1$s (%2$d/%3$d) Synchronize (receive messages) Synchronize (days) Unified inbox @@ -104,7 +102,7 @@ Recipient missing Draft trashed Draft saved - Message queued + Sending message Long press item to edit properties Debug info Please describe the problem and indicate the time of the problem: diff --git a/app/src/main/res/values-cs/strings.xml b/app/src/main/res/values-cs/strings.xml index ef712259..d774b3c4 100644 --- a/app/src/main/res/values-cs/strings.xml +++ b/app/src/main/res/values-cs/strings.xml @@ -9,7 +9,6 @@ %1$d operation(s) pending %1$d new message(s) \'%1$s\' failed - Folders Setup FAQ About @@ -59,7 +58,6 @@ Password missing IDLE not supported Local drafts - %1$s (%2$d/%3$d) Synchronize (receive messages) Synchronize (days) Unified inbox @@ -104,7 +102,7 @@ Recipient missing Draft trashed Draft saved - Message queued + Sending message Long press item to edit properties Debug info Please describe the problem and indicate the time of the problem: diff --git a/app/src/main/res/values-da/strings.xml b/app/src/main/res/values-da/strings.xml index ef712259..d774b3c4 100644 --- a/app/src/main/res/values-da/strings.xml +++ b/app/src/main/res/values-da/strings.xml @@ -9,7 +9,6 @@ %1$d operation(s) pending %1$d new message(s) \'%1$s\' failed - Folders Setup FAQ About @@ -59,7 +58,6 @@ Password missing IDLE not supported Local drafts - %1$s (%2$d/%3$d) Synchronize (receive messages) Synchronize (days) Unified inbox @@ -104,7 +102,7 @@ Recipient missing Draft trashed Draft saved - Message queued + Sending message Long press item to edit properties Debug info Please describe the problem and indicate the time of the problem: diff --git a/app/src/main/res/values-de/strings.xml b/app/src/main/res/values-de/strings.xml index 876a0067..86acee3f 100644 --- a/app/src/main/res/values-de/strings.xml +++ b/app/src/main/res/values-de/strings.xml @@ -9,7 +9,6 @@ %1$d operation(s) pending %1$d neue Nachricht(en) \'%1$s\' fehlgeschlagen - Ordner Einstellungen FAQ About @@ -59,7 +58,6 @@ Password missing IDLE wird nicht unterstützt Lokale Entwürfe - %1$s (%2$d/%3$d) Synchronisiere (empfange E-Mails) Synchronisiere (Tage) Gemeinsamer Posteingang @@ -104,7 +102,7 @@ Empfänger fehlt Entwurf gelöscht Entwurf gespeichert - Message queued + Sending message Long press item to edit properties Debug info Please describe the problem and indicate the time of the problem: diff --git a/app/src/main/res/values-el/strings.xml b/app/src/main/res/values-el/strings.xml index ef712259..d774b3c4 100644 --- a/app/src/main/res/values-el/strings.xml +++ b/app/src/main/res/values-el/strings.xml @@ -9,7 +9,6 @@ %1$d operation(s) pending %1$d new message(s) \'%1$s\' failed - Folders Setup FAQ About @@ -59,7 +58,6 @@ Password missing IDLE not supported Local drafts - %1$s (%2$d/%3$d) Synchronize (receive messages) Synchronize (days) Unified inbox @@ -104,7 +102,7 @@ Recipient missing Draft trashed Draft saved - Message queued + Sending message Long press item to edit properties Debug info Please describe the problem and indicate the time of the problem: diff --git a/app/src/main/res/values-en/strings.xml b/app/src/main/res/values-en/strings.xml index ef712259..d774b3c4 100644 --- a/app/src/main/res/values-en/strings.xml +++ b/app/src/main/res/values-en/strings.xml @@ -9,7 +9,6 @@ %1$d operation(s) pending %1$d new message(s) \'%1$s\' failed - Folders Setup FAQ About @@ -59,7 +58,6 @@ Password missing IDLE not supported Local drafts - %1$s (%2$d/%3$d) Synchronize (receive messages) Synchronize (days) Unified inbox @@ -104,7 +102,7 @@ Recipient missing Draft trashed Draft saved - Message queued + Sending message Long press item to edit properties Debug info Please describe the problem and indicate the time of the problem: diff --git a/app/src/main/res/values-es-rES/strings.xml b/app/src/main/res/values-es-rES/strings.xml index ef712259..d774b3c4 100644 --- a/app/src/main/res/values-es-rES/strings.xml +++ b/app/src/main/res/values-es-rES/strings.xml @@ -9,7 +9,6 @@ %1$d operation(s) pending %1$d new message(s) \'%1$s\' failed - Folders Setup FAQ About @@ -59,7 +58,6 @@ Password missing IDLE not supported Local drafts - %1$s (%2$d/%3$d) Synchronize (receive messages) Synchronize (days) Unified inbox @@ -104,7 +102,7 @@ Recipient missing Draft trashed Draft saved - Message queued + Sending message Long press item to edit properties Debug info Please describe the problem and indicate the time of the problem: diff --git a/app/src/main/res/values-fi/strings.xml b/app/src/main/res/values-fi/strings.xml index ef712259..d774b3c4 100644 --- a/app/src/main/res/values-fi/strings.xml +++ b/app/src/main/res/values-fi/strings.xml @@ -9,7 +9,6 @@ %1$d operation(s) pending %1$d new message(s) \'%1$s\' failed - Folders Setup FAQ About @@ -59,7 +58,6 @@ Password missing IDLE not supported Local drafts - %1$s (%2$d/%3$d) Synchronize (receive messages) Synchronize (days) Unified inbox @@ -104,7 +102,7 @@ Recipient missing Draft trashed Draft saved - Message queued + Sending message Long press item to edit properties Debug info Please describe the problem and indicate the time of the problem: diff --git a/app/src/main/res/values-fr/strings.xml b/app/src/main/res/values-fr/strings.xml index ef712259..d774b3c4 100644 --- a/app/src/main/res/values-fr/strings.xml +++ b/app/src/main/res/values-fr/strings.xml @@ -9,7 +9,6 @@ %1$d operation(s) pending %1$d new message(s) \'%1$s\' failed - Folders Setup FAQ About @@ -59,7 +58,6 @@ Password missing IDLE not supported Local drafts - %1$s (%2$d/%3$d) Synchronize (receive messages) Synchronize (days) Unified inbox @@ -104,7 +102,7 @@ Recipient missing Draft trashed Draft saved - Message queued + Sending message Long press item to edit properties Debug info Please describe the problem and indicate the time of the problem: diff --git a/app/src/main/res/values-he/strings.xml b/app/src/main/res/values-he/strings.xml index ef712259..d774b3c4 100644 --- a/app/src/main/res/values-he/strings.xml +++ b/app/src/main/res/values-he/strings.xml @@ -9,7 +9,6 @@ %1$d operation(s) pending %1$d new message(s) \'%1$s\' failed - Folders Setup FAQ About @@ -59,7 +58,6 @@ Password missing IDLE not supported Local drafts - %1$s (%2$d/%3$d) Synchronize (receive messages) Synchronize (days) Unified inbox @@ -104,7 +102,7 @@ Recipient missing Draft trashed Draft saved - Message queued + Sending message Long press item to edit properties Debug info Please describe the problem and indicate the time of the problem: diff --git a/app/src/main/res/values-hu/strings.xml b/app/src/main/res/values-hu/strings.xml index ef712259..d774b3c4 100644 --- a/app/src/main/res/values-hu/strings.xml +++ b/app/src/main/res/values-hu/strings.xml @@ -9,7 +9,6 @@ %1$d operation(s) pending %1$d new message(s) \'%1$s\' failed - Folders Setup FAQ About @@ -59,7 +58,6 @@ Password missing IDLE not supported Local drafts - %1$s (%2$d/%3$d) Synchronize (receive messages) Synchronize (days) Unified inbox @@ -104,7 +102,7 @@ Recipient missing Draft trashed Draft saved - Message queued + Sending message Long press item to edit properties Debug info Please describe the problem and indicate the time of the problem: diff --git a/app/src/main/res/values-it/strings.xml b/app/src/main/res/values-it/strings.xml index ef712259..d774b3c4 100644 --- a/app/src/main/res/values-it/strings.xml +++ b/app/src/main/res/values-it/strings.xml @@ -9,7 +9,6 @@ %1$d operation(s) pending %1$d new message(s) \'%1$s\' failed - Folders Setup FAQ About @@ -59,7 +58,6 @@ Password missing IDLE not supported Local drafts - %1$s (%2$d/%3$d) Synchronize (receive messages) Synchronize (days) Unified inbox @@ -104,7 +102,7 @@ Recipient missing Draft trashed Draft saved - Message queued + Sending message Long press item to edit properties Debug info Please describe the problem and indicate the time of the problem: diff --git a/app/src/main/res/values-iw/strings.xml b/app/src/main/res/values-iw/strings.xml index ef712259..d774b3c4 100644 --- a/app/src/main/res/values-iw/strings.xml +++ b/app/src/main/res/values-iw/strings.xml @@ -9,7 +9,6 @@ %1$d operation(s) pending %1$d new message(s) \'%1$s\' failed - Folders Setup FAQ About @@ -59,7 +58,6 @@ Password missing IDLE not supported Local drafts - %1$s (%2$d/%3$d) Synchronize (receive messages) Synchronize (days) Unified inbox @@ -104,7 +102,7 @@ Recipient missing Draft trashed Draft saved - Message queued + Sending message Long press item to edit properties Debug info Please describe the problem and indicate the time of the problem: diff --git a/app/src/main/res/values-ja/strings.xml b/app/src/main/res/values-ja/strings.xml index ef712259..d774b3c4 100644 --- a/app/src/main/res/values-ja/strings.xml +++ b/app/src/main/res/values-ja/strings.xml @@ -9,7 +9,6 @@ %1$d operation(s) pending %1$d new message(s) \'%1$s\' failed - Folders Setup FAQ About @@ -59,7 +58,6 @@ Password missing IDLE not supported Local drafts - %1$s (%2$d/%3$d) Synchronize (receive messages) Synchronize (days) Unified inbox @@ -104,7 +102,7 @@ Recipient missing Draft trashed Draft saved - Message queued + Sending message Long press item to edit properties Debug info Please describe the problem and indicate the time of the problem: diff --git a/app/src/main/res/values-ko/strings.xml b/app/src/main/res/values-ko/strings.xml index ef712259..d774b3c4 100644 --- a/app/src/main/res/values-ko/strings.xml +++ b/app/src/main/res/values-ko/strings.xml @@ -9,7 +9,6 @@ %1$d operation(s) pending %1$d new message(s) \'%1$s\' failed - Folders Setup FAQ About @@ -59,7 +58,6 @@ Password missing IDLE not supported Local drafts - %1$s (%2$d/%3$d) Synchronize (receive messages) Synchronize (days) Unified inbox @@ -104,7 +102,7 @@ Recipient missing Draft trashed Draft saved - Message queued + Sending message Long press item to edit properties Debug info Please describe the problem and indicate the time of the problem: diff --git a/app/src/main/res/values-nb/strings.xml b/app/src/main/res/values-nb/strings.xml index ef712259..d774b3c4 100644 --- a/app/src/main/res/values-nb/strings.xml +++ b/app/src/main/res/values-nb/strings.xml @@ -9,7 +9,6 @@ %1$d operation(s) pending %1$d new message(s) \'%1$s\' failed - Folders Setup FAQ About @@ -59,7 +58,6 @@ Password missing IDLE not supported Local drafts - %1$s (%2$d/%3$d) Synchronize (receive messages) Synchronize (days) Unified inbox @@ -104,7 +102,7 @@ Recipient missing Draft trashed Draft saved - Message queued + Sending message Long press item to edit properties Debug info Please describe the problem and indicate the time of the problem: diff --git a/app/src/main/res/values-nl/strings.xml b/app/src/main/res/values-nl/strings.xml index ef712259..d774b3c4 100644 --- a/app/src/main/res/values-nl/strings.xml +++ b/app/src/main/res/values-nl/strings.xml @@ -9,7 +9,6 @@ %1$d operation(s) pending %1$d new message(s) \'%1$s\' failed - Folders Setup FAQ About @@ -59,7 +58,6 @@ Password missing IDLE not supported Local drafts - %1$s (%2$d/%3$d) Synchronize (receive messages) Synchronize (days) Unified inbox @@ -104,7 +102,7 @@ Recipient missing Draft trashed Draft saved - Message queued + Sending message Long press item to edit properties Debug info Please describe the problem and indicate the time of the problem: diff --git a/app/src/main/res/values-no/strings.xml b/app/src/main/res/values-no/strings.xml index ef712259..d774b3c4 100644 --- a/app/src/main/res/values-no/strings.xml +++ b/app/src/main/res/values-no/strings.xml @@ -9,7 +9,6 @@ %1$d operation(s) pending %1$d new message(s) \'%1$s\' failed - Folders Setup FAQ About @@ -59,7 +58,6 @@ Password missing IDLE not supported Local drafts - %1$s (%2$d/%3$d) Synchronize (receive messages) Synchronize (days) Unified inbox @@ -104,7 +102,7 @@ Recipient missing Draft trashed Draft saved - Message queued + Sending message Long press item to edit properties Debug info Please describe the problem and indicate the time of the problem: diff --git a/app/src/main/res/values-pl/strings.xml b/app/src/main/res/values-pl/strings.xml index ef712259..d774b3c4 100644 --- a/app/src/main/res/values-pl/strings.xml +++ b/app/src/main/res/values-pl/strings.xml @@ -9,7 +9,6 @@ %1$d operation(s) pending %1$d new message(s) \'%1$s\' failed - Folders Setup FAQ About @@ -59,7 +58,6 @@ Password missing IDLE not supported Local drafts - %1$s (%2$d/%3$d) Synchronize (receive messages) Synchronize (days) Unified inbox @@ -104,7 +102,7 @@ Recipient missing Draft trashed Draft saved - Message queued + Sending message Long press item to edit properties Debug info Please describe the problem and indicate the time of the problem: diff --git a/app/src/main/res/values-pt-rBR/strings.xml b/app/src/main/res/values-pt-rBR/strings.xml index ef712259..d23f5880 100644 --- a/app/src/main/res/values-pt-rBR/strings.xml +++ b/app/src/main/res/values-pt-rBR/strings.xml @@ -1,111 +1,109 @@ - Copyright Ⓒ 2018 by M. Bokhorst - Service - Notifications - Errors - Synchronizing %1$d account(s) - %1$d operation(s) pending - %1$d new message(s) - \'%1$s\' failed - Folders - Setup + Copyright Ⓒ 2018 por M. Bokhorst + Serviço + Notificações + Erros + Sincronizando %1$d conta(s) + %1$d operações pendentes + %1$d novas mensagens + \'%1$s\' falhou + Configurar FAQ - About - I agree - I disagree - Version %1$s - Accounts - Identities - Folders - Edit account - Edit identity - Edit folder - Setup - Manage accounts - To receive email - Manage identities - To send email - Grant permissions - To read contacts (optional) - Done - Dark theme - Debug - Your name - Your email address - Reply to address - Optional - Account name - Used to differentiate folders + Sobre + Eu concordo + Eu discordo + Versão %1$s + Contas + Identidades + Pastas + Editar conta + Editar identidade + Editar pasta + Configurar + Gerenciar contas + Receber e-mail + Gerenciar identidades + Para enviar e-mail + Garantir permissões + Para ler os contatos (opcional) + Feito + Tema escuro + Depurar + Seu nome + Seu endereço de e-mail + Resposta para o endereço + Opcional + Nome da conta + Usada para diferenciar pastas IMAP SMTP - Provider - Custom - Host name + Provedor + Personalizado + Nome do servidor STARTTLS - Port number - User name - Password - Synchronize (receive messages) - Synchronize (send messages) - Primary (used to store drafts) - Primary (default identity) - Name mandatory - Email address mandatory - Host name missing - Port number missing - User name missing - Password missing - IDLE not supported - Local drafts - %1$s (%2$d/%3$d) - Synchronize (receive messages) - Synchronize (days) - Unified inbox - Inbox - Outbox - Archive - Drafts - Trash + Número da porta + Nome de usuário + Senha + Sincronizar (receber mensagens) + Sincronizar (enviar mensagens) + Primária (usada para armazenar rascunhos) + Primária (identidade padrão) + Nome obrigatório + Endereço de e-mail obrigatório + Nome do servidor faltante + Número da porta faltante + Nome do usuário faltante + Senha faltante + IDLE não suportado + Rascunhos locais + Sincronizar (receber mensagens) + Sincronizar (dias) + Caixa de entrada unificada + Caixa de entrada + Caixa de saída + Arquivo + Rascunhos + Lixeira Spam - Sent - User - Message thread - No messages + Enviado + Usuário + Tópico da mensagem + Sem mensagens link - image + imagem Re: %1$s - Fwd: %1$s - Thread - Read - Unread - Forward - Reply to all - Trash + Enc: %1$s + Tópico + Lida + Não lida + Encaminhar + Responder a todos + Lixeira Spam - Move - Archive - Reply - No viewer app available - Delete message permanently? - Report message as spam? - Compose - From: - To: + Mover + Arquivar + Responder + Sem aplicativo visualizador + Deletar mensagem permanentemente? + Reportar mensagem com spam? + Escrever + De: + Para: CC: BCC: - Subject: - Your message - Save - Send - No primary account or no drafts folder - Sender missing - Recipient missing - Draft trashed - Draft saved - Message queued - Long press item to edit properties - Debug info - Please describe the problem and indicate the time of the problem: + Assunto: + Sua mensagem + Salvar + Enviar + Sem conta primária ou sem pasta de rascunhos + Remetente faltante + Destinatário faltante + Rascunho excluído + Rascunho salvo + Sending message + Pressione e segure o item para editar suas propriedades + Informações de depuração + Por favor, descreva o problema e indique o momento em que ocorrera: diff --git a/app/src/main/res/values-pt-rPT/strings.xml b/app/src/main/res/values-pt-rPT/strings.xml index ef712259..d774b3c4 100644 --- a/app/src/main/res/values-pt-rPT/strings.xml +++ b/app/src/main/res/values-pt-rPT/strings.xml @@ -9,7 +9,6 @@ %1$d operation(s) pending %1$d new message(s) \'%1$s\' failed - Folders Setup FAQ About @@ -59,7 +58,6 @@ Password missing IDLE not supported Local drafts - %1$s (%2$d/%3$d) Synchronize (receive messages) Synchronize (days) Unified inbox @@ -104,7 +102,7 @@ Recipient missing Draft trashed Draft saved - Message queued + Sending message Long press item to edit properties Debug info Please describe the problem and indicate the time of the problem: diff --git a/app/src/main/res/values-ro/strings.xml b/app/src/main/res/values-ro/strings.xml index 08b714f1..da433ab4 100644 --- a/app/src/main/res/values-ro/strings.xml +++ b/app/src/main/res/values-ro/strings.xml @@ -1,7 +1,7 @@ - Copyright Ⓒ 2018 by M. Bokhorst + Drepturi de autor Ⓒ 2018 de M. Bokhorst Serviciu Notificări Erori @@ -9,13 +9,12 @@ %1$d operații în așteptare %1$d mesaje noi \'%1$s\' a eșuat - Dosare Setări - FAQ - About + Întrebări frecvente + Despre Sunt de acord Nu sunt de acord - Version %1$s + Versiunea %1$s Conturi Identități Dosare @@ -23,21 +22,21 @@ Editare identitate Editare dosar Setări - Manage accounts + Gestionarea conturilor Pentru a primi e-mail - Manage identities + Gestionarea identităţilor Pentru a trimite e-mail Acordă permisiuni Pentru a citi contactele (opțional) Gata Temă întunecată - Debug + Depanare Numele dumneavoastră Adresa dvs. de e-mail Răspuns la adresa Opțional Nume cont - Used to differentiate folders + Folosit la diferențierea dosarelor IMAP SMTP Furnizor @@ -53,13 +52,12 @@ Primară (identitatea implicită) Numele este obligatoriu Adresa de e-mail este obligatorie - Host name missing - Port number missing - User name missing - Password missing + Lipsește numele serverului + Lipsește numărul portului + Lipsește numele de utilizator + Lipsește parola IDLE nu este suportat Ciorne locale - %1$s (%2$d/%3$d) Sincronizare (primire mesaje) Sincronizare (zile) Căsuță poștală comună @@ -104,8 +102,8 @@ Destinatar lipsă Ciornă trimisă la gunoi Ciornă salvată - Mesaj pus în coada de așteptare + Expediere mesaj Apăsați lung pentru a edita proprietățile - Debug info - Please describe the problem and indicate the time of the problem: + Depanare + Va rog sa descrieți problema și să indicați momentul când s-a produs: diff --git a/app/src/main/res/values-ru/strings.xml b/app/src/main/res/values-ru/strings.xml index ef712259..d774b3c4 100644 --- a/app/src/main/res/values-ru/strings.xml +++ b/app/src/main/res/values-ru/strings.xml @@ -9,7 +9,6 @@ %1$d operation(s) pending %1$d new message(s) \'%1$s\' failed - Folders Setup FAQ About @@ -59,7 +58,6 @@ Password missing IDLE not supported Local drafts - %1$s (%2$d/%3$d) Synchronize (receive messages) Synchronize (days) Unified inbox @@ -104,7 +102,7 @@ Recipient missing Draft trashed Draft saved - Message queued + Sending message Long press item to edit properties Debug info Please describe the problem and indicate the time of the problem: diff --git a/app/src/main/res/values-sr/strings.xml b/app/src/main/res/values-sr/strings.xml index ef712259..d774b3c4 100644 --- a/app/src/main/res/values-sr/strings.xml +++ b/app/src/main/res/values-sr/strings.xml @@ -9,7 +9,6 @@ %1$d operation(s) pending %1$d new message(s) \'%1$s\' failed - Folders Setup FAQ About @@ -59,7 +58,6 @@ Password missing IDLE not supported Local drafts - %1$s (%2$d/%3$d) Synchronize (receive messages) Synchronize (days) Unified inbox @@ -104,7 +102,7 @@ Recipient missing Draft trashed Draft saved - Message queued + Sending message Long press item to edit properties Debug info Please describe the problem and indicate the time of the problem: diff --git a/app/src/main/res/values-sv-rSE/strings.xml b/app/src/main/res/values-sv-rSE/strings.xml index ef712259..d774b3c4 100644 --- a/app/src/main/res/values-sv-rSE/strings.xml +++ b/app/src/main/res/values-sv-rSE/strings.xml @@ -9,7 +9,6 @@ %1$d operation(s) pending %1$d new message(s) \'%1$s\' failed - Folders Setup FAQ About @@ -59,7 +58,6 @@ Password missing IDLE not supported Local drafts - %1$s (%2$d/%3$d) Synchronize (receive messages) Synchronize (days) Unified inbox @@ -104,7 +102,7 @@ Recipient missing Draft trashed Draft saved - Message queued + Sending message Long press item to edit properties Debug info Please describe the problem and indicate the time of the problem: diff --git a/app/src/main/res/values-tr/strings.xml b/app/src/main/res/values-tr/strings.xml index ef712259..d774b3c4 100644 --- a/app/src/main/res/values-tr/strings.xml +++ b/app/src/main/res/values-tr/strings.xml @@ -9,7 +9,6 @@ %1$d operation(s) pending %1$d new message(s) \'%1$s\' failed - Folders Setup FAQ About @@ -59,7 +58,6 @@ Password missing IDLE not supported Local drafts - %1$s (%2$d/%3$d) Synchronize (receive messages) Synchronize (days) Unified inbox @@ -104,7 +102,7 @@ Recipient missing Draft trashed Draft saved - Message queued + Sending message Long press item to edit properties Debug info Please describe the problem and indicate the time of the problem: diff --git a/app/src/main/res/values-uk/strings.xml b/app/src/main/res/values-uk/strings.xml index ef712259..d774b3c4 100644 --- a/app/src/main/res/values-uk/strings.xml +++ b/app/src/main/res/values-uk/strings.xml @@ -9,7 +9,6 @@ %1$d operation(s) pending %1$d new message(s) \'%1$s\' failed - Folders Setup FAQ About @@ -59,7 +58,6 @@ Password missing IDLE not supported Local drafts - %1$s (%2$d/%3$d) Synchronize (receive messages) Synchronize (days) Unified inbox @@ -104,7 +102,7 @@ Recipient missing Draft trashed Draft saved - Message queued + Sending message Long press item to edit properties Debug info Please describe the problem and indicate the time of the problem: diff --git a/app/src/main/res/values-vi/strings.xml b/app/src/main/res/values-vi/strings.xml index ef712259..d774b3c4 100644 --- a/app/src/main/res/values-vi/strings.xml +++ b/app/src/main/res/values-vi/strings.xml @@ -9,7 +9,6 @@ %1$d operation(s) pending %1$d new message(s) \'%1$s\' failed - Folders Setup FAQ About @@ -59,7 +58,6 @@ Password missing IDLE not supported Local drafts - %1$s (%2$d/%3$d) Synchronize (receive messages) Synchronize (days) Unified inbox @@ -104,7 +102,7 @@ Recipient missing Draft trashed Draft saved - Message queued + Sending message Long press item to edit properties Debug info Please describe the problem and indicate the time of the problem: diff --git a/app/src/main/res/values-zh-rCN/strings.xml b/app/src/main/res/values-zh-rCN/strings.xml index ef712259..d774b3c4 100644 --- a/app/src/main/res/values-zh-rCN/strings.xml +++ b/app/src/main/res/values-zh-rCN/strings.xml @@ -9,7 +9,6 @@ %1$d operation(s) pending %1$d new message(s) \'%1$s\' failed - Folders Setup FAQ About @@ -59,7 +58,6 @@ Password missing IDLE not supported Local drafts - %1$s (%2$d/%3$d) Synchronize (receive messages) Synchronize (days) Unified inbox @@ -104,7 +102,7 @@ Recipient missing Draft trashed Draft saved - Message queued + Sending message Long press item to edit properties Debug info Please describe the problem and indicate the time of the problem: diff --git a/app/src/main/res/values-zh-rTW/strings.xml b/app/src/main/res/values-zh-rTW/strings.xml index ef712259..d774b3c4 100644 --- a/app/src/main/res/values-zh-rTW/strings.xml +++ b/app/src/main/res/values-zh-rTW/strings.xml @@ -9,7 +9,6 @@ %1$d operation(s) pending %1$d new message(s) \'%1$s\' failed - Folders Setup FAQ About @@ -59,7 +58,6 @@ Password missing IDLE not supported Local drafts - %1$s (%2$d/%3$d) Synchronize (receive messages) Synchronize (days) Unified inbox @@ -104,7 +102,7 @@ Recipient missing Draft trashed Draft saved - Message queued + Sending message Long press item to edit properties Debug info Please describe the problem and indicate the time of the problem: diff --git a/app/src/main/res/values/strings.xml b/app/src/main/res/values/strings.xml index 46372f6e..800035a7 100644 --- a/app/src/main/res/values/strings.xml +++ b/app/src/main/res/values/strings.xml @@ -12,7 +12,6 @@ %1$d new message(s) \'%1$s\' failed - Folders Setup FAQ About @@ -69,7 +68,7 @@ IDLE not supported Local drafts - %1$s (%2$d/%3$d) + %1$s (%2$d) Synchronize (receive messages) Synchronize (days)