Skip to content

Commit d25dac9

Browse files
authored
Merge branch 'main' into indonesian-51
2 parents ba58146 + 272de21 commit d25dac9

1,299 files changed

Lines changed: 9255 additions & 871 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
with:
2323
fetch-depth: 0
2424

25-
- uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0
25+
- uses: actions/setup-python@ece7cb06caefa5fff74198d8649806c4678c61a1 # v6.3.0
2626
with:
2727
python-version: '3.12'
2828
cache: 'pip'
@@ -108,7 +108,7 @@ jobs:
108108
- name: Attest generated files
109109
if: github.repository == 'tldr-pages/tldr' && github.ref == 'refs/heads/main'
110110
id: attest
111-
uses: actions/attest-build-provenance@a2bbfa25375fe432b6a289bc6b6cd05ecd0c4c32 # v4.1.0
111+
uses: actions/attest-build-provenance@0f67c3f4856b2e3261c31976d6725780e5e4c373 # v4.1.1
112112
continue-on-error: true # prevent failing when no pages are modified
113113
with:
114114
subject-path: ${{ env.subject_path }}

.github/workflows/copy-release-assets.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
- name: Attest copied assets
4444
if: github.repository == 'tldr-pages/tldr'
4545
id: attest
46-
uses: actions/attest-build-provenance@a2bbfa25375fe432b6a289bc6b6cd05ecd0c4c32 # v4.1.0
46+
uses: actions/attest-build-provenance@0f67c3f4856b2e3261c31976d6725780e5e4c373 # v4.1.1
4747
with:
4848
subject-path: ${{ env.subject_path }}
4949

.github/workflows/sync.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
with:
1919
fetch-depth: 0
2020

21-
- uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0
21+
- uses: actions/setup-python@ece7cb06caefa5fff74198d8649806c4678c61a1 # v6.3.0
2222
with:
2323
python-version: '3.12'
2424
cache: 'pip'

contributing-guides/translation-templates/see-also-mentions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,7 @@ This file contains the translation templates of this notice.
228228
### ne
229229

230230
```markdown
231-
> हेर्नुहोस् पनि: `example`.
231+
> हेर्नुहोस् पनि: `example`
232232
```
233233

234234
---

pages.ar/android/input.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# input
22

3-
> ارسال (event codes) او (touchscreen gestures) الى اجهزة اندرويد
3+
> ارسال (event codes) او (touchscreen gestures) الى اجهزة اندرويد.
44
> يمكنك استخدام هذا الامر من خلال `adb shell`.
55
> لمزيد من التفاصيل: <https://developer.android.com/reference/android/view/KeyEvent.html#constants_1>.
66

pages.ar/android/settings.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# settings
2+
3+
> احصل على المزيد من المعلومات عن نظام اندرويد.
4+
> لمزيد من التفاصيل: <https://web.archive.org/web/20240525010124/https://adbinstaller.com/commands/adb-shell-settings-5b670d5ee7958178a2955536>.
5+
6+
- قائمة الاعدادات في `global`:
7+
8+
`settings list global`
9+
10+
- احصل على قيمة اعدادات معينة:
11+
12+
`settings get {{global}} {{airplane_mode_on}}`
13+
14+
- حدد قيمة اعدادات محددة:
15+
16+
`settings put {{system}} {{screen_brightness}} {{42}}`
17+
18+
- احذف اعدادات معينة:
19+
20+
`settings delete {{secure}} {{screensaver_enabled}}`

pages.ar/common/rm.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# rm
22

3-
> يستخدم الأمر لحذف الملفات او المجلدات
3+
> يستخدم الأمر لحذف الملفات او المجلدات.
44
> انظر أيضًا: `rmdir`, `trash`.
55
> لمزيد من التفاصيل: <https://www.gnu.org/software/coreutils/manual/html_node/rm-invocation.html>.
66

pages.ar/linux/ip-neighbour.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# ip neighbour
2+
3+
> هذا الأمر هو اسم مستعار لـ `ip neighbor`.
4+
5+
- إعرض التوثيقات للأمر الأصلي:
6+
7+
`tldr ip neighbor`

pages.ar/linux/pgrep.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# pgrep
22

33
> البحث عن العمليات أو إرسال إشارات إليها باستخدام الاسم.
4+
> انظر أيضًا: `pidof`.
45
> لمزيد من التفاصيل: <https://manned.org/pgrep>.
56
67
- عرض معرّفات العمليات (PIDs) لأي عمليات جارية تتطابق مع اسم العملية:
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# internet-explorer
2+
3+
> هذا الأمر هو اسم مستعار لـ `iexplore`.
4+
5+
- إعرض التوثيقات للأمر الأصلي:
6+
7+
`tldr {{[-p|--platform]}} windows iexplore`

0 commit comments

Comments
 (0)