From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([209.51.188.92]:56051) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hJywo-0005Ub-M9 for guix-patches@gnu.org; Fri, 26 Apr 2019 07:23:19 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hJywi-0002h1-Vj for guix-patches@gnu.org; Fri, 26 Apr 2019 07:23:16 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:46654) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1hJywY-0002Wx-2F for guix-patches@gnu.org; Fri, 26 Apr 2019 07:23:04 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1hJywX-0005Ns-U3 for guix-patches@gnu.org; Fri, 26 Apr 2019 07:23:01 -0400 Subject: [bug#35436] [PATCH 1/2] installer: Fix typo. References: <20190426132019.7ce4f149@gmail.com> In-Reply-To: <20190426132019.7ce4f149@gmail.com> Resent-Message-ID: Date: Fri, 26 Apr 2019 13:22:05 +0200 From: Miguel Message-ID: <20190426132205.2da38f56@gmail.com> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="MP_/E+AkGXvt/_MByhoOq/IOLjL" List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 35436@debbugs.gnu.org --MP_/E+AkGXvt/_MByhoOq/IOLjL Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Content-Disposition: inline installer: Fix typo. * gnu/installer/newt/menu.scm (run-menu-page): Missing space after period. --- gnu/installer/newt/menu.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --MP_/E+AkGXvt/_MByhoOq/IOLjL Content-Type: text/x-patch Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename=0001-installer-Fix-typo.patch >From 9c2f6ca367cb02e37ce325b6fa5914947d1c1d68 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miguel=20=C3=81ngel=20Arruga=20Vivas?= Date: Wed, 24 Apr 2019 12:39:14 +0200 Subject: [PATCH 1/2] installer: Fix typo. * gnu/installer/newt/menu.scm (run-menu-page): Missing space after period. --- gnu/installer/newt/menu.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gnu/installer/newt/menu.scm b/gnu/installer/newt/menu.scm index 161266a94a..e153d3d756 100644 --- a/gnu/installer/newt/menu.scm +++ b/gnu/installer/newt/menu.scm @@ -32,7 +32,7 @@ process from." steps)) (run-listbox-selection-page - #:info-text (G_ "Choose where you want to resume the install.\ + #:info-text (G_ "Choose where you want to resume the install. \ You can also abort the installation by pressing the Abort button.") #:title (G_ "Installation menu") #:listbox-items (steps->items steps) -- 2.21.0 --MP_/E+AkGXvt/_MByhoOq/IOLjL--