Skip to content

i18n - translations#16515

Merged
FelixMalfait merged 1 commit intomainfrom
i18n
Dec 11, 2025
Merged

i18n - translations#16515
FelixMalfait merged 1 commit intomainfrom
i18n

Conversation

@github-actions
Copy link
Copy Markdown
Contributor

Created by Github action

Copy link
Copy Markdown
Contributor

@greptile-apps greptile-apps bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Your free trial has ended. If you'd like to continue receiving code reviews, you can add a payment method here.

Copy link
Copy Markdown
Contributor

@cubic-dev-ai cubic-dev-ai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

3 issues found across 30 files

Prompt for AI agents (all 3 issues)

Check if these issues are valid — if so, understand the root cause of each and fix them.


<file name="packages/twenty-server/src/engine/core-modules/i18n/locales/sv-SE.po">

<violation number="1" location="packages/twenty-server/src/engine/core-modules/i18n/locales/sv-SE.po:2242">
P2: Malformed Swedish translation for &#39;Monday&#39;. The translation contains a literal newline character splitting the word incorrectly. The correct translation should be `Måndag` (single word, no newline).</violation>

<violation number="2" location="packages/twenty-server/src/engine/core-modules/i18n/locales/sv-SE.po:3188">
P2: Malformed Swedish translation for &#39;Saturday&#39;. The translation contains a literal newline character splitting the word incorrectly. The correct translation should be `Lördag` (single word, no newline).</violation>

<violation number="3" location="packages/twenty-server/src/engine/core-modules/i18n/locales/sv-SE.po:3334">
P1: Malformed and incomplete Swedish translation for &#39;Sunday&#39;. The translation contains a literal newline character and is missing characters. The correct translation should be `Söndag` (not &#39;S\nnd&#39;).</violation>
</file>

Reply to cubic to teach it or ask questions. Re-run a review with @cubic-dev-ai review this PR

Comment on lines +3188 to 3190
"L\n"
"urdag"

Copy link
Copy Markdown
Contributor

@cubic-dev-ai cubic-dev-ai bot Dec 11, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P2: Malformed Swedish translation for 'Saturday'. The translation contains a literal newline character splitting the word incorrectly. The correct translation should be Lördag (single word, no newline).

Prompt for AI agents
Check if this issue is valid — if so, understand the root cause and fix it. At packages/twenty-server/src/engine/core-modules/i18n/locales/sv-SE.po, line 3188:

<comment>Malformed Swedish translation for &#39;Saturday&#39;. The translation contains a literal newline character splitting the word incorrectly. The correct translation should be `Lördag` (single word, no newline).</comment>

<file context>
@@ -3183,7 +3184,8 @@ msgstr &quot;K\&quot;or&quot;
 msgid &quot;Saturday&quot;
-msgstr &quot;L\n&quot;
+msgstr &quot;&quot;
+&quot;L\n&quot;
 &quot;urdag&quot;
 
</file context>
Suggested change
"L\n"
"urdag"
msgstr "Lördag"
Fix with Cubic

Comment on lines +2242 to 2244
"M\n"
"ndags"

Copy link
Copy Markdown
Contributor

@cubic-dev-ai cubic-dev-ai bot Dec 11, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P2: Malformed Swedish translation for 'Monday'. The translation contains a literal newline character splitting the word incorrectly. The correct translation should be Måndag (single word, no newline).

Prompt for AI agents
Check if this issue is valid — if so, understand the root cause and fix it. At packages/twenty-server/src/engine/core-modules/i18n/locales/sv-SE.po, line 2242:

<comment>Malformed Swedish translation for &#39;Monday&#39;. The translation contains a literal newline character splitting the word incorrectly. The correct translation should be `Måndag` (single word, no newline).</comment>

<file context>
@@ -2238,7 +2238,8 @@ msgstr &quot;Modell-ID får inte vara tomt&quot;
 msgid &quot;Monday&quot;
-msgstr &quot;M\n&quot;
+msgstr &quot;&quot;
+&quot;M\n&quot;
 &quot;ndags&quot;
 
</file context>
Suggested change
"M\n"
"ndags"
msgstr "Måndag"
Fix with Cubic

Comment on lines +3334 to 3336
"S\n"
"nd"

Copy link
Copy Markdown
Contributor

@cubic-dev-ai cubic-dev-ai bot Dec 11, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P1: Malformed and incomplete Swedish translation for 'Sunday'. The translation contains a literal newline character and is missing characters. The correct translation should be Söndag (not 'S\nnd').

Prompt for AI agents
Check if this issue is valid — if so, understand the root cause and fix it. At packages/twenty-server/src/engine/core-modules/i18n/locales/sv-SE.po, line 3334:

<comment>Malformed and incomplete Swedish translation for &#39;Sunday&#39;. The translation contains a literal newline character and is missing characters. The correct translation should be `Söndag` (not &#39;S\nnd&#39;).</comment>

<file context>
@@ -3328,7 +3330,8 @@ msgstr &quot;\&quot;amnet&quot;
 msgid &quot;Sunday&quot;
-msgstr &quot;S\n&quot;
+msgstr &quot;&quot;
+&quot;S\n&quot;
 &quot;nd&quot;
 
</file context>
Suggested change
"S\n"
"nd"
msgstr "Söndag"
Fix with Cubic

@FelixMalfait FelixMalfait merged commit 14b2487 into main Dec 11, 2025
9 checks passed
@FelixMalfait FelixMalfait deleted the i18n branch December 11, 2025 23:01
@github-actions
Copy link
Copy Markdown
Contributor Author

Fails
🚫

node failed.

Log

Details
�[31mError: �[39m SyntaxError: Unexpected end of JSON input
    at JSON.parse (<anonymous>)
�[90m    at parseJSONFromBytes (node:internal/deps/undici/undici:6433:19)�[39m
�[90m    at successSteps (node:internal/deps/undici/undici:6414:27)�[39m
�[90m    at readAllBytes (node:internal/deps/undici/undici:5380:13)�[39m
�[90m    at process.processTicksAndRejections (node:internal/process/task_queues:103:5)�[39m
danger-results://tmp/danger-results-6b15933b.json

Generated by 🚫 dangerJS against 33da280

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant