diff options
author | Arne Schwabe <arne@rfc2549.org> | 2013-01-01 17:35:10 +0100 |
---|---|---|
committer | Arne Schwabe <arne@rfc2549.org> | 2013-01-01 17:35:10 +0100 |
commit | 410900f7619be50371d2fe3163873f2422928660 (patch) | |
tree | 37095b2c8a0ea0d52796664fca47201f4e005cb7 /src/de/blinkt/openvpn/OpenVpnService.java | |
parent | d378e3b493737c5283b29e8c49d8c2b289c891fa (diff) |
Make state messages translatable and nicer.
Diffstat (limited to 'src/de/blinkt/openvpn/OpenVpnService.java')
-rw-r--r-- | src/de/blinkt/openvpn/OpenVpnService.java | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/de/blinkt/openvpn/OpenVpnService.java b/src/de/blinkt/openvpn/OpenVpnService.java index dff50e54..908224e5 100644 --- a/src/de/blinkt/openvpn/OpenVpnService.java +++ b/src/de/blinkt/openvpn/OpenVpnService.java @@ -19,7 +19,6 @@ package de.blinkt.openvpn; import java.io.IOException; import java.lang.reflect.InvocationTargetException; import java.lang.reflect.Method; -import java.util.Locale; import java.util.Vector; import android.app.Notification; @@ -431,7 +430,7 @@ public class OpenVpnService extends VpnService implements StateListener { } @Override - public void updateState(String state,String logmessage) { + public void updateState(String state,String logmessage, int resid) { // If the process is not running, ignore any state, // Notification should be invisible in this state if(mProcessThread==null) @@ -454,8 +453,8 @@ public class OpenVpnService extends VpnService implements StateListener { // Other notifications are shown, // This also mean we are no longer connected, ignore bytecount messages until next // CONNECTED - String ticker = state.toLowerCase(Locale.getDefault()); - showNotification(state +" " + logmessage,ticker,false,0); + String ticker = getString(resid); + showNotification(getString(resid) +" " + logmessage,ticker,false,0); } } |