Preserve old translation

7f076ee92a..9f37a0245c (r820447434)
This commit is contained in:
Damien Elmes 2022-03-07 18:14:12 +10:00
parent f3c8857421
commit e6028cd9a4
2 changed files with 2 additions and 2 deletions

View File

@ -72,7 +72,7 @@ importing-note-updated =
[one] { $count } note updated
*[other] { $count } notes updated
}
importing-imported-media-file =
importing-processed-media-file =
{ $count ->
[one] Imported { $count } media file
*[other] Imported { $count } media files

View File

@ -108,7 +108,7 @@ pub(super) fn progress_to_proto(progress: Option<Progress>, tr: &I18n) -> pb::Pr
Progress::Import(progress) => pb::progress::Value::Importing(
match progress {
ImportProgress::Collection => tr.importing_importing_collection(),
ImportProgress::Media(n) => tr.importing_imported_media_file(n),
ImportProgress::Media(n) => tr.importing_processed_media_file(n),
}
.into(),
),