Quellcode durchsuchen

multiple pages: ensure exactly one colon at the end of example descriptions (#5214)

bl-ue vor 4 Jahren
Ursprung
Commit
d28035c980

+ 1 - 1
pages.de/common/borg.md

@@ -12,7 +12,7 @@
 
 `borg create --progress {{/pfad/zum/repo_verzeichnis}}::{{Montag}} {{/pfad/zum/quell_verzeichnis}}`
 
--  Alle Archive in einem Repository auflisten
+-  Alle Archive in einem Repository auflisten:
 
 `borg list {{/pfad/zum/repo_verzeichnis}}`
 

+ 1 - 1
pages.de/common/cradle-package.md

@@ -11,7 +11,7 @@
 
 `cradle package search {{Paket}}`
 
-- Installieren eines Paketes von Packagist.
+- Installieren eines Paketes von Packagist:
 
 `cradle package install {{Paket}}`
 

+ 1 - 1
pages.de/common/exa.md

@@ -23,6 +23,6 @@
 
 `exa --long --tree --level={{3}}`
 
-- Dateien nach Änderungsdatum sortiert auflisten (älteste zuerst)
+- Dateien nach Änderungsdatum sortiert auflisten (älteste zuerst):
 
 `exa --long --sort={{modified}}`

+ 1 - 1
pages.de/common/git-commit.md

@@ -15,6 +15,6 @@
 
 `git commit --amend`
 
-- Nur spezifische Dateien commiten (die Dateien müssen schon auf dem Stage liegen)
+- Nur spezifische Dateien commiten (die Dateien müssen schon auf dem Stage liegen):
 
 `git commit {{path/to/my/file1}} {{path/to/my/file2}}`

+ 1 - 1
pages.de/common/ssh.md

@@ -27,7 +27,7 @@
 
 `ssh -L {{9999}}:{{example.org}}:{{80}} -N -T {{Benutzer}}@{{Externer_Server}}`
 
-- SSH Springen: Verbinden über einen Spring-Server zu einem externen Server (Es können auch mehrere Spring-Server über eine Komma-separierte Liste angegeben werden)
+- SSH Springen: Verbinden über einen Spring-Server zu einem externen Server (Es können auch mehrere Spring-Server über eine Komma-separierte Liste angegeben werden):
 
 `ssh -J {{Benutzer}}@{{Spring_Server}} {{Benutzer}}@{{Externer_Server}}`
 

+ 1 - 1
pages.es/common/chmod.md

@@ -2,7 +2,7 @@
 
 > Cambiar los permisos de acceso de un archivo o directorio.
 
-- Otorga al [u]suario que es propietario del archivo a ejecutarlo (x).
+- Otorga al [u]suario que es propietario del archivo permiso para [x] ejecutarlo:
 
 `chmod u+x {{archivo}}`
 

+ 1 - 1
pages.es/common/mysql.md

@@ -15,7 +15,7 @@
 
 `mysql -h {{maquina_remota}} {{nombre_base_de_datos}}`
 
-- Conecta a una base de datos a través de un socket unix
+- Conecta a una base de datos a través de un socket unix:
 
 `mysql --socket {{ruta/al/socket.sock}}`
 

+ 1 - 1
pages.es/linux/cmus.md

@@ -7,7 +7,7 @@
 
 `cmus {{ruta/al/directorio}}`
 
-- Añade un archivo/directorio a la librería
+- Añade un archivo/directorio a la librería:
 
 `:add {{ruta/al/archivo_o_directorio}}`
 

+ 1 - 1
pages.es/linux/conky.md

@@ -19,7 +19,7 @@
 
 `conky -d`
 
-- Alinea conky en el escritorio.
+- Alinea conky en el escritorio:
 
 `conky -a {{{arriba,abajo,en_medio}_{izquierda,derecha,en_medio}}}`
 

+ 1 - 1
pages.es/linux/dnf.md

@@ -23,7 +23,7 @@
 
 `sudo dnf install -y {{paquete}}`
 
-- Lista todos los paquetes instalados
+- Lista todos los paquetes instalados:
 
 `dnf list --installed`
 

+ 1 - 1
pages.fr/common/apropos.md

@@ -10,6 +10,6 @@
 
 `apropos -l {{expression_reguliere}}`
 
-- Recherche les pages qui contiennent toutes les expressions données (fonction ET)
+- Recherche les pages qui contiennent toutes les expressions données (fonction ET) :
 
 `apropos {{expression_reguliere_1}} -a {{expression_reguliere_2}} -a {{expression_reguliere_3}}`

+ 1 - 2
pages.fr/common/ifconfig.md

@@ -6,8 +6,7 @@
 
 `ifconfig {{eth0}}`
 
-- Affiche les détails de toutes les interfaces, y compris les interfaces
-désactivées :
+- Affiche les détails de toutes les interfaces, y compris les interfaces désactivées :
 
 `ifconfig -a`
 

+ 1 - 2
pages.fr/common/mkdir.md

@@ -6,7 +6,6 @@
 
 `mkdir {{répertoire}}`
 
-- Crée des répertoires récursivement (utile pour créer des répertoires
-imbriqués) :
+- Crée des répertoires récursivement (utile pour créer des répertoires imbriqués) :
 
 `mkdir -p {{chemin/vers/répertoire}}`

+ 1 - 1
pages.hi/common/ls.md

@@ -22,7 +22,7 @@
 
 `ls -lh`
 
-- आकार के अनुसार क्रमबद्ध लंबी सूची (घटते हुए)::
+- आकार के अनुसार क्रमबद्ध लंबी सूची (घटते हुए):
 
 `ls -lS`
 

+ 1 - 1
pages.it/common/ffmpeg.md

@@ -15,7 +15,7 @@
 
 `ffmpeg -i {{frame_%d.jpg}} -f image2 {{video.mpg|video.gif}}`
 
-- Estrai un singolo fotogramma da un video al timestamp mm:ss e salvalo come immagine di dimensioni 128x128
+- Estrai un singolo fotogramma da un video al timestamp mm:ss e salvalo come immagine di dimensioni 128x128:
 
 `ffmpeg -ss {{mm:ss}} -i {{video.mp4}} -frames 1 -s {{128x128}} -f image2 {{image.png}}`
 

+ 1 - 1
pages.it/common/git-prune.md

@@ -4,7 +4,7 @@
 > Questo comando è usato più spesso internamente da Git gc piuttosto che in modo diretto.
 > Maggiori informazioni: <https://git-scm.com/docs/git-prune>.
 
-- Elenca quali oggetti saranno eliminati da Git prune senza eliminarli definitivamente;
+- Elenca quali oggetti saranno eliminati da Git prune senza eliminarli definitivamente:
 
 `git prune --dry-run`
 

+ 2 - 2
pages.ko/common/assimp.md

@@ -20,11 +20,11 @@
 
 `assimp export {{입력_파일명.stl}} {{출력_파일명.obj}} {{매개변수}}`
 
-- 3D 파일의 내용을 요약하여 표시.
+- 3D 파일의 내용을 요약하여 표시:
 
 `assimp info {{경로/파일명}}`
 
-- 지원되는 모든 하위 명령 ("Verb")을 나열.
+- 지원되는 모든 하위 명령 ("Verb")을 나열:
 
 `assimp help`
 

+ 1 - 1
pages.ko/common/atoum.md

@@ -27,7 +27,7 @@
 
 `atoum -ns {{namespace}}`
 
-- 특정 태그를 갖고 테스트 실행
+- 특정 태그를 갖고 테스트 실행:
 
 `atoum -t {{태그}}`
 

+ 1 - 1
pages.ko/common/bc.md

@@ -2,7 +2,7 @@
 
 > 계산기의 기능을 수행합니다.
 
-- 표준 Math 라이브러리를 사용한 대화형 모드에서 계산기 실행하기.
+- 표준 Math 라이브러리를 사용한 대화형 모드에서 계산기 실행하기:
 
 `bc -l`
 

+ 1 - 1
pages.ko/common/csslint.md

@@ -3,7 +3,7 @@
 > CSS 코드용 린터.
 > 더 많은 정보: <https://github.com/CSSLint/csslint/wiki/Command-line-interface>.
 
-- 하나의 CSS 파일을 린트::
+- 하나의 CSS 파일을 린트:
 
 `csslint {{파일.css}}`
 

+ 1 - 1
pages.nl/common/adb.md

@@ -15,7 +15,7 @@
 
 `adb shell`
 
-- Stuur een Android-applicatie naar de emulator/het apparaat.
+- Stuur een Android-applicatie naar de emulator/het apparaat:
 
 `adb install -r {{pad/naar/bestand.apk}}`
 

+ 1 - 1
pages.nl/common/chmod.md

@@ -2,7 +2,7 @@
 
 > Verander de toegangstoestemmingen van een bestand of map.
 
-- Geef een gebruiker ([u]ser) die het bestand beheert het recht om deze uit te voeren (e[x]ecute).
+- Geef een gebruiker ([u]ser) die het bestand beheert het recht om deze uit te voeren (e[x]ecute):
 
 `chmod u+x {{bestand}}`
 

+ 1 - 1
pages.nl/common/chown.md

@@ -18,6 +18,6 @@
 
 `chown -h {{gebruiker}} {{pad/naar/symlink}}`
 
-- Verander de beheerder van een bestand of map naar dezelfde als een referentiebestand.
+- Verander de beheerder van een bestand of map naar dezelfde als een referentiebestand:
 
 `chown --reference={{pad/naar/referentiebestand}} {{pad/naar/bestand_of_map}}`

+ 1 - 1
pages.pl/common/diff.md

@@ -18,7 +18,7 @@
 
 `diff -u {{stary_plik}} {{nowy_plik}}`
 
-- Porównaj foldery rekurencyjnie (pokazuje nazwy różniących się plików/folderów a także zmiany w plikach)
+- Porównaj foldery rekurencyjnie (pokazuje nazwy różniących się plików/folderów a także zmiany w plikach):
 
 `diff -r {{stary_folder}} {{nowy_folder}}`
 

+ 1 - 1
pages.pl/common/php.md

@@ -23,7 +23,7 @@
 
 `php -S {{host:port}}`
 
-- Uzyskaj listę zainstalowanych rozszerzeń PHP
+- Uzyskaj listę zainstalowanych rozszerzeń PHP:
 
 `php -m`
 

+ 1 - 1
pages.pt_BR/common/ls.md

@@ -14,7 +14,7 @@
 
 `ls -la`
 
-- Listar todos os arquivos, apresentando o tamanho em medidas legíveis por humanos (kB, MB, GB).
+- Listar todos os arquivos, apresentando o tamanho em medidas legíveis por humanos (kB, MB, GB):
 
 `ls -lh`
 

+ 1 - 1
pages.pt_BR/common/yes.md

@@ -6,6 +6,6 @@
 
 `yes {{mensagem}}`
 
-- Exibir na tela a letra "y" repetidamente::
+- Exibir na tela a letra "y" repetidamente:
 
 `yes`

+ 1 - 1
pages.pt_BR/linux/aptitude.md

@@ -2,7 +2,7 @@
 
 > Gerenciador de pacotes das distribuições baseadas em Debian.
 
-- Atualizar a lista de pacotes disponíveis (recomenda-se executá-lo antes de outros comandos `aptitude`)::
+- Atualizar a lista de pacotes disponíveis (recomenda-se executá-lo antes de outros comandos `aptitude`):
 
 `aptitude update`
 

+ 1 - 1
pages.pt_BR/windows/sigverif.md

@@ -2,6 +2,6 @@
 
 > Uma interface gráfica para verificação de assinaturas de arquivos do sistema.
 
-- Abre a interface de verificação de assinatura.
+- Abre a interface de verificação de assinatura:
 
 `sigverif`

+ 1 - 1
pages.pt_PT/common/alias.md

@@ -19,7 +19,7 @@
 
 `unalias {{palavra}}`
 
-- Tornar `rm` num comando interativo
+- Tornar `rm` num comando interativo:
 
 `alias {{rm}}="{{rm -i}}"`
 

+ 1 - 1
pages.ru/common/tldr.md

@@ -7,7 +7,7 @@
 
 `tldr {{комманда}}`
 
-- Показывает tldr страницу для комманды tar для Linux
+- Показывает tldr страницу для комманды tar для Linux:
 
 `tldr -p {{linux}} {{tar}}`
 

+ 1 - 1
pages.tr/linux/apt-get.md

@@ -3,7 +3,7 @@
 > Debian ve Ubuntu paket yönetim aracı.
 > Paket aramak için `apt-cache` komutunu kullanın.
 
-- Kullanılabilir paket ve versiyon listesini güncelleyin (diğer `apt-get` komutlarını çalıştırmadan önce kullanmanız önerilir)
+- Kullanılabilir paket ve versiyon listesini güncelleyin (diğer `apt-get` komutlarını çalıştırmadan önce kullanmanız önerilir):
 
 `apt-get update`