Added proxy hints

This commit is contained in:
luca0N! 2021-03-28 23:03:26 -03:00
parent c4faa2e831
commit a52d83f20b
Signed by: luca0N
GPG Key ID: 2E7B4655CF16D7D6
3 changed files with 3 additions and 1 deletions

View File

@ -28,6 +28,7 @@ Contact us at <joguitos+pluck@luca0n.com>.
<string name="pref_network_tor">pref_network_tor</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_default">socks5://127.0.0.1:9050</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_ui_theme">pref_ui_theme</string>

View File

@ -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_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_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_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>

View File

@ -53,6 +53,7 @@ Contact us at <joguitos+pluck@luca0n.com>.
android:title="@string/pref_network_proxy_title"
android:summary="@string/pref_network_proxy_summary" />
<EditTextPreference
android:defaultValue="@string/pref_network_proxy_address_default"
android:key="@string/pref_network_proxy_address"
android:title="@string/pref_network_proxy_address_title"
android:summary="@string/pref_network_proxy_address_summary" />