GNOME Bugzilla – Bug 754322
String with two plural variables
Last modified: 2015-09-01 15:16:44 UTC
This string: details = f (ngettext ("%'d / %'d \xE2\x80\x94 %T left (%d files/sec)", "%'d / %'d \xE2\x80\x94 %T left (%d files/sec)", seconds_count_format_time_units (remaining_time)), (line 1921 in nautilus-file-operations.c) needs the same split treatment as this string: time_left_message = ngettext ("%'d / %'d \xE2\x80\x94 %T left", "%'d / %'d \xE2\x80\x94 %T left", seconds_count_format_time_units (remaining_time)); files_per_second_message = ngettext ("(%d file/sec)", "(%d files/sec)", (line 1533 in nautilus-file-operations.c) Otherwise there is no way to properly translate it in many languages.
Created attachment 310432 [details] [review] file-operations: fix plurals translation We were doing it elsewhere except here.
Attachment 310432 [details] pushed as 13bde5b - file-operations: fix plurals translation