]> granicus.if.org Git - neomutt/commitdiff
I18N: version.c: Pass the complete license string to the translator
authorReis Radomil <reisradomil@fake-box.com>
Sun, 22 Apr 2018 04:16:05 +0000 (04:16 +0000)
committerRichard Russon <rich@flatcap.org>
Tue, 24 Apr 2018 20:31:55 +0000 (21:31 +0100)
This partly reverses commit 9b7faeeb7eb3dd436444c98c662ab1656fb9ba14.

version.c

index 24980d5a4cbb3b14391407040df2d6ec4522b496..36d880841c3ede5920c13fe82267647a01cc0b5b 100644 (file)
--- a/version.c
+++ b/version.c
@@ -87,13 +87,12 @@ static const char *License = N_(
     "    This program is distributed in the hope that it will be useful,\n"
     "    but WITHOUT ANY WARRANTY; without even the implied warranty of\n"
     "    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n"
-    "    GNU General Public License for more details.\n");
-
-static const char *Obtaining =
-    N_("    You should have received a copy of the GNU General Public License\n"
-       "    along with this program; if not, write to the Free Software\n"
-       "    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  "
-       "02110-1301, USA.\n");
+    "    GNU General Public License for more details.\n"
+    "\n"
+    "    You should have received a copy of the GNU General Public License\n"
+    "    along with this program; if not, write to the Free Software\n"
+    "    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  "
+    "02110-1301, USA.\n");
 
 static const char *ReachingUs =
     N_("To learn more about NeoMutt, visit: https://www.neomutt.org\n"
@@ -451,7 +450,6 @@ void print_copyright(void)
   puts(Copyright);
   puts(_(Thanks));
   puts(_(License));
-  puts(_(Obtaining));
   puts(_(ReachingUs));
 }