summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2018-02-01 16:50:13 +0000
committerCarl Hetherington <cth@carlh.net>2018-02-01 16:50:13 +0000
commitc62b42f4f6175cf00c878960dbeb40827891d4c2 (patch)
tree99bcf42156858bc45eddf24b30a1ce58985a4945 /src
parent4f9997e9e7f9c2fda4d2ca186c16abe404d9368f (diff)
Typo kHz -> Hz.
Diffstat (limited to 'src')
-rw-r--r--src/lib/audio_content.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/audio_content.cc b/src/lib/audio_content.cc
index 7ede8284e..a252e4b5a 100644
--- a/src/lib/audio_content.cc
+++ b/src/lib/audio_content.cc
@@ -250,14 +250,14 @@ AudioContent::processing_description () const
}
if (not_resampled && resampled) {
- return String::compose (_("Some audio will be resampled to %1kHz"), resampled_frame_rate ());
+ return String::compose (_("Some audio will be resampled to %1Hz"), resampled_frame_rate ());
}
if (!not_resampled && resampled) {
if (same) {
- return String::compose (_("Audio will be resampled from %1kHz to %2kHz"), common_frame_rate.get(), resampled_frame_rate ());
+ return String::compose (_("Audio will be resampled from %1Hz to %2Hz"), common_frame_rate.get(), resampled_frame_rate ());
} else {
- return String::compose (_("Audio will be resampled to %1kHz"), resampled_frame_rate ());
+ return String::compose (_("Audio will be resampled to %1Hz"), resampled_frame_rate ());
}
}