Skip to content

Commit

Permalink
fix: tile titles not localized
Browse files Browse the repository at this point in the history
closes #537
  • Loading branch information
zaneschepke committed Jan 11, 2025
1 parent 0dcee67 commit d89870e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@
android:name=".service.tile.TunnelControlTile"
android:exported="true"
android:icon="@drawable/ic_launcher"
android:label="Tunnel control"
android:label="@string/tunnel_control"
android:permission="android.permission.BIND_QUICK_SETTINGS_TILE">
<meta-data
android:name="android.service.quicksettings.ACTIVE_TILE"
Expand All @@ -127,7 +127,7 @@
android:name=".service.tile.AutoTunnelControlTile"
android:exported="true"
android:icon="@drawable/ic_launcher"
android:label="Auto-tunnel"
android:label="@string/auto_tunnel"
android:permission="android.permission.BIND_QUICK_SETTINGS_TILE">
<meta-data
android:name="android.service.quicksettings.ACTIVE_TILE"
Expand Down
2 changes: 2 additions & 0 deletions app/src/main/res/values/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -203,4 +203,6 @@
<string name="exclude_lan">Exclude LAN</string>
<string name="include_lan">Include LAN</string>
<string name="error_tunnel_start">Failed to starting tunnel</string>
<string name="tunnel_control">Tunnel control</string>
<string name="auto_tunnel">Auto-tunnel</string>
</resources>

0 comments on commit d89870e

Please sign in to comment.