Fri Jul 22 16:51:15 2022 UTC ()
Add a menu option to set the file extension of the downloaded sets.
amd64 sets are .tar.xz and sysinst fails by default.


(christos)
diff -r1.26 -r1.27 src/usr.sbin/sysinst/menus.mi
diff -r1.40 -r1.41 src/usr.sbin/sysinst/msg.mi.de
diff -r1.43 -r1.44 src/usr.sbin/sysinst/msg.mi.en
diff -r1.36 -r1.37 src/usr.sbin/sysinst/msg.mi.es
diff -r1.41 -r1.42 src/usr.sbin/sysinst/msg.mi.fr
diff -r1.42 -r1.43 src/usr.sbin/sysinst/msg.mi.pl

cvs diff -r1.26 -r1.27 src/usr.sbin/sysinst/menus.mi (expand / switch to unified diff)

--- src/usr.sbin/sysinst/menus.mi 2022/07/10 10:52:40 1.26
+++ src/usr.sbin/sysinst/menus.mi 2022/07/22 16:51:14 1.27
@@ -1,14 +1,14 @@ @@ -1,14 +1,14 @@
1/* $NetBSD: menus.mi,v 1.26 2022/07/10 10:52:40 martin Exp $ */ 1/* $NetBSD: menus.mi,v 1.27 2022/07/22 16:51:14 christos Exp $ */
2 2
3/*- 3/*-
4 * Copyright (c) 2003 The NetBSD Foundation, Inc. 4 * Copyright (c) 2003 The NetBSD Foundation, Inc.
5 * All rights reserved. 5 * All rights reserved.
6 * 6 *
7 * This code is derived from software contributed to The NetBSD Foundation 7 * This code is derived from software contributed to The NetBSD Foundation
8 * by David Laight. 8 * by David Laight.
9 * 9 *
10 * Redistribution and use in source and binary forms, with or without 10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions 11 * modification, are permitted provided that the following conditions
12 * are met: 12 * are met:
13 * 1. Redistributions of source code must retain the above copyright 13 * 1. Redistributions of source code must retain the above copyright
14 * notice, this list of conditions and the following disclaimer. 14 * notice, this list of conditions and the following disclaimer.
@@ -364,26 +364,28 @@ menu ftpsource, y=-4, x=0, w=70, no box, @@ -364,26 +364,28 @@ menu ftpsource, y=-4, x=0, w=70, no box,
364 exitstring MSG_Get_Distribution; 364 exitstring MSG_Get_Distribution;
365 display action { 365 display action {
366 msg_display_subst(MSG_ftpsource, 2, "." SETS_TAR_SUFF, 366 msg_display_subst(MSG_ftpsource, 2, "." SETS_TAR_SUFF,
367 url_proto((uintptr_t)((arg_rv*)arg)->arg)); 367 url_proto((uintptr_t)((arg_rv*)arg)->arg));
368 }; 368 };
369 option {src_legend(menu, MSG_Host, ftp.xfer_host[(uintptr_t)((arg_rv*)arg)->arg]);}, 369 option {src_legend(menu, MSG_Host, ftp.xfer_host[(uintptr_t)((arg_rv*)arg)->arg]);},
370 action { src_prompt(MSG_Host, ftp.xfer_host[(uintptr_t)((arg_rv*)arg)->arg], sizeof ftp.xfer_host[(uintptr_t)((arg_rv*)arg)->arg]); }; 370 action { src_prompt(MSG_Host, ftp.xfer_host[(uintptr_t)((arg_rv*)arg)->arg], sizeof ftp.xfer_host[(uintptr_t)((arg_rv*)arg)->arg]); };
371 option {src_legend(menu, MSG_Base_dir, ftp.dir);}, 371 option {src_legend(menu, MSG_Base_dir, ftp.dir);},
372 action { src_prompt(MSG_Base_dir, ftp.dir, sizeof ftp.dir); }; 372 action { src_prompt(MSG_Base_dir, ftp.dir, sizeof ftp.dir); };
373 option {src_legend(menu, MSG_Set_dir_bin, set_dir_bin);}, 373 option {src_legend(menu, MSG_Set_dir_bin, set_dir_bin);},
374 action { src_prompt(MSG_Set_dir_bin, set_dir_bin, sizeof set_dir_bin); }; 374 action { src_prompt(MSG_Set_dir_bin, set_dir_bin, sizeof set_dir_bin); };
375 option {src_legend(menu, MSG_Set_dir_src, set_dir_src);}, 375 option {src_legend(menu, MSG_Set_dir_src, set_dir_src);},
376 action { src_prompt(MSG_Set_dir_src, set_dir_src, sizeof set_dir_src); }; 376 action { src_prompt(MSG_Set_dir_src, set_dir_src, sizeof set_dir_src); };
 377 option {src_legend(menu, MSG_Dist_postfix, dist_postfix);},
 378 action { src_prompt(MSG_Dist_postfix, dist_postfix, sizeof dist_postfix); };
377 option {src_legend(menu, MSG_User, ftp.user);}, 379 option {src_legend(menu, MSG_User, ftp.user);},
378 action { src_prompt(MSG_User, ftp.user, sizeof ftp.user); 380 action { src_prompt(MSG_User, ftp.user, sizeof ftp.user);
379 ftp.pass[0] = 0; 381 ftp.pass[0] = 0;
380 }; 382 };
381 option {src_legend(menu, MSG_Password, 383 option {src_legend(menu, MSG_Password,
382 strcmp(ftp.user, "ftp") == 0 || ftp.pass[0] == 0 384 strcmp(ftp.user, "ftp") == 0 || ftp.pass[0] == 0
383 ? ftp.pass : msg_string(MSG_hidden));}, 385 ? ftp.pass : msg_string(MSG_hidden));},
384 action { if (strcmp(ftp.user, "ftp") == 0) 386 action { if (strcmp(ftp.user, "ftp") == 0)
385 src_prompt(MSG_email, ftp.pass, sizeof ftp.pass); 387 src_prompt(MSG_email, ftp.pass, sizeof ftp.pass);
386 else { 388 else {
387 msg_prompt_noecho(MSG_Password, "", 389 msg_prompt_noecho(MSG_Password, "",
388 ftp.pass, sizeof ftp.pass); 390 ftp.pass, sizeof ftp.pass);
389 } 391 }
@@ -414,26 +416,28 @@ menu ftpsource, y=-4, x=0, w=70, no box, @@ -414,26 +416,28 @@ menu ftpsource, y=-4, x=0, w=70, no box,
414 416
415menu nfssource, y=-4, x=0, w=70, no box, no clear, 417menu nfssource, y=-4, x=0, w=70, no box, no clear,
416 exitstring MSG_Get_Distribution; 418 exitstring MSG_Get_Distribution;
417 display action { const char suff[] = "." SETS_TAR_SUFF; 419 display action { const char suff[] = "." SETS_TAR_SUFF;
418 msg_display_subst(MSG_nfssource, 1, &suff); }; 420 msg_display_subst(MSG_nfssource, 1, &suff); };
419 option {src_legend(menu, MSG_Host, nfs_host);}, 421 option {src_legend(menu, MSG_Host, nfs_host);},
420 action { src_prompt(MSG_Host, nfs_host, sizeof nfs_host); }; 422 action { src_prompt(MSG_Host, nfs_host, sizeof nfs_host); };
421 option {src_legend(menu, MSG_Base_dir, nfs_dir);}, 423 option {src_legend(menu, MSG_Base_dir, nfs_dir);},
422 action { src_prompt(MSG_Base_dir, nfs_dir, sizeof nfs_dir); }; 424 action { src_prompt(MSG_Base_dir, nfs_dir, sizeof nfs_dir); };
423 option {src_legend(menu, MSG_Set_dir_bin, set_dir_bin);}, 425 option {src_legend(menu, MSG_Set_dir_bin, set_dir_bin);},
424 action { src_prompt(MSG_Set_dir_bin, set_dir_bin, sizeof set_dir_bin); }; 426 action { src_prompt(MSG_Set_dir_bin, set_dir_bin, sizeof set_dir_bin); };
425 option {src_legend(menu, MSG_Set_dir_src, set_dir_src);}, 427 option {src_legend(menu, MSG_Set_dir_src, set_dir_src);},
426 action { src_prompt(MSG_Set_dir_src, set_dir_src, sizeof set_dir_src); }; 428 action { src_prompt(MSG_Set_dir_src, set_dir_src, sizeof set_dir_src); };
 429 option {src_legend(menu, MSG_Dist_postfix, dist_postfix);},
 430 action { src_prompt(MSG_Dist_postfix, dist_postfix, sizeof dist_postfix); };
427 option MSG_Configure_network, 431 option MSG_Configure_network,
428 action { 432 action {
429 extern int network_up; 433 extern int network_up;
430 network_up = 0; 434 network_up = 0;
431 config_network(1); 435 config_network(1);
432 }; 436 };
433 option MSG_exit_menu_generic, exit, action { *((int*)arg) = SET_RETRY; }; 437 option MSG_exit_menu_generic, exit, action { *((int*)arg) = SET_RETRY; };
434 438
435menu fdremount, title MSG_What_do_you_want_to_do; 439menu fdremount, title MSG_What_do_you_want_to_do;
436 option MSG_Try_again, exit, action { *(int *)arg = SET_CONTINUE; }; 440 option MSG_Try_again, exit, action { *(int *)arg = SET_CONTINUE; };
437 option MSG_Set_finished, exit, action { *(int *)arg = SET_OK; }; 441 option MSG_Set_finished, exit, action { *(int *)arg = SET_OK; };
438 option MSG_Abort_fetch, exit, action { *(int *)arg = SET_RETRY; }; 442 option MSG_Abort_fetch, exit, action { *(int *)arg = SET_RETRY; };
439 443
@@ -460,53 +464,59 @@ menu floppysource, y=-4, x=0, w=70, no b @@ -460,53 +464,59 @@ menu floppysource, y=-4, x=0, w=70, no b
460 clean_xfer_dir ? MSG_Yes : MSG_No);}, 464 clean_xfer_dir ? MSG_Yes : MSG_No);},
461 action {clean_xfer_dir = ask_yesno(MSG_delete_xfer_file); }; 465 action {clean_xfer_dir = ask_yesno(MSG_delete_xfer_file); };
462 option MSG_exit_menu_generic, exit, action { *((int*)arg) = SET_RETRY; }; 466 option MSG_exit_menu_generic, exit, action { *((int*)arg) = SET_RETRY; };
463 467
464menu cdromsource, y=-4, x=0, w=70, no box, no clear, exitstring MSG_Continue; 468menu cdromsource, y=-4, x=0, w=70, no box, no clear, exitstring MSG_Continue;
465 display action { const char suff[] = "." SETS_TAR_SUFF; 469 display action { const char suff[] = "." SETS_TAR_SUFF;
466 msg_display_add_subst(MSG_cdromsource, 1, &suff); }; 470 msg_display_add_subst(MSG_cdromsource, 1, &suff); };
467 option {src_legend(menu, MSG_Device, cdrom_dev);}, 471 option {src_legend(menu, MSG_Device, cdrom_dev);},
468 action { src_prompt(MSG_dev, cdrom_dev, sizeof cdrom_dev); }; 472 action { src_prompt(MSG_dev, cdrom_dev, sizeof cdrom_dev); };
469 option {src_legend(menu, MSG_Set_dir_bin, set_dir_bin);}, 473 option {src_legend(menu, MSG_Set_dir_bin, set_dir_bin);},
470 action { src_prompt(MSG_Set_dir_bin, set_dir_bin, sizeof set_dir_bin); }; 474 action { src_prompt(MSG_Set_dir_bin, set_dir_bin, sizeof set_dir_bin); };
471 option {src_legend(menu, MSG_Set_dir_src, set_dir_src);}, 475 option {src_legend(menu, MSG_Set_dir_src, set_dir_src);},
472 action { src_prompt(MSG_Set_dir_src, set_dir_src, sizeof set_dir_src); }; 476 action { src_prompt(MSG_Set_dir_src, set_dir_src, sizeof set_dir_src); };
 477 option {src_legend(menu, MSG_Dist_postfix, dist_postfix);},
 478 action { src_prompt(MSG_Dist_postfix, dist_postfix, sizeof dist_postfix); };
473 option MSG_abort_install, exit, action { *((int*)arg) = SET_ABANDON; }; 479 option MSG_abort_install, exit, action { *((int*)arg) = SET_ABANDON; };
474 option MSG_source_sel_retry, exit, action { *((int*)arg) = SET_RETRY; }; 480 option MSG_source_sel_retry, exit, action { *((int*)arg) = SET_RETRY; };
475 481
476menu localfssource, y=-4, x=0, w=70, no box, no clear, exitstring MSG_Continue; 482menu localfssource, y=-4, x=0, w=70, no box, no clear, exitstring MSG_Continue;
477 display action { const char suff[] = "." SETS_TAR_SUFF; 483 display action { const char suff[] = "." SETS_TAR_SUFF;
478 msg_display_subst(MSG_localfssource, 1, &suff); }; 484 msg_display_subst(MSG_localfssource, 1, &suff); };
479 option {src_legend(menu, MSG_Device, localfs_dev);}, 485 option {src_legend(menu, MSG_Device, localfs_dev);},
480 action { src_prompt(MSG_dev, localfs_dev, sizeof localfs_dev);}; 486 action { src_prompt(MSG_dev, localfs_dev, sizeof localfs_dev);};
481 option {src_legend(menu, MSG_File_system, localfs_fs);}, 487 option {src_legend(menu, MSG_File_system, localfs_fs);},
482 action { src_prompt(MSG_filesys, localfs_fs, sizeof localfs_fs); }; 488 action { src_prompt(MSG_filesys, localfs_fs, sizeof localfs_fs); };
483 option {src_legend(menu, MSG_Base_dir, localfs_dir);}, 489 option {src_legend(menu, MSG_Base_dir, localfs_dir);},
484 action { src_prompt(MSG_Base_dir, localfs_dir, sizeof localfs_dir);}; 490 action { src_prompt(MSG_Base_dir, localfs_dir, sizeof localfs_dir);};
485 option {src_legend(menu, MSG_Set_dir_bin, set_dir_bin);}, 491 option {src_legend(menu, MSG_Set_dir_bin, set_dir_bin);},
486 action { src_prompt(MSG_Set_dir_bin, set_dir_bin, sizeof set_dir_bin); }; 492 action { src_prompt(MSG_Set_dir_bin, set_dir_bin, sizeof set_dir_bin); };
487 option {src_legend(menu, MSG_Set_dir_src, set_dir_src);}, 493 option {src_legend(menu, MSG_Set_dir_src, set_dir_src);},
488 action { src_prompt(MSG_Set_dir_src, set_dir_src, sizeof set_dir_src); }; 494 action { src_prompt(MSG_Set_dir_src, set_dir_src, sizeof set_dir_src); };
 495 option {src_legend(menu, MSG_Dist_postfix, dist_postfix);},
 496 action { src_prompt(MSG_Dist_postfix, dist_postfix, sizeof dist_postfix); };
489 option MSG_exit_menu_generic, exit, action { *((int*)arg) = SET_RETRY; }; 497 option MSG_exit_menu_generic, exit, action { *((int*)arg) = SET_RETRY; };
490 498
491menu localdirsource, y=-4, x=0, w=70, no box, no clear, exitstring MSG_Continue; 499menu localdirsource, y=-4, x=0, w=70, no box, no clear, exitstring MSG_Continue;
492 display action { const char suff[] = "." SETS_TAR_SUFF; 500 display action { const char suff[] = "." SETS_TAR_SUFF;
493 msg_display_subst(MSG_localdir, 1, &suff); }; 501 msg_display_subst(MSG_localdir, 1, &suff); };
494 option {src_legend(menu, MSG_Base_dir, localfs_dir);}, 502 option {src_legend(menu, MSG_Base_dir, localfs_dir);},
495 action { src_prompt(MSG_Base_dir, localfs_dir, 60); }; 503 action { src_prompt(MSG_Base_dir, localfs_dir, 60); };
496 option {src_legend(menu, MSG_Set_dir_bin, set_dir_bin);}, 504 option {src_legend(menu, MSG_Set_dir_bin, set_dir_bin);},
497 action { src_prompt(MSG_Set_dir_bin, set_dir_bin, 60); }; 505 action { src_prompt(MSG_Set_dir_bin, set_dir_bin, 60); };
498 option {src_legend(menu, MSG_Set_dir_src, set_dir_src);}, 506 option {src_legend(menu, MSG_Set_dir_src, set_dir_src);},
499 action { src_prompt(MSG_Set_dir_src, set_dir_src, 60); }; 507 action { src_prompt(MSG_Set_dir_src, set_dir_src, 60); };
 508 option {src_legend(menu, MSG_Dist_postfix, dist_postfix);},
 509 action { src_prompt(MSG_Dist_postfix, dist_postfix, 60); };
500 option MSG_exit_menu_generic, exit, action { *((int*)arg) = SET_RETRY; }; 510 option MSG_exit_menu_generic, exit, action { *((int*)arg) = SET_RETRY; };
501 511
502menu namesrv6, title MSG_Select_DNS_server; 512menu namesrv6, title MSG_Select_DNS_server;
503 option "google-public-dns-a.google.com (IPv4)", exit, action 513 option "google-public-dns-a.google.com (IPv4)", exit, action
504 { 514 {
505#ifdef INET6 515#ifdef INET6
506 strlcpy(net_namesvr, "8.8.8.8", 516 strlcpy(net_namesvr, "8.8.8.8",
507 sizeof(net_namesvr)); 517 sizeof(net_namesvr));
508 *((int*)arg) = 1; 518 *((int*)arg) = 1;
509#else 519#else
510 *((int*)arg) = 0; 520 *((int*)arg) = 0;
511#endif 521#endif
512 };  522 };

cvs diff -r1.40 -r1.41 src/usr.sbin/sysinst/msg.mi.de (expand / switch to unified diff)

--- src/usr.sbin/sysinst/msg.mi.de 2022/06/11 18:30:02 1.40
+++ src/usr.sbin/sysinst/msg.mi.de 2022/07/22 16:51:14 1.41
@@ -1,14 +1,14 @@ @@ -1,14 +1,14 @@
1/* $NetBSD: msg.mi.de,v 1.40 2022/06/11 18:30:02 martin Exp $ */ 1/* $NetBSD: msg.mi.de,v 1.41 2022/07/22 16:51:14 christos Exp $ */
2 2
3/* 3/*
4 * Copyright 1997 Piermont Information Systems Inc. 4 * Copyright 1997 Piermont Information Systems Inc.
5 * All rights reserved. 5 * All rights reserved.
6 * 6 *
7 * Written by Philip A. Nelson for Piermont Information Systems Inc. 7 * Written by Philip A. Nelson for Piermont Information Systems Inc.
8 * 8 *
9 * Redistribution and use in source and binary forms, with or without 9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions 10 * modification, are permitted provided that the following conditions
11 * are met: 11 * are met:
12 * 1. Redistributions of source code must retain the above copyright 12 * 1. Redistributions of source code must retain the above copyright
13 * notice, this list of conditions and the following disclaimer. 13 * notice, this list of conditions and the following disclaimer.
14 * 2. Redistributions in binary form must reproduce the above copyright 14 * 2. Redistributions in binary form must reproduce the above copyright
@@ -1133,26 +1133,27 @@ message cdrom {CD-ROM / DVD} @@ -1133,26 +1133,27 @@ message cdrom {CD-ROM / DVD}
1133message floppy {Diskette} 1133message floppy {Diskette}
1134message local_fs {Ungemountetes Dateisysytem} 1134message local_fs {Ungemountetes Dateisysytem}
1135message local_dir {Lokales Verzeichnis} 1135message local_dir {Lokales Verzeichnis}
1136message Select_your_distribution {Wählen Sie Ihre Pakete} 1136message Select_your_distribution {Wählen Sie Ihre Pakete}
1137message Full_installation {Volle Installation} 1137message Full_installation {Volle Installation}
1138message Full_installation_nox {Grundinstallation ohne X11} 1138message Full_installation_nox {Grundinstallation ohne X11}
1139message Minimal_installation {Minimale Installation} 1139message Minimal_installation {Minimale Installation}
1140message Custom_installation {Benutzerdefinierte Installation} 1140message Custom_installation {Benutzerdefinierte Installation}
1141message hidden {** versteckt **} 1141message hidden {** versteckt **}
1142message Host {Host} 1142message Host {Host}
1143message Base_dir {Basispfad} 1143message Base_dir {Basispfad}
1144message Set_dir_bin {Binärpaket-Verzeichnis} 1144message Set_dir_bin {Binärpaket-Verzeichnis}
1145message Set_dir_src {Quelltext-Verzeichnis} 1145message Set_dir_src {Quelltext-Verzeichnis}
 1146message Dist_postfix {Dateierweiterung}
1146message Xfer_dir {Zwischenspeicher} 1147message Xfer_dir {Zwischenspeicher}
1147message transfer_method {Download via} 1148message transfer_method {Download via}
1148message User {Benutzer} 1149message User {Benutzer}
1149message Password {Passwort} 1150message Password {Passwort}
1150message Proxy {Proxy} 1151message Proxy {Proxy}
1151message Get_Distribution {Distribution herunterladen} 1152message Get_Distribution {Distribution herunterladen}
1152message Continue {Weiter} 1153message Continue {Weiter}
1153message Prompt_Continue {Möchten Sie fortfahren?} 1154message Prompt_Continue {Möchten Sie fortfahren?}
1154message What_do_you_want_to_do {Was möchten Sie tun?} 1155message What_do_you_want_to_do {Was möchten Sie tun?}
1155message Try_again {Versuchen Sie es erneut} 1156message Try_again {Versuchen Sie es erneut}
1156message Set_finished {Paket fertig} 1157message Set_finished {Paket fertig}
1157message Skip_set {Paket überspringen} 1158message Skip_set {Paket überspringen}
1158message Skip_group {Paketgruppe überspringen} 1159message Skip_group {Paketgruppe überspringen}

cvs diff -r1.43 -r1.44 src/usr.sbin/sysinst/msg.mi.en (expand / switch to unified diff)

--- src/usr.sbin/sysinst/msg.mi.en 2022/06/11 18:30:02 1.43
+++ src/usr.sbin/sysinst/msg.mi.en 2022/07/22 16:51:14 1.44
@@ -1,14 +1,14 @@ @@ -1,14 +1,14 @@
1/* $NetBSD: msg.mi.en,v 1.43 2022/06/11 18:30:02 martin Exp $ */ 1/* $NetBSD: msg.mi.en,v 1.44 2022/07/22 16:51:14 christos Exp $ */
2 2
3/* 3/*
4 * Copyright 1997 Piermont Information Systems Inc. 4 * Copyright 1997 Piermont Information Systems Inc.
5 * All rights reserved. 5 * All rights reserved.
6 * 6 *
7 * Written by Philip A. Nelson for Piermont Information Systems Inc. 7 * Written by Philip A. Nelson for Piermont Information Systems Inc.
8 * 8 *
9 * Redistribution and use in source and binary forms, with or without 9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions 10 * modification, are permitted provided that the following conditions
11 * are met: 11 * are met:
12 * 1. Redistributions of source code must retain the above copyright 12 * 1. Redistributions of source code must retain the above copyright
13 * notice, this list of conditions and the following disclaimer. 13 * notice, this list of conditions and the following disclaimer.
14 * 2. Redistributions in binary form must reproduce the above copyright 14 * 2. Redistributions in binary form must reproduce the above copyright
@@ -1067,26 +1067,27 @@ message cdrom {CD-ROM / DVD} @@ -1067,26 +1067,27 @@ message cdrom {CD-ROM / DVD}
1067message floppy {Floppy} 1067message floppy {Floppy}
1068message local_fs {Unmounted fs} 1068message local_fs {Unmounted fs}
1069message local_dir {Local directory} 1069message local_dir {Local directory}
1070message Select_your_distribution {Select your distribution} 1070message Select_your_distribution {Select your distribution}
1071message Full_installation {Full installation} 1071message Full_installation {Full installation}
1072message Full_installation_nox {Installation without X11} 1072message Full_installation_nox {Installation without X11}
1073message Minimal_installation {Minimal installation} 1073message Minimal_installation {Minimal installation}
1074message Custom_installation {Custom installation} 1074message Custom_installation {Custom installation}
1075message hidden {** hidden **} 1075message hidden {** hidden **}
1076message Host {Host} 1076message Host {Host}
1077message Base_dir {Base directory} 1077message Base_dir {Base directory}
1078message Set_dir_bin {Binary set directory} 1078message Set_dir_bin {Binary set directory}
1079message Set_dir_src {Source set directory} 1079message Set_dir_src {Source set directory}
 1080message Dist_postfix {File extension}
1080message Xfer_dir {Transfer directory} 1081message Xfer_dir {Transfer directory}
1081message transfer_method {Download via} 1082message transfer_method {Download via}
1082message User {User} 1083message User {User}
1083message Password {Password} 1084message Password {Password}
1084message Proxy {Proxy} 1085message Proxy {Proxy}
1085message Get_Distribution {Get Distribution} 1086message Get_Distribution {Get Distribution}
1086message Continue {Continue} 1087message Continue {Continue}
1087message Prompt_Continue {Continue?} 1088message Prompt_Continue {Continue?}
1088message What_do_you_want_to_do {What do you want to do?} 1089message What_do_you_want_to_do {What do you want to do?}
1089message Try_again {Try again} 1090message Try_again {Try again}
1090message Set_finished {Set finished} 1091message Set_finished {Set finished}
1091message Skip_set {Skip set} 1092message Skip_set {Skip set}
1092message Skip_group {Skip set group} 1093message Skip_group {Skip set group}

cvs diff -r1.36 -r1.37 src/usr.sbin/sysinst/msg.mi.es (expand / switch to unified diff)

--- src/usr.sbin/sysinst/msg.mi.es 2022/06/11 18:30:02 1.36
+++ src/usr.sbin/sysinst/msg.mi.es 2022/07/22 16:51:14 1.37
@@ -1,14 +1,14 @@ @@ -1,14 +1,14 @@
1/* $NetBSD: msg.mi.es,v 1.36 2022/06/11 18:30:02 martin Exp $ */ 1/* $NetBSD: msg.mi.es,v 1.37 2022/07/22 16:51:14 christos Exp $ */
2 2
3/* 3/*
4 * Copyright 1997 Piermont Information Systems Inc. 4 * Copyright 1997 Piermont Information Systems Inc.
5 * All rights reserved. 5 * All rights reserved.
6 * 6 *
7 * Written by Philip A. Nelson for Piermont Information Systems Inc. 7 * Written by Philip A. Nelson for Piermont Information Systems Inc.
8 * 8 *
9 * Redistribution and use in source and binary forms, with or without 9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions 10 * modification, are permitted provided that the following conditions
11 * are met: 11 * are met:
12 * 1. Redistributions of source code must retain the above copyright 12 * 1. Redistributions of source code must retain the above copyright
13 * notice, this list of conditions and the following disclaimer. 13 * notice, this list of conditions and the following disclaimer.
14 * 2. Redistributions in binary form must reproduce the above copyright 14 * 2. Redistributions in binary form must reproduce the above copyright
@@ -1094,26 +1094,27 @@ message cdrom {CD-ROM / DVD} @@ -1094,26 +1094,27 @@ message cdrom {CD-ROM / DVD}
1094message floppy {Disquete} 1094message floppy {Disquete}
1095message local_fs {Sistema de archivos desmontado} 1095message local_fs {Sistema de archivos desmontado}
1096message local_dir {Directorio Local} 1096message local_dir {Directorio Local}
1097message Select_your_distribution {Seleccione su distribución} 1097message Select_your_distribution {Seleccione su distribución}
1098message Full_installation {Instalación completa} 1098message Full_installation {Instalación completa}
1099message Full_installation_nox {Instalación sin X11} 1099message Full_installation_nox {Instalación sin X11}
1100message Minimal_installation {Instalación mínima} 1100message Minimal_installation {Instalación mínima}
1101message Custom_installation {Instalación personalizada} 1101message Custom_installation {Instalación personalizada}
1102message hidden {** oculto **} 1102message hidden {** oculto **}
1103message Host {Máquina} 1103message Host {Máquina}
1104message Base_dir {Directorio base} 1104message Base_dir {Directorio base}
1105message Set_dir_src {Directorio de conjuntos binary} /* fix XLAT */ 1105message Set_dir_src {Directorio de conjuntos binary} /* fix XLAT */
1106message Set_dir_bin {Directorio de conjuntos source} /* fix XLAT */ 1106message Set_dir_bin {Directorio de conjuntos source} /* fix XLAT */
 1107message Dist_postfix {Extensión de archivo}
1107message Xfer_dir {Directorio a transferir a} 1108message Xfer_dir {Directorio a transferir a}
1108message transfer_method {Download via} 1109message transfer_method {Download via}
1109message User {Usuario} 1110message User {Usuario}
1110message Password {Contraseña} 1111message Password {Contraseña}
1111message Proxy {Proxy} 1112message Proxy {Proxy}
1112message Get_Distribution {Obtener la distribución} 1113message Get_Distribution {Obtener la distribución}
1113message Continue {Continuar} 1114message Continue {Continuar}
1114message Prompt_Continue {¿Continuar?} 1115message Prompt_Continue {¿Continuar?}
1115message What_do_you_want_to_do {¿Qué desea hacer?} 1116message What_do_you_want_to_do {¿Qué desea hacer?}
1116message Try_again {Reintentar} 1117message Try_again {Reintentar}
1117message Set_finished {Conjunto finalizado} 1118message Set_finished {Conjunto finalizado}
1118message Skip_set {Omitir conjunto} 1119message Skip_set {Omitir conjunto}
1119message Skip_group {Omitir grupo de conjuntos} 1120message Skip_group {Omitir grupo de conjuntos}

cvs diff -r1.41 -r1.42 src/usr.sbin/sysinst/msg.mi.fr (expand / switch to unified diff)

--- src/usr.sbin/sysinst/msg.mi.fr 2022/06/11 18:30:02 1.41
+++ src/usr.sbin/sysinst/msg.mi.fr 2022/07/22 16:51:14 1.42
@@ -1,14 +1,14 @@ @@ -1,14 +1,14 @@
1/* $NetBSD: msg.mi.fr,v 1.41 2022/06/11 18:30:02 martin Exp $ */ 1/* $NetBSD: msg.mi.fr,v 1.42 2022/07/22 16:51:14 christos Exp $ */
2 2
3/* 3/*
4 * Copyright 1997 Piermont Information Systems Inc. 4 * Copyright 1997 Piermont Information Systems Inc.
5 * All rights reserved. 5 * All rights reserved.
6 * 6 *
7 * Written by Philip A. Nelson for Piermont Information Systems Inc. 7 * Written by Philip A. Nelson for Piermont Information Systems Inc.
8 * 8 *
9 * Redistribution and use in source and binary forms, with or without 9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions 10 * modification, are permitted provided that the following conditions
11 * are met: 11 * are met:
12 * 1. Redistributions of source code must retain the above copyright 12 * 1. Redistributions of source code must retain the above copyright
13 * notice, this list of conditions and the following disclaimer. 13 * notice, this list of conditions and the following disclaimer.
14 * 2. Redistributions in binary form must reproduce the above copyright 14 * 2. Redistributions in binary form must reproduce the above copyright
@@ -1144,26 +1144,27 @@ message cdrom {CD-ROM / DVD} @@ -1144,26 +1144,27 @@ message cdrom {CD-ROM / DVD}
1144message floppy {Disquette} 1144message floppy {Disquette}
1145message local_fs {Système de fichiers non-monté} 1145message local_fs {Système de fichiers non-monté}
1146message local_dir {Répertoire local monté} 1146message local_dir {Répertoire local monté}
1147message Select_your_distribution {Sélection de la distribution} 1147message Select_your_distribution {Sélection de la distribution}
1148message Full_installation {Installation complète} 1148message Full_installation {Installation complète}
1149message Full_installation_nox {Installation sans X11} 1149message Full_installation_nox {Installation sans X11}
1150message Minimal_installation {Installation minimale} 1150message Minimal_installation {Installation minimale}
1151message Custom_installation {Installation personnalisée} 1151message Custom_installation {Installation personnalisée}
1152message hidden {** caché **} 1152message hidden {** caché **}
1153message Host {Serveur FTP} 1153message Host {Serveur FTP}
1154message Base_dir {Répertoire de base} 1154message Base_dir {Répertoire de base}
1155message Set_dir_bin {Répertoire des composants binaire} 1155message Set_dir_bin {Répertoire des composants binaire}
1156message Set_dir_src {Répertoire des composants source} 1156message Set_dir_src {Répertoire des composants source}
 1157message Dist_postfix {Extension de fichier}
1157message Xfer_dir {Répertoire de transfert} 1158message Xfer_dir {Répertoire de transfert}
1158message transfer_method {Download via} 1159message transfer_method {Download via}
1159message User {Utilisateur} 1160message User {Utilisateur}
1160message Password {Mot de passe} 1161message Password {Mot de passe}
1161message Proxy {Proxy} 1162message Proxy {Proxy}
1162message Get_Distribution {Récupérer la distribution} 1163message Get_Distribution {Récupérer la distribution}
1163message Continue {Continuer} 1164message Continue {Continuer}
1164message Prompt_Continue {Continuer?} 1165message Prompt_Continue {Continuer?}
1165message What_do_you_want_to_do {Que voulez-vous faire ?} 1166message What_do_you_want_to_do {Que voulez-vous faire ?}
1166message Try_again {Réessayer} 1167message Try_again {Réessayer}
1167message Set_finished {Extraction terminée} 1168message Set_finished {Extraction terminée}
1168message Skip_set {Sauter cet ensemble} 1169message Skip_set {Sauter cet ensemble}
1169message Skip_group {Sauter ce groupe} 1170message Skip_group {Sauter ce groupe}

cvs diff -r1.42 -r1.43 src/usr.sbin/sysinst/msg.mi.pl (expand / switch to unified diff)

--- src/usr.sbin/sysinst/msg.mi.pl 2022/06/11 18:30:02 1.42
+++ src/usr.sbin/sysinst/msg.mi.pl 2022/07/22 16:51:14 1.43
@@ -1,14 +1,14 @@ @@ -1,14 +1,14 @@
1/* $NetBSD: msg.mi.pl,v 1.42 2022/06/11 18:30:02 martin Exp $ */ 1/* $NetBSD: msg.mi.pl,v 1.43 2022/07/22 16:51:14 christos Exp $ */
2/* Based on english version: */ 2/* Based on english version: */
3/* NetBSD: msg.mi.pl,v 1.36 2004/04/17 18:55:35 atatat Exp */ 3/* NetBSD: msg.mi.pl,v 1.36 2004/04/17 18:55:35 atatat Exp */
4 4
5/* 5/*
6 * Copyright 1997 Piermont Information Systems Inc. 6 * Copyright 1997 Piermont Information Systems Inc.
7 * All rights reserved. 7 * All rights reserved.
8 * 8 *
9 * Written by Philip A. Nelson for Piermont Information Systems Inc. 9 * Written by Philip A. Nelson for Piermont Information Systems Inc.
10 * 10 *
11 * Redistribution and use in source and binary forms, with or without 11 * Redistribution and use in source and binary forms, with or without
12 * modification, are permitted provided that the following conditions 12 * modification, are permitted provided that the following conditions
13 * are met: 13 * are met:
14 * 1. Redistributions of source code must retain the above copyright 14 * 1. Redistributions of source code must retain the above copyright
@@ -1060,26 +1060,27 @@ message cdrom {CD-ROM / DVD} @@ -1060,26 +1060,27 @@ message cdrom {CD-ROM / DVD}
1060message floppy {Dyskietka} 1060message floppy {Dyskietka}
1061message local_fs {Niezamontowany system plikow} 1061message local_fs {Niezamontowany system plikow}
1062message local_dir {Lokalny katalog} 1062message local_dir {Lokalny katalog}
1063message Select_your_distribution {Wybierz swoja dystrybucje} 1063message Select_your_distribution {Wybierz swoja dystrybucje}
1064message Full_installation {Pelna instalacja} 1064message Full_installation {Pelna instalacja}
1065message Full_installation_nox {Instalacja bez X11} 1065message Full_installation_nox {Instalacja bez X11}
1066message Minimal_installation {Minimalna instalacja} 1066message Minimal_installation {Minimalna instalacja}
1067message Custom_installation {Inna instalacja} 1067message Custom_installation {Inna instalacja}
1068message hidden {** ukryte **} 1068message hidden {** ukryte **}
1069message Host {Host} 1069message Host {Host}
1070message Base_dir {Katalog} 1070message Base_dir {Katalog}
1071message Set_dir_src {Katalog pakietow binarych} 1071message Set_dir_src {Katalog pakietow binarych}
1072message Set_dir_bin {Katalog pkgsrc} 1072message Set_dir_bin {Katalog pkgsrc}
 1073message Dist_postfix {Rozszerzenie pliku}
1073message Xfer_dir {Katalog z plikami pobranymi} 1074message Xfer_dir {Katalog z plikami pobranymi}
1074message transfer_method {Sposob pobierania} 1075message transfer_method {Sposob pobierania}
1075message User {Uzytkownik} 1076message User {Uzytkownik}
1076message Password {Haslo} 1077message Password {Haslo}
1077message Proxy {Proxy} 1078message Proxy {Proxy}
1078message Get_Distribution {Sciagnij Dystrybucje} 1079message Get_Distribution {Sciagnij Dystrybucje}
1079message Continue {Kontynuuj} 1080message Continue {Kontynuuj}
1080message Prompt_Continue {Kontynuuj?} 1081message Prompt_Continue {Kontynuuj?}
1081message What_do_you_want_to_do {Co chcesz zrobic?} 1082message What_do_you_want_to_do {Co chcesz zrobic?}
1082message Try_again {Sprobowac jeszcze raz} 1083message Try_again {Sprobowac jeszcze raz}
1083message Set_finished {Pakiet kompletny} 1084message Set_finished {Pakiet kompletny}
1084message Skip_set {Pomin pakiet} 1085message Skip_set {Pomin pakiet}
1085message Skip_group {Pomin grupe pakietow} 1086message Skip_group {Pomin grupe pakietow}