input: add Hindi translation (#11252)

pull/23/head
Vedant Yadav 2023-10-25 21:50:20 +05:30 committed by GitHub
parent f5d2a59d6d
commit 84c3f30f27
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 25 additions and 0 deletions

25
pages.hi/android/input.md Normal file
View File

@ -0,0 +1,25 @@
# input
> एंड्रॉइड डिवाइस पर इवेंट कोड या टचस्क्रीन जेस्चर भेजें।
> इस कमांड का उपयोग केवल `adb shell` के माध्यम से किया जा सकता है।
> अधिक जानकारी: <https://developer.android.com/reference/android/view/KeyEvent.html#constants_1>.
- किसी एकल वर्ण के लिए किसी एंड्रॉइड डिवाइस पर ईवेंट कोड भेजें::
`input keyevent {{ईवेंट_कोड}}`
- एंड्रॉइड डिवाइस पर एक टेक्स्ट भेजें (`%s` रिक्त स्थान का प्रतिनिधित्व करता है):
`input text "{{टेक्स्ट}}"`
- एंड्रॉइड डिवाइस पर एक टैप भेजें:
`input tap {{x_पोजीशन}} {{y_पोजीशन}}`
- एंड्रॉइड डिवाइस पर स्वाइप जेस्चर भेजें:
`input swipe {{x_शुरू}} {{y_शुरू}} {{x_अंत}} {{y_अंत}} {{ms_में_अवधि}}`
- स्वाइप जेस्चर का उपयोग करके एंड्रॉइड डिवाइस पर एक लंबी प्रेस भेजें:
`input swipe {{x_पोजीशन}} {{y_पोजीशन}} {{x_पोजीशन}} {{y_पोजीशन}} {{ms_में_अवधि}}`