mirror of
https://github.com/android-password-store/Android-Password-Store.git
synced 2025-09-07 16:09:38 +02:00
added missing internatinalisation for pwgen (#256)
This commit is contained in:
parent
8d5473a543
commit
982f641142
|
@ -80,7 +80,7 @@
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginBottom="8dp"
|
android:layout_marginBottom="8dp"
|
||||||
android:text="Length"
|
android:text="@string/pwgen_length"
|
||||||
android:textAppearance="?android:attr/textAppearanceSmall" />
|
android:textAppearance="?android:attr/textAppearanceSmall" />
|
||||||
|
|
||||||
<EditText
|
<EditText
|
||||||
|
@ -95,11 +95,11 @@
|
||||||
android:id="@+id/pronounceable"
|
android:id="@+id/pronounceable"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:text="Pronounceable" />
|
android:text="@string/pwgen_pronounceable" />
|
||||||
|
|
||||||
</LinearLayout>
|
</LinearLayout>
|
||||||
|
|
||||||
|
|
||||||
</LinearLayout>
|
</LinearLayout>
|
||||||
</LinearLayout>
|
</LinearLayout>
|
||||||
</ScrollView>
|
</ScrollView>
|
||||||
|
|
|
@ -137,10 +137,12 @@
|
||||||
<!-- pwgen fragment -->
|
<!-- pwgen fragment -->
|
||||||
<string name="pwgen_generate">Generate</string>
|
<string name="pwgen_generate">Generate</string>
|
||||||
<string name="pwgen_include">Include</string>
|
<string name="pwgen_include">Include</string>
|
||||||
|
<string name="pwgen_length">Length</string>
|
||||||
<string name="pwgen_numerals">Numerals</string>
|
<string name="pwgen_numerals">Numerals</string>
|
||||||
<string name="pwgen_symbols">Symbols</string>
|
<string name="pwgen_symbols">Symbols</string>
|
||||||
<string name="pwgen_uppercase">Uppercase</string>
|
<string name="pwgen_uppercase">Uppercase</string>
|
||||||
<string name="pwgen_ambiguous">Ambiguous</string>
|
<string name="pwgen_ambiguous">Ambiguous</string>
|
||||||
|
<string name="pwgen_pronounceable">Pronounceable</string>
|
||||||
|
|
||||||
<!-- ssh keygen fragment -->
|
<!-- ssh keygen fragment -->
|
||||||
<string name="ssh_keygen_length">Length</string>
|
<string name="ssh_keygen_length">Length</string>
|
||||||
|
|
Loading…
Reference in a new issue