From d33d38e768435c635be31d1f318dc35d1bab039a Mon Sep 17 00:00:00 2001 From: Derrick Petzold Date: Fri, 9 Oct 2020 11:27:37 -0700 Subject: [PATCH 1/2] Fix awesome-client example --- manpages/awesome-client.1.de.txt | 2 +- manpages/awesome-client.1.es.txt | 2 +- manpages/awesome-client.1.fr.txt | 2 +- manpages/awesome-client.1.it.txt | 2 +- manpages/awesome-client.1.ru.txt | 2 +- manpages/awesome-client.1.txt | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/manpages/awesome-client.1.de.txt b/manpages/awesome-client.1.de.txt index 2163306f..f9cf18a8 100644 --- a/manpages/awesome-client.1.de.txt +++ b/manpages/awesome-client.1.de.txt @@ -28,7 +28,7 @@ Das Modul 'awful.remote' muss geladen sein, um diesen Befehl zu benutzen. BEISPIELE --------- .... -$ awesome-client 'return 1+1, "Hello, world"\ +$ awesome-client 'return 1+1, "Hello, world"' double 2 string "Hello, world" diff --git a/manpages/awesome-client.1.es.txt b/manpages/awesome-client.1.es.txt index 2879a1a1..8336caf1 100644 --- a/manpages/awesome-client.1.es.txt +++ b/manpages/awesome-client.1.es.txt @@ -31,7 +31,7 @@ funcione. EXAMPLES ------- .... -$ awesome-client 'return 1+1, "Hello, world"\ +$ awesome-client 'return 1+1, "Hello, world"' double 2 string "Hello, world" diff --git a/manpages/awesome-client.1.fr.txt b/manpages/awesome-client.1.fr.txt index e7e8b2e0..d1167aa7 100644 --- a/manpages/awesome-client.1.fr.txt +++ b/manpages/awesome-client.1.fr.txt @@ -28,7 +28,7 @@ Le module 'awful.remote' doit être chargé pour que cette commande fonctionne. EXAMPLES ------- .... -$ awesome-client 'return 1+1, "Hello, world"\ +$ awesome-client 'return 1+1, "Hello, world"' double 2 string "Hello, world" diff --git a/manpages/awesome-client.1.it.txt b/manpages/awesome-client.1.it.txt index 7f11adcc..947c1323 100644 --- a/manpages/awesome-client.1.it.txt +++ b/manpages/awesome-client.1.it.txt @@ -31,7 +31,7 @@ comando. EXAMPLES ------- .... -$ awesome-client 'return 1+1, "Hello, world"\ +$ awesome-client 'return 1+1, "Hello, world"' double 2 string "Hello, world" diff --git a/manpages/awesome-client.1.ru.txt b/manpages/awesome-client.1.ru.txt index 8ccdf7b2..7bdde881 100644 --- a/manpages/awesome-client.1.ru.txt +++ b/manpages/awesome-client.1.ru.txt @@ -30,7 +30,7 @@ awesome через D-Bus. Если установлен «rlwrap», то он б ПРИМЕРЫ ------- .... -$ awesome-client 'return 1+1, "Hello, world"\ +$ awesome-client 'return 1+1, "Hello, world"' double 2 string "Hello, world" diff --git a/manpages/awesome-client.1.txt b/manpages/awesome-client.1.txt index 304f89aa..03e5f917 100644 --- a/manpages/awesome-client.1.txt +++ b/manpages/awesome-client.1.txt @@ -29,7 +29,7 @@ The 'awful.remote' module has to be loaded if you want this command to work. EXAMPLES ------- .... -$ awesome-client 'return 1+1, "Hello, world"\ +$ awesome-client 'return 1+1, "Hello, world"' double 2 string "Hello, world" From f49687256d192e4243b5331b600a074ac602683d Mon Sep 17 00:00:00 2001 From: Derrick Petzold Date: Fri, 9 Oct 2020 11:30:17 -0700 Subject: [PATCH 2/2] Make easier to cut-n-paste --- manpages/awesome-client.1.de.txt | 10 +++++----- manpages/awesome-client.1.es.txt | 10 +++++----- manpages/awesome-client.1.fr.txt | 10 +++++----- manpages/awesome-client.1.it.txt | 10 +++++----- manpages/awesome-client.1.ru.txt | 10 +++++----- manpages/awesome-client.1.txt | 10 +++++----- 6 files changed, 30 insertions(+), 30 deletions(-) diff --git a/manpages/awesome-client.1.de.txt b/manpages/awesome-client.1.de.txt index f9cf18a8..40623fdf 100644 --- a/manpages/awesome-client.1.de.txt +++ b/manpages/awesome-client.1.de.txt @@ -35,11 +35,11 @@ $ awesome-client 'return 1+1, "Hello, world"' # Das folgende Beispiel erzeugt keine Ausgabe auf der Kommandozeile, # sondern zeigt eine Benachrichtigung an. $ awesome-client ' -> naughty = require("naughty") -> naughty.notify({ -> title="CLI-Benachrichtigung", -> text="Dies ist eine Benachrichtigung von der Kommandozeile!"}) -> ' + naughty = require("naughty") + naughty.notify({ + title="CLI-Benachrichtigung", + text="Dies ist eine Benachrichtigung von der Kommandozeile!"}) +' # Starte eine lesen-ausführen-ausgeben-Schleife (REPL). # In diesem Modus wird jede Zeile zu awesome geschickt; auf die selbe Art diff --git a/manpages/awesome-client.1.es.txt b/manpages/awesome-client.1.es.txt index 8336caf1..cce25ed3 100644 --- a/manpages/awesome-client.1.es.txt +++ b/manpages/awesome-client.1.es.txt @@ -38,11 +38,11 @@ $ awesome-client 'return 1+1, "Hello, world"' # The following does not return anything on the command line, # but will show a notification. $ awesome-client ' -> naughty = require("naughty") -> naughty.notify({ -> title="CLI Notification", -> text="This is a notification sent from the command line!"}) -> ' + naughty = require("naughty") + naughty.notify({ + title="CLI Notification", + text="This is a notification sent from the command line!"}) +' # Entering read-eval-print-loop mode # This mode will send every line to awesome, exactly the same as passing diff --git a/manpages/awesome-client.1.fr.txt b/manpages/awesome-client.1.fr.txt index d1167aa7..80c3b87f 100644 --- a/manpages/awesome-client.1.fr.txt +++ b/manpages/awesome-client.1.fr.txt @@ -35,11 +35,11 @@ $ awesome-client 'return 1+1, "Hello, world"' # The following does not return anything on the command line, # but will show a notification. $ awesome-client ' -> naughty = require("naughty") -> naughty.notify({ -> title="CLI Notification", -> text="This is a notification sent from the command line!"}) -> ' + naughty = require("naughty") + naughty.notify({ + title="CLI Notification", + text="This is a notification sent from the command line!"}) +' # Entering read-eval-print-loop mode # This mode will send every line to awesome, exactly the same as passing diff --git a/manpages/awesome-client.1.it.txt b/manpages/awesome-client.1.it.txt index 947c1323..ea69b83a 100644 --- a/manpages/awesome-client.1.it.txt +++ b/manpages/awesome-client.1.it.txt @@ -38,11 +38,11 @@ $ awesome-client 'return 1+1, "Hello, world"' # The following does not return anything on the command line, # but will show a notification. $ awesome-client ' -> naughty = require("naughty") -> naughty.notify({ -> title="CLI Notification", -> text="This is a notification sent from the command line!"}) -> ' + naughty = require("naughty") + naughty.notify({ + title="CLI Notification", + text="This is a notification sent from the command line!"}) +' # Entering read-eval-print-loop mode # This mode will send every line to awesome, exactly the same as passing diff --git a/manpages/awesome-client.1.ru.txt b/manpages/awesome-client.1.ru.txt index 7bdde881..bf233a51 100644 --- a/manpages/awesome-client.1.ru.txt +++ b/manpages/awesome-client.1.ru.txt @@ -37,11 +37,11 @@ $ awesome-client 'return 1+1, "Hello, world"' # Следующий пример не возвращает ничего в командную строку, # но показывает уведомление. $ awesome-client ' -> naughty = require("naughty") -> naughty.notify({ -> title="CLI Notification", -> text="Это уведомление было отправлено из командной строки!"}) -> ' + naughty = require("naughty") + naughty.notify({ + title="CLI Notification", + text="Это уведомление было отправлено из командной строки!"}) +' # Интерактивный режим (REPL) # В данном режиме каждая строка введенная пользователем diff --git a/manpages/awesome-client.1.txt b/manpages/awesome-client.1.txt index 03e5f917..06d6cc1c 100644 --- a/manpages/awesome-client.1.txt +++ b/manpages/awesome-client.1.txt @@ -36,11 +36,11 @@ $ awesome-client 'return 1+1, "Hello, world"' # The following does not return anything on the command line, # but will show a notification. $ awesome-client ' -> naughty = require("naughty") -> naughty.notify({ -> title="CLI Notification", -> text="This is a notification sent from the command line!"}) -> ' + naughty = require("naughty") + naughty.notify({ + title="CLI Notification", + text="This is a notification sent from the command line!"}) +' # Entering read-eval-print-loop mode # This mode will send every line to awesome, exactly the same as passing