added missing internatinalisation for pwgen (#256)

This commit is contained in:
Stéphane D'Alu 2017-01-02 16:21:23 +01:00 committed by Mohamed Zenadi
parent 8d5473a543
commit 982f641142
2 changed files with 5 additions and 3 deletions

View file

@ -80,7 +80,7 @@
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginBottom="8dp"
android:text="Length"
android:text="@string/pwgen_length"
android:textAppearance="?android:attr/textAppearanceSmall" />
<EditText
@ -95,11 +95,11 @@
android:id="@+id/pronounceable"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Pronounceable" />
android:text="@string/pwgen_pronounceable" />
</LinearLayout>
</LinearLayout>
</LinearLayout>
</ScrollView>
</ScrollView>

View file

@ -137,10 +137,12 @@
<!-- pwgen fragment -->
<string name="pwgen_generate">Generate</string>
<string name="pwgen_include">Include</string>
<string name="pwgen_length">Length</string>
<string name="pwgen_numerals">Numerals</string>
<string name="pwgen_symbols">Symbols</string>
<string name="pwgen_uppercase">Uppercase</string>
<string name="pwgen_ambiguous">Ambiguous</string>
<string name="pwgen_pronounceable">Pronounceable</string>
<!-- ssh keygen fragment -->
<string name="ssh_keygen_length">Length</string>