From 909a0a6a6cc5da70534285cd26ca90b80cade8a0 Mon Sep 17 00:00:00 2001 From: "Stan U." <89152624+StanFromIreland@users.noreply.github.com> Date: Mon, 25 Nov 2024 19:45:13 +0000 Subject: [PATCH 1/3] Update update_switcher_chart.py with title and line plot --- update_switcher_chart.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/update_switcher_chart.py b/update_switcher_chart.py index 7a83268637..8a0f7b663e 100644 --- a/update_switcher_chart.py +++ b/update_switcher_chart.py @@ -24,9 +24,10 @@ progress.append(number) dates.append(datetime.fromtimestamp(commit.authored_date)) -pyplot.plot_date(dates, progress) +pyplot.plot_date(dates, progress, linestyle='-',marker='') pyplot.ylim(ymin=0) pyplot.grid() pyplot.gcf().autofmt_xdate() pyplot.gca().yaxis.set_major_formatter(PercentFormatter()) +pyplot.title("Postęp tłumaczenia do dodatku przełącznika języków") pyplot.savefig("language-switcher-progress.svg") From 414f9ce5f97421d6c3747a74502104c707de84d4 Mon Sep 17 00:00:00 2001 From: "Stan U." <89152624+StanFromIreland@users.noreply.github.com> Date: Wed, 27 Nov 2024 08:09:56 +0000 Subject: [PATCH 2/3] Update update_switcher_chart.py Co-authored-by: Maciej Olko --- update_switcher_chart.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/update_switcher_chart.py b/update_switcher_chart.py index 8a0f7b663e..cf825450ea 100644 --- a/update_switcher_chart.py +++ b/update_switcher_chart.py @@ -24,7 +24,7 @@ progress.append(number) dates.append(datetime.fromtimestamp(commit.authored_date)) -pyplot.plot_date(dates, progress, linestyle='-',marker='') +pyplot.plot_date(dates, progress, linestyle='-', marker='') pyplot.ylim(ymin=0) pyplot.grid() pyplot.gcf().autofmt_xdate() From 10f059dabf5d74f51c238417d4c8c9a74a6fa56f Mon Sep 17 00:00:00 2001 From: "Stan U." <89152624+StanFromIreland@users.noreply.github.com> Date: Wed, 27 Nov 2024 08:10:09 +0000 Subject: [PATCH 3/3] Update update_switcher_chart.py Co-authored-by: Maciej Olko --- update_switcher_chart.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/update_switcher_chart.py b/update_switcher_chart.py index cf825450ea..17cb87cbc1 100644 --- a/update_switcher_chart.py +++ b/update_switcher_chart.py @@ -29,5 +29,5 @@ pyplot.grid() pyplot.gcf().autofmt_xdate() pyplot.gca().yaxis.set_major_formatter(PercentFormatter()) -pyplot.title("Postęp tłumaczenia do dodatku przełącznika języków") +pyplot.title("Postęp tłumaczenia do dodania do przełącznika języków") pyplot.savefig("language-switcher-progress.svg")