Skip to content

Commit 1b2176b

Browse files
committed
install: hardcode verbose copy message
1 parent c7a9b62 commit 1b2176b

3 files changed

Lines changed: 1 addition & 7 deletions

File tree

src/uu/install/locales/en-US.ftl

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,5 +57,4 @@ install-warning-compare-ignored = the --compare (-C) option is ignored when you
5757
install-verbose-creating-directory = creating directory { $path }
5858
install-verbose-creating-directory-step = install: creating directory { $path }
5959
install-verbose-removed = removed { $path }
60-
install-verbose-copy = { $from } -> { $to }
6160
install-verbose-backup = (backup: { $backup })

src/uu/install/locales/fr-FR.ftl

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,5 +57,4 @@ install-warning-compare-ignored = l'option --compare (-C) est ignorée quand un
5757
install-verbose-creating-directory = création du répertoire { $path }
5858
install-verbose-creating-directory-step = install : création du répertoire { $path }
5959
install-verbose-removed = supprimé { $path }
60-
install-verbose-copy = { $from } -> { $to }
6160
install-verbose-backup = (sauvegarde : { $backup })

src/uu/install/src/install.rs

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1106,11 +1106,7 @@ fn finalize_installed_file(
11061106
}
11071107

11081108
if b.verbose {
1109-
write!(
1110-
stdout(),
1111-
"{}",
1112-
translate!("install-verbose-copy", "from" => from.quote(), "to" => to.quote())
1113-
)?;
1109+
write!(stdout(), "{} -> {}", from.quote(), to.quote())?;
11141110
match backup_path {
11151111
Some(path) => writeln!(
11161112
stdout(),

0 commit comments

Comments
 (0)