Skip to content

Commit 4138236

Browse files
committed
parse_cli_options.c: Move email and URL outside of translatable string
https://www.gnu.org/software/gettext/manual/html_node/No-embedded-URLs.html
1 parent 2a649a5 commit 4138236

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/parse_cli_options.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -186,12 +186,12 @@ version(void)
186186
{
187187
printf(_("\
188188
rmw %s\n\
189-
Author: Andy Alt (arch_stanton5995@proton.me)\n\
189+
Author: Andy Alt (%s)\n\
190190
The RMW team: see AUTHORS file\n\
191191
This program comes with ABSOLUTELY NO WARRANTY; for details type 'rmw -w.'\n\
192192
This is free software, and you are welcome to redistribute it\n\
193-
under certain conditions; see <http://www.gnu.org/licenses/gpl.html>\n\
194-
for details.\n"), RMW_VERSION_STRING);
193+
under certain conditions; see <%s>\n\
194+
for details.\n"), RMW_VERSION_STRING, "arch_stanton5995@proton.me", "http://www.gnu.org/licenses/gpl.html");
195195
exit(0);
196196
}
197197

0 commit comments

Comments
 (0)