Merged
Conversation
Contributor
Greptile OverviewGreptile SummaryThis PR synchronizes translations for documentation from Crowdin, adding an example PostgreSQL output table to 10 language versions of the local setup guide. The change originated from PR #17451 which added this example to the English documentation.
Confidence Score: 4/5
Important Files Changed
Sequence DiagramsequenceDiagram
participant Dev as Developer
participant EN as English Docs
participant Crowdin as Crowdin Platform
participant Bot as github-actions[bot]
participant Translations as Translation Files
Dev->>EN: Add example output to local-setup.mdx (PR #17451)
EN->>Crowdin: Sync new content
Crowdin->>Crowdin: Translators review and translate
Note over Crowdin: Most languages keep command output untranslated<br/>Romanian translator translates output (incorrect)
Crowdin->>Bot: Trigger translation sync
Bot->>Translations: Update 10 language files
Bot->>Bot: Create PR #17473
Note over Translations: 9 files correct<br/>1 file (ro) has translation issue
|
Comment on lines
+173
to
+178
| ```bash | ||
| Nume rol | Atribute | Membru al | ||
| -----------+-------------+----------- | ||
| postgres | Superutilizator | {} | ||
| john | Superutilizator | {} | ||
| ``` |
Contributor
There was a problem hiding this comment.
PostgreSQL command output should not be translated. The table headers and values (Role name, Attributes, Member of, Superuser) represent actual output from the \du command and will not match what users see.
Suggested change
| ```bash | |
| Nume rol | Atribute | Membru al | |
| -----------+-------------+----------- | |
| postgres | Superutilizator | {} | |
| john | Superutilizator | {} | |
| ``` | |
| ```bash | |
| Role name | Attributes | Member of | |
| -----------+-------------+----------- | |
| postgres | Superuser | {} | |
| john | Superuser | {} | |
| ``` |
Prompt To Fix With AI
This is a comment left during a code review.
Path: packages/twenty-docs/l/ro/developers/contribute/capabilities/local-setup.mdx
Line: 173:178
Comment:
PostgreSQL command output should not be translated. The table headers and values (`Role name`, `Attributes`, `Member of`, `Superuser`) represent actual output from the `\du` command and will not match what users see.
```suggestion
```bash
Role name | Attributes | Member of
-----------+-------------+-----------
postgres | Superuser | {}
john | Superuser | {}
```
```
How can I resolve this? If you propose a fix, please make it concise.
charlesBochet
approved these changes
Jan 27, 2026
Contributor
Author
LogDetails |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Created by Github action