Bluetooth: Add locale support during MAP upgrade/ downgrade notification

Steps
1. Set DUT's locale language to Portuguese.
2. Receive MAP connect request from remote

Observed result:
Profile showing notification in English.

Expected result:
The language of the notification should be same as system's.

Root cause:
The notification text is hardcoding with English strings in code.

Fix:
Add MAP advance notification related flags in xml to support locale,
also show notification text through localized version of
getString() instead of as hardcoded item from code.

CRs-Fixed:  2619791
Change-Id: I4328d3cd94297dd5f0abee83cf836c84175c9010
diff --git a/packages_apps_bluetooth_ext/src/map/src/BluetoothMapFixes.java b/packages_apps_bluetooth_ext/src/map/src/BluetoothMapFixes.java
index c91e380..127f5f2 100644
--- a/packages_apps_bluetooth_ext/src/map/src/BluetoothMapFixes.java
+++ b/packages_apps_bluetooth_ext/src/map/src/BluetoothMapFixes.java
@@ -39,6 +39,7 @@
 import android.os.RemoteException;
 import android.util.Log;
 import android.util.SparseArray;
+import com.android.bluetooth.R;
 import com.android.bluetooth.Utils;
 import com.android.bluetooth.btservice.AdapterService;
 import com.android.bluetooth.btservice.AbstractionLayer;
@@ -207,10 +208,12 @@
         }
 
         // create notification
-        String title = isUpgrade ? "Message access Advance Feature Supported" :
-                            "Remote Message access Feature Downgrade";
-        String contentText = isUpgrade ? "Re-pair for Advance Message access Feature.":
-                "Re-pair for Message access Version Compatibility";
+        String title = isUpgrade ?
+                context.getString(R.string.bluetooth_map_remote_advance_feature_support):
+                context.getString(R.string.bluetooth_map_remote_message_access_feature_downgrade);
+        String contentText = isUpgrade ?
+                context.getString(R.string.bluetooth_map_repair_for_adv_message_access_feature):
+                context.getString(R.string.bluetooth_map_repair_for_message_access_version_comp);
         Notification notification = new Notification.Builder(context,MAP_NOTIFICATION_ID)
             .setContentTitle(title)
             .setContentText(contentText)