mirror of
https://github.com/bitwarden/android.git
synced 2024-11-01 07:35:52 +03:00
Tweaks to autofill tile naming & fixed missing plus icon (#819)
This commit is contained in:
parent
44999557c0
commit
d635555576
4 changed files with 5 additions and 4 deletions
|
@ -16,8 +16,8 @@
|
||||||
<string name="PasswordGenerator">
|
<string name="PasswordGenerator">
|
||||||
Password Generator
|
Password Generator
|
||||||
</string>
|
</string>
|
||||||
<string name="ScanAndFill">
|
<string name="AutoFillTile">
|
||||||
Scan & Fill
|
Auto-fill
|
||||||
</string>
|
</string>
|
||||||
<string name="SelfHostedServerUrl">
|
<string name="SelfHostedServerUrl">
|
||||||
Self-hosted server URL
|
Self-hosted server URL
|
||||||
|
|
|
@ -12,7 +12,7 @@ using Java.Lang;
|
||||||
|
|
||||||
namespace Bit.Droid.Tile
|
namespace Bit.Droid.Tile
|
||||||
{
|
{
|
||||||
[Service(Permission = Manifest.Permission.BindQuickSettingsTile, Label = "@string/ScanAndFill",
|
[Service(Permission = Manifest.Permission.BindQuickSettingsTile, Label = "@string/AutoFillTile",
|
||||||
Icon = "@drawable/shield")]
|
Icon = "@drawable/shield")]
|
||||||
[IntentFilter(new string[] { ActionQsTile })]
|
[IntentFilter(new string[] { ActionQsTile })]
|
||||||
[Register("com.x8bit.bitwarden.AutofillTileService")]
|
[Register("com.x8bit.bitwarden.AutofillTileService")]
|
||||||
|
|
|
@ -96,6 +96,7 @@
|
||||||
</ContentView>
|
</ContentView>
|
||||||
<Button
|
<Button
|
||||||
x:Name="_fab"
|
x:Name="_fab"
|
||||||
|
Image="plus.png"
|
||||||
Clicked="AddButton_Clicked"
|
Clicked="AddButton_Clicked"
|
||||||
Style="{StaticResource btn-fab}"
|
Style="{StaticResource btn-fab}"
|
||||||
AbsoluteLayout.LayoutFlags="PositionProportional"
|
AbsoluteLayout.LayoutFlags="PositionProportional"
|
||||||
|
|
|
@ -1626,7 +1626,7 @@
|
||||||
<value>Attachment saved successfully</value>
|
<value>Attachment saved successfully</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="AutofillTileAccessibilityRequired" xml:space="preserve">
|
<data name="AutofillTileAccessibilityRequired" xml:space="preserve">
|
||||||
<value>Please enable "Auto-fill Accessibility Service" from Bitwarden Settings to use the Scan & Fill tile.</value>
|
<value>Please enable "Auto-fill Accessibility Service" from Bitwarden Settings to use the Auto-fill tile.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="AutofillTileUriNotFound" xml:space="preserve">
|
<data name="AutofillTileUriNotFound" xml:space="preserve">
|
||||||
<value>No password fields detected</value>
|
<value>No password fields detected</value>
|
||||||
|
|
Loading…
Reference in a new issue