android/*: add Bengali translation (#9696)

* am, bugreport, bugrepotz, dalvikvm, dumpsys, getprop, input, logcat, pkg, pm, screencap, wm: add Bengali translation

* android/*: translated placeholders to Bengali

Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
This commit is contained in:
Sunlight
2023-01-03 18:32:43 +06:00
committed by GitHub
parent 9eea97798b
commit f9046257c3
13 changed files with 250 additions and 0 deletions

20
pages.bn/android/am.md Normal file
View File

@@ -0,0 +1,20 @@
# am
> অ্যান্ড্রয়েড অ্যাক্টিভিটি ম্যানেজার।
> আরও তথ্য পাবেন: <https://developer.android.com/studio/command-line/adb#am>.
- একটি নির্দিষ্ট কার্যকলাপ শুরু করুন:
`am start -n {{com.android.settings/.Settings}}`
- একটি কার্যকলাপ শুরু করুন এবং এতে ডেটা পাঠান:
`am start -a {{android.intent.action.VIEW}} -d {{tel:123}}`
- একটি নির্দিষ্ট কর্ম এবং বিভাগের সাথে মেলে এমন একটি কার্যকলাপ শুরু করুন:
`am start -a {{android.intent.action.MAIN}} -c {{android.intent.category.HOME}}`
- একটি উদ্দেশ্যকে একটি URI-তে রূপান্তর করুন:
`am to-uri -a {{android.intent.action.VIEW}} -d {{tel:123}}`