From 451efd11f6f65079bed436d4ff9bb81f0122e5a1 Mon Sep 17 00:00:00 2001 From: Jonah Lawrence Date: Tue, 10 Dec 2024 12:56:08 +0200 Subject: [PATCH 01/24] docs(readme): Add short_numbers docs --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index ec6f1c9c..9eb30ea1 100644 --- a/README.md +++ b/README.md @@ -68,6 +68,7 @@ If the `theme` parameter is specified, any color customizations specified will b | `excludeDaysLabel` | Excluded days of the week text color | **hex code** without `#` or **css color** | | `date_format` | Date format pattern or empty for locale format | See note below on [📅 Date Formats](#-date-formats) | | `locale` | Locale for labels and numbers (Default: `en`) | ISO 639-1 code - See [🗪 Locales](#-locales) | +| `short_numbers` | Use short numbers (e.g. 1.5k instead of 1,500) | `true` or `false` | | `type` | Output format (Default: `svg`) | Current options: `svg`, `png` or `json` | | `mode` | Streak mode (Default: `daily`) | `daily` (contribute daily) or `weekly` (contribute once per Sun-Sat week) | | `exclude_days` | List of days of the week to exclude from streaks | Comma-separated list of day abbreviations (Sun, Mon, Tue, Wed, Thu, Fri, Sat) e.g. `Sun,Sat` | From 2dc7baef99ecf364b8dbdd6707cbba16249d6ad0 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 12 Dec 2024 14:06:48 +0200 Subject: [PATCH 02/24] chore(deps-dev): bump phpunit/phpunit from 11.5.0 to 11.5.1 (#748) Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- composer.lock | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/composer.lock b/composer.lock index 8cf68beb..25de8a79 100644 --- a/composer.lock +++ b/composer.lock @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "654199887393b4b015ee55d96c95000b", + "content-hash": "ad76467886e64ea7102825318254a227", "packages": [ { "name": "graham-campbell/result-type", @@ -706,16 +706,16 @@ }, { "name": "phpunit/php-code-coverage", - "version": "11.0.7", + "version": "11.0.8", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/php-code-coverage.git", - "reference": "f7f08030e8811582cc459871d28d6f5a1a4d35ca" + "reference": "418c59fd080954f8c4aa5631d9502ecda2387118" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/f7f08030e8811582cc459871d28d6f5a1a4d35ca", - "reference": "f7f08030e8811582cc459871d28d6f5a1a4d35ca", + "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/418c59fd080954f8c4aa5631d9502ecda2387118", + "reference": "418c59fd080954f8c4aa5631d9502ecda2387118", "shasum": "" }, "require": { @@ -734,7 +734,7 @@ "theseer/tokenizer": "^1.2.3" }, "require-dev": { - "phpunit/phpunit": "^11.4.1" + "phpunit/phpunit": "^11.5.0" }, "suggest": { "ext-pcov": "PHP extension that provides line coverage", @@ -772,7 +772,7 @@ "support": { "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues", "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy", - "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/11.0.7" + "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/11.0.8" }, "funding": [ { @@ -780,7 +780,7 @@ "type": "github" } ], - "time": "2024-10-09T06:21:38+00:00" + "time": "2024-12-11T12:34:27+00:00" }, { "name": "phpunit/php-file-iterator", @@ -1029,16 +1029,16 @@ }, { "name": "phpunit/phpunit", - "version": "11.5.0", + "version": "11.5.1", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/phpunit.git", - "reference": "0569902506a6c0878930b87ea79ec3b50ea563f7" + "reference": "2b94d4f2450b9869fa64a46fd8a6a41997aef56a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/0569902506a6c0878930b87ea79ec3b50ea563f7", - "reference": "0569902506a6c0878930b87ea79ec3b50ea563f7", + "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/2b94d4f2450b9869fa64a46fd8a6a41997aef56a", + "reference": "2b94d4f2450b9869fa64a46fd8a6a41997aef56a", "shasum": "" }, "require": { @@ -1110,7 +1110,7 @@ "support": { "issues": "https://github.com/sebastianbergmann/phpunit/issues", "security": "https://github.com/sebastianbergmann/phpunit/security/policy", - "source": "https://github.com/sebastianbergmann/phpunit/tree/11.5.0" + "source": "https://github.com/sebastianbergmann/phpunit/tree/11.5.1" }, "funding": [ { @@ -1126,7 +1126,7 @@ "type": "tidelift" } ], - "time": "2024-12-06T05:57:38+00:00" + "time": "2024-12-11T10:52:48+00:00" }, { "name": "sebastian/cli-parser", From 5e9fdc04a955938623a3306fc9af9262796b5c7b Mon Sep 17 00:00:00 2001 From: ANKDDEV Date: Fri, 20 Dec 2024 10:23:38 +0300 Subject: [PATCH 03/24] feat: add hacker-inverted theme (#753) * feat: add hacker-inverted theme * docs: add hacker-inverted theme --- docs/themes.md | 1 + src/themes.php | 13 +++++++++++++ 2 files changed, 14 insertions(+) diff --git a/docs/themes.md b/docs/themes.md index a5b03ffc..fb6c08f9 100644 --- a/docs/themes.md +++ b/docs/themes.md @@ -162,6 +162,7 @@ Note: Theme names provided are case-insensitive and any use of underscores will | `telegram-gradient` | ![image](https://github.com/user-attachments/assets/985c3e04-a5dd-4cba-a66e-d43ad9668af0) | | `microsoft` | ![image](https://github.com/user-attachments/assets/4c2cce9d-90b5-4e38-8422-656c5a78b4d9) | | `microsoft-dark` | ![image](https://github.com/user-attachments/assets/a5918d7d-f568-4012-b06f-d9cfacaece04) | +| `hacker-inverted` | ![image](https://github.com/user-attachments/assets/b64c136a-827b-4177-98f9-28db59bba0ef) | ### Can't find the theme you like? diff --git a/src/themes.php b/src/themes.php index 52e6a0d9..53c2a090 100644 --- a/src/themes.php +++ b/src/themes.php @@ -2004,4 +2004,17 @@ "dates" => "#7FBA00", "excludeDaysLabel" => "#7FBA00", ], + "hacker-inverted" => [ + "background" => "#20C20E", + "border" => "#000000", + "stroke" => "#000000", + "ring" => "#000000", + "fire" => "#000000", + "currStreakNum" => "#000000", + "sideNums" => "#000000", + "currStreakLabel" => "#000000", + "sideLabels" => "#000000", + "dates" => "#000000", + "excludeDaysLabel" => "#000000", + ], ]; From 9f40d76be80ae38010387031a6051be85a010974 Mon Sep 17 00:00:00 2001 From: illionillion <60034520+illionillion@users.noreply.github.com> Date: Sun, 29 Dec 2024 08:18:55 +0900 Subject: [PATCH 04/24] fix: Reorder ring to be lower than text (#757) --- src/card.php | 14 +++++++------- tests/expected/test_card.svg | 14 +++++++------- 2 files changed, 14 insertions(+), 14 deletions(-) diff --git a/src/card.php b/src/card.php index 256cb844..b1532e83 100644 --- a/src/card.php +++ b/src/card.php @@ -548,13 +548,6 @@ function generateCard(array $stats, array $params = null): string - - - - {$currentStreak} - - - @@ -579,6 +572,13 @@ function generateCard(array $stats, array $params = null): string + + + + {$currentStreak} + + + diff --git a/tests/expected/test_card.svg b/tests/expected/test_card.svg index 39a74a6a..08dfd779 100644 --- a/tests/expected/test_card.svg +++ b/tests/expected/test_card.svg @@ -52,13 +52,6 @@ - - - - 16 - - - @@ -83,6 +76,13 @@ + + + + 16 + + + From f1313a814e449ddec40e456dc0af0992fa02b820 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 29 Dec 2024 01:19:06 +0200 Subject: [PATCH 05/24] chore(deps-dev): bump phpunit/phpunit from 11.5.1 to 11.5.2 (#755) Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- composer.lock | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/composer.lock b/composer.lock index 25de8a79..ad268c70 100644 --- a/composer.lock +++ b/composer.lock @@ -1029,16 +1029,16 @@ }, { "name": "phpunit/phpunit", - "version": "11.5.1", + "version": "11.5.2", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/phpunit.git", - "reference": "2b94d4f2450b9869fa64a46fd8a6a41997aef56a" + "reference": "153d0531b9f7e883c5053160cad6dd5ac28140b3" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/2b94d4f2450b9869fa64a46fd8a6a41997aef56a", - "reference": "2b94d4f2450b9869fa64a46fd8a6a41997aef56a", + "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/153d0531b9f7e883c5053160cad6dd5ac28140b3", + "reference": "153d0531b9f7e883c5053160cad6dd5ac28140b3", "shasum": "" }, "require": { @@ -1052,13 +1052,13 @@ "phar-io/manifest": "^2.0.4", "phar-io/version": "^3.2.1", "php": ">=8.2", - "phpunit/php-code-coverage": "^11.0.7", + "phpunit/php-code-coverage": "^11.0.8", "phpunit/php-file-iterator": "^5.1.0", "phpunit/php-invoker": "^5.0.1", "phpunit/php-text-template": "^4.0.1", "phpunit/php-timer": "^7.0.1", "sebastian/cli-parser": "^3.0.2", - "sebastian/code-unit": "^3.0.1", + "sebastian/code-unit": "^3.0.2", "sebastian/comparator": "^6.2.1", "sebastian/diff": "^6.0.2", "sebastian/environment": "^7.2.0", @@ -1110,7 +1110,7 @@ "support": { "issues": "https://github.com/sebastianbergmann/phpunit/issues", "security": "https://github.com/sebastianbergmann/phpunit/security/policy", - "source": "https://github.com/sebastianbergmann/phpunit/tree/11.5.1" + "source": "https://github.com/sebastianbergmann/phpunit/tree/11.5.2" }, "funding": [ { @@ -1126,7 +1126,7 @@ "type": "tidelift" } ], - "time": "2024-12-11T10:52:48+00:00" + "time": "2024-12-21T05:51:08+00:00" }, { "name": "sebastian/cli-parser", @@ -1187,23 +1187,23 @@ }, { "name": "sebastian/code-unit", - "version": "3.0.1", + "version": "3.0.2", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/code-unit.git", - "reference": "6bb7d09d6623567178cf54126afa9c2310114268" + "reference": "ee88b0cdbe74cf8dd3b54940ff17643c0d6543ca" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/6bb7d09d6623567178cf54126afa9c2310114268", - "reference": "6bb7d09d6623567178cf54126afa9c2310114268", + "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/ee88b0cdbe74cf8dd3b54940ff17643c0d6543ca", + "reference": "ee88b0cdbe74cf8dd3b54940ff17643c0d6543ca", "shasum": "" }, "require": { "php": ">=8.2" }, "require-dev": { - "phpunit/phpunit": "^11.0" + "phpunit/phpunit": "^11.5" }, "type": "library", "extra": { @@ -1232,7 +1232,7 @@ "support": { "issues": "https://github.com/sebastianbergmann/code-unit/issues", "security": "https://github.com/sebastianbergmann/code-unit/security/policy", - "source": "https://github.com/sebastianbergmann/code-unit/tree/3.0.1" + "source": "https://github.com/sebastianbergmann/code-unit/tree/3.0.2" }, "funding": [ { @@ -1240,7 +1240,7 @@ "type": "github" } ], - "time": "2024-07-03T04:44:28+00:00" + "time": "2024-12-12T09:59:06+00:00" }, { "name": "sebastian/code-unit-reverse-lookup", From 36b08101ee17a152e0089f96819506c50c0d8552 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 16 Jan 2025 16:13:17 +0200 Subject: [PATCH 06/24] chore(deps-dev): bump phpunit/phpunit from 11.5.2 to 11.5.3 (#762) Bumps [phpunit/phpunit](https://github.com/sebastianbergmann/phpunit) from 11.5.2 to 11.5.3. - [Release notes](https://github.com/sebastianbergmann/phpunit/releases) - [Changelog](https://github.com/sebastianbergmann/phpunit/blob/11.5.3/ChangeLog-11.5.md) - [Commits](https://github.com/sebastianbergmann/phpunit/compare/11.5.2...11.5.3) --- updated-dependencies: - dependency-name: phpunit/phpunit dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- composer.lock | 43 +++++++++++++++++++++++-------------------- 1 file changed, 23 insertions(+), 20 deletions(-) diff --git a/composer.lock b/composer.lock index ad268c70..1c8e0281 100644 --- a/composer.lock +++ b/composer.lock @@ -530,16 +530,16 @@ }, { "name": "nikic/php-parser", - "version": "v5.3.1", + "version": "v5.4.0", "source": { "type": "git", "url": "https://github.com/nikic/PHP-Parser.git", - "reference": "8eea230464783aa9671db8eea6f8c6ac5285794b" + "reference": "447a020a1f875a434d62f2a401f53b82a396e494" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/8eea230464783aa9671db8eea6f8c6ac5285794b", - "reference": "8eea230464783aa9671db8eea6f8c6ac5285794b", + "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/447a020a1f875a434d62f2a401f53b82a396e494", + "reference": "447a020a1f875a434d62f2a401f53b82a396e494", "shasum": "" }, "require": { @@ -582,9 +582,9 @@ ], "support": { "issues": "https://github.com/nikic/PHP-Parser/issues", - "source": "https://github.com/nikic/PHP-Parser/tree/v5.3.1" + "source": "https://github.com/nikic/PHP-Parser/tree/v5.4.0" }, - "time": "2024-10-08T18:51:32+00:00" + "time": "2024-12-30T11:07:19+00:00" }, { "name": "phar-io/manifest", @@ -1029,16 +1029,16 @@ }, { "name": "phpunit/phpunit", - "version": "11.5.2", + "version": "11.5.3", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/phpunit.git", - "reference": "153d0531b9f7e883c5053160cad6dd5ac28140b3" + "reference": "30e319e578a7b5da3543073e30002bf82042f701" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/153d0531b9f7e883c5053160cad6dd5ac28140b3", - "reference": "153d0531b9f7e883c5053160cad6dd5ac28140b3", + "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/30e319e578a7b5da3543073e30002bf82042f701", + "reference": "30e319e578a7b5da3543073e30002bf82042f701", "shasum": "" }, "require": { @@ -1059,7 +1059,7 @@ "phpunit/php-timer": "^7.0.1", "sebastian/cli-parser": "^3.0.2", "sebastian/code-unit": "^3.0.2", - "sebastian/comparator": "^6.2.1", + "sebastian/comparator": "^6.3.0", "sebastian/diff": "^6.0.2", "sebastian/environment": "^7.2.0", "sebastian/exporter": "^6.3.0", @@ -1110,7 +1110,7 @@ "support": { "issues": "https://github.com/sebastianbergmann/phpunit/issues", "security": "https://github.com/sebastianbergmann/phpunit/security/policy", - "source": "https://github.com/sebastianbergmann/phpunit/tree/11.5.2" + "source": "https://github.com/sebastianbergmann/phpunit/tree/11.5.3" }, "funding": [ { @@ -1126,7 +1126,7 @@ "type": "tidelift" } ], - "time": "2024-12-21T05:51:08+00:00" + "time": "2025-01-13T09:36:00+00:00" }, { "name": "sebastian/cli-parser", @@ -1300,16 +1300,16 @@ }, { "name": "sebastian/comparator", - "version": "6.2.1", + "version": "6.3.0", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/comparator.git", - "reference": "43d129d6a0f81c78bee378b46688293eb7ea3739" + "reference": "d4e47a769525c4dd38cea90e5dcd435ddbbc7115" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/43d129d6a0f81c78bee378b46688293eb7ea3739", - "reference": "43d129d6a0f81c78bee378b46688293eb7ea3739", + "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/d4e47a769525c4dd38cea90e5dcd435ddbbc7115", + "reference": "d4e47a769525c4dd38cea90e5dcd435ddbbc7115", "shasum": "" }, "require": { @@ -1322,6 +1322,9 @@ "require-dev": { "phpunit/phpunit": "^11.4" }, + "suggest": { + "ext-bcmath": "For comparing BcMath\\Number objects" + }, "type": "library", "extra": { "branch-alias": { @@ -1365,7 +1368,7 @@ "support": { "issues": "https://github.com/sebastianbergmann/comparator/issues", "security": "https://github.com/sebastianbergmann/comparator/security/policy", - "source": "https://github.com/sebastianbergmann/comparator/tree/6.2.1" + "source": "https://github.com/sebastianbergmann/comparator/tree/6.3.0" }, "funding": [ { @@ -1373,7 +1376,7 @@ "type": "github" } ], - "time": "2024-10-31T05:30:08+00:00" + "time": "2025-01-06T10:28:19+00:00" }, { "name": "sebastian/complexity", @@ -2164,5 +2167,5 @@ "ext-intl": "*" }, "platform-dev": [], - "plugin-api-version": "2.6.0" + "plugin-api-version": "2.3.0" } From 50882502cd9b4d6f1451c16ef9a9d3cd02da841b Mon Sep 17 00:00:00 2001 From: ADITYA SINGH <119720155+EchoSingh@users.noreply.github.com> Date: Tue, 28 Jan 2025 19:06:34 +0530 Subject: [PATCH 07/24] Added Bhojpuri (India) translations (#763) * Added Bhojpuri (India) translations * Apply suggestions from code review Co-authored-by: Jonah Lawrence --------- Co-authored-by: Jonah Lawrence --- src/translations.php | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/translations.php b/src/translations.php index e2315a15..dbbb927e 100644 --- a/src/translations.php +++ b/src/translations.php @@ -72,6 +72,15 @@ "Longest Week Streak" => "Най-дълга седмична серия", "Present" => "Сега", ], + "bho" => [ + "Total Contributions" => "कुल योगदान", + "Current Streak" => "चालू रोजाना योगदान", + "Longest Streak" => "सबसे लंबा रोजाना योगदान", + "Week Streak" => "सप्ताहिक योगदान", + "Longest Week Streak" => "सबसे लंबा सप्ताहिक योगदान", + "Present" => "आज ले", + "Excluding {days}" => "{days} के छोड़के", + ], "bn" => [ "Total Contributions" => "মোট অবদান", "Current Streak" => "কারেন্ট স্ট্রীক", From a27055467c7787b89e4e5dff6509b24c9c6bc856 Mon Sep 17 00:00:00 2001 From: GitHub Actions Date: Tue, 28 Jan 2025 13:36:59 +0000 Subject: [PATCH 08/24] docs(readme): Update translation progress --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 9eb30ea1..d38b5136 100644 --- a/README.md +++ b/README.md @@ -104,7 +104,7 @@ The following are the locales that have labels translated in Streak Stats. The ` -
en - English
English 100%
am - አማርኛ
አማርኛ 100%
ar - العربية
العربية 100%
ca - català
català 100%
ceb - Binisaya
Binisaya 100%
da - dansk
dansk 100%
de - Deutsch
Deutsch 100%
el - Ελληνικά
Ελληνικά 100%
es - español
español 100%
fa - فارسی
فارسی 100%
fil - Filipino
Filipino 100%
fr - français
français 100%
gu - ગુજરાતી
ગુજરાતી 100%
he - עברית
עברית 100%
hi - हिन्दी
हिन्दी 100%
hu - magyar
magyar 100%
id - Indonesia
Indonesia 100%
it - italiano
italiano 100%
ja - 日本語
日本語 100%
jv - Jawa
Jawa 100%
kn - ಕನ್ನಡ
ಕನ್ನಡ 100%
ko - 한국어
한국어 100%
mr - मराठी
मराठी 100%
ms - Melayu
Melayu 100%
my - မြန်မာ
မြန်မာ 100%
ne - नेपाली
नेपाली 100%
nl - Nederlands
Nederlands 100%
no - norsk
norsk 100%
pl - polski
polski 100%
ps - پښتو
پښتو 100%
pt_BR - português (Brasil)
português (Brasil) 100%
ru - русский
русский 100%
sa - संस्कृत भाषा
संस्कृत भाषा 100%
sd_PK - سنڌي (پاڪستان)
سنڌي (پاڪستان) 100%
sr - српски
српски 100%
su - Basa Sunda
Basa Sunda 100%
sw - Kiswahili
Kiswahili 100%
th - ไทย
ไทย 100%
tr - Türkçe
Türkçe 100%
uk - українська
українська 100%
ur_PK - اردو (پاکستان)
اردو (پاکستان) 100%
vi - Tiếng Việt
Tiếng Việt 100%
yo - Èdè Yorùbá
Èdè Yorùbá 100%
zh_Hans - 中文(简体)
中文(简体) 100%
zh_Hant - 中文(繁體)
中文(繁體) 100%
bg - български
български 86%
bn - বাংলা
বাংলা 86%
ht - Haitian Creole
Haitian Creole 86%
hy - հայերեն
հայերեն 86%
rw - Kinyarwanda
Kinyarwanda 86%
sv - svenska
svenska 86%
ta - தமிழ்
தமிழ் 86%
+
en - English
English 100%
am - አማርኛ
አማርኛ 100%
ar - العربية
العربية 100%
bho - भोजपुरी
भोजपुरी 100%
ca - català
català 100%
ceb - Cebuano
Cebuano 100%
da - dansk
dansk 100%
de - Deutsch
Deutsch 100%
el - Ελληνικά
Ελληνικά 100%
es - español
español 100%
fa - فارسی
فارسی 100%
fil - Filipino
Filipino 100%
fr - français
français 100%
gu - ગુજરાતી
ગુજરાતી 100%
he - עברית
עברית 100%
hi - हिन्दी
हिन्दी 100%
hu - magyar
magyar 100%
id - Indonesia
Indonesia 100%
it - italiano
italiano 100%
ja - 日本語
日本語 100%
jv - Jawa
Jawa 100%
kn - ಕನ್ನಡ
ಕನ್ನಡ 100%
ko - 한국어
한국어 100%
mr - मराठी
मराठी 100%
ms - Melayu
Melayu 100%
my - မြန်မာ
မြန်မာ 100%
ne - नेपाली
नेपाली 100%
nl - Nederlands
Nederlands 100%
no - norsk
norsk 100%
pl - polski
polski 100%
ps - پښتو
پښتو 100%
pt_BR - português (Brasil)
português (Brasil) 100%
ru - русский
русский 100%
sa - संस्कृत भाषा
संस्कृत भाषा 100%
sd_PK - سنڌي (پاڪستان)
سنڌي (پاڪستان) 100%
sr - српски
српски 100%
su - Basa Sunda
Basa Sunda 100%
sw - Kiswahili
Kiswahili 100%
th - ไทย
ไทย 100%
tr - Türkçe
Türkçe 100%
uk - українська
українська 100%
ur_PK - اردو (پاکستان)
اردو (پاکستان) 100%
vi - Tiếng Việt
Tiếng Việt 100%
yo - Èdè Yorùbá
Èdè Yorùbá 100%
zh_Hans - 中文(简体)
中文(简体) 100%
zh_Hant - 中文(繁體)
中文(繁體) 100%
bg - български
български 86%
bn - বাংলা
বাংলা 86%
ht - créole haïtien
créole haïtien 86%
hy - հայերեն
հայերեն 86%
rw - Kinyarwanda
Kinyarwanda 86%
sv - svenska
svenska 86%
ta - தமிழ்
தமிழ் 86%
From 2f94dfdeb85efa7fa444c6ff2a781160a83ab0fb Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 30 Jan 2025 18:00:02 -0500 Subject: [PATCH 09/24] chore(deps-dev): bump phpunit/phpunit from 11.5.3 to 11.5.5 (#771) Bumps [phpunit/phpunit](https://github.com/sebastianbergmann/phpunit) from 11.5.3 to 11.5.5. - [Release notes](https://github.com/sebastianbergmann/phpunit/releases) - [Changelog](https://github.com/sebastianbergmann/phpunit/blob/11.5.5/ChangeLog-11.5.md) - [Commits](https://github.com/sebastianbergmann/phpunit/compare/11.5.3...11.5.5) --- updated-dependencies: - dependency-name: phpunit/phpunit dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- composer.lock | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/composer.lock b/composer.lock index 1c8e0281..e2f54363 100644 --- a/composer.lock +++ b/composer.lock @@ -1029,16 +1029,16 @@ }, { "name": "phpunit/phpunit", - "version": "11.5.3", + "version": "11.5.5", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/phpunit.git", - "reference": "30e319e578a7b5da3543073e30002bf82042f701" + "reference": "b9a975972f580c0491f834eb0818ad2b32fd8bba" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/30e319e578a7b5da3543073e30002bf82042f701", - "reference": "30e319e578a7b5da3543073e30002bf82042f701", + "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/b9a975972f580c0491f834eb0818ad2b32fd8bba", + "reference": "b9a975972f580c0491f834eb0818ad2b32fd8bba", "shasum": "" }, "require": { @@ -1110,7 +1110,7 @@ "support": { "issues": "https://github.com/sebastianbergmann/phpunit/issues", "security": "https://github.com/sebastianbergmann/phpunit/security/policy", - "source": "https://github.com/sebastianbergmann/phpunit/tree/11.5.3" + "source": "https://github.com/sebastianbergmann/phpunit/tree/11.5.5" }, "funding": [ { @@ -1126,7 +1126,7 @@ "type": "tidelift" } ], - "time": "2025-01-13T09:36:00+00:00" + "time": "2025-01-29T14:01:11+00:00" }, { "name": "sebastian/cli-parser", From 6f88f73899bc9900c747833a4a47583fce0488c2 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 3 Feb 2025 05:54:32 -0500 Subject: [PATCH 10/24] chore(deps-dev): bump phpunit/phpunit from 11.5.5 to 11.5.6 (#772) Bumps [phpunit/phpunit](https://github.com/sebastianbergmann/phpunit) from 11.5.5 to 11.5.6. - [Release notes](https://github.com/sebastianbergmann/phpunit/releases) - [Changelog](https://github.com/sebastianbergmann/phpunit/blob/11.5.6/ChangeLog-11.5.md) - [Commits](https://github.com/sebastianbergmann/phpunit/compare/11.5.5...11.5.6) --- updated-dependencies: - dependency-name: phpunit/phpunit dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- composer.lock | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/composer.lock b/composer.lock index e2f54363..b51d0837 100644 --- a/composer.lock +++ b/composer.lock @@ -1029,16 +1029,16 @@ }, { "name": "phpunit/phpunit", - "version": "11.5.5", + "version": "11.5.6", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/phpunit.git", - "reference": "b9a975972f580c0491f834eb0818ad2b32fd8bba" + "reference": "3c3ae14c90f244cdda95028c3e469028e8d1c02c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/b9a975972f580c0491f834eb0818ad2b32fd8bba", - "reference": "b9a975972f580c0491f834eb0818ad2b32fd8bba", + "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/3c3ae14c90f244cdda95028c3e469028e8d1c02c", + "reference": "3c3ae14c90f244cdda95028c3e469028e8d1c02c", "shasum": "" }, "require": { @@ -1110,7 +1110,7 @@ "support": { "issues": "https://github.com/sebastianbergmann/phpunit/issues", "security": "https://github.com/sebastianbergmann/phpunit/security/policy", - "source": "https://github.com/sebastianbergmann/phpunit/tree/11.5.5" + "source": "https://github.com/sebastianbergmann/phpunit/tree/11.5.6" }, "funding": [ { @@ -1126,7 +1126,7 @@ "type": "tidelift" } ], - "time": "2025-01-29T14:01:11+00:00" + "time": "2025-01-31T07:03:30+00:00" }, { "name": "sebastian/cli-parser", From 6b4aee6573a8895e07f0f6d9d65f824b1fa73ba7 Mon Sep 17 00:00:00 2001 From: Ahdeetai Date: Tue, 18 Feb 2025 15:36:23 +0530 Subject: [PATCH 11/24] feat: Added cyber-streakglow theme (#780) Co-authored-by: Jonah Lawrence --- docs/themes.md | 1 + src/themes.php | 13 +++++++++++++ 2 files changed, 14 insertions(+) diff --git a/docs/themes.md b/docs/themes.md index fb6c08f9..93e45271 100644 --- a/docs/themes.md +++ b/docs/themes.md @@ -163,6 +163,7 @@ Note: Theme names provided are case-insensitive and any use of underscores will | `microsoft` | ![image](https://github.com/user-attachments/assets/4c2cce9d-90b5-4e38-8422-656c5a78b4d9) | | `microsoft-dark` | ![image](https://github.com/user-attachments/assets/a5918d7d-f568-4012-b06f-d9cfacaece04) | | `hacker-inverted` | ![image](https://github.com/user-attachments/assets/b64c136a-827b-4177-98f9-28db59bba0ef) | +| `cyber-streakglow` | ![image](https://github.com/user-attachments/assets/8c6108e1-f3a1-4653-9f68-08ed6dcfc498) | ### Can't find the theme you like? diff --git a/src/themes.php b/src/themes.php index 53c2a090..f8c62d84 100644 --- a/src/themes.php +++ b/src/themes.php @@ -2017,4 +2017,17 @@ "dates" => "#000000", "excludeDaysLabel" => "#000000", ], + "cyber-streakglow" => [ + "background" => "42,E20FEB,0D00EB", + "border" => "#00EBE1", + "stroke" => "#0FEB00", + "ring" => "#5AEB59", + "fire" => "#DDEB00", + "currStreakNum" => "#EBEBEB", + "sideNums" => "#D6EBC0", + "currStreakLabel" => "#46EB00", + "sideLabels" => "#64E8EB", + "dates" => "#EBEBEB", + "excludeDaysLabel" => "#A7EB3F", + ], ]; From bf13d4d468ba8ae8ab5dc3d58a97734047260180 Mon Sep 17 00:00:00 2001 From: ANKDDEV Date: Tue, 18 Feb 2025 13:09:37 +0300 Subject: [PATCH 12/24] feat: Add rust-ferris-light and rust-ferris-dark themes (#776) Co-authored-by: Jonah Lawrence --- docs/themes.md | 2 ++ src/themes.php | 26 ++++++++++++++++++++++++++ 2 files changed, 28 insertions(+) diff --git a/docs/themes.md b/docs/themes.md index 93e45271..1526e776 100644 --- a/docs/themes.md +++ b/docs/themes.md @@ -163,6 +163,8 @@ Note: Theme names provided are case-insensitive and any use of underscores will | `microsoft` | ![image](https://github.com/user-attachments/assets/4c2cce9d-90b5-4e38-8422-656c5a78b4d9) | | `microsoft-dark` | ![image](https://github.com/user-attachments/assets/a5918d7d-f568-4012-b06f-d9cfacaece04) | | `hacker-inverted` | ![image](https://github.com/user-attachments/assets/b64c136a-827b-4177-98f9-28db59bba0ef) | +| `rust-ferris-light` | ![image](https://github.com/user-attachments/assets/2e1d175f-c39d-4e56-be41-d9c277f1e83a) | +| `rust-ferris-dark` | ![image](https://github.com/user-attachments/assets/05e3f9ac-708d-415d-990f-ede3d0a84bab) | | `cyber-streakglow` | ![image](https://github.com/user-attachments/assets/8c6108e1-f3a1-4653-9f68-08ed6dcfc498) | ### Can't find the theme you like? diff --git a/src/themes.php b/src/themes.php index f8c62d84..7c9d4101 100644 --- a/src/themes.php +++ b/src/themes.php @@ -2017,6 +2017,32 @@ "dates" => "#000000", "excludeDaysLabel" => "#000000", ], + "rust-ferris-dark" => [ + "background" => "#000000", + "border" => "#FFFFFF", + "stroke" => "#F66200", + "ring" => "#F49600", + "fire" => "#F66200", + "currStreakNum" => "#F49600", + "sideNums" => "#CC3A00", + "currStreakLabel" => "#F49600", + "sideLabels" => "#CC3A00", + "dates" => "#F66200", + "excludeDaysLabel" => "#F66200", + ], + "rust-ferris-light" => [ + "background" => "#FFFFFF", + "border" => "#000000", + "stroke" => "#F66200", + "ring" => "#F49600", + "fire" => "#F66200", + "currStreakNum" => "#F49600", + "sideNums" => "#CC3A00", + "currStreakLabel" => "#F49600", + "sideLabels" => "#CC3A00", + "dates" => "#F66200", + "excludeDaysLabel" => "#F66200", + ], "cyber-streakglow" => [ "background" => "42,E20FEB,0D00EB", "border" => "#00EBE1", From d3beb44ff881779ae784cc6f6c3434ba91b6768b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 18 Feb 2025 12:14:03 +0200 Subject: [PATCH 13/24] chore(deps-dev): bump phpunit/phpunit from 11.5.6 to 11.5.7 (#775) Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- composer.lock | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/composer.lock b/composer.lock index b51d0837..5fd881a5 100644 --- a/composer.lock +++ b/composer.lock @@ -1029,16 +1029,16 @@ }, { "name": "phpunit/phpunit", - "version": "11.5.6", + "version": "11.5.7", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/phpunit.git", - "reference": "3c3ae14c90f244cdda95028c3e469028e8d1c02c" + "reference": "e1cb706f019e2547039ca2c839898cd5f557ee5d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/3c3ae14c90f244cdda95028c3e469028e8d1c02c", - "reference": "3c3ae14c90f244cdda95028c3e469028e8d1c02c", + "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/e1cb706f019e2547039ca2c839898cd5f557ee5d", + "reference": "e1cb706f019e2547039ca2c839898cd5f557ee5d", "shasum": "" }, "require": { @@ -1110,7 +1110,7 @@ "support": { "issues": "https://github.com/sebastianbergmann/phpunit/issues", "security": "https://github.com/sebastianbergmann/phpunit/security/policy", - "source": "https://github.com/sebastianbergmann/phpunit/tree/11.5.6" + "source": "https://github.com/sebastianbergmann/phpunit/tree/11.5.7" }, "funding": [ { @@ -1126,7 +1126,7 @@ "type": "tidelift" } ], - "time": "2025-01-31T07:03:30+00:00" + "time": "2025-02-06T16:10:05+00:00" }, { "name": "sebastian/cli-parser", From 7d741315a9b5d4a0f870a5ff6a2971004875c3e9 Mon Sep 17 00:00:00 2001 From: Rangga Fajar Oktariansyah <86386385+FajarKim@users.noreply.github.com> Date: Thu, 13 Mar 2025 17:54:09 +0700 Subject: [PATCH 14/24] fix: Updated Korean translations (#786) --- src/translations.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/translations.php b/src/translations.php index dbbb927e..642c6cf9 100644 --- a/src/translations.php +++ b/src/translations.php @@ -275,11 +275,11 @@ "ko" => [ "Total Contributions" => "총 기여 수", "Current Streak" => "현재 연속 기여 수", - "Longest Streak" => "최대 연속 기여 수", - "Week Streak" => "주간 기여 수", - "Longest Week Streak" => "최대 주간 기여 수", + "Longest Streak" => "최장 연속 기여 수", + "Week Streak" => "주간 연속 기여 수", + "Longest Week Streak" => "최장 주간 연속 기여 수", "Present" => "현재", - "Excluding {days}" => "{days} 제외된", + "Excluding {days}" => "{days} 제외하고", ], "mr" => [ "Total Contributions" => "एकूण योगदान", From 524dc2cfbfe9ed466246ceaaf140d6e4cae9d524 Mon Sep 17 00:00:00 2001 From: Rangga Fajar Oktariansyah <86386385+FajarKim@users.noreply.github.com> Date: Thu, 13 Mar 2025 20:45:40 +0700 Subject: [PATCH 15/24] fix: Update Indonesian for Excluding translation (#785) --- src/translations.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/translations.php b/src/translations.php index 642c6cf9..45fd8d61 100644 --- a/src/translations.php +++ b/src/translations.php @@ -232,7 +232,7 @@ "Week Streak" => "Aksi Mingguan", "Longest Week Streak" => "Aksi Mingguan Terpanjang", "Present" => "Sekarang", - "Excluding {days}" => "Tidak termasuk {days}", + "Excluding {days}" => "Kecuali {days}", ], "it" => [ "Total Contributions" => "Contributi Totali", From 27a7bb3c9cec89cc501fbf812e896e264d927d52 Mon Sep 17 00:00:00 2001 From: Rangga Fajar Oktariansyah <86386385+FajarKim@users.noreply.github.com> Date: Sun, 16 Mar 2025 11:12:51 +0700 Subject: [PATCH 16/24] fix: Updated Malay for Excluding translation (#788) --- src/translations.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/translations.php b/src/translations.php index 45fd8d61..c855b332 100644 --- a/src/translations.php +++ b/src/translations.php @@ -297,7 +297,7 @@ "Week Streak" => "Tindakan Setiap Minggu", "Longest Week Streak" => "Tindakan Setiap Minggu Terpanjang", "Present" => "Sekarang", - "Excluding {days}" => "Mengecualikan {days}", + "Excluding {days}" => "Kecuali {days}", ], "my" => [ "Total Contributions" => "စုစုပေါင်း ပံ့ပိုးမှုများ", From 578a2811995ef592e1b1140364beb0397efefe47 Mon Sep 17 00:00:00 2001 From: Kerwin Wang <76610895+yukito0209@users.noreply.github.com> Date: Thu, 10 Apr 2025 16:57:05 +0800 Subject: [PATCH 17/24] fix(translations): Correct Traditional Chinese typo for 'Longest Week Streak' (#791) --- src/translations.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/translations.php b/src/translations.php index c855b332..ab417929 100644 --- a/src/translations.php +++ b/src/translations.php @@ -516,7 +516,7 @@ "Current Streak" => "目前連續貢獻", "Longest Streak" => "最長連續貢獻", "Week Streak" => "周連續貢獻", - "Longest Week Streak" => "最常周連續貢獻", + "Longest Week Streak" => "最長周連續貢獻", "Present" => "至今", "Excluding {days}" => "除外 {days}", "comma_separator" => "、", From 012a653bbe874041788a8004cc5126df65517203 Mon Sep 17 00:00:00 2001 From: Zubair Ibn Zamir Date: Tue, 6 May 2025 18:59:27 +0600 Subject: [PATCH 18/24] fix(translations): Bengali ("bn") - add "Excluding {days}" & fix inconsistent translations of "streak" (#793) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * chore(i18n): add Bengali "bn" translation for "Excluding {days}" * chore(i18n): fix inconsistent translations of "streak" to use "স্ট্রিক" --- src/translations.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/translations.php b/src/translations.php index ab417929..30ddcd12 100644 --- a/src/translations.php +++ b/src/translations.php @@ -83,11 +83,12 @@ ], "bn" => [ "Total Contributions" => "মোট অবদান", - "Current Streak" => "কারেন্ট স্ট্রীক", + "Current Streak" => "বর্তমান স্ট্রিক", "Longest Streak" => "দীর্ঘতম স্ট্রিক", - "Week Streak" => "সপ্তাহ স্ট্রীক", + "Week Streak" => "সপ্তাহ স্ট্রিক", "Longest Week Streak" => "দীর্ঘতম সপ্তাহ স্ট্রিক", "Present" => "বর্তমান", + "Excluding {days}" => "{days} বাদে", ], "ca" => [ "Total Contributions" => "Aportacions totals", From 6fcac79b1d3691cc771c92ec54ebdac31dda8cac Mon Sep 17 00:00:00 2001 From: GitHub Actions Date: Tue, 6 May 2025 12:59:47 +0000 Subject: [PATCH 19/24] docs(readme): Update translation progress --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index d38b5136..bd2354fa 100644 --- a/README.md +++ b/README.md @@ -104,7 +104,7 @@ The following are the locales that have labels translated in Streak Stats. The ` -
en - English
English 100%
am - አማርኛ
አማርኛ 100%
ar - العربية
العربية 100%
bho - भोजपुरी
भोजपुरी 100%
ca - català
català 100%
ceb - Cebuano
Cebuano 100%
da - dansk
dansk 100%
de - Deutsch
Deutsch 100%
el - Ελληνικά
Ελληνικά 100%
es - español
español 100%
fa - فارسی
فارسی 100%
fil - Filipino
Filipino 100%
fr - français
français 100%
gu - ગુજરાતી
ગુજરાતી 100%
he - עברית
עברית 100%
hi - हिन्दी
हिन्दी 100%
hu - magyar
magyar 100%
id - Indonesia
Indonesia 100%
it - italiano
italiano 100%
ja - 日本語
日本語 100%
jv - Jawa
Jawa 100%
kn - ಕನ್ನಡ
ಕನ್ನಡ 100%
ko - 한국어
한국어 100%
mr - मराठी
मराठी 100%
ms - Melayu
Melayu 100%
my - မြန်မာ
မြန်မာ 100%
ne - नेपाली
नेपाली 100%
nl - Nederlands
Nederlands 100%
no - norsk
norsk 100%
pl - polski
polski 100%
ps - پښتو
پښتو 100%
pt_BR - português (Brasil)
português (Brasil) 100%
ru - русский
русский 100%
sa - संस्कृत भाषा
संस्कृत भाषा 100%
sd_PK - سنڌي (پاڪستان)
سنڌي (پاڪستان) 100%
sr - српски
српски 100%
su - Basa Sunda
Basa Sunda 100%
sw - Kiswahili
Kiswahili 100%
th - ไทย
ไทย 100%
tr - Türkçe
Türkçe 100%
uk - українська
українська 100%
ur_PK - اردو (پاکستان)
اردو (پاکستان) 100%
vi - Tiếng Việt
Tiếng Việt 100%
yo - Èdè Yorùbá
Èdè Yorùbá 100%
zh_Hans - 中文(简体)
中文(简体) 100%
zh_Hant - 中文(繁體)
中文(繁體) 100%
bg - български
български 86%
bn - বাংলা
বাংলা 86%
ht - créole haïtien
créole haïtien 86%
hy - հայերեն
հայերեն 86%
rw - Kinyarwanda
Kinyarwanda 86%
sv - svenska
svenska 86%
ta - தமிழ்
தமிழ் 86%
+
en - English
English 100%
am - አማርኛ
አማርኛ 100%
ar - العربية
العربية 100%
bho - भोजपुरी
भोजपुरी 100%
bn - বাংলা
বাংলা 100%
ca - català
català 100%
ceb - Cebuano
Cebuano 100%
da - dansk
dansk 100%
de - Deutsch
Deutsch 100%
el - Ελληνικά
Ελληνικά 100%
es - español
español 100%
fa - فارسی
فارسی 100%
fil - Filipino
Filipino 100%
fr - français
français 100%
gu - ગુજરાતી
ગુજરાતી 100%
he - עברית
עברית 100%
hi - हिन्दी
हिन्दी 100%
hu - magyar
magyar 100%
id - Indonesia
Indonesia 100%
it - italiano
italiano 100%
ja - 日本語
日本語 100%
jv - Jawa
Jawa 100%
kn - ಕನ್ನಡ
ಕನ್ನಡ 100%
ko - 한국어
한국어 100%
mr - मराठी
मराठी 100%
ms - Melayu
Melayu 100%
my - မြန်မာ
မြန်မာ 100%
ne - नेपाली
नेपाली 100%
nl - Nederlands
Nederlands 100%
no - norsk
norsk 100%
pl - polski
polski 100%
ps - پښتو
پښتو 100%
pt_BR - português (Brasil)
português (Brasil) 100%
ru - русский
русский 100%
sa - संस्कृत भाषा
संस्कृत भाषा 100%
sd_PK - سنڌي (پاڪستان)
سنڌي (پاڪستان) 100%
sr - српски
српски 100%
su - Basa Sunda
Basa Sunda 100%
sw - Kiswahili
Kiswahili 100%
th - ไทย
ไทย 100%
tr - Türkçe
Türkçe 100%
uk - українська
українська 100%
ur_PK - اردو (پاکستان)
اردو (پاکستان) 100%
vi - Tiếng Việt
Tiếng Việt 100%
yo - Èdè Yorùbá
Èdè Yorùbá 100%
zh_Hans - 中文(简体)
中文(简体) 100%
zh_Hant - 中文(繁體)
中文(繁體) 100%
bg - български
български 86%
ht - créole haïtien
créole haïtien 86%
hy - հայերեն
հայերեն 86%
rw - Kinyarwanda
Kinyarwanda 86%
sv - svenska
svenska 86%
ta - தமிழ்
தமிழ் 86%
From 65e5e47245ad384f0adcbfa5fe0b4fad327938d4 Mon Sep 17 00:00:00 2001 From: Zubair Ibn Zamir Date: Wed, 7 May 2025 22:44:23 +0600 Subject: [PATCH 20/24] feat(theme): add Vitesse theme inspired by @antfu's antfu/vscode-theme-vitesse (#794) * feat(theme): add Vitesse theme inspired by @antfu's antfu/vscode-theme-vitesse * feat(theme): add Vitesse theme inspired by @antfu's antfu/vscode-theme-vitesse * Update themes.md --------- Co-authored-by: Jonah Lawrence --- docs/themes.md | 1 + src/themes.php | 13 +++++++++++++ 2 files changed, 14 insertions(+) diff --git a/docs/themes.md b/docs/themes.md index 1526e776..ad476960 100644 --- a/docs/themes.md +++ b/docs/themes.md @@ -166,6 +166,7 @@ Note: Theme names provided are case-insensitive and any use of underscores will | `rust-ferris-light` | ![image](https://github.com/user-attachments/assets/2e1d175f-c39d-4e56-be41-d9c277f1e83a) | | `rust-ferris-dark` | ![image](https://github.com/user-attachments/assets/05e3f9ac-708d-415d-990f-ede3d0a84bab) | | `cyber-streakglow` | ![image](https://github.com/user-attachments/assets/8c6108e1-f3a1-4653-9f68-08ed6dcfc498) | +| `vitesse` | ![image](https://github.com/user-attachments/assets/baa2fa20-36ea-4158-befc-79c21f102f87) | ### Can't find the theme you like? diff --git a/src/themes.php b/src/themes.php index 7c9d4101..e6fc193d 100644 --- a/src/themes.php +++ b/src/themes.php @@ -2056,4 +2056,17 @@ "dates" => "#EBEBEB", "excludeDaysLabel" => "#A7EB3F", ], + "vitesse" => [ + "background" => "#000000", + "border" => "#4D9375", + "stroke" => "#5D99A9", + "ring" => "#4D9375", + "fire" => "#CB7676", + "currStreakNum" => "#B8A965", + "sideNums" => "#4D9375", + "currStreakLabel" => "#80A665", + "sideLabels" => "#80A665", + "dates" => "#BD976A", + "excludeDaysLabel" => "#758575DD", + ], ]; From f757a0699435ac2cf298e50d659f9b7ebe5c2c9d Mon Sep 17 00:00:00 2001 From: Alif Akbar <65815803+alifakbxr@users.noreply.github.com> Date: Wed, 11 Jun 2025 17:56:16 +0700 Subject: [PATCH 21/24] feat: Added Malay (Indonesia) (#797) --- src/translations.php | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/translations.php b/src/translations.php index 30ddcd12..6e9ea755 100644 --- a/src/translations.php +++ b/src/translations.php @@ -300,6 +300,15 @@ "Present" => "Sekarang", "Excluding {days}" => "Kecuali {days}", ], + "ms_ID" => [ + "Total Contributions" => "Total Kontribusi", + "Current Streak" => "Rangkaian Saat Ini", + "Longest Streak" => "Rangkaian Terpanjang", + "Week Streak" => "Rangkaian Mingguan", + "Longest Week Streak" => "Rangkaian Mingguan Terpanjang", + "Present" => "Sekarang", + "Excluding {days}" => "Tidak termasuk {days}", + ], "my" => [ "Total Contributions" => "စုစုပေါင်း ပံ့ပိုးမှုများ", "Current Streak" => "ယနေ့ထိ မပျက်မကွက် ပံ့ပိုးမှုရက်ပေါင်း", From aeebe5d547d40c295b29ae06987418b826e986d2 Mon Sep 17 00:00:00 2001 From: GitHub Actions Date: Wed, 11 Jun 2025 10:56:31 +0000 Subject: [PATCH 22/24] docs(readme): Update translation progress --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index bd2354fa..a6aca59c 100644 --- a/README.md +++ b/README.md @@ -104,7 +104,7 @@ The following are the locales that have labels translated in Streak Stats. The ` -
en - English
English 100%
am - አማርኛ
አማርኛ 100%
ar - العربية
العربية 100%
bho - भोजपुरी
भोजपुरी 100%
bn - বাংলা
বাংলা 100%
ca - català
català 100%
ceb - Cebuano
Cebuano 100%
da - dansk
dansk 100%
de - Deutsch
Deutsch 100%
el - Ελληνικά
Ελληνικά 100%
es - español
español 100%
fa - فارسی
فارسی 100%
fil - Filipino
Filipino 100%
fr - français
français 100%
gu - ગુજરાતી
ગુજરાતી 100%
he - עברית
עברית 100%
hi - हिन्दी
हिन्दी 100%
hu - magyar
magyar 100%
id - Indonesia
Indonesia 100%
it - italiano
italiano 100%
ja - 日本語
日本語 100%
jv - Jawa
Jawa 100%
kn - ಕನ್ನಡ
ಕನ್ನಡ 100%
ko - 한국어
한국어 100%
mr - मराठी
मराठी 100%
ms - Melayu
Melayu 100%
my - မြန်မာ
မြန်မာ 100%
ne - नेपाली
नेपाली 100%
nl - Nederlands
Nederlands 100%
no - norsk
norsk 100%
pl - polski
polski 100%
ps - پښتو
پښتو 100%
pt_BR - português (Brasil)
português (Brasil) 100%
ru - русский
русский 100%
sa - संस्कृत भाषा
संस्कृत भाषा 100%
sd_PK - سنڌي (پاڪستان)
سنڌي (پاڪستان) 100%
sr - српски
српски 100%
su - Basa Sunda
Basa Sunda 100%
sw - Kiswahili
Kiswahili 100%
th - ไทย
ไทย 100%
tr - Türkçe
Türkçe 100%
uk - українська
українська 100%
ur_PK - اردو (پاکستان)
اردو (پاکستان) 100%
vi - Tiếng Việt
Tiếng Việt 100%
yo - Èdè Yorùbá
Èdè Yorùbá 100%
zh_Hans - 中文(简体)
中文(简体) 100%
zh_Hant - 中文(繁體)
中文(繁體) 100%
bg - български
български 86%
ht - créole haïtien
créole haïtien 86%
hy - հայերեն
հայերեն 86%
rw - Kinyarwanda
Kinyarwanda 86%
sv - svenska
svenska 86%
ta - தமிழ்
தமிழ் 86%
+
en - English
English 100%
am - አማርኛ
አማርኛ 100%
ar - العربية
العربية 100%
bho - भोजपुरी
भोजपुरी 100%
bn - বাংলা
বাংলা 100%
ca - català
català 100%
ceb - Cebuano
Cebuano 100%
da - dansk
dansk 100%
de - Deutsch
Deutsch 100%
el - Ελληνικά
Ελληνικά 100%
es - español
español 100%
fa - فارسی
فارسی 100%
fil - Filipino
Filipino 100%
fr - français
français 100%
gu - ગુજરાતી
ગુજરાતી 100%
he - עברית
עברית 100%
hi - हिन्दी
हिन्दी 100%
hu - magyar
magyar 100%
id - Indonesia
Indonesia 100%
it - italiano
italiano 100%
ja - 日本語
日本語 100%
jv - Jawa
Jawa 100%
kn - ಕನ್ನಡ
ಕನ್ನಡ 100%
ko - 한국어
한국어 100%
mr - मराठी
मराठी 100%
ms - Melayu
Melayu 100%
ms_ID - Melayu (Indonesia)
Melayu (Indonesia) 100%
my - မြန်မာ
မြန်မာ 100%
ne - नेपाली
नेपाली 100%
nl - Nederlands
Nederlands 100%
no - norsk
norsk 100%
pl - polski
polski 100%
ps - پښتو
پښتو 100%
pt_BR - português (Brasil)
português (Brasil) 100%
ru - русский
русский 100%
sa - संस्कृत भाषा
संस्कृत भाषा 100%
sd_PK - سنڌي (پاڪستان)
سنڌي (پاڪستان) 100%
sr - српски
српски 100%
su - Basa Sunda
Basa Sunda 100%
sw - Kiswahili
Kiswahili 100%
th - ไทย
ไทย 100%
tr - Türkçe
Türkçe 100%
uk - українська
українська 100%
ur_PK - اردو (پاکستان)
اردو (پاکستان) 100%
vi - Tiếng Việt
Tiếng Việt 100%
yo - Èdè Yorùbá
Èdè Yorùbá 100%
zh_Hans - 中文(简体)
中文(简体) 100%
zh_Hant - 中文(繁體)
中文(繁體) 100%
bg - български
български 86%
ht - créole haïtien
créole haïtien 86%
hy - հայերեն
հայերեն 86%
rw - Kinyarwanda
Kinyarwanda 86%
sv - svenska
svenska 86%
ta - தமிழ்
தமிழ் 86%
From dd0f89a2cc7faed24e065d4440feda3e4280b09f Mon Sep 17 00:00:00 2001 From: Alif Akbar <65815803+alifakbxr@users.noreply.github.com> Date: Wed, 11 Jun 2025 17:58:58 +0700 Subject: [PATCH 23/24] feat: Added Portuguese (#798) --- src/translations.php | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/translations.php b/src/translations.php index 6e9ea755..260f89d4 100644 --- a/src/translations.php +++ b/src/translations.php @@ -365,6 +365,15 @@ "comma_separator" => "، ", "Excluding {days}" => "پرته {days}", ], + "pt" => [ + "Total Contributions" => "Contribuições Totais", + "Current Streak" => "Sequência Atual", + "Longest Streak" => "Maior Sequência", + "Week Streak" => "Sequência da Semana", + "Longest Week Streak" => "Maior Sequência da Semana", + "Present" => "Presente", + "Excluding {days}" => "Excluindo {days}", + ], "pt_BR" => [ "Total Contributions" => "Total de Contribuições", "Current Streak" => "Sequência Atual", From c550b225ac048e301ee093aa00918b959aa6aeae Mon Sep 17 00:00:00 2001 From: GitHub Actions Date: Wed, 11 Jun 2025 10:59:12 +0000 Subject: [PATCH 24/24] docs(readme): Update translation progress --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index a6aca59c..dd45b6a9 100644 --- a/README.md +++ b/README.md @@ -104,7 +104,7 @@ The following are the locales that have labels translated in Streak Stats. The ` -
en - English
English 100%
am - አማርኛ
አማርኛ 100%
ar - العربية
العربية 100%
bho - भोजपुरी
भोजपुरी 100%
bn - বাংলা
বাংলা 100%
ca - català
català 100%
ceb - Cebuano
Cebuano 100%
da - dansk
dansk 100%
de - Deutsch
Deutsch 100%
el - Ελληνικά
Ελληνικά 100%
es - español
español 100%
fa - فارسی
فارسی 100%
fil - Filipino
Filipino 100%
fr - français
français 100%
gu - ગુજરાતી
ગુજરાતી 100%
he - עברית
עברית 100%
hi - हिन्दी
हिन्दी 100%
hu - magyar
magyar 100%
id - Indonesia
Indonesia 100%
it - italiano
italiano 100%
ja - 日本語
日本語 100%
jv - Jawa
Jawa 100%
kn - ಕನ್ನಡ
ಕನ್ನಡ 100%
ko - 한국어
한국어 100%
mr - मराठी
मराठी 100%
ms - Melayu
Melayu 100%
ms_ID - Melayu (Indonesia)
Melayu (Indonesia) 100%
my - မြန်မာ
မြန်မာ 100%
ne - नेपाली
नेपाली 100%
nl - Nederlands
Nederlands 100%
no - norsk
norsk 100%
pl - polski
polski 100%
ps - پښتو
پښتو 100%
pt_BR - português (Brasil)
português (Brasil) 100%
ru - русский
русский 100%
sa - संस्कृत भाषा
संस्कृत भाषा 100%
sd_PK - سنڌي (پاڪستان)
سنڌي (پاڪستان) 100%
sr - српски
српски 100%
su - Basa Sunda
Basa Sunda 100%
sw - Kiswahili
Kiswahili 100%
th - ไทย
ไทย 100%
tr - Türkçe
Türkçe 100%
uk - українська
українська 100%
ur_PK - اردو (پاکستان)
اردو (پاکستان) 100%
vi - Tiếng Việt
Tiếng Việt 100%
yo - Èdè Yorùbá
Èdè Yorùbá 100%
zh_Hans - 中文(简体)
中文(简体) 100%
zh_Hant - 中文(繁體)
中文(繁體) 100%
bg - български
български 86%
ht - créole haïtien
créole haïtien 86%
hy - հայերեն
հայերեն 86%
rw - Kinyarwanda
Kinyarwanda 86%
sv - svenska
svenska 86%
ta - தமிழ்
தமிழ் 86%
+
en - English
English 100%
am - አማርኛ
አማርኛ 100%
ar - العربية
العربية 100%
bho - भोजपुरी
भोजपुरी 100%
bn - বাংলা
বাংলা 100%
ca - català
català 100%
ceb - Cebuano
Cebuano 100%
da - dansk
dansk 100%
de - Deutsch
Deutsch 100%
el - Ελληνικά
Ελληνικά 100%
es - español
español 100%
fa - فارسی
فارسی 100%
fil - Filipino
Filipino 100%
fr - français
français 100%
gu - ગુજરાતી
ગુજરાતી 100%
he - עברית
עברית 100%
hi - हिन्दी
हिन्दी 100%
hu - magyar
magyar 100%
id - Indonesia
Indonesia 100%
it - italiano
italiano 100%
ja - 日本語
日本語 100%
jv - Jawa
Jawa 100%
kn - ಕನ್ನಡ
ಕನ್ನಡ 100%
ko - 한국어
한국어 100%
mr - मराठी
मराठी 100%
ms - Melayu
Melayu 100%
ms_ID - Melayu (Indonesia)
Melayu (Indonesia) 100%
my - မြန်မာ
မြန်မာ 100%
ne - नेपाली
नेपाली 100%
nl - Nederlands
Nederlands 100%
no - norsk
norsk 100%
pl - polski
polski 100%
ps - پښتو
پښتو 100%
pt - português
português 100%
pt_BR - português (Brasil)
português (Brasil) 100%
ru - русский
русский 100%
sa - संस्कृत भाषा
संस्कृत भाषा 100%
sd_PK - سنڌي (پاڪستان)
سنڌي (پاڪستان) 100%
sr - српски
српски 100%
su - Basa Sunda
Basa Sunda 100%
sw - Kiswahili
Kiswahili 100%
th - ไทย
ไทย 100%
tr - Türkçe
Türkçe 100%
uk - українська
українська 100%
ur_PK - اردو (پاکستان)
اردو (پاکستان) 100%
vi - Tiếng Việt
Tiếng Việt 100%
yo - Èdè Yorùbá
Èdè Yorùbá 100%
zh_Hans - 中文(简体)
中文(简体) 100%
zh_Hant - 中文(繁體)
中文(繁體) 100%
bg - български
български 86%
ht - créole haïtien
créole haïtien 86%
hy - հայերեն
հայերեն 86%
rw - Kinyarwanda
Kinyarwanda 86%
sv - svenska
svenska 86%
ta - தமிழ்
தமிழ் 86%