input: add Arabic translation (#22667)

* feat(android): added arabic translation for android input commands

* fix(android/input.md): added a newline at the end of the file

* fix(android/input.md): fixed \'for more info:\' format

* Update pages.ar/android/input.md

Co-authored-by: Machiavelli <145562237+MachiavelliII@users.noreply.github.com>

* Update pages.ar/android/input.md

Co-authored-by: Machiavelli <145562237+MachiavelliII@users.noreply.github.com>

---------

Co-authored-by: Machiavelli <145562237+MachiavelliII@users.noreply.github.com>
This commit is contained in:
Sarah Gh
2026-06-21 10:13:03 +03:00
committed by GitHub
parent 9c742be071
commit d0205b68e5
+25
View File
@@ -0,0 +1,25 @@
# input
> ارسال (event codes) او (touchscreen gestures) الى اجهزة اندرويد
> يمكنك استخدام هذا الامر من خلال `adb shell`.
> لمزيد من التفاصيل: <https://developer.android.com/reference/android/view/KeyEvent.html#constants_1>.
- ارسال (event code) او حرف واحد لأجهزة الاندرويد:
`input keyevent {{event_code}}`
- ارسال نص لجهاز اندرويد (`%s` تمثل مسافة (space)):
`input text "{{text}}"`
- ارسال نقرة واحدة لجهاز اندرويد:
`input tap {{x_position}} {{y_position}}`
- ارسال سحبة لجهاز انرويد:
`input swipe {{x_start}} {{y_start}} {{x_end}} {{y_end}} {{duration_in_ms}}`
- ارسال سحبة طويلة لجهاز اندرويد من خلال سحبة:
`input swipe {{x_position}} {{y_position}} {{x_position}} {{y_position}} {{duration_in_ms}}`