├── .clang-format ├── Android.bp ├── AndroidManifest.xml ├── OWNERS ├── PREUPLOAD.cfg ├── jni ├── com_android_bluetooth.h ├── com_android_bluetooth_a2dp.cpp ├── com_android_bluetooth_a2dp_sink.cpp ├── com_android_bluetooth_avrcp_controller.cpp ├── com_android_bluetooth_avrcp_target.cpp ├── com_android_bluetooth_btservice_ActivityAttribution.cpp ├── com_android_bluetooth_btservice_AdapterService.cpp ├── com_android_bluetooth_btservice_BluetoothKeystore.cpp ├── com_android_bluetooth_gatt.cpp ├── com_android_bluetooth_hearing_aid.cpp ├── com_android_bluetooth_hfp.cpp ├── com_android_bluetooth_hfpclient.cpp ├── com_android_bluetooth_hid_device.cpp ├── com_android_bluetooth_hid_host.cpp ├── com_android_bluetooth_le_audio.cpp ├── com_android_bluetooth_pan.cpp ├── com_android_bluetooth_sdp.cpp └── jni_logging.h ├── lib └── mapapi │ └── com │ └── android │ └── bluetooth │ └── mapapi │ ├── BluetoothMapContract.java │ ├── BluetoothMapEmailProvider.java │ └── BluetoothMapIMProvider.java ├── res ├── drawable │ ├── bt_incomming_file_notification.xml │ ├── ic_accept.xml │ └── ic_decline.xml ├── layout │ ├── auth.xml │ ├── bluetooth_map_settings.xml │ ├── bluetooth_map_settings_account_group.xml │ ├── bluetooth_map_settings_account_item.xml │ ├── bluetooth_transfer_item.xml │ ├── bluetooth_transfers_page.xml │ ├── bt_enabling_progress.xml │ ├── confirm_dialog.xml │ ├── file_transfer.xml │ ├── incoming_dialog.xml │ ├── no_transfers.xml │ └── testactivity_main.xml ├── menu │ ├── receivedfilescontextfinished.xml │ ├── transferhistory.xml │ └── transferhistorycontextfinished.xml ├── mipmap-anydpi │ └── bt_share.xml ├── raw │ └── silent.wav ├── values-af │ ├── config.xml │ ├── strings.xml │ ├── strings_pbap.xml │ ├── strings_pbap_client.xml │ ├── strings_sap.xml │ └── test_strings.xml ├── values-am │ ├── config.xml │ ├── strings.xml │ ├── strings_pbap.xml │ ├── strings_pbap_client.xml │ ├── strings_sap.xml │ └── test_strings.xml ├── values-ar │ ├── config.xml │ ├── strings.xml │ ├── strings_pbap.xml │ ├── strings_pbap_client.xml │ ├── strings_sap.xml │ └── test_strings.xml ├── values-as │ ├── config.xml │ ├── strings.xml │ ├── strings_pbap.xml │ ├── strings_pbap_client.xml │ ├── strings_sap.xml │ └── test_strings.xml ├── values-az │ ├── config.xml │ ├── strings.xml │ ├── strings_pbap.xml │ ├── strings_pbap_client.xml │ ├── strings_sap.xml │ └── test_strings.xml ├── values-b+sr+Latn │ ├── config.xml │ ├── strings.xml │ ├── strings_pbap.xml │ ├── strings_pbap_client.xml │ ├── strings_sap.xml │ └── test_strings.xml ├── values-be │ ├── config.xml │ ├── strings.xml │ ├── strings_pbap.xml │ ├── strings_pbap_client.xml │ ├── strings_sap.xml │ └── test_strings.xml ├── values-bg │ ├── config.xml │ ├── strings.xml │ ├── strings_pbap.xml │ ├── strings_pbap_client.xml │ ├── strings_sap.xml │ └── test_strings.xml ├── values-bn │ ├── config.xml │ ├── strings.xml │ ├── strings_pbap.xml │ ├── strings_pbap_client.xml │ ├── strings_sap.xml │ └── test_strings.xml ├── values-bs │ ├── config.xml │ ├── strings.xml │ ├── strings_pbap.xml │ ├── strings_pbap_client.xml │ ├── strings_sap.xml │ └── test_strings.xml ├── values-ca │ ├── config.xml │ ├── strings.xml │ ├── strings_pbap.xml │ ├── strings_pbap_client.xml │ ├── strings_sap.xml │ └── test_strings.xml ├── values-cs │ ├── config.xml │ ├── strings.xml │ ├── strings_pbap.xml │ ├── strings_pbap_client.xml │ ├── strings_sap.xml │ └── test_strings.xml ├── values-da │ ├── config.xml │ ├── strings.xml │ ├── strings_pbap.xml │ ├── strings_pbap_client.xml │ ├── strings_sap.xml │ └── test_strings.xml ├── values-de │ ├── config.xml │ ├── strings.xml │ ├── strings_pbap.xml │ ├── strings_pbap_client.xml │ ├── strings_sap.xml │ └── test_strings.xml ├── values-el │ ├── config.xml │ ├── strings.xml │ ├── strings_pbap.xml │ ├── strings_pbap_client.xml │ ├── strings_sap.xml │ └── test_strings.xml ├── values-en-rAU │ ├── config.xml │ ├── strings.xml │ ├── strings_pbap.xml │ ├── strings_pbap_client.xml │ ├── strings_sap.xml │ └── test_strings.xml ├── values-en-rCA │ ├── config.xml │ ├── strings.xml │ ├── strings_pbap.xml │ ├── strings_pbap_client.xml │ ├── strings_sap.xml │ └── test_strings.xml ├── values-en-rGB │ ├── config.xml │ ├── strings.xml │ ├── strings_pbap.xml │ ├── strings_pbap_client.xml │ ├── strings_sap.xml │ └── test_strings.xml ├── values-en-rIN │ ├── config.xml │ ├── strings.xml │ ├── strings_pbap.xml │ ├── strings_pbap_client.xml │ ├── strings_sap.xml │ └── test_strings.xml ├── values-en-rXC │ ├── config.xml │ ├── strings.xml │ ├── strings_pbap.xml │ ├── strings_pbap_client.xml │ ├── strings_sap.xml │ └── test_strings.xml ├── values-es-rUS │ ├── config.xml │ ├── strings.xml │ ├── strings_pbap.xml │ ├── strings_pbap_client.xml │ ├── strings_sap.xml │ └── test_strings.xml ├── values-es │ ├── config.xml │ ├── strings.xml │ ├── strings_pbap.xml │ ├── strings_pbap_client.xml │ ├── strings_sap.xml │ └── test_strings.xml ├── values-et │ ├── config.xml │ ├── strings.xml │ ├── strings_pbap.xml │ ├── strings_pbap_client.xml │ ├── strings_sap.xml │ └── test_strings.xml ├── values-eu │ ├── config.xml │ ├── strings.xml │ ├── strings_pbap.xml │ ├── strings_pbap_client.xml │ ├── strings_sap.xml │ └── test_strings.xml ├── values-fa │ ├── config.xml │ ├── strings.xml │ ├── strings_pbap.xml │ ├── strings_pbap_client.xml │ ├── strings_sap.xml │ └── test_strings.xml ├── values-fi │ ├── config.xml │ ├── strings.xml │ ├── strings_pbap.xml │ ├── strings_pbap_client.xml │ ├── strings_sap.xml │ └── test_strings.xml ├── values-fr-rCA │ ├── config.xml │ ├── strings.xml │ ├── strings_pbap.xml │ ├── strings_pbap_client.xml │ ├── strings_sap.xml │ └── test_strings.xml ├── values-fr │ ├── config.xml │ ├── strings.xml │ ├── strings_pbap.xml │ ├── strings_pbap_client.xml │ ├── strings_sap.xml │ └── test_strings.xml ├── values-gl │ ├── config.xml │ ├── strings.xml │ ├── strings_pbap.xml │ ├── strings_pbap_client.xml │ ├── strings_sap.xml │ └── test_strings.xml ├── values-gu │ ├── config.xml │ ├── strings.xml │ ├── strings_pbap.xml │ ├── strings_pbap_client.xml │ ├── strings_sap.xml │ └── test_strings.xml ├── values-hi │ ├── config.xml │ ├── strings.xml │ ├── strings_pbap.xml │ ├── strings_pbap_client.xml │ ├── strings_sap.xml │ └── test_strings.xml ├── values-hr │ ├── config.xml │ ├── strings.xml │ ├── strings_pbap.xml │ ├── strings_pbap_client.xml │ ├── strings_sap.xml │ └── test_strings.xml ├── values-hu │ ├── config.xml │ ├── strings.xml │ ├── strings_pbap.xml │ ├── strings_pbap_client.xml │ ├── strings_sap.xml │ └── test_strings.xml ├── values-hy │ ├── config.xml │ ├── strings.xml │ ├── strings_pbap.xml │ ├── strings_pbap_client.xml │ ├── strings_sap.xml │ └── test_strings.xml ├── values-in │ ├── config.xml │ ├── strings.xml │ ├── strings_pbap.xml │ ├── strings_pbap_client.xml │ ├── strings_sap.xml │ └── test_strings.xml ├── values-is │ ├── config.xml │ ├── strings.xml │ ├── strings_pbap.xml │ ├── strings_pbap_client.xml │ ├── strings_sap.xml │ └── test_strings.xml ├── values-it │ ├── config.xml │ ├── strings.xml │ ├── strings_pbap.xml │ ├── strings_pbap_client.xml │ ├── strings_sap.xml │ └── test_strings.xml ├── values-iw │ ├── config.xml │ ├── strings.xml │ ├── strings_pbap.xml │ ├── strings_pbap_client.xml │ ├── strings_sap.xml │ └── test_strings.xml ├── values-ja │ ├── config.xml │ ├── strings.xml │ ├── strings_pbap.xml │ ├── strings_pbap_client.xml │ ├── strings_sap.xml │ └── test_strings.xml ├── values-ka │ ├── config.xml │ ├── strings.xml │ ├── strings_pbap.xml │ ├── strings_pbap_client.xml │ ├── strings_sap.xml │ └── test_strings.xml ├── values-kk │ ├── config.xml │ ├── strings.xml │ ├── strings_pbap.xml │ ├── strings_pbap_client.xml │ ├── strings_sap.xml │ └── test_strings.xml ├── values-km │ ├── config.xml │ ├── strings.xml │ ├── strings_pbap.xml │ ├── strings_pbap_client.xml │ ├── strings_sap.xml │ └── test_strings.xml ├── values-kn │ ├── config.xml │ ├── strings.xml │ ├── strings_pbap.xml │ ├── strings_pbap_client.xml │ ├── strings_sap.xml │ └── test_strings.xml ├── values-ko │ ├── config.xml │ ├── strings.xml │ ├── strings_pbap.xml │ ├── strings_pbap_client.xml │ ├── strings_sap.xml │ └── test_strings.xml ├── values-ky │ ├── config.xml │ ├── strings.xml │ ├── strings_pbap.xml │ ├── strings_pbap_client.xml │ ├── strings_sap.xml │ └── test_strings.xml ├── values-lo │ ├── config.xml │ ├── strings.xml │ ├── strings_pbap.xml │ ├── strings_pbap_client.xml │ ├── strings_sap.xml │ └── test_strings.xml ├── values-lt │ ├── config.xml │ ├── strings.xml │ ├── strings_pbap.xml │ ├── strings_pbap_client.xml │ ├── strings_sap.xml │ └── test_strings.xml ├── values-lv │ ├── config.xml │ ├── strings.xml │ ├── strings_pbap.xml │ ├── strings_pbap_client.xml │ ├── strings_sap.xml │ └── test_strings.xml ├── values-mk │ ├── config.xml │ ├── strings.xml │ ├── strings_pbap.xml │ ├── strings_pbap_client.xml │ ├── strings_sap.xml │ └── test_strings.xml ├── values-ml │ ├── config.xml │ ├── strings.xml │ ├── strings_pbap.xml │ ├── strings_pbap_client.xml │ ├── strings_sap.xml │ └── test_strings.xml ├── values-mn │ ├── config.xml │ ├── strings.xml │ ├── strings_pbap.xml │ ├── strings_pbap_client.xml │ ├── strings_sap.xml │ └── test_strings.xml ├── values-mr │ ├── config.xml │ ├── strings.xml │ ├── strings_pbap.xml │ ├── strings_pbap_client.xml │ ├── strings_sap.xml │ └── test_strings.xml ├── values-ms │ ├── config.xml │ ├── strings.xml │ ├── strings_pbap.xml │ ├── strings_pbap_client.xml │ ├── strings_sap.xml │ └── test_strings.xml ├── values-my │ ├── config.xml │ ├── strings.xml │ ├── strings_pbap.xml │ ├── strings_pbap_client.xml │ ├── strings_sap.xml │ └── test_strings.xml ├── values-nb │ ├── config.xml │ ├── strings.xml │ ├── strings_pbap.xml │ ├── strings_pbap_client.xml │ ├── strings_sap.xml │ └── test_strings.xml ├── values-ne │ ├── config.xml │ ├── strings.xml │ ├── strings_pbap.xml │ ├── strings_pbap_client.xml │ ├── strings_sap.xml │ └── test_strings.xml ├── values-night │ └── styles.xml ├── values-nl │ ├── config.xml │ ├── strings.xml │ ├── strings_pbap.xml │ ├── strings_pbap_client.xml │ ├── strings_sap.xml │ └── test_strings.xml ├── values-or │ ├── config.xml │ ├── strings.xml │ ├── strings_pbap.xml │ ├── strings_pbap_client.xml │ ├── strings_sap.xml │ └── test_strings.xml ├── values-pa │ ├── config.xml │ ├── strings.xml │ ├── strings_pbap.xml │ ├── strings_pbap_client.xml │ ├── strings_sap.xml │ └── test_strings.xml ├── values-pl │ ├── config.xml │ ├── strings.xml │ ├── strings_pbap.xml │ ├── strings_pbap_client.xml │ ├── strings_sap.xml │ └── test_strings.xml ├── values-pt-rPT │ ├── config.xml │ ├── strings.xml │ ├── strings_pbap.xml │ ├── strings_pbap_client.xml │ ├── strings_sap.xml │ └── test_strings.xml ├── values-pt │ ├── config.xml │ ├── strings.xml │ ├── strings_pbap.xml │ ├── strings_pbap_client.xml │ ├── strings_sap.xml │ └── test_strings.xml ├── values-ro │ ├── config.xml │ ├── strings.xml │ ├── strings_pbap.xml │ ├── strings_pbap_client.xml │ ├── strings_sap.xml │ └── test_strings.xml ├── values-ru │ ├── config.xml │ ├── strings.xml │ ├── strings_pbap.xml │ ├── strings_pbap_client.xml │ ├── strings_sap.xml │ └── test_strings.xml ├── values-si │ ├── config.xml │ ├── strings.xml │ ├── strings_pbap.xml │ ├── strings_pbap_client.xml │ ├── strings_sap.xml │ └── test_strings.xml ├── values-sk │ ├── config.xml │ ├── strings.xml │ ├── strings_pbap.xml │ ├── strings_pbap_client.xml │ ├── strings_sap.xml │ └── test_strings.xml ├── values-sl │ ├── config.xml │ ├── strings.xml │ ├── strings_pbap.xml │ ├── strings_pbap_client.xml │ ├── strings_sap.xml │ └── test_strings.xml ├── values-sq │ ├── config.xml │ ├── strings.xml │ ├── strings_pbap.xml │ ├── strings_pbap_client.xml │ ├── strings_sap.xml │ └── test_strings.xml ├── values-sr │ ├── config.xml │ ├── strings.xml │ ├── strings_pbap.xml │ ├── strings_pbap_client.xml │ ├── strings_sap.xml │ └── test_strings.xml ├── values-sv │ ├── config.xml │ ├── strings.xml │ ├── strings_pbap.xml │ ├── strings_pbap_client.xml │ ├── strings_sap.xml │ └── test_strings.xml ├── values-sw │ ├── config.xml │ ├── strings.xml │ ├── strings_pbap.xml │ ├── strings_pbap_client.xml │ ├── strings_sap.xml │ └── test_strings.xml ├── values-ta │ ├── config.xml │ ├── strings.xml │ ├── strings_pbap.xml │ ├── strings_pbap_client.xml │ ├── strings_sap.xml │ └── test_strings.xml ├── values-te │ ├── config.xml │ ├── strings.xml │ ├── strings_pbap.xml │ ├── strings_pbap_client.xml │ ├── strings_sap.xml │ └── test_strings.xml ├── values-th │ ├── config.xml │ ├── strings.xml │ ├── strings_pbap.xml │ ├── strings_pbap_client.xml │ ├── strings_sap.xml │ └── test_strings.xml ├── values-tl │ ├── config.xml │ ├── strings.xml │ ├── strings_pbap.xml │ ├── strings_pbap_client.xml │ ├── strings_sap.xml │ └── test_strings.xml ├── values-tr │ ├── config.xml │ ├── strings.xml │ ├── strings_pbap.xml │ ├── strings_pbap_client.xml │ ├── strings_sap.xml │ └── test_strings.xml ├── values-uk │ ├── config.xml │ ├── strings.xml │ ├── strings_pbap.xml │ ├── strings_pbap_client.xml │ ├── strings_sap.xml │ └── test_strings.xml ├── values-ur │ ├── config.xml │ ├── strings.xml │ ├── strings_pbap.xml │ ├── strings_pbap_client.xml │ ├── strings_sap.xml │ └── test_strings.xml ├── values-uz │ ├── config.xml │ ├── strings.xml │ ├── strings_pbap.xml │ ├── strings_pbap_client.xml │ ├── strings_sap.xml │ └── test_strings.xml ├── values-vi │ ├── config.xml │ ├── strings.xml │ ├── strings_pbap.xml │ ├── strings_pbap_client.xml │ ├── strings_sap.xml │ └── test_strings.xml ├── values-zh-rCN │ ├── config.xml │ ├── strings.xml │ ├── strings_pbap.xml │ ├── strings_pbap_client.xml │ ├── strings_sap.xml │ └── test_strings.xml ├── values-zh-rHK │ ├── config.xml │ ├── strings.xml │ ├── strings_pbap.xml │ ├── strings_pbap_client.xml │ ├── strings_sap.xml │ └── test_strings.xml ├── values-zh-rTW │ ├── config.xml │ ├── strings.xml │ ├── strings_pbap.xml │ ├── strings_pbap_client.xml │ ├── strings_sap.xml │ └── test_strings.xml ├── values-zu │ ├── config.xml │ ├── strings.xml │ ├── strings_pbap.xml │ ├── strings_pbap_client.xml │ ├── strings_sap.xml │ └── test_strings.xml ├── values │ ├── config.xml │ ├── strings.xml │ ├── strings_pbap.xml │ ├── strings_pbap_client.xml │ ├── strings_sap.xml │ ├── styles.xml │ └── test_strings.xml └── xml │ ├── authenticator.xml │ └── file_paths.xml ├── services └── A2dpMediaBrowserService │ └── res │ ├── values-af │ └── strings.xml │ ├── values-am │ └── strings.xml │ ├── values-ar │ └── strings.xml │ ├── values-b+sr+Latn │ └── strings.xml │ ├── values-be │ └── strings.xml │ ├── values-bg │ └── strings.xml │ ├── values-bn │ └── strings.xml │ ├── values-bs │ └── strings.xml │ ├── values-ca │ └── strings.xml │ ├── values-cs │ └── strings.xml │ ├── values-da │ └── strings.xml │ ├── values-de │ └── strings.xml │ ├── values-el │ └── strings.xml │ ├── values-en-rAU │ └── strings.xml │ ├── values-en-rGB │ └── strings.xml │ ├── values-en-rIN │ └── strings.xml │ ├── values-es-rUS │ └── strings.xml │ ├── values-et │ └── strings.xml │ ├── values-eu │ └── strings.xml │ ├── values-fa │ └── strings.xml │ ├── values-fi │ └── strings.xml │ ├── values-fr-rCA │ └── strings.xml │ ├── values-fr │ └── strings.xml │ ├── values-gl │ └── strings.xml │ ├── values-gu │ └── strings.xml │ ├── values-hr │ └── strings.xml │ ├── values-hu │ └── strings.xml │ ├── values-hy │ └── strings.xml │ ├── values-is │ └── strings.xml │ ├── values-it │ └── strings.xml │ ├── values-iw │ └── strings.xml │ ├── values-ja │ └── strings.xml │ ├── values-ka │ └── strings.xml │ ├── values-kk │ └── strings.xml │ ├── values-km │ └── strings.xml │ ├── values-kn │ └── strings.xml │ ├── values-ko │ └── strings.xml │ ├── values-ky │ └── strings.xml │ ├── values-lo │ └── strings.xml │ ├── values-lt │ └── strings.xml │ ├── values-lv │ └── strings.xml │ ├── values-mk │ └── strings.xml │ ├── values-ml │ └── strings.xml │ ├── values-mn │ └── strings.xml │ ├── values-ms │ └── strings.xml │ ├── values-my │ └── strings.xml │ ├── values-nb │ └── strings.xml │ ├── values-ne │ └── strings.xml │ ├── values-pl │ └── strings.xml │ ├── values-pt │ └── strings.xml │ ├── values-ro │ └── strings.xml │ ├── values-ru │ └── strings.xml │ ├── values-si │ └── strings.xml │ ├── values-sk │ └── strings.xml │ ├── values-sl │ └── strings.xml │ ├── values-sq │ └── strings.xml │ ├── values-sr │ └── strings.xml │ ├── values-sv │ └── strings.xml │ ├── values-sw │ └── strings.xml │ ├── values-ta │ └── strings.xml │ ├── values-th │ └── strings.xml │ ├── values-tl │ └── strings.xml │ ├── values-tr │ └── strings.xml │ ├── values-uk │ └── strings.xml │ ├── values-ur │ └── strings.xml │ ├── values-uz │ └── strings.xml │ ├── values-vi │ └── strings.xml │ ├── values-zh-rCN │ └── strings.xml │ ├── values-zh-rHK │ └── strings.xml │ └── values-zh-rTW │ └── strings.xml ├── src └── com │ └── android │ └── bluetooth │ ├── AlertActivity.java │ ├── BluetoothObexTransport.java │ ├── BluetoothPrefs.java │ ├── DeviceWorkArounds.java │ ├── IObexConnectionHandler.java │ ├── ObexRejectServer.java │ ├── ObexServerSockets.java │ ├── SignedLongLong.java │ ├── Utils.java │ ├── a2dp │ ├── A2dpCodecConfig.java │ ├── A2dpNativeInterface.java │ ├── A2dpService.java │ ├── A2dpStackEvent.java │ └── A2dpStateMachine.java │ ├── a2dpsink │ ├── A2dpSinkService.java │ ├── A2dpSinkStateMachine.java │ ├── A2dpSinkStreamHandler.java │ └── StackEvent.java │ ├── audio_util │ ├── BTAudioEventLogger.java │ ├── BrowsablePlayerConnector.java │ ├── BrowsedPlayerWrapper.java │ ├── GPMWrapper.java │ ├── MediaPlayerList.java │ ├── MediaPlayerWrapper.java │ ├── helpers │ │ ├── AvrcpPassthrough.java │ │ ├── Folder.java │ │ ├── Image.java │ │ ├── ListItem.java │ │ ├── MediaData.java │ │ ├── Metadata.java │ │ ├── PlayStatus.java │ │ ├── PlayerInfo.java │ │ └── Util.java │ └── mockable │ │ ├── MediaBrowser.java │ │ ├── MediaBrowserFactory.java │ │ ├── MediaController.java │ │ ├── MediaControllerFactory.java │ │ └── MediaPlayerWrapperFactory.java │ ├── avrcp │ ├── AvrcpBipObexServer.java │ ├── AvrcpCoverArtService.java │ ├── AvrcpCoverArtStorage.java │ ├── AvrcpNativeInterface.java │ ├── AvrcpTargetService.java │ ├── AvrcpVolumeManager.java │ └── helpers │ │ ├── AvrcpVersion.java │ │ └── CoverArt.java │ ├── avrcpcontroller │ ├── AvrcpBipClient.java │ ├── AvrcpControllerService.java │ ├── AvrcpControllerStateMachine.java │ ├── AvrcpCoverArtManager.java │ ├── AvrcpCoverArtProvider.java │ ├── AvrcpCoverArtStorage.java │ ├── AvrcpItem.java │ ├── AvrcpPlayer.java │ ├── BluetoothMediaBrowserService.java │ ├── BrowseTree.java │ ├── PlayerApplicationSettings.java │ ├── StackEvent.java │ └── bip │ │ ├── BipAttachmentFormat.java │ │ ├── BipDateTime.java │ │ ├── BipEncoding.java │ │ ├── BipImage.java │ │ ├── BipImageDescriptor.java │ │ ├── BipImageFormat.java │ │ ├── BipImageProperties.java │ │ ├── BipPixel.java │ │ ├── BipRequest.java │ │ ├── BipTransformation.java │ │ ├── ParseException.java │ │ ├── RequestGetImage.java │ │ └── RequestGetImageProperties.java │ ├── btservice │ ├── AbstractionLayer.java │ ├── ActiveDeviceManager.java │ ├── AdapterApp.java │ ├── AdapterProperties.java │ ├── AdapterService.java │ ├── AdapterState.java │ ├── BluetoothSocketManagerBinder.java │ ├── BondStateMachine.java │ ├── Config.java │ ├── DiscoveringPackage.java │ ├── JniCallbacks.java │ ├── MetricsLogger.java │ ├── PhonePolicy.java │ ├── ProfileService.java │ ├── RemoteDevices.java │ ├── ServiceFactory.java │ ├── SilenceDeviceManager.java │ ├── activityAttribution │ │ ├── ActivityAttributionNativeInterface.java │ │ └── ActivityAttributionService.java │ ├── bluetoothKeystore │ │ ├── BluetoothKeystoreNativeInterface.java │ │ └── BluetoothKeystoreService.java │ └── storage │ │ ├── CustomizedMetadataEntity.java │ │ ├── DatabaseManager.java │ │ ├── Metadata.java │ │ ├── MetadataDao.java │ │ ├── MetadataDatabase.java │ │ └── ProfilePrioritiesEntity.java │ ├── gatt │ ├── AdvertiseHelper.java │ ├── AdvertiseManager.java │ ├── AdvtFilterOnFoundOnLostInfo.java │ ├── AppScanStats.java │ ├── CallbackInfo.java │ ├── ContextMap.java │ ├── FilterParams.java │ ├── GattDbElement.java │ ├── GattDebugUtils.java │ ├── GattService.java │ ├── GattServiceConfig.java │ ├── HandleMap.java │ ├── PeriodicScanManager.java │ ├── ScanClient.java │ ├── ScanFilterQueue.java │ └── ScanManager.java │ ├── hearingaid │ ├── HearingAidNativeInterface.java │ ├── HearingAidService.java │ ├── HearingAidStackEvent.java │ └── HearingAidStateMachine.java │ ├── hfp │ ├── AtPhonebook.java │ ├── BluetoothCmeError.java │ ├── BluetoothHeadsetProxy.java │ ├── HeadsetAgIndicatorEnableState.java │ ├── HeadsetCallState.java │ ├── HeadsetClccResponse.java │ ├── HeadsetDeviceState.java │ ├── HeadsetHalConstants.java │ ├── HeadsetMessageObject.java │ ├── HeadsetNativeInterface.java │ ├── HeadsetObjectsFactory.java │ ├── HeadsetPhoneState.java │ ├── HeadsetService.java │ ├── HeadsetStackEvent.java │ ├── HeadsetStateMachine.java │ ├── HeadsetSystemInterface.java │ └── HeadsetVendorSpecificResultCode.java │ ├── hfpclient │ ├── HeadsetClientHalConstants.java │ ├── HeadsetClientService.java │ ├── HeadsetClientStateMachine.java │ ├── HeadsetClientStateMachineFactory.java │ ├── NativeInterface.java │ ├── StackEvent.java │ ├── VendorCommandResponseProcessor.java │ └── connserv │ │ ├── HfpClientConference.java │ │ ├── HfpClientConnection.java │ │ ├── HfpClientConnectionService.java │ │ └── HfpClientDeviceBlock.java │ ├── hid │ ├── HidDeviceNativeInterface.java │ ├── HidDeviceService.java │ └── HidHostService.java │ ├── le_audio │ ├── LeAudioNativeInterface.java │ ├── LeAudioService.java │ ├── LeAudioStackEvent.java │ └── LeAudioStateMachine.java │ ├── map │ ├── BluetoothMapAccountItem.java │ ├── BluetoothMapAccountLoader.java │ ├── BluetoothMapAppObserver.java │ ├── BluetoothMapAppParams.java │ ├── BluetoothMapContent.java │ ├── BluetoothMapContentObserver.java │ ├── BluetoothMapConvoContactElement.java │ ├── BluetoothMapConvoListing.java │ ├── BluetoothMapConvoListingElement.java │ ├── BluetoothMapFolderElement.java │ ├── BluetoothMapMasInstance.java │ ├── BluetoothMapMessageListing.java │ ├── BluetoothMapMessageListingElement.java │ ├── BluetoothMapObexServer.java │ ├── BluetoothMapService.java │ ├── BluetoothMapSettings.java │ ├── BluetoothMapSettingsAdapter.java │ ├── BluetoothMapSettingsDataHolder.java │ ├── BluetoothMapSmsPdu.java │ ├── BluetoothMapUtils.java │ ├── BluetoothMapbMessage.java │ ├── BluetoothMapbMessageEmail.java │ ├── BluetoothMapbMessageMime.java │ ├── BluetoothMapbMessageSms.java │ ├── BluetoothMnsObexClient.java │ ├── MapContact.java │ ├── MmsFileProvider.java │ └── SmsMmsContacts.java │ ├── mapclient │ ├── MapClientContent.java │ ├── MapClientService.java │ ├── MapUtils.java │ ├── MasClient.java │ ├── MceStateMachine.java │ ├── MnsObexServer.java │ ├── MnsService.java │ └── obex │ │ ├── Bmessage.java │ │ ├── BmessageBuilder.java │ │ ├── BmessageParser.java │ │ ├── BmsgTokenizer.java │ │ ├── EventReport.java │ │ ├── FolderListing.java │ │ ├── Message.java │ │ ├── MessagesFilter.java │ │ ├── MessagesListing.java │ │ ├── ObexAppParameters.java │ │ ├── ObexTime.java │ │ ├── Request.java │ │ ├── RequestGetFolderListing.java │ │ ├── RequestGetMessage.java │ │ ├── RequestGetMessagesListing.java │ │ ├── RequestPushMessage.java │ │ ├── RequestSetMessageStatus.java │ │ ├── RequestSetNotificationRegistration.java │ │ └── RequestSetPath.java │ ├── opp │ ├── BluetoothOppBatch.java │ ├── BluetoothOppBtEnableActivity.java │ ├── BluetoothOppBtEnablingActivity.java │ ├── BluetoothOppBtErrorActivity.java │ ├── BluetoothOppFileProvider.java │ ├── BluetoothOppHandoverReceiver.java │ ├── BluetoothOppIncomingFileConfirmActivity.java │ ├── BluetoothOppLauncherActivity.java │ ├── BluetoothOppManager.java │ ├── BluetoothOppNotification.java │ ├── BluetoothOppObexClientSession.java │ ├── BluetoothOppObexServerSession.java │ ├── BluetoothOppObexSession.java │ ├── BluetoothOppPreference.java │ ├── BluetoothOppProvider.java │ ├── BluetoothOppReceiveFileInfo.java │ ├── BluetoothOppReceiver.java │ ├── BluetoothOppSendFileInfo.java │ ├── BluetoothOppService.java │ ├── BluetoothOppShareInfo.java │ ├── BluetoothOppTransfer.java │ ├── BluetoothOppTransferActivity.java │ ├── BluetoothOppTransferAdapter.java │ ├── BluetoothOppTransferHistory.java │ ├── BluetoothOppTransferInfo.java │ ├── BluetoothOppUtility.java │ ├── BluetoothShare.java │ ├── Constants.java │ └── TestActivity.java │ ├── pan │ ├── BluetoothTetheringNetworkFactory.java │ └── PanService.java │ ├── pbap │ ├── BluetoothPbapActivity.java │ ├── BluetoothPbapAuthenticator.java │ ├── BluetoothPbapCallLogComposer.java │ ├── BluetoothPbapConfig.java │ ├── BluetoothPbapObexServer.java │ ├── BluetoothPbapService.java │ ├── BluetoothPbapUtils.java │ ├── BluetoothPbapVcardManager.java │ └── PbapStateMachine.java │ ├── pbapclient │ ├── AuthenticationService.java │ ├── Authenticator.java │ ├── BluetoothPbapObexAuthenticator.java │ ├── BluetoothPbapObexTransport.java │ ├── BluetoothPbapRequest.java │ ├── BluetoothPbapRequestPullPhoneBook.java │ ├── BluetoothPbapRequestPullPhoneBookSize.java │ ├── BluetoothPbapVcardList.java │ ├── CallLogPullRequest.java │ ├── ObexAppParameters.java │ ├── PbapClientConnectionHandler.java │ ├── PbapClientService.java │ ├── PbapClientStateMachine.java │ ├── PhonebookEntry.java │ ├── PhonebookPullRequest.java │ ├── PullRequest.java │ └── Utils.java │ ├── sap │ ├── SapMessage.java │ ├── SapRilReceiver.java │ ├── SapServer.java │ └── SapService.java │ ├── sdp │ └── SdpManager.java │ ├── statemachine │ ├── IState.java │ ├── State.java │ └── StateMachine.java │ ├── telephony │ ├── BluetoothCall.java │ └── BluetoothInCallService.java │ └── util │ ├── DevicePolicyUtils.java │ ├── GsmAlphabet.java │ ├── Interop.java │ └── NumberUtils.java ├── tests ├── Android.mk ├── robotests │ ├── Android.mk │ ├── AndroidManifest.xml │ ├── config │ │ └── robolectric.properties │ └── src │ │ └── com │ │ └── android │ │ └── bluetooth │ │ └── opp │ │ └── OppSendFileInfoTest.java └── unit │ ├── Android.bp │ ├── AndroidManifest.xml │ ├── AndroidTest.xml │ ├── res │ └── raw │ │ ├── image_200_200.jpg │ │ ├── image_200_200_blue.jpeg │ │ ├── image_200_200_orange.jpeg │ │ ├── image_600_600.jpg │ │ ├── no_timestamp_call_log.vcf │ │ ├── single_missed_call.vcf │ │ ├── unknown_number_call.vcf │ │ └── v30_simple.vcf │ └── src │ └── com │ └── android │ └── bluetooth │ ├── FileSystemWriteTest.java │ ├── StateMachineTest.java │ ├── TestUtils.java │ ├── a2dp │ ├── A2dpCodecConfigTest.java │ ├── A2dpServiceTest.java │ └── A2dpStateMachineTest.java │ ├── a2dpsink │ ├── A2dpSinkServiceTest.java │ └── A2dpSinkStreamHandlerTest.java │ ├── audio_util │ ├── BrowserPlayerWrapperTest.java │ ├── ImageTest.java │ ├── MediaPlayerListTest.java │ ├── MediaPlayerWrapperTest.java │ └── MetadataTest.java │ ├── avrcp │ ├── AvrcpBipObexServerTest.java │ ├── AvrcpCoverArtStorageTest.java │ └── CoverArtTest.java │ ├── avrcpcontroller │ ├── AvrcpControllerServiceTest.java │ ├── AvrcpControllerStateMachineTest.java │ ├── AvrcpCoverArtStorageTest.java │ ├── AvrcpItemTest.java │ └── bip │ │ ├── BipAttachmentFormatTest.java │ │ ├── BipDatetimeTest.java │ │ ├── BipEncodingTest.java │ │ ├── BipImageDescriptorTest.java │ │ ├── BipImageFormatTest.java │ │ ├── BipImagePropertiesTest.java │ │ ├── BipImageTest.java │ │ ├── BipPixelTest.java │ │ └── BipTransformationTest.java │ ├── btservice │ ├── ActiveDeviceManagerTest.java │ ├── AdapterServiceTest.java │ ├── BondStateMachineTest.java │ ├── MetricsLoggerTest.java │ ├── PhonePolicyTest.java │ ├── ProfileServiceTest.java │ ├── RemoteDevicesTest.java │ ├── SilenceDeviceManagerTest.java │ ├── activityAttribution │ │ └── ActivityAttributionServiceTest.java │ ├── bluetoothKeystore │ │ └── BluetoothKeystoreServiceTest.java │ └── storage │ │ ├── DatabaseManagerTest.java │ │ └── schemas │ │ └── com.android.bluetooth.btservice.storage.MetadataDatabase │ │ ├── 100.json │ │ ├── 101.json │ │ ├── 102.json │ │ ├── 103.json │ │ ├── 104.json │ │ ├── 105.json │ │ └── 106.json │ ├── gatt │ └── GattServiceTest.java │ ├── hearingaid │ ├── HearingAidServiceTest.java │ └── HearingAidStateMachineTest.java │ ├── hfp │ ├── HeadsetPhoneStateTest.java │ ├── HeadsetServiceAndStateMachineTest.java │ ├── HeadsetServiceTest.java │ ├── HeadsetStateMachineTest.java │ └── HeadsetTestUtils.java │ ├── hfpclient │ ├── HeadsetClientServiceTest.java │ └── HeadsetClientStateMachineTest.java │ ├── hid │ ├── HidDeviceTest.java │ └── HidHostServiceTest.java │ ├── le_audio │ ├── LeAudioServiceTest.java │ └── LeAudioStateMachineTest.java │ ├── map │ ├── BluetoothMapContentObserverTest.java │ ├── BluetoothMapServiceTest.java │ └── BluetoothMapbMessageMimeTest.java │ ├── mapclient │ ├── BmessageTest.java │ ├── MapClientContentTest.java │ ├── MapClientStateMachineTest.java │ ├── MapClientTest.java │ └── ObexTimeTest.java │ ├── opp │ ├── BluetoothOppSendFileInfoTest.java │ └── BluetoothOppServiceTest.java │ ├── pan │ └── PanServiceTest.java │ ├── pbap │ ├── BluetoothPbapServiceTest.java │ └── PbapStateMachineTest.java │ ├── pbapclient │ ├── PbapClientServiceTest.java │ └── PbapParserTest.java │ ├── sap │ └── SapServiceTest.java │ ├── sdp │ └── DipTest.java │ └── telephony │ └── BluetoothInCallServiceTest.java └── tools └── Intellij_Code_Style_Bluetooth.xml /OWNERS: -------------------------------------------------------------------------------- 1 | include platform/system/bt:/OWNERS 2 | -------------------------------------------------------------------------------- /PREUPLOAD.cfg: -------------------------------------------------------------------------------- 1 | [Options] 2 | ignore_merged_commits = true 3 | 4 | [Builtin Hooks] 5 | clang_format = true 6 | 7 | [Hook Scripts] 8 | checkstyle_hook = ${REPO_ROOT}/prebuilts/checkstyle/checkstyle.py --sha ${PREUPLOAD_COMMIT} 9 | -fw src/com/android/bluetooth/ 10 | lib/mapapi/com/android/bluetooth/mapapi/ 11 | tests/src/com/android/bluetooth/ 12 | aosp_first = ${REPO_ROOT}/frameworks/base/tools/aosp/aosp_sha.sh ${PREUPLOAD_COMMIT} ${PREUPLOAD_FILES} 13 | -------------------------------------------------------------------------------- /res/menu/receivedfilescontextfinished.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 18 | 19 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /res/raw/silent.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_packages_apps_Bluetooth/ec798b44a064170647eff90d796c8a589fcb4545/res/raw/silent.wav -------------------------------------------------------------------------------- /res/values-af/config.xml: -------------------------------------------------------------------------------- 1 | 2 | 15 | 16 | 18 | "com.android.settings" 19 | 20 | -------------------------------------------------------------------------------- /res/values-af/strings_pbap_client.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | "com.android.bluetooth.pbapsink" 5 | 6 | -------------------------------------------------------------------------------- /res/values-af/strings_sap.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | "Bluetooth-SIM-toegang" 5 | "Bluetooth-SIM-toegang" 6 | "Versoek kliënt om te ontkoppel?" 7 | "Wag tans dat kliënt ontkoppel" 8 | "Ontkoppel" 9 | "Dwing ontkoppeling" 10 | 11 | -------------------------------------------------------------------------------- /res/values-am/config.xml: -------------------------------------------------------------------------------- 1 | 2 | 15 | 16 | 18 | "com.android.settings" 19 | 20 | -------------------------------------------------------------------------------- /res/values-am/strings_pbap_client.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | "com.android.bluetooth.pbapsink" 5 | 6 | -------------------------------------------------------------------------------- /res/values-am/strings_sap.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | "የብሉቱዝ ሲም መዳረሻ" 5 | "የብሉቱዝ ሲም መዳረሻ" 6 | "ደንበኛ ግንኙነት እንዲያላቅቅ ይጠየቅ?" 7 | "ደንበኛው ግንኙነት እስኪያላቅቅ ድረስ በመጠበቅ ላይ" 8 | "ግንኙነት አቋርጥ" 9 | "በግድ አላቅቅ" 10 | 11 | -------------------------------------------------------------------------------- /res/values-am/test_strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | "ብሉቱዝ" 5 | "መዝገብ አስገባ" 6 | "መዝገብ አረጋግጥ" 7 | "Ack መዝገብ" 8 | "ሁሉንም መዝገብ ሰርዝ" 9 | "እሺ" 10 | "መዝገብ ሰርዝ" 11 | "TCP አገልጋይን ጀምር" 12 | "TCP አገልጋይን አሳውቅ" 13 | 14 | -------------------------------------------------------------------------------- /res/values-ar/config.xml: -------------------------------------------------------------------------------- 1 | 2 | 15 | 16 | 18 | "com.android.settings" 19 | 20 | -------------------------------------------------------------------------------- /res/values-ar/strings_pbap_client.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | "com.android.bluetooth.pbapsink" 5 | 6 | -------------------------------------------------------------------------------- /res/values-ar/strings_sap.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | "‏الوصول إلى SIM بلوتوث" 5 | "‏الوصول إلى SIM بلوتوث" 6 | "هل تريد مطالبة العميل بإلغاء الربط؟" 7 | "في انتظار إلغاء الربط بواسطة العميل" 8 | "قطع الاتصال" 9 | "فرض إلغاء الربط" 10 | 11 | -------------------------------------------------------------------------------- /res/values-as/config.xml: -------------------------------------------------------------------------------- 1 | 2 | 15 | 16 | 18 | "com.android.settings" 19 | 20 | -------------------------------------------------------------------------------- /res/values-as/strings_pbap_client.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | "com.android.bluetooth.pbapsink" 5 | 6 | -------------------------------------------------------------------------------- /res/values-as/strings_sap.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | "ব্লুটুথৰ ছিম ব্যৱহাৰ" 5 | "ব্লুটুথৰ ছিম ব্যৱহাৰ" 6 | "সংযোগ বিচ্ছিন্ন কৰিবলৈ ক্লায়েণ্টক অনুৰোধ কৰিবনে?" 7 | "সংযোগ বিচ্ছিন্ন কৰিবলৈ ক্লায়েণ্টৰ অপেক্ষা কৰি থকা হৈছে" 8 | "বিচ্ছিন্ন কৰক" 9 | "বলেৰে সংযোগ বিচ্ছিন্ন কৰক" 10 | 11 | -------------------------------------------------------------------------------- /res/values-az/config.xml: -------------------------------------------------------------------------------- 1 | 2 | 15 | 16 | 18 | "com.android.settings" 19 | 20 | -------------------------------------------------------------------------------- /res/values-az/strings_pbap_client.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | "com.android.bluetooth.pbapsink" 5 | 6 | -------------------------------------------------------------------------------- /res/values-az/strings_sap.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | "Bluetooth SIM girişi" 5 | "Bluetooth SIM Access" 6 | "Müştəri ayırmaq tələb?" 7 | "Ayırmaq üçün müştəri gözləyir" 8 | "Bağlantını kəsin" 9 | "Force ayırmaq" 10 | 11 | -------------------------------------------------------------------------------- /res/values-b+sr+Latn/config.xml: -------------------------------------------------------------------------------- 1 | 2 | 15 | 16 | 18 | "com.android.settings" 19 | 20 | -------------------------------------------------------------------------------- /res/values-b+sr+Latn/strings_pbap_client.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | "com.android.bluetooth.pbapsink" 5 | 6 | -------------------------------------------------------------------------------- /res/values-b+sr+Latn/strings_sap.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | "Pristup SIM kartici preko Bluetooth-a" 5 | "Pristup SIM kartici preko Bluetooth-a" 6 | "Želite li da pošaljete klijentu zahtev za prekid veze?" 7 | "Čeka se da klijent prekine vezu" 8 | "Prekini vezu" 9 | "Prinudno prekini vezu" 10 | 11 | -------------------------------------------------------------------------------- /res/values-be/config.xml: -------------------------------------------------------------------------------- 1 | 2 | 15 | 16 | 18 | "com.android.settings" 19 | 20 | -------------------------------------------------------------------------------- /res/values-be/strings_pbap_client.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | "com.android.bluetooth.pbapsink" 5 | 6 | -------------------------------------------------------------------------------- /res/values-be/strings_sap.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | "Доступ да SIM па Bluetooth" 5 | "Доступ да SIM па Bluetooth" 6 | "Запытаць адлучэнне кліента?" 7 | "Чаканне адлучэння кліента" 8 | "Адключыць" 9 | "Прымусовае адлучэнне" 10 | 11 | -------------------------------------------------------------------------------- /res/values-bg/config.xml: -------------------------------------------------------------------------------- 1 | 2 | 15 | 16 | 18 | "com.android.settings" 19 | 20 | -------------------------------------------------------------------------------- /res/values-bg/strings_pbap_client.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | "com.android.bluetooth.pbapsink" 5 | 6 | -------------------------------------------------------------------------------- /res/values-bn/config.xml: -------------------------------------------------------------------------------- 1 | 2 | 15 | 16 | 18 | "com.android.settings" 19 | 20 | -------------------------------------------------------------------------------- /res/values-bn/strings_pbap_client.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | "com.android.bluetooth.pbapsink" 5 | 6 | -------------------------------------------------------------------------------- /res/values-bn/strings_sap.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | "ব্লুটুথ সিম -এ অ্যাক্সেস করুন" 5 | "ব্লুটুথ সিম -এ অ্যাক্সেস করুন" 6 | "ক্লায়েন্ট সংযোগ বিচ্ছিন্ন করার অনুরোধ জানাবেন?" 7 | "সংযোগ বিচ্ছিন্ন করতে ক্লায়েন্টের জন্য অপেক্ষা করা" 8 | "সংযোগ বিচ্ছিন্ন করুন" 9 | "জোর করে সংযোগ বিচ্ছিন্ন করুন" 10 | 11 | -------------------------------------------------------------------------------- /res/values-bs/config.xml: -------------------------------------------------------------------------------- 1 | 2 | 15 | 16 | 18 | "com.android.settings" 19 | 20 | -------------------------------------------------------------------------------- /res/values-bs/strings_pbap_client.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | "com.android.bluetooth.pbapsink" 5 | 6 | -------------------------------------------------------------------------------- /res/values-bs/strings_sap.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | "Bluetooth pristup SIM-u" 5 | "Bluetooth pristup SIM-u" 6 | "Tražiti od klijenta da prekine vezu?" 7 | "Čeka se da klijent prekine vezu" 8 | "Prekini vezu" 9 | "Prisilno prekini vezu" 10 | 11 | -------------------------------------------------------------------------------- /res/values-ca/config.xml: -------------------------------------------------------------------------------- 1 | 2 | 15 | 16 | 18 | "com.android.settings" 19 | 20 | -------------------------------------------------------------------------------- /res/values-ca/strings_pbap_client.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | "com.android.bluetooth.pbapsink" 5 | 6 | -------------------------------------------------------------------------------- /res/values-ca/strings_sap.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | "Accés SIM del Bluetooth" 5 | "Accés SIM del Bluetooth" 6 | "Vols sol·licitar al client que es desconnecti?" 7 | "S\'està esperant que el client es desconnecti" 8 | "Desconnecta" 9 | "Força la desconnexió" 10 | 11 | -------------------------------------------------------------------------------- /res/values-cs/config.xml: -------------------------------------------------------------------------------- 1 | 2 | 15 | 16 | 18 | "com.android.settings" 19 | 20 | -------------------------------------------------------------------------------- /res/values-cs/strings_pbap_client.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | "com.android.bluetooth.pbapsink" 5 | 6 | -------------------------------------------------------------------------------- /res/values-cs/strings_sap.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | "Přístup k SIM kartě přes Bluetooth" 5 | "Přístup k SIM kartě přes Bluetooth" 6 | "Chcete klient požádat o odpojení?" 7 | "Čekání na odpojení klientu" 8 | "Odpojit" 9 | "Vynutit odpojení" 10 | 11 | -------------------------------------------------------------------------------- /res/values-da/config.xml: -------------------------------------------------------------------------------- 1 | 2 | 15 | 16 | 18 | "com.android.settings" 19 | 20 | -------------------------------------------------------------------------------- /res/values-da/strings_pbap_client.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | "com.android.bluetooth.pbapsink" 5 | 6 | -------------------------------------------------------------------------------- /res/values-da/strings_sap.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | "Bluetooth-adgang til SIM-kort" 5 | "Bluetooth-adgang til SIM-kort" 6 | "Vil du anmode klienten om at afbryde forbindelsen?" 7 | "Venter på, at klienten afbryder forbindelsen" 8 | "Afbryd" 9 | "Gennemtving afbrydelse af forbindelsen" 10 | 11 | -------------------------------------------------------------------------------- /res/values-de/config.xml: -------------------------------------------------------------------------------- 1 | 2 | 15 | 16 | 18 | "com.android.settings" 19 | 20 | -------------------------------------------------------------------------------- /res/values-de/strings_pbap_client.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | "com.android.bluetooth.pbapsink" 5 | 6 | -------------------------------------------------------------------------------- /res/values-el/config.xml: -------------------------------------------------------------------------------- 1 | 2 | 15 | 16 | 18 | "com.android.settings" 19 | 20 | -------------------------------------------------------------------------------- /res/values-el/strings_pbap_client.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | "com.android.bluetooth.pbapsink" 5 | 6 | -------------------------------------------------------------------------------- /res/values-el/strings_sap.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | "Πρόσβαση SIM Bluetooth" 5 | "Πρόσβαση SIM Bluetooth" 6 | "Αίτημα εφαρμογής-πελάτη για αποσύνδεση;" 7 | "Αναμονή για αποσύνδεση εφαρμογής-πελάτη" 8 | "Αποσύνδεση" 9 | "Αναγκαστική αποσύνδεση" 10 | 11 | -------------------------------------------------------------------------------- /res/values-en-rAU/config.xml: -------------------------------------------------------------------------------- 1 | 2 | 15 | 16 | 18 | "com.android.settings" 19 | 20 | -------------------------------------------------------------------------------- /res/values-en-rAU/strings_pbap_client.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | "com.android.bluetooth.pbapsink" 5 | 6 | -------------------------------------------------------------------------------- /res/values-en-rAU/strings_sap.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | "Bluetooth SIM access" 5 | "Bluetooth SIM access" 6 | "Request client to disconnect?" 7 | "Waiting for client to disconnect" 8 | "Disconnect" 9 | "Force disconnect" 10 | 11 | -------------------------------------------------------------------------------- /res/values-en-rCA/config.xml: -------------------------------------------------------------------------------- 1 | 2 | 15 | 16 | 18 | "com.android.settings" 19 | 20 | -------------------------------------------------------------------------------- /res/values-en-rCA/strings_pbap_client.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | "com.android.bluetooth.pbapsink" 5 | 6 | -------------------------------------------------------------------------------- /res/values-en-rCA/strings_sap.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | "Bluetooth SIM access" 5 | "Bluetooth SIM access" 6 | "Request client to disconnect?" 7 | "Waiting for client to disconnect" 8 | "Disconnect" 9 | "Force disconnect" 10 | 11 | -------------------------------------------------------------------------------- /res/values-en-rGB/config.xml: -------------------------------------------------------------------------------- 1 | 2 | 15 | 16 | 18 | "com.android.settings" 19 | 20 | -------------------------------------------------------------------------------- /res/values-en-rGB/strings_pbap_client.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | "com.android.bluetooth.pbapsink" 5 | 6 | -------------------------------------------------------------------------------- /res/values-en-rGB/strings_sap.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | "Bluetooth SIM access" 5 | "Bluetooth SIM access" 6 | "Request client to disconnect?" 7 | "Waiting for client to disconnect" 8 | "Disconnect" 9 | "Force disconnect" 10 | 11 | -------------------------------------------------------------------------------- /res/values-en-rIN/config.xml: -------------------------------------------------------------------------------- 1 | 2 | 15 | 16 | 18 | "com.android.settings" 19 | 20 | -------------------------------------------------------------------------------- /res/values-en-rIN/strings_pbap_client.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | "com.android.bluetooth.pbapsink" 5 | 6 | -------------------------------------------------------------------------------- /res/values-en-rIN/strings_sap.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | "Bluetooth SIM access" 5 | "Bluetooth SIM access" 6 | "Request client to disconnect?" 7 | "Waiting for client to disconnect" 8 | "Disconnect" 9 | "Force disconnect" 10 | 11 | -------------------------------------------------------------------------------- /res/values-en-rXC/strings_pbap_client.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‏‎‎‎‎‎‏‏‏‎‏‏‏‏‏‏‏‎‏‎‏‏‎‏‏‎‏‎‏‎‏‏‎‎‏‏‎‏‎‎‏‏‏‏‏‏‎‎‎‏‎‎‏‏‎‏‎‏‎‎‏‎‎‏‎‎‏‎‏‎‏‎‎‏‎‏‎‏‎‎com.android.bluetooth.pbapsink‎‏‎‎‏‎" 5 | 6 | -------------------------------------------------------------------------------- /res/values-es-rUS/config.xml: -------------------------------------------------------------------------------- 1 | 2 | 15 | 16 | 18 | "com.android.settings" 19 | 20 | -------------------------------------------------------------------------------- /res/values-es-rUS/strings_pbap_client.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | "com.android.bluetooth.pbapsink" 5 | 6 | -------------------------------------------------------------------------------- /res/values-es-rUS/strings_sap.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | "Acceso a SIM mediante Bluetooth" 5 | "Acceso a SIM mediante Bluetooth" 6 | "¿Quieres solicitar al cliente que se desconecte?" 7 | "Esperando a que el cliente se desconecte" 8 | "Desconectar" 9 | "Forzar desconexión" 10 | 11 | -------------------------------------------------------------------------------- /res/values-es/config.xml: -------------------------------------------------------------------------------- 1 | 2 | 15 | 16 | 18 | "com.android.settings" 19 | 20 | -------------------------------------------------------------------------------- /res/values-es/strings_pbap_client.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | "com.android.bluetooth.pbapsink" 5 | 6 | -------------------------------------------------------------------------------- /res/values-es/strings_sap.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | "Perfil Bluetooth de acceso a la tarjeta SIM" 5 | "Perfil Bluetooth de acceso a la tarjeta SIM" 6 | "¿Solicitar al cliente que se desconecte?" 7 | "Esperando al cliente para desconectar" 8 | "Desconectar" 9 | "Forzar desconexión" 10 | 11 | -------------------------------------------------------------------------------- /res/values-et/config.xml: -------------------------------------------------------------------------------- 1 | 2 | 15 | 16 | 18 | "com.android.settings" 19 | 20 | -------------------------------------------------------------------------------- /res/values-et/strings_pbap_client.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | "com.android.bluetooth.pbapsink" 5 | 6 | -------------------------------------------------------------------------------- /res/values-et/strings_sap.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | "Bluetoothi SIM-kaardi juurdepääs" 5 | "Bluetoothi SIM-kaardi juurdepääs" 6 | "Kas paluda kliendil ühendus katkestada?" 7 | "Kliendi ühenduse katkestamise ootel" 8 | "Katkesta ühendus" 9 | "Sundkatkesta ühendus" 10 | 11 | -------------------------------------------------------------------------------- /res/values-eu/config.xml: -------------------------------------------------------------------------------- 1 | 2 | 15 | 16 | 18 | "com.android.settings" 19 | 20 | -------------------------------------------------------------------------------- /res/values-eu/strings_pbap_client.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | "com.android.bluetooth.pbapsink" 5 | 6 | -------------------------------------------------------------------------------- /res/values-eu/strings_sap.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | "Bluetooth SIM sarbidea" 5 | "Bluetooth SIM sarbidea" 6 | "Deskonektatzeko eskatu nahi diozu bezeroari?" 7 | "Bezeroa noiz deskonektatuko zain" 8 | "Deskonektatu" 9 | "Behartu deskonektatzera" 10 | 11 | -------------------------------------------------------------------------------- /res/values-fa/config.xml: -------------------------------------------------------------------------------- 1 | 2 | 15 | 16 | 18 | "com.android.settings" 19 | 20 | -------------------------------------------------------------------------------- /res/values-fa/strings_pbap_client.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | "com.android.bluetooth.pbapsink" 5 | 6 | -------------------------------------------------------------------------------- /res/values-fa/strings_sap.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | "دسترسی به سیم‌کارت بلوتوث" 5 | "دسترسی به سیم‌کارت بلوتوث" 6 | "قطع ارتباط از کلاینت درخواست شود؟" 7 | "در انتظار کلاینت برای قطع ارتباط" 8 | "قطع ارتباط" 9 | "قطع ارتباط اجباری" 10 | 11 | -------------------------------------------------------------------------------- /res/values-fi/config.xml: -------------------------------------------------------------------------------- 1 | 2 | 15 | 16 | 18 | "com.android.settings" 19 | 20 | -------------------------------------------------------------------------------- /res/values-fi/strings_pbap_client.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | "com.android.bluetooth.pbapsink" 5 | 6 | -------------------------------------------------------------------------------- /res/values-fi/strings_sap.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | "Bluetooth SIM -käyttö" 5 | "Bluetooth SIM -käyttö" 6 | "Pyydetäänkö asiakassovellusta katkaisemaan yhteys?" 7 | "Odotetaan, että asiakassovellus katkaisee yhteyden." 8 | "Katkaise yhteys" 9 | "Pakota yhteyden katkaiseminen" 10 | 11 | -------------------------------------------------------------------------------- /res/values-fr-rCA/config.xml: -------------------------------------------------------------------------------- 1 | 2 | 15 | 16 | 18 | "com.android.settings" 19 | 20 | -------------------------------------------------------------------------------- /res/values-fr-rCA/strings_pbap_client.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | "com.android.bluetooth.pbapsink" 5 | 6 | -------------------------------------------------------------------------------- /res/values-fr-rCA/strings_sap.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | "Accès SIM Bluetooth" 5 | "Accès SIM Bluetooth" 6 | "Demander au client de se déconnecter?" 7 | "En attente de déconnexion du client…" 8 | "Déconnecter" 9 | "Forcer la déconnexion" 10 | 11 | -------------------------------------------------------------------------------- /res/values-fr/config.xml: -------------------------------------------------------------------------------- 1 | 2 | 15 | 16 | 18 | "com.android.settings" 19 | 20 | -------------------------------------------------------------------------------- /res/values-fr/strings_pbap_client.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | "com.android.bluetooth.pbapsink" 5 | 6 | -------------------------------------------------------------------------------- /res/values-fr/strings_sap.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | "Accès SIM Bluetooth" 5 | "Accès SIM Bluetooth" 6 | "Demander au client de se déconnecter ?" 7 | "En attente de déconnexion du client…" 8 | "Déconnecter" 9 | "Forcer la déconnexion" 10 | 11 | -------------------------------------------------------------------------------- /res/values-gl/config.xml: -------------------------------------------------------------------------------- 1 | 2 | 15 | 16 | 18 | "com.android.settings" 19 | 20 | -------------------------------------------------------------------------------- /res/values-gl/strings_pbap_client.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | "com.android.bluetooth.pbapsink" 5 | 6 | -------------------------------------------------------------------------------- /res/values-gl/strings_sap.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | "Acceso á SIM do Bluetooth" 5 | "Acceso á SIM do Bluetooth" 6 | "Queres solicitar ao cliente que desconecte?" 7 | "Esperando a que o cliente desconecte" 8 | "Desconectar" 9 | "Forzar desconexión" 10 | 11 | -------------------------------------------------------------------------------- /res/values-gu/config.xml: -------------------------------------------------------------------------------- 1 | 2 | 15 | 16 | 18 | "com.android.settings" 19 | 20 | -------------------------------------------------------------------------------- /res/values-gu/strings_pbap_client.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | "com.android.bluetooth.pbapsink" 5 | 6 | -------------------------------------------------------------------------------- /res/values-gu/strings_sap.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | "બ્લૂટૂથ સિમ ઍક્સેસ" 5 | "બ્લૂટૂથ સિમ ઍક્સેસ" 6 | "ક્લાઇન્ટને ડિસ્કનેક્ટ કરવાની વિનંતી કરીએ?" 7 | "ડિસ્કનેક્ટ કરવા માટે ક્લાઇન્ટની રાહ જોઈ રહ્યાં છે" 8 | "ડિસ્કનેક્ટ કરો" 9 | "ડિસ્કનેક્ટ કરવાની ફરજ પાડો" 10 | 11 | -------------------------------------------------------------------------------- /res/values-hi/config.xml: -------------------------------------------------------------------------------- 1 | 2 | 15 | 16 | 18 | "com.android.settings" 19 | 20 | -------------------------------------------------------------------------------- /res/values-hi/strings_pbap_client.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | "com.android.bluetooth.pbapsink" 5 | 6 | -------------------------------------------------------------------------------- /res/values-hi/strings_sap.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | "ब्लूटूथ सिम ऐक्सेस" 5 | "ब्लूटूथ सिम ऐक्सेस" 6 | "डिसकनेक्ट करने के लिए क्लाइंट से अनुरोध करें?" 7 | "डिसकनेक्ट करने के लिए क्लाइंट की प्रतीक्षा की जा रही है" 8 | "डिसकनेक्ट करें" 9 | "बलपूर्वक डिसकनेक्ट करें" 10 | 11 | -------------------------------------------------------------------------------- /res/values-hr/config.xml: -------------------------------------------------------------------------------- 1 | 2 | 15 | 16 | 18 | "com.android.settings" 19 | 20 | -------------------------------------------------------------------------------- /res/values-hr/strings_pbap_client.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | "com.android.bluetooth.pbapsink" 5 | 6 | -------------------------------------------------------------------------------- /res/values-hr/strings_sap.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | "Pristup SIM-u putem Bluetootha" 5 | "Pristup SIM-u putem Bluetootha" 6 | "Želite li postaviti zahtjev klijentu da prekine vezu?" 7 | "Čekanje da klijent prekine vezu." 8 | "Prekini vezu" 9 | "Prisilno prekini vezu" 10 | 11 | -------------------------------------------------------------------------------- /res/values-hu/config.xml: -------------------------------------------------------------------------------- 1 | 2 | 15 | 16 | 18 | "com.android.settings" 19 | 20 | -------------------------------------------------------------------------------- /res/values-hu/strings_pbap_client.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | "com.android.bluetooth.pbapsink" 5 | 6 | -------------------------------------------------------------------------------- /res/values-hu/strings_sap.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | "Bluetooth SIM-elérés" 5 | "Bluetooth SIM-elérés" 6 | "Ügyfél felkérése szétválasztásra?" 7 | "Várakozás az ügyfél szétválasztására" 8 | "Szétválasztás" 9 | "Szétválasztás kényszerítése" 10 | 11 | -------------------------------------------------------------------------------- /res/values-hy/config.xml: -------------------------------------------------------------------------------- 1 | 2 | 15 | 16 | 18 | "com.android.settings" 19 | 20 | -------------------------------------------------------------------------------- /res/values-hy/strings_pbap_client.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | "com.android.bluetooth.pbapsink" 5 | 6 | -------------------------------------------------------------------------------- /res/values-hy/strings_sap.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | "SIM քարտի օգտագործում Bluetooth-ի միջոցով" 5 | "SIM քարտի օգտագործում Bluetooth-ի միջոցով" 6 | "Խնդրե՞լ սպասառուին անջատել:" 7 | "Սպասառուի անջատման սպասում" 8 | "Անջատել" 9 | "Հարկադրաբար անջատել" 10 | 11 | -------------------------------------------------------------------------------- /res/values-in/config.xml: -------------------------------------------------------------------------------- 1 | 2 | 15 | 16 | 18 | "com.android.settings" 19 | 20 | -------------------------------------------------------------------------------- /res/values-in/strings_pbap_client.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | "com.android.bluetooth.pbapsink" 5 | 6 | -------------------------------------------------------------------------------- /res/values-in/strings_sap.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | "Akses SIM Bluetooth" 5 | "Akses SIM Bluetooth" 6 | "Minta klien untuk memutus sambungan?" 7 | "Menunggu klien untuk memutus sambungan" 8 | "Putuskan koneksi" 9 | "Putuskan paksa sambungan" 10 | 11 | -------------------------------------------------------------------------------- /res/values-is/config.xml: -------------------------------------------------------------------------------- 1 | 2 | 15 | 16 | 18 | "com.android.settings" 19 | 20 | -------------------------------------------------------------------------------- /res/values-is/strings_pbap_client.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | "com.android.bluetooth.pbapsink" 5 | 6 | -------------------------------------------------------------------------------- /res/values-is/strings_sap.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | "Bluetooth-aðgangur að SIM-korti" 5 | "Bluetooth-aðgangur að SIM-korti" 6 | "Biðja biðlara um að aftengjast?" 7 | "Bíður eftir að biðlari aftengist" 8 | "Aftengja" 9 | "Þvinga aftengingu" 10 | 11 | -------------------------------------------------------------------------------- /res/values-it/config.xml: -------------------------------------------------------------------------------- 1 | 2 | 15 | 16 | 18 | "com.android.settings" 19 | 20 | -------------------------------------------------------------------------------- /res/values-it/strings_pbap_client.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | "com.android.bluetooth.pbapsink" 5 | 6 | -------------------------------------------------------------------------------- /res/values-it/strings_sap.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | "Accesso SIM Bluetooth" 5 | "Accesso SIM Bluetooth" 6 | "Richiedere al client di disconnettersi?" 7 | "In attesa della disconnessione del client" 8 | "Disconnetti" 9 | "Forza disconnessione" 10 | 11 | -------------------------------------------------------------------------------- /res/values-iw/config.xml: -------------------------------------------------------------------------------- 1 | 2 | 15 | 16 | 18 | "com.android.settings" 19 | 20 | -------------------------------------------------------------------------------- /res/values-iw/strings_pbap_client.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | "com.android.bluetooth.pbapsink" 5 | 6 | -------------------------------------------------------------------------------- /res/values-iw/strings_sap.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | "‏גישת SIM ל-Bluetooth" 5 | "‏גישת SIM ל-Bluetooth" 6 | "האם לבקש מלקוח להתנתק?" 7 | "ממתין לניתוק לקוח" 8 | "ניתוק" 9 | "אילוץ ניתוק" 10 | 11 | -------------------------------------------------------------------------------- /res/values-ja/config.xml: -------------------------------------------------------------------------------- 1 | 2 | 15 | 16 | 18 | "com.android.settings" 19 | 20 | -------------------------------------------------------------------------------- /res/values-ja/strings_pbap_client.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | "com.android.bluetooth.pbapsink" 5 | 6 | -------------------------------------------------------------------------------- /res/values-ja/strings_sap.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | "Bluetooth SIMアクセス" 5 | "Bluetooth SIMアクセス" 6 | "クライアントに接続解除をリクエストしますか?" 7 | "クライアントの接続解除を待機しています" 8 | "接続を解除" 9 | "強制的に接続解除" 10 | 11 | -------------------------------------------------------------------------------- /res/values-ja/test_strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | "Bluetooth" 5 | "記録を挿入" 6 | "レコードを確認" 7 | "Ackレコード" 8 | "レコードをすべて削除" 9 | "OK" 10 | "レコードを削除" 11 | "TCPサーバーを起動" 12 | "TCPサーバーに通知" 13 | 14 | -------------------------------------------------------------------------------- /res/values-ka/config.xml: -------------------------------------------------------------------------------- 1 | 2 | 15 | 16 | 18 | "com.android.settings" 19 | 20 | -------------------------------------------------------------------------------- /res/values-ka/strings_pbap_client.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | "com.android.bluetooth.pbapsink" 5 | 6 | -------------------------------------------------------------------------------- /res/values-ka/strings_sap.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | "Bluetooth SIM წვდომა" 5 | "Bluetooth SIM წვდომა" 6 | "ვთხოვოთ კლიენტს კავშირის გაწყვეტა?" 7 | "ელოდება კლიენტს, რომ გაწყვიტოს კავშირი." 8 | "კავშირის გაწყვეტა" 9 | "კავშირის იძულებითი გაწყვეტა" 10 | 11 | -------------------------------------------------------------------------------- /res/values-kk/config.xml: -------------------------------------------------------------------------------- 1 | 2 | 15 | 16 | 18 | "com.android.settings" 19 | 20 | -------------------------------------------------------------------------------- /res/values-kk/strings_pbap_client.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | "com.android.bluetooth.pbapsink" 5 | 6 | -------------------------------------------------------------------------------- /res/values-kk/strings_sap.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | "Bluetooth арқылы SIM картасына кіру" 5 | "Bluetooth арқылы SIM картасына кіру" 6 | "Клиенттен ажырауын сұрау керек пе?" 7 | "Клиенттің ажырағаны күтілуде" 8 | "Ажырату" 9 | "Мәжбүрлеп ажырату" 10 | 11 | -------------------------------------------------------------------------------- /res/values-km/config.xml: -------------------------------------------------------------------------------- 1 | 2 | 15 | 16 | 18 | "com.android.settings" 19 | 20 | -------------------------------------------------------------------------------- /res/values-km/strings_pbap_client.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | "com.android.bluetooth.pbapsink" 5 | 6 | -------------------------------------------------------------------------------- /res/values-km/strings_sap.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | "ការចូលដំណើរការស៊ីមតាមប៊្លូធូស" 5 | "ការចូលដំណើរការស៊ីមតាមប៊្លូធូស" 6 | "ស្នើឲ្យម៉ាស៊ីនកូនធ្វើការផ្តាច់?" 7 | "កំពុងរង់ចាំម៉ាស៊ីនកូនឲ្យផ្តាច់" 8 | "ផ្ដាច់" 9 | "បង្ខំឲ្យផ្តាច់" 10 | 11 | -------------------------------------------------------------------------------- /res/values-kn/config.xml: -------------------------------------------------------------------------------- 1 | 2 | 15 | 16 | 18 | "com.android.ಸೆಟ್ಟಿಂಗ್‌ಗಳು" 19 | 20 | -------------------------------------------------------------------------------- /res/values-kn/strings_pbap_client.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | "com.android.ಬ್ಲೂಟೂತ್.pbapsink" 5 | 6 | -------------------------------------------------------------------------------- /res/values-kn/strings_sap.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | "ಬ್ಲೂಟೂತ್ ಸಿಮ್ ಪ್ರವೇಶ" 5 | "ಬ್ಲೂಟೂತ್ ಸಿಮ್ ಪ್ರವೇಶ" 6 | "ಕಡಿತಗೊಳಿಸಲು ಕ್ಲೈಂಟ್ ಅನ್ನು ವಿನಂತಿಸುವುದೇ?" 7 | "ಕಡಿತಗೊಳಿಸಲು ಕ್ಲೈಂಟ್‌ಗೆ ನಿರೀಕ್ಷಿಸಲಾಗುತ್ತಿದೆ" 8 | "ಸಂಪರ್ಕ ಕಡಿತಗೊಳಿಸಿ" 9 | "ಒತ್ತಾಯದ ಕಡಿತಗೊಳಿಸುವಿಕೆ" 10 | 11 | -------------------------------------------------------------------------------- /res/values-ko/config.xml: -------------------------------------------------------------------------------- 1 | 2 | 15 | 16 | 18 | "com.android.settings" 19 | 20 | -------------------------------------------------------------------------------- /res/values-ko/strings_pbap_client.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | "com.android.bluetooth.pbapsink" 5 | 6 | -------------------------------------------------------------------------------- /res/values-ko/strings_sap.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | "블루투스 SIM 액세스" 5 | "블루투스 SIM 액세스" 6 | "클라이언트가 연결 해제하도록 요청하시겠습니까?" 7 | "클라이언트가 연결 해제하도록 대기 중" 8 | "연결 끊기" 9 | "강제 연결 해제" 10 | 11 | -------------------------------------------------------------------------------- /res/values-ko/test_strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | "블루투스" 5 | "기록 삽입" 6 | "기록 확인" 7 | "기록 인식" 8 | "모든 기록 삭제" 9 | "확인" 10 | "기록 삭제" 11 | "TCP 서버 시작" 12 | "TCP 서버 알림" 13 | 14 | -------------------------------------------------------------------------------- /res/values-ky/config.xml: -------------------------------------------------------------------------------- 1 | 2 | 15 | 16 | 18 | "com.android.settings" 19 | 20 | -------------------------------------------------------------------------------- /res/values-ky/strings_pbap_client.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | "com.android.bluetooth.pbapsink" 5 | 6 | -------------------------------------------------------------------------------- /res/values-ky/strings_sap.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | "Bluetooth SIM уруксаты" 5 | "Bluetooth SIM Уруксаты" 6 | "Кардардан ажыратуу өтүнүлсүнбү?" 7 | "Кардардын ажыратышы күтүлүүдө" 8 | "Ажыратуу" 9 | "Мажбурлап ажыратуу" 10 | 11 | -------------------------------------------------------------------------------- /res/values-lo/config.xml: -------------------------------------------------------------------------------- 1 | 2 | 15 | 16 | 18 | "com.android.settings" 19 | 20 | -------------------------------------------------------------------------------- /res/values-lo/strings_pbap_client.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | "com.android.bluetooth.pbapsink" 5 | 6 | -------------------------------------------------------------------------------- /res/values-lo/strings_sap.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | "ການ​ເຂົ້າ​ຫາ Bluetooth SIM" 5 | "ການ​ເຂົ້າ​ຫາ Bluetooth SIM" 6 | "ຂໍ​ໃຫ້​ລູກ​ຂ່າຍ​ຕັດ​ການ​ເຊື່ອມ​ຕໍ່?" 7 | "ກຳ​ລັງ​ລໍ​ຖ້າ​ໃຫ້​ລູກ​ຂ່າຍ​ຕັດ​ການ​ເຊື່ອມ​ຕໍ່" 8 | "ຕັດການເຊື່ອມຕໍ່" 9 | "ບັງ​ຄັບ​ໃຫ້​ຕັດ​ເຊື່ອມ​ຕໍ່" 10 | 11 | -------------------------------------------------------------------------------- /res/values-lt/config.xml: -------------------------------------------------------------------------------- 1 | 2 | 15 | 16 | 18 | "com.android.settings" 19 | 20 | -------------------------------------------------------------------------------- /res/values-lt/strings_pbap_client.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | "com.android.bluetooth.pbapsink" 5 | 6 | -------------------------------------------------------------------------------- /res/values-lt/strings_sap.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | "„Bluetooth“ SIM prieiga" 5 | "„Bluetooth“ SIM prieiga" 6 | "Prašyti kliento atsijungti?" 7 | "Laukiama, kol klientas atsijungs" 8 | "Atsijungti" 9 | "Priverstinai atjungti" 10 | 11 | -------------------------------------------------------------------------------- /res/values-lv/config.xml: -------------------------------------------------------------------------------- 1 | 2 | 15 | 16 | 18 | "com.android.settings" 19 | 20 | -------------------------------------------------------------------------------- /res/values-lv/strings_pbap_client.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | "com.android.bluetooth.pbapsink" 5 | 6 | -------------------------------------------------------------------------------- /res/values-lv/strings_sap.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | "Bluetooth SIM piekļuve" 5 | "Bluetooth SIM piekļuve" 6 | "Vai pieprasīt, lai klients atvienotos?" 7 | "Gaida, kad klients atvienosies" 8 | "Atvienot" 9 | "Atvienot piespiedu kārtā" 10 | 11 | -------------------------------------------------------------------------------- /res/values-mk/config.xml: -------------------------------------------------------------------------------- 1 | 2 | 15 | 16 | 18 | "com.android.settings" 19 | 20 | -------------------------------------------------------------------------------- /res/values-mk/strings_pbap_client.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | "com.android.bluetooth.pbapsink" 5 | 6 | -------------------------------------------------------------------------------- /res/values-mk/strings_sap.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | "Пристап до SIM преку Bluetooth" 5 | "Пристап до SIM преку Bluetooth" 6 | "Побарајте да се исклучи клиентот?" 7 | "Се чека да се исклучи клиентот" 8 | "Прекини врска" 9 | "Присилно исклучување" 10 | 11 | -------------------------------------------------------------------------------- /res/values-ml/config.xml: -------------------------------------------------------------------------------- 1 | 2 | 15 | 16 | 18 | "com.android.settings" 19 | 20 | -------------------------------------------------------------------------------- /res/values-ml/strings_pbap_client.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | "com.android.bluetooth.pbapsink" 5 | 6 | -------------------------------------------------------------------------------- /res/values-ml/strings_sap.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | "Bluetooth SIM ആക്‌സസ്സ്" 5 | "Bluetooth SIM ആക്‌സസ്സ്" 6 | "വിച്‌ഛേദിക്കുന്നതിന് ക്ലയന്റിനോട് അഭ്യർത്ഥിക്കണോ?" 7 | "ക്ലയന്റ് വിച്‌ഛേദിക്കുന്നതിനായി കാത്തിരിക്കുന്നു" 8 | "വിച്ഛേദിക്കുക" 9 | "നിർബന്ധിതമായി വിച്‌ഛേദിക്കുക" 10 | 11 | -------------------------------------------------------------------------------- /res/values-mn/config.xml: -------------------------------------------------------------------------------- 1 | 2 | 15 | 16 | 18 | "com.android.settings" 19 | 20 | -------------------------------------------------------------------------------- /res/values-mn/strings_pbap_client.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | "com.android.bluetooth.pbapsink" 5 | 6 | -------------------------------------------------------------------------------- /res/values-mn/strings_sap.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | "Bluetooth SIM хандалт" 5 | "Bluetooth SIM хандалт" 6 | "Үйлчлүүлэгчээс салгахыг хүсэх үү?" 7 | "Үйлчлүүлэгчийг салгахыг хүлээж байна" 8 | "Салгах" 9 | "Хүчээр салгах" 10 | 11 | -------------------------------------------------------------------------------- /res/values-mr/config.xml: -------------------------------------------------------------------------------- 1 | 2 | 15 | 16 | 18 | "com.android.settings" 19 | 20 | -------------------------------------------------------------------------------- /res/values-mr/strings_pbap_client.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | "com.android.ब्लूटूथ.pbapsink" 5 | 6 | -------------------------------------------------------------------------------- /res/values-mr/strings_sap.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | "ब्लूटूथ सिम अ‍ॅक्सेस" 5 | "ब्लूटूथ सिम अ‍ॅक्सेस" 6 | "डिस्कनेक्‍ट करण्याची क्लायंटला विनंती करायची?" 7 | "क्लायंटने डिस्कनेक्ट करण्‍याची प्रतीक्षा करत आहे" 8 | "‍डिस्कनेक्ट करा" 9 | "डिस्कनेक्‍ट करण्‍याची सक्ती करा" 10 | 11 | -------------------------------------------------------------------------------- /res/values-ms/config.xml: -------------------------------------------------------------------------------- 1 | 2 | 15 | 16 | 18 | "com.android.settings" 19 | 20 | -------------------------------------------------------------------------------- /res/values-ms/strings_pbap_client.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | "com.android.bluetooth.pbapsink" 5 | 6 | -------------------------------------------------------------------------------- /res/values-ms/strings_sap.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | "Akses SIM Bluetooth" 5 | "Akses SIM Bluetooth" 6 | "Minta pelanggan memutuskan sambungan?" 7 | "Menunggu pelanggan untuk memutuskan sambungan" 8 | "Putus sambungan" 9 | "Paksa putuskan sambungan" 10 | 11 | -------------------------------------------------------------------------------- /res/values-my/config.xml: -------------------------------------------------------------------------------- 1 | 2 | 15 | 16 | 18 | "com.android.settings" 19 | 20 | -------------------------------------------------------------------------------- /res/values-my/strings_pbap_client.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | "com.android.bluetooth.pbapsink" 5 | 6 | -------------------------------------------------------------------------------- /res/values-nb/config.xml: -------------------------------------------------------------------------------- 1 | 2 | 15 | 16 | 18 | "com.android.settings" 19 | 20 | -------------------------------------------------------------------------------- /res/values-nb/strings_pbap_client.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | "com.android.bluetooth.pbapsink" 5 | 6 | -------------------------------------------------------------------------------- /res/values-nb/strings_sap.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | "Bluetooth SIM access" 5 | "Bluetooth SIM Access" 6 | "Vil du be klienten om å koble fra?" 7 | "Venter på at klienten skal koble fra" 8 | "Koble fra" 9 | "Tving frakobling" 10 | 11 | -------------------------------------------------------------------------------- /res/values-ne/config.xml: -------------------------------------------------------------------------------- 1 | 2 | 15 | 16 | 18 | "com.android.settings" 19 | 20 | -------------------------------------------------------------------------------- /res/values-ne/strings_pbap_client.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | "com.android.bluetooth.pbapsink" 5 | 6 | -------------------------------------------------------------------------------- /res/values-ne/strings_sap.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | "ब्लुटुथ SIM पहुँच" 5 | "ब्लुटुथ SIM पहुँच" 6 | "विच्छेदन गर्न ग्राहकलाई अनुरोध गर्ने हो?" 7 | "ग्राहकको विच्छेदन प्रतीक्षा गर्दै" 8 | "डिस्कनेक्ट गर्नुहोस्" 9 | "बलपूर्वक डिस्कनेक्ट गर्नुहोस्" 10 | 11 | -------------------------------------------------------------------------------- /res/values-night/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 18 | 19 |