Skip to content

Commit 6ebeedb

Browse files
github-actions[bot]github-actions
andauthored
i18n - docs translations (#20303)
Created by Github action Co-authored-by: github-actions <github-actions@twenty.com>
1 parent a3c026f commit 6ebeedb

12 files changed

Lines changed: 65 additions & 17 deletions

File tree

packages/twenty-docs/l/de/developers/extend/apps/front-components.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Front-Komponenten können an zwei Stellen innerhalb von Twenty gerendert werden:
1515

1616
## Einfaches Beispiel
1717

18-
The quickest way to see a front component in action is to register it with a **command menu item**. Use `defineCommandMenuItem` in a separate file to make the component appear as a quick-action button in the top-right corner of the page:
18+
Der schnellste Weg, eine Front-Komponente in Aktion zu sehen, ist, sie als **Befehlsmenüeintrag** zu registrieren. Verwende `defineCommandMenuItem` in einer separaten Datei, damit die Komponente als Schnellaktionsschaltfläche oben rechts auf der Seite erscheint:
1919

2020
```tsx src/front-components/hello-world.tsx
2121
import { defineFrontComponent } from 'twenty-sdk/define';
@@ -350,7 +350,7 @@ export default defineFrontComponent({
350350

351351
## defineCommandMenuItem
352352

353-
Use `defineCommandMenuItem` to register a front component in the command menu (Cmd+K). Wenn `isPinned` `true` ist, erscheint sie außerdem als Schnellaktionsschaltfläche oben rechts auf der Seite.
353+
Verwende `defineCommandMenuItem`, um eine Front-Komponente im Befehlsmenü (Cmd+K) zu registrieren. Wenn `isPinned` `true` ist, erscheint sie außerdem als Schnellaktionsschaltfläche oben rechts auf der Seite.
354354

355355
```ts src/command-menu-items/open-dashboard.command-menu-item.ts
356356
import { defineCommandMenuItem } from 'twenty-sdk/define';
@@ -370,7 +370,7 @@ export default defineCommandMenuItem({
370370
| --------------------------------------- | ------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
371371
| `universalIdentifier` | Ja | Stabile eindeutige ID für den Befehl |
372372
| `label` | Ja | Vollständiges Label, das im Befehlsmenü (Cmd+K) angezeigt wird |
373-
| `frontComponentUniversalIdentifier` | Ja | The `universalIdentifier` of the front component this command opens |
373+
| `frontComponentUniversalIdentifier` | Ja | Der `universalIdentifier` der Front-Komponente, die dieser Befehl öffnet |
374374
| `shortLabel` | Nein | Kürzeres Label, das auf der angehefteten Schnellaktionsschaltfläche angezeigt wird |
375375
| `icon` | Nein | Neben dem Label angezeigter Icon-Name (z. B. 'IconBolt', 'IconSend') |
376376
| `isPinned` | Nein | Bei `true` wird der Befehl als Schnellaktionsschaltfläche oben rechts auf der Seite angezeigt |

packages/twenty-docs/l/de/developers/extend/apps/publishing.mdx

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -198,6 +198,14 @@ export default defineApplication({
198198

199199
Siehe das [defineApplication-Akkordeon](/l/de/developers/extend/apps/building#defineentity-functions) auf der Seite Building Apps für die vollständige Liste der Marktplatzfelder (`author`, `category`, `aboutDescription`, `websiteUrl`, `termsUrl` usw.).
200200

201+
#### Empfohlene Abmessungen für Screenshots
202+
203+
Der Marktplatz stellt `screenshots` in einem festen `8:5`-Container dar (zum Beispiel `1600×1000 px`).
204+
205+
<Note>
206+
Screenshots mit beliebigem Seitenverhältnis werden vollständig angezeigt und niemals beschnitten, aber alles, was deutlich höher oder schmaler als `8:5` ist, zeigt an den Seiten leere Balken.
207+
</Note>
208+
201209
### Veröffentlichen
202210

203211
```bash filename="Terminal"

packages/twenty-docs/l/pt/developers/extend/apps/front-components.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Os componentes de front-end podem ser renderizados em dois locais dentro do Twen
1515

1616
## Exemplo básico
1717

18-
The quickest way to see a front component in action is to register it with a **command menu item**. Use `defineCommandMenuItem` in a separate file to make the component appear as a quick-action button in the top-right corner of the page:
18+
A maneira mais rápida de ver um componente de front-end em ação é registrá-lo como um **item do menu de comando**. Use `defineCommandMenuItem` em um arquivo separado para fazer o componente aparecer como um botão de ação rápida no canto superior direito da página:
1919

2020
```tsx src/front-components/hello-world.tsx
2121
import { defineFrontComponent } from 'twenty-sdk/define';
@@ -350,7 +350,7 @@ export default defineFrontComponent({
350350

351351
## defineCommandMenuItem
352352

353-
Use `defineCommandMenuItem` to register a front component in the command menu (Cmd+K). Se `isPinned` for `true`, ele também aparece como um botão de ação rápida no canto superior direito da página.
353+
Use `defineCommandMenuItem` para registrar um componente de front-end no menu de comando (Cmd+K). Se `isPinned` for `true`, ele também aparece como um botão de ação rápida no canto superior direito da página.
354354

355355
```ts src/command-menu-items/open-dashboard.command-menu-item.ts
356356
import { defineCommandMenuItem } from 'twenty-sdk/define';
@@ -370,7 +370,7 @@ export default defineCommandMenuItem({
370370
| --------------------------------------- | ----------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
371371
| `universalIdentifier` | Sim | ID exclusivo e estável para o comando |
372372
| `label` | Sim | Rótulo completo exibido no menu de comandos (Cmd+K) |
373-
| `frontComponentUniversalIdentifier` | Sim | The `universalIdentifier` of the front component this command opens |
373+
| `frontComponentUniversalIdentifier` | Sim | O `universalIdentifier` do componente de front-end que este comando abre |
374374
| `shortLabel` | Não | Rótulo mais curto exibido no botão fixado de ação rápida |
375375
| `icon` | Não | Nome do ícone exibido ao lado do rótulo (por exemplo, `'IconBolt'`, `'IconSend'`) |
376376
| `isPinned` | Não | Quando `true`, mostra o comando como um botão de ação rápida no canto superior direito da página |

packages/twenty-docs/l/pt/developers/extend/apps/publishing.mdx

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -198,6 +198,14 @@ export default defineApplication({
198198

199199
Veja o [acordeão de defineApplication](/l/pt/developers/extend/apps/building#defineentity-functions) na página Building Apps para a lista completa de campos do marketplace (`author`, `category`, `aboutDescription`, `websiteUrl`, `termsUrl`, etc.).
200200

201+
#### Dimensões recomendadas para capturas de tela
202+
203+
O marketplace renderiza `screenshots` em um contêiner fixo de `8:5` (por exemplo, `1600×1000 px`).
204+
205+
<Note>
206+
Capturas de tela de qualquer proporção são exibidas por completo e nunca são cortadas, mas qualquer coisa significativamente mais alta ou mais estreita que `8:5` exibirá faixas vazias nas laterais.
207+
</Note>
208+
201209
### Publicar
202210

203211
```bash filename="Terminal"

packages/twenty-docs/l/ro/developers/extend/apps/front-components.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Componentele frontale pot fi afișate în două locații în cadrul Twenty:
1515

1616
## Exemplu de bază
1717

18-
The quickest way to see a front component in action is to register it with a **command menu item**. Use `defineCommandMenuItem` in a separate file to make the component appear as a quick-action button in the top-right corner of the page:
18+
Cel mai rapid mod de a vedea o componentă front-end în acțiune este să o înregistrați ca **element din meniul de comenzi**. Folosiți `defineCommandMenuItem` într-un fișier separat pentru ca componenta să apară ca buton de acțiune rapidă în colțul din dreapta sus al paginii:
1919

2020
```tsx src/front-components/hello-world.tsx
2121
import { defineFrontComponent } from 'twenty-sdk/define';
@@ -350,7 +350,7 @@ export default defineFrontComponent({
350350

351351
## defineCommandMenuItem
352352

353-
Use `defineCommandMenuItem` to register a front component in the command menu (Cmd+K). Dacă `isPinned` este `true`, apare și ca buton de acțiune rapidă în colțul din dreapta sus al paginii.
353+
Folosiți `defineCommandMenuItem` pentru a înregistra o componentă front-end în meniul de comenzi (Cmd+K). Dacă `isPinned` este `true`, apare și ca buton de acțiune rapidă în colțul din dreapta sus al paginii.
354354

355355
```ts src/command-menu-items/open-dashboard.command-menu-item.ts
356356
import { defineCommandMenuItem } from 'twenty-sdk/define';
@@ -370,7 +370,7 @@ export default defineCommandMenuItem({
370370
| --------------------------------------- | ----------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
371371
| `universalIdentifier` | Da | ID unic stabil pentru comandă |
372372
| `label` | Da | Etichetă completă afișată în meniul de comenzi (Cmd+K) |
373-
| `frontComponentUniversalIdentifier` | Da | The `universalIdentifier` of the front component this command opens |
373+
| `frontComponentUniversalIdentifier` | Da | `universalIdentifier` al componentei front-end pe care această comandă o deschide |
374374
| `shortLabel` | Nu | Etichetă mai scurtă afișată pe butonul de acțiune rapidă fixat |
375375
| `icon` | Nu | Numele pictogramei afișat lângă etichetă (de ex. `'IconBolt'`, `'IconSend'`) |
376376
| `isPinned` | Nu | Când este `true`, afișează comanda ca buton de acțiune rapidă în colțul din dreapta sus al paginii |

packages/twenty-docs/l/ro/developers/extend/apps/publishing.mdx

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -198,6 +198,14 @@ export default defineApplication({
198198

199199
Vezi [acordeonul defineApplication](/l/ro/developers/extend/apps/building#defineentity-functions) din pagina Building Apps pentru lista completă de câmpuri ale marketplace-ului (`author`, `category`, `aboutDescription`, `websiteUrl`, `termsUrl`, etc.).
200200

201+
#### Dimensiuni recomandate pentru capturi de ecran
202+
203+
marketplace-ul redă `screenshots` într-un container fix cu raport `8:5` (de exemplu, `1600×1000 px`).
204+
205+
<Note>
206+
Capturile de ecran cu orice raport de aspect sunt afișate integral și nu sunt niciodată decupate, însă orice este semnificativ mai înalt sau mai îngust decât `8:5` va afișa benzi goale pe laterale.
207+
</Note>
208+
201209
### Publicare
202210

203211
```bash filename="Terminal"

packages/twenty-docs/l/ru/developers/extend/apps/front-components.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ icon: window-maximize
1515

1616
## Простой пример
1717

18-
The quickest way to see a front component in action is to register it with a **command menu item**. Use `defineCommandMenuItem` in a separate file to make the component appear as a quick-action button in the top-right corner of the page:
18+
Самый быстрый способ увидеть фронтенд-компонент в действии — зарегистрировать его в качестве **пункта меню команд**. Используйте `defineCommandMenuItem` в отдельном файле, чтобы компонент отображался как кнопка быстрого действия в правом верхнем углу страницы:
1919

2020
```tsx src/front-components/hello-world.tsx
2121
import { defineFrontComponent } from 'twenty-sdk/define';
@@ -350,7 +350,7 @@ export default defineFrontComponent({
350350

351351
## defineCommandMenuItem
352352

353-
Use `defineCommandMenuItem` to register a front component in the command menu (Cmd+K). Если `isPinned` имеет значение `true`, команда также отображается как кнопка быстрого действия в правом верхнем углу страницы.
353+
Используйте `defineCommandMenuItem`, чтобы зарегистрировать фронтенд-компонент в меню команд (Cmd+K). Если `isPinned` имеет значение `true`, команда также отображается как кнопка быстрого действия в правом верхнем углу страницы.
354354

355355
```ts src/command-menu-items/open-dashboard.command-menu-item.ts
356356
import { defineCommandMenuItem } from 'twenty-sdk/define';
@@ -370,7 +370,7 @@ export default defineCommandMenuItem({
370370
| --------------------------------------- | ----------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
371371
| `universalIdentifier` | Да | Стабильный уникальный идентификатор для команды |
372372
| `label` | Да | Полная метка, отображаемая в меню команд (Cmd+K) |
373-
| `frontComponentUniversalIdentifier` | Да | The `universalIdentifier` of the front component this command opens |
373+
| `frontComponentUniversalIdentifier` | Да | `universalIdentifier` фронтенд-компонента, который открывается этой командой |
374374
| `shortLabel` | Нет | Короткая метка, отображаемая на закреплённой кнопке быстрого действия |
375375
| `icon` | Нет | Имя значка, отображаемое рядом с меткой (например, `'IconBolt'`, `'IconSend'`) |
376376
| `isPinned` | Нет | При значении `true` показывает команду как кнопку быстрого действия в правом верхнем углу страницы |

packages/twenty-docs/l/ru/developers/extend/apps/publishing.mdx

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -198,6 +198,14 @@ export default defineApplication({
198198

199199
См. [аккордеон defineApplication](/l/ru/developers/extend/apps/building#defineentity-functions) на странице «Создание приложений» для полного списка полей маркетплейса (`author`, `category`, `aboutDescription`, `websiteUrl`, `termsUrl` и т. д.).
200200

201+
#### Рекомендуемые размеры скриншотов
202+
203+
Маркетплейс отображает `screenshots` в контейнере с фиксированным соотношением сторон `8:5` (например, `1600×1000 px`).
204+
205+
<Note>
206+
Скриншоты с любым соотношением сторон отображаются полностью и никогда не обрезаются, но всё, что значительно выше или уже, чем `8:5`, будет иметь пустые поля по бокам.
207+
</Note>
208+
201209
### Публикация
202210

203211
```bash filename="Terminal"

0 commit comments

Comments
 (0)