Made technical info headers translatable

Closes #253
This commit is contained in:
M66B 2016-01-27 12:01:37 +01:00
parent 2a6feef49f
commit 0645b42b89
2 changed files with 6 additions and 3 deletions

View File

@ -75,6 +75,9 @@ These issues are caused by bugs in Android, or in the software provided by the m
<string name="setting_hosts">Import hosts file</string>
<string name="setting_technical">Technical information</string>
<string name="setting_technical_general">General</string>
<string name="setting_technical_networks">Networks</string>
<string name="setting_technical_subscription">Subscriptions</string>
<string name="summary_auto">After disabling using the widget, automatically enable NetGuard again after the selected number of minutes (enter zero to disable this option)</string>
<string name="summary_delay">After turning the screen off, keep screen on rules active for the selected number of minutes (enter zero to disable this option)</string>

View File

@ -192,12 +192,12 @@
android:title="@string/setting_technical">
<Preference
android:key="technical_info"
android:title="General" />
android:title="@string/setting_technical_general" />
<Preference
android:key="technical_network"
android:title="Networks" />
android:title="@string/setting_technical_networks" />
<Preference
android:key="technical_subscription"
android:title="Subscriptions" />
android:title="@string/setting_technical_subscription" />
</PreferenceCategory>
</PreferenceScreen>