diff options
Diffstat (limited to 'app/java/src/DNSProxyService.java')
-rw-r--r-- | app/java/src/DNSProxyService.java | 6 |
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 |