feat(i18n): add Swedish localization (#193)#196
Conversation
* feat(i18n): add swedish localization * Remove Identifier file --------- Co-authored-by: Francesco <137506210+flick9000@users.noreply.github.com>
There was a problem hiding this comment.
Code Review
This pull request adds Swedish language support to both the app and the website, including updated configuration files, translation dictionaries, and a new Swedish flag SVG icon. A review comment suggests fixing the SVG path styling for the Swedish flag to prevent potential rendering artifacts caused by an incorrect fill property.
Important
The consumer version of Gemini Code Assist on GitHub is being sunset. Starting June 18, 2026, new organization installations will be blocked, and all code review activity will officially cease on July 17, 2026.
For more details on the timeline and next steps, please review the Help Documentation.
| <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="500px" height="313px" viewBox="0 0 500 313" version="1.1"> | ||
| <g id="surface1"> | ||
| <rect x="0" y="0" width="500" height="313" style="fill:rgb(0%,32.156864%,57.647061%);fill-opacity:1;stroke:none;"/> | ||
| <path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(99.607843%,79.607844%,0%);stroke-opacity:1;stroke-miterlimit:4;" d="M 0 2.5 L 8 2.5 M 3 0 L 3 5 " transform="matrix(62.5,0,0,62.6,0,0)"/> |
There was a problem hiding this comment.
The path for the yellow cross has fill:rgb(0%,0%,0%) (black) and fill-opacity:1. Since this is an open path representing the cross lines, it should not be filled. Some SVG renderers might attempt to fill the open path, leading to unexpected black rendering artifacts. It is safer and more standard to set fill:none and remove the redundant fill properties.
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(99.607843%,79.607844%,0%);stroke-opacity:1;stroke-miterlimit:4;" d="M 0 2.5 L 8 2.5 M 3 0 L 3 5 " transform="matrix(62.5,0,0,62.6,0,0)"/>
No description provided.