summaryrefslogtreecommitdiff
path: root/app/java/src/DNSProxyService.java
diff options
context:
space:
mode:
authorDaniel Weipert <code@drogueronin.de>2023-05-20 13:49:35 +0200
committerDaniel Weipert <code@drogueronin.de>2023-05-20 13:49:35 +0200
commit67d58da771ed543874154cdb9e049c0e05459a87 (patch)
treea61d1687981315438b11a8574648c3cc6f6df0dc /app/java/src/DNSProxyService.java
parentf47c908c88875c32fd4c624aeecefbf660c17e85 (diff)
localization setup
Diffstat (limited to 'app/java/src/DNSProxyService.java')
-rw-r--r--app/java/src/DNSProxyService.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/app/java/src/DNSProxyService.java b/app/java/src/DNSProxyService.java
index 5a3d70f..10e127b 100644
--- a/app/java/src/DNSProxyService.java
+++ b/app/java/src/DNSProxyService.java
@@ -153,12 +153,12 @@ public class DNSProxyService extends VpnService {
Notification notification = new Notification.Builder(this, DNSProxyService.NOTIFICATION_CHANNEL_ID)
.setSmallIcon(R.drawable.logo)
- .setContentTitle("Pihole DNS Proxy")
- .setContentText("Running with " + DNSProxyService.PIHOLE_ADDRESS)
+ .setContentTitle(getString(R.string.app_label))
+ .setContentText(String.format(getString(R.string.dns_proxy_service__notification__text), DNSProxyService.PIHOLE_ADDRESS))
.setContentIntent(PendingIntent.getActivity(this, 0, new Intent(this, MainActivity.class), Intent.FLAG_ACTIVITY_NEW_TASK))
.addAction(
R.drawable.logo,
- "Stop",
+ getString(R.string.dns_proxy_service__notification__action__stop),
PendingIntent.getService(this, 0,
(new Intent(this, DNSProxyService.class)).setAction(DNSProxyService.ACTION_STOP),
PendingIntent.FLAG_IMMUTABLE