-
-
Notifications
You must be signed in to change notification settings - Fork 4.9k
adb-*: add French translation #19096
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
8809dd7
adb-*: add French translation
iTrooz 5b38ff8
Update pages.fr/common/adb-forward.md
iTrooz 95df4b2
Update pages.fr/common/adb-shell-pm-list-packages.md
iTrooz e53b0b1
Update pages.fr/common/adb-shell-pm-list.md
iTrooz 27e8d01
fix
iTrooz d1787c3
Merge branch 'main' into adb_french
Managor 8c4a761
add fifth example
iTrooz 1cff1ea
Update pages.fr/common/adb-forward.md
iTrooz dfc8dc7
update wording
iTrooz 7f4e999
fix
iTrooz 1942ab9
Voir -> Affiche
iTrooz File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,7 @@ | ||
| # adb disconnect | ||
|
|
||
| > Cette commande a été déplacée vers `adb connect`. | ||
|
|
||
| - Affiche la documentation de `adb disconnect` : | ||
|
|
||
| `tldr adb connect` |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,24 @@ | ||
| # adb forward | ||
|
|
||
| > Se connecte à un appareil Android sans fil. | ||
| > Plus d'informations : <https://developer.android.com/tools/adb>. | ||
|
|
||
| - Redirige un port TCP vers le seul émulateur ou appareil connecté : | ||
|
|
||
| `adb forward tcp:{{port_local}} tcp:{{port_distant}}` | ||
|
|
||
| - Redirige un port TCP vers un émulateur ou appareil spécifique (identifié par ID / numéro de [s]érie): | ||
|
|
||
| `adb -s {{ID_appareil}} forward tcp:{{port_local}} tcp:{{port_distant}}` | ||
|
|
||
| - Liste toutes les redirections : | ||
|
|
||
| `adb forward --list` | ||
|
|
||
| - Supprime une règle de redirection : | ||
|
|
||
| `adb forward --remove tcp:{{port_local}}` | ||
|
|
||
| - Supprime toutes les redirections : | ||
|
|
||
| `adb forward --remove-all` | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,8 @@ | ||
| # adb kill-server | ||
|
|
||
| > Arrête de force le serveur Android Debug Bridge (adb), en déconnectant les appareils et les émulateurs. | ||
| > Plus d'informations : <https://manned.org/adb#head14>. | ||
|
|
||
| - Arrête de force le serveur adb s'il est lancé : | ||
|
|
||
| `adb kill-server` |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,7 @@ | ||
| # adb pair | ||
|
|
||
| > Cette commande a été déplacée vers `adb connect`. | ||
|
|
||
| - Affiche la documentation de `adb pair` : | ||
|
|
||
| `tldr adb connect` |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,20 @@ | ||
| # adb reboot | ||
|
|
||
| > Redémarre un appareil Android connecté ou un émulateur. | ||
| > Plus d'informations : <https://manned.org/adb>. | ||
|
|
||
| - Redémarre l'appareil normalement : | ||
|
|
||
| `adb reboot` | ||
|
|
||
| - Redémarre l'appareil en mode "chargeur d'amorcage" : | ||
|
|
||
| `adb reboot bootloader` | ||
|
|
||
| - Redémarre l'appareil en mode "récupération" : | ||
|
|
||
| `adb reboot recovery` | ||
|
|
||
| - Redémarre l'appareil en mode "fastboot" : | ||
|
|
||
| `adb reboot fastboot` |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,32 @@ | ||
| # adb shell pm list packages | ||
|
|
||
| > Liste les paquets installés, connus, ou filtrés sur un appareil Android. | ||
| > Plus d'informations : <https://developer.android.com/tools/adb>. | ||
|
|
||
| - Liste tout les paquets installés : | ||
|
|
||
| `adb shell pm list packages` | ||
|
|
||
| - Liste tout les paquets et les chemins de leurs fichiers APK associés : | ||
|
|
||
| `adb shell pm list packages -f` | ||
|
|
||
| - Liste seulement les paquets désactivés : | ||
|
|
||
| `adb shell pm list packages -d` | ||
|
|
||
| - Liste seulement les paquets activés : | ||
|
|
||
| `adb shell pm list packages -e` | ||
|
|
||
| - Liste seulement les paquets système : | ||
|
|
||
| `adb shell pm list packages -s` | ||
|
|
||
| - Liste seulement les paquets tiers (hors système) : | ||
|
|
||
| `adb shell pm list packages -3` | ||
|
|
||
| - Affiche l'installateur pour chaque paquet : | ||
|
|
||
| `adb shell pm list packages -i` |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,32 @@ | ||
| # adb shell pm list | ||
|
|
||
| > Liste les utilisateurs, paquets, permissions, l'instrumentation, les groupes de permissions, les fonctionnalités et les bibliothèques gérées par le gestionnaire de paquets. | ||
| > Plus d'informations : <https://developer.android.com/tools/adb>. | ||
|
|
||
| - Liste les paquets installés : | ||
|
|
||
| `adb shell pm list packages` | ||
|
|
||
| - Affiche les utilisateurs sur le système : | ||
|
|
||
| `adb shell pm list users` | ||
|
|
||
| - Affiche tout les groupes de permissions connus : | ||
|
|
||
| `adb shell pm list permission-groups` | ||
|
|
||
| - Affiche toutes les permissions connues : | ||
|
|
||
| `adb shell pm list permissions` | ||
|
|
||
| - Affiche tout les paquets de test : | ||
|
|
||
| `adb shell pm list instrumentation` | ||
|
|
||
| - Affiche toutes les fonctionnalités du système : | ||
|
|
||
| `adb shell pm list features` | ||
|
|
||
| - Affiche toutes les bibliothèques supportées par l'appareil courant : | ||
|
|
||
| `adb shell pm list libraries` |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,36 @@ | ||
| # adb shell pm | ||
|
|
||
| > Gestionnaire de Paquets d'Android. | ||
| > Plus d'informations : <https://developer.android.com/tools/adb>. | ||
|
|
||
| - Liste les paquets installés : | ||
|
|
||
| `adb shell pm list packages` | ||
|
|
||
| - Installe une application depuis un chemin donné : | ||
|
|
||
| `adb shell pm install /{{chemin/vers/fichier.apk}}` | ||
|
|
||
| - Déinstalle un paquet de l'appareil : | ||
|
|
||
| `adb shell pm uninstall {{paquet}}` | ||
|
|
||
| - Supprime les données d'une application : | ||
|
|
||
| `adb shell pm clear {{paquet}}` | ||
|
|
||
| - Active une application ou un composant : | ||
|
|
||
| `adb shell pm enable {{paquet_ou_classe}}` | ||
|
|
||
| - Désactive une application ou un composant : | ||
|
|
||
| `adb shell pm disable-user {{paquet_ou_classe}}` | ||
|
|
||
| - Donne une permission à une application : | ||
|
|
||
| `adb shell pm grant {{paquet}} {{android.permission.CAMERA|android.permission.ACCESS_FINE_LOCATION|android.permission.READ_CONTACTS|...}}` | ||
|
|
||
| - Révoque une permission d'une application: | ||
|
|
||
| `adb shell pm revoke {{paquet}} {{android.permission.CAMERA|android.permission.ACCESS_FINE_LOCATION|android.permission.READ_CONTACTS|...}}` |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,8 @@ | ||
| # adb start-server | ||
|
|
||
| > Démarre le serveur Android Debug Bridge (adb) pour autoriser les connections adb connections des appareils ou émulateurs. | ||
| > Plus d'informations : <https://manned.org/adb#head14>. | ||
|
|
||
| - Démarre le serveur adb s'il n'est pas déjà lancé : | ||
|
|
||
| `adb start-server` |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.