Add new text strings

This commit is contained in:
Pavel Baksy 2024-02-09 20:45:41 +01:00
parent a2ac02f592
commit 450aebe42e
3 changed files with 20 additions and 4 deletions

View File

@ -3,7 +3,20 @@
<component name="deploymentTargetDropDown">
<value>
<entry key="app">
<State />
<State>
<targetSelectedWithDropDown>
<Target>
<type value="QUICK_BOOT_TARGET" />
<deviceKey>
<Key>
<type value="VIRTUAL_DEVICE_PATH" />
<value value="$USER_HOME$/.var/app/com.google.AndroidStudio/config/.android/avd/Pixel_6_API_34.avd" />
</Key>
</deviceKey>
</Target>
</targetSelectedWithDropDown>
<timeTargetWasSelectedWithDropDown value="2024-02-09T00:36:50.671529876Z" />
</State>
</entry>
</value>
</component>

View File

@ -30,7 +30,7 @@
android:id="@+id/passwordLengthLabel"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Password Length"
android:text="@string/textview_password_length"
android:layout_marginTop="32dp"
app:layout_constraintBottom_toTopOf="@id/switchWithoutSpaces"
app:layout_constraintStart_toStartOf="parent"/>
@ -48,7 +48,7 @@
android:id="@+id/switchWithoutSpaces"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Copy Without Spaces"
android:text="@string/switch_without_spaces"
android:layout_marginTop="16dp"
app:layout_constraintBottom_toTopOf="@id/switchSpecialChars"
app:layout_constraintStart_toStartOf="parent"
@ -58,7 +58,7 @@
android:id="@+id/switchSpecialChars"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Add Special Characters"
android:text="@string/switch_special_characters"
android:layout_marginTop="16dp"
app:layout_constraintBottom_toTopOf="@id/generateButton"
app:layout_constraintStart_toStartOf="parent"

View File

@ -2,4 +2,7 @@
<string name="app_name">Password Zebra</string>
<string name="generate_button_text">Generate</string>
<string name="info_text">Tap to copy password to clipboard</string>
<string name="textview_password_length">Password Length</string>
<string name="switch_without_spaces">Copy Without Spaces</string>
<string name="switch_special_characters">Add Special Characters</string>
</resources>