From 5f61644c1115f9277648433774b5b35e1f43832b Mon Sep 17 00:00:00 2001 From: Henrique Deodato Date: Mon, 27 Apr 2026 15:25:19 -0600 Subject: [PATCH] Update the progress bar url that tracks the evolution in the translation tables replace the current url the generate the progress bar that is offline replacing by the service https://progressbar.info/ --- .translation-tables/translation-tables.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.translation-tables/translation-tables.py b/.translation-tables/translation-tables.py index 3aa3a43f..274bfb98 100755 --- a/.translation-tables/translation-tables.py +++ b/.translation-tables/translation-tables.py @@ -92,7 +92,7 @@ def str2html_href(link, text): def value2html_progress_image(percentage): """ Creates a HTML code snippet, which links to a progress bar image to a given percentage. """ - return '' + percentage + '%' + return '' + percentage + '%' def progress(untranslated, translated): """ Calculates percentage for translation progress. """ @@ -396,4 +396,4 @@ def create_readme_locale_tables(): #% write/update the translation tables create_uuid_tables() - create_readme_locale_tables() \ No newline at end of file + create_readme_locale_tables()