Skip to content

Commit

Permalink
I18N: Mark "Total" message in MultiProgressBar() for a translation
Browse files Browse the repository at this point in the history
  • Loading branch information
Paweł Marciniak authored and kontura committed Nov 21, 2024
1 parent 717a79f commit bb6a9ee
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion libdnf5-cli/progressbar/multi_progress_bar.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@ along with libdnf. If not, see <https://www.gnu.org/licenses/>.

#include "libdnf5-cli/tty.hpp"

#include "libdnf5/utils/bgettext/bgettext-lib.h"

#include <unistd.h>

#include <algorithm>
Expand All @@ -31,7 +33,7 @@ along with libdnf. If not, see <https://www.gnu.org/licenses/>.
namespace libdnf5::cli::progressbar {


MultiProgressBar::MultiProgressBar() : total(0, "Total") {
MultiProgressBar::MultiProgressBar() : total(0, _("Total")) {
total.set_auto_finish(false);
total.start();
if (tty::is_interactive()) {
Expand Down

0 comments on commit bb6a9ee

Please sign in to comment.