Fix string
This commit is contained in:
parent
8c884bcba8
commit
5263ed10bb
3 changed files with 5 additions and 2 deletions
|
@ -40,7 +40,8 @@ public class AutofillFragment extends DialogFragment {
|
|||
final AutofillPreferenceActivity callingActivity = (AutofillPreferenceActivity) getActivity();
|
||||
LayoutInflater inflater = callingActivity.getLayoutInflater();
|
||||
|
||||
final View view = inflater.inflate(R.layout.fragment_autofill, null);
|
||||
final View view = View.inflate(callingActivity.getApplicationContext()
|
||||
, R.layout.fragment_autofill, null);
|
||||
|
||||
builder.setView(view);
|
||||
|
||||
|
|
|
@ -167,6 +167,7 @@
|
|||
<string name="autofill_fill">Vyplnit</string>
|
||||
<string name="autofill_apps_default">Použít výchozí nastavení</string>
|
||||
<string name="autofill_apps_first">Automaticky spárovat</string>
|
||||
<string name="autofill_apps_match_ellipsis">Spárovat s</string>
|
||||
<string name="autofill_apps_match_ellipsis">Spárovat s…</string>
|
||||
<string name="autofill_apps_match">Spárovat s</string>
|
||||
<string name="autofill_apps_never">Nikdy nepárovat</string>
|
||||
</resources>
|
|
@ -167,6 +167,7 @@
|
|||
<string name="autofill_fill">Fill</string>
|
||||
<string name="autofill_apps_default">Use default setting</string>
|
||||
<string name="autofill_apps_first">Automatically match</string>
|
||||
<string name="autofill_apps_match_ellipsis">Match with…</string>
|
||||
<string name="autofill_apps_match">Match with</string>
|
||||
<string name="autofill_apps_never">Never match</string>
|
||||
<string name="autofill_webname_hint">Name</string>
|
||||
|
|
Loading…
Reference in a new issue