Added proxy hints
This commit is contained in:
parent
c4faa2e831
commit
a52d83f20b
|
@ -28,6 +28,7 @@ Contact us at <joguitos+pluck@luca0n.com>.
|
||||||
<string name="pref_network_tor">pref_network_tor</string>
|
<string name="pref_network_tor">pref_network_tor</string>
|
||||||
<string name="pref_network_proxy">pref_network_proxy</string>
|
<string name="pref_network_proxy">pref_network_proxy</string>
|
||||||
<string name="pref_network_proxy_address">pref_network_proxy_address</string>
|
<string name="pref_network_proxy_address">pref_network_proxy_address</string>
|
||||||
|
<string name="pref_network_proxy_address_default">socks5://127.0.0.1:9050</string>
|
||||||
<string name="pref_network_server">pref_network_server</string>
|
<string name="pref_network_server">pref_network_server</string>
|
||||||
<string name="pref_network_server_default">https://opentdb.com/api.php</string>
|
<string name="pref_network_server_default">https://opentdb.com/api.php</string>
|
||||||
<string name="pref_ui_theme">pref_ui_theme</string>
|
<string name="pref_ui_theme">pref_ui_theme</string>
|
||||||
|
|
|
@ -117,7 +117,7 @@ Contact us at <joguitos+pluck@luca0n.com>.
|
||||||
<string name="pref_network_proxy_title">Use Proxy</string>
|
<string name="pref_network_proxy_title">Use Proxy</string>
|
||||||
<string name="pref_network_proxy_summary">Uses a proxy of your choice when connecting to a trivia server.</string>
|
<string name="pref_network_proxy_summary">Uses a proxy of your choice when connecting to a trivia server.</string>
|
||||||
<string name="pref_network_proxy_address_title">Proxy Address</string>
|
<string name="pref_network_proxy_address_title">Proxy Address</string>
|
||||||
<string name="pref_network_proxy_address_summary">Defines the proxy address that Pluck should use when connecting to a trivia server with a custom proxy. This will override the Tor proxy, if enabled. Pluck supports the HTTP and SOCKS protocols. Specify the proxy protocol.</string>
|
<string name="pref_network_proxy_address_summary">Defines the proxy address that Pluck should use when connecting to a trivia server with a custom proxy. This will override the Tor proxy, if enabled. Pluck supports the HTTP and SOCKS protocols. Specify the proxy protocol and port.</string>
|
||||||
<string name="pref_network_server_title">Server Address</string>
|
<string name="pref_network_server_title">Server Address</string>
|
||||||
<string name="pref_network_server_summary">Specifies the server location used by the game to fetch questions when using a server as the trivia source. Leave this setting empty to use the default server.</string>
|
<string name="pref_network_server_summary">Specifies the server location used by the game to fetch questions when using a server as the trivia source. Leave this setting empty to use the default server.</string>
|
||||||
|
|
||||||
|
|
|
@ -53,6 +53,7 @@ Contact us at <joguitos+pluck@luca0n.com>.
|
||||||
android:title="@string/pref_network_proxy_title"
|
android:title="@string/pref_network_proxy_title"
|
||||||
android:summary="@string/pref_network_proxy_summary" />
|
android:summary="@string/pref_network_proxy_summary" />
|
||||||
<EditTextPreference
|
<EditTextPreference
|
||||||
|
android:defaultValue="@string/pref_network_proxy_address_default"
|
||||||
android:key="@string/pref_network_proxy_address"
|
android:key="@string/pref_network_proxy_address"
|
||||||
android:title="@string/pref_network_proxy_address_title"
|
android:title="@string/pref_network_proxy_address_title"
|
||||||
android:summary="@string/pref_network_proxy_address_summary" />
|
android:summary="@string/pref_network_proxy_address_summary" />
|
||||||
|
|
Loading…
Reference in New Issue