Update string

Change the headers from:
"Available media devices" → "Media devices"
"Available call devices" → "Call devices"
"Currently connected" → "Other devices"

Bug: 110920548
Test: manually
Change-Id: Idf283576353c9f65caa15ba8beca39f24721caa5
This commit is contained in:
hughchen
2019-10-14 15:11:49 +08:00
parent 2205b65637
commit 946c6f0dfe
4 changed files with 9 additions and 9 deletions

View File

@@ -141,11 +141,11 @@ public class AvailableMediaDeviceGroupController extends BasePreferenceControlle
if (isAudioModeOngoingCall(mContext)) {
// in phone call
mPreferenceGroup.
setTitle(mContext.getString(R.string.connected_device_available_call_title));
setTitle(mContext.getString(R.string.connected_device_call_device_title));
} else {
// without phone call
mPreferenceGroup.
setTitle(mContext.getString(R.string.connected_device_available_media_title));
setTitle(mContext.getString(R.string.connected_device_media_device_title));
}
}
}