From 67d58da771ed543874154cdb9e049c0e05459a87 Mon Sep 17 00:00:00 2001 From: Daniel Weipert Date: Sat, 20 May 2023 13:49:35 +0200 Subject: localization setup --- app/java/src/WifiListenerService.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'app/java/src/WifiListenerService.java') diff --git a/app/java/src/WifiListenerService.java b/app/java/src/WifiListenerService.java index da4c337..0920677 100644 --- a/app/java/src/WifiListenerService.java +++ b/app/java/src/WifiListenerService.java @@ -160,12 +160,12 @@ public class WifiListenerService extends Service Notification notification = new Notification.Builder(this, WifiListenerService.NOTIFICATION_CHANNEL_ID) .setSmallIcon(R.drawable.logo) - .setContentTitle("Pihole DNS Proxy - WiFi Listener") - .setContentText("Listening for WiFi connection change") + .setContentTitle(getString(R.string.app_label) + " - WiFi Listener") + .setContentText(getString(R.string.wifi_listener_service__notification__text)) .setContentIntent(PendingIntent.getActivity(this, 0, new Intent(this, SettingsActivity.class), Intent.FLAG_ACTIVITY_NEW_TASK)) .addAction( R.drawable.logo, - "Stop Listener", + getString(R.string.wifi_listener_service__notification__action__stop_listener), PendingIntent.getService(this, 0, (new Intent(this, WifiListenerService.class)).setAction(WifiListenerService.ACTION_STOP_SET_PREFERENCE), PendingIntent.FLAG_IMMUTABLE @@ -173,7 +173,7 @@ public class WifiListenerService extends Service ) .addAction( R.drawable.logo, - "Start Proxy", + getString(R.string.wifi_listener_service__notification__action__start_proxy), PendingIntent.getService(this, 0, (new Intent(this, DNSProxyService.class)).setAction(DNSProxyService.ACTION_START), PendingIntent.FLAG_IMMUTABLE -- cgit v1.2.3