Skip to content

Commit f47b80a

Browse files
author
github-actions
committed
chore: update docs translations from Crowdin and fix internal links
1 parent 59d123d commit f47b80a

File tree

15 files changed

+96
-96
lines changed

15 files changed

+96
-96
lines changed

packages/twenty-docs/l/cs/developers/extend/capabilities/apps.mdx

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -49,22 +49,22 @@ yarn app:dev
4949
Odtud můžete:
5050

5151
```bash filename="Terminal"
52-
# Add a new entity to your application (guided)
52+
# Přidejte do vaší aplikace novou entitu (s průvodcem)
5353
yarn entity:add
5454

55-
# Generate a typed Twenty client and workspace entity types
55+
# Vygenerujte typovaného klienta Twenty a typy entit pracovního prostoru
5656
yarn app:generate
5757

58-
# Watch your application's function logs
58+
# Sledujte logy funkcí vaší aplikace
5959
yarn function:logs
6060

61-
# Execute a function by name
61+
# Spusťte funkci podle názvu
6262
yarn function:execute -n my-function -p '{"name": "test"}'
6363

64-
# Uninstall the application from the current workspace
64+
# Odinstalujte aplikaci z aktuálního pracovního prostoru
6565
yarn app:uninstall
6666

67-
# Display commands' help
67+
# Zobrazte nápovědu k příkazům
6868
yarn help
6969
```
7070

@@ -105,12 +105,12 @@ my-twenty-app/
105105

106106
Aplikace používají přístup **konvence před konfigurací**, kde jsou entity detekovány podle přípony souboru. To umožňuje flexibilní organizaci ve složce `src/app/`:
107107

108-
| Přípona souboru | Typ entity |
109-
| ----------------------- | --------------------------- |
110-
| `*.object.ts` | Definice vlastních objektů |
111-
| `*.function.ts` | Definice serverless funkcí |
112-
| `*.front-component.tsx` | Front component definitions |
113-
| `*.role.ts` | Definice rolí |
108+
| Přípona souboru | Typ entity |
109+
| ----------------------- | -------------------------------- |
110+
| `*.object.ts` | Definice vlastních objektů |
111+
| `*.function.ts` | Definice serverless funkcí |
112+
| `*.front-component.tsx` | Definice frontendových komponent |
113+
| `*.role.ts` | Definice rolí |
114114

115115
### Podporované uspořádání složek
116116

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

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -49,22 +49,22 @@ yarn app:dev
4949
Von hier aus können Sie:
5050

5151
```bash filename="Terminal"
52-
# Add a new entity to your application (guided)
52+
# Eine neue Entität zu deiner Anwendung hinzufügen (geführt)
5353
yarn entity:add
5454

55-
# Generate a typed Twenty client and workspace entity types
55+
# Einen typisierten Twenty-Client und Entitätstypen für den Arbeitsbereich generieren
5656
yarn app:generate
5757

58-
# Watch your application's function logs
58+
# Die Funktionsprotokolle deiner Anwendung überwachen
5959
yarn function:logs
6060

61-
# Execute a function by name
61+
# Eine Funktion anhand ihres Namens ausführen
6262
yarn function:execute -n my-function -p '{"name": "test"}'
6363

64-
# Uninstall the application from the current workspace
64+
# Die Anwendung aus dem aktuellen Arbeitsbereich deinstallieren
6565
yarn app:uninstall
6666

67-
# Display commands' help
67+
# Hilfe zu Befehlen anzeigen
6868
yarn help
6969
```
7070

@@ -94,11 +94,11 @@ my-twenty-app/
9494
tsconfig.json
9595
README.md
9696
src/
97-
application.config.ts # Required - main application configuration
98-
default-function.role.ts # Default role for serverless functions
99-
hello-world.function.ts # Example serverless function
100-
hello-world.front-component.tsx # Example front component
101-
// your entities (*.object.ts, *.function.ts, *.front-component.tsx, *.role.ts)
97+
application.config.ts # Erforderlich – Hauptkonfiguration der Anwendung
98+
default-function.role.ts # Standardrolle für serverlose Funktionen
99+
hello-world.function.ts # Beispiel für eine serverlose Funktion
100+
hello-world.front-component.tsx # Beispiel für eine Frontend-Komponente
101+
// Ihre Entitäten (*.object.ts, *.function.ts, *.front-component.tsx, *.role.ts)
102102
```
103103

104104
### Konvention vor Konfiguration
@@ -109,7 +109,7 @@ Anwendungen verwenden einen Ansatz **Konvention vor Konfiguration**, bei dem Ent
109109
| ----------------------- | ------------------------------------- |
110110
| `*.object.ts` | Benutzerdefinierte Objektdefinitionen |
111111
| `*.function.ts` | Definitionen serverloser Funktionen |
112-
| `*.front-component.tsx` | Front component definitions |
112+
| `*.front-component.tsx` | Definitionen von Frontend-Komponenten |
113113
| `*.role.ts` | Rollendefinitionen |
114114

115115
### Unterstützte Ordnerorganisationen

packages/twenty-docs/l/it/developers/extend/capabilities/apps.mdx

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -49,22 +49,22 @@ yarn app:dev
4949
Da qui puoi:
5050

5151
```bash filename="Terminal"
52-
# Add a new entity to your application (guided)
52+
# Aggiungi una nuova entità alla tua applicazione (guidata)
5353
yarn entity:add
5454

55-
# Generate a typed Twenty client and workspace entity types
55+
# Genera un client Twenty tipizzato e i tipi di entità dell'area di lavoro
5656
yarn app:generate
5757

58-
# Watch your application's function logs
58+
# Monitora i log delle funzioni della tua applicazione
5959
yarn function:logs
6060

61-
# Execute a function by name
61+
# Esegui una funzione per nome
6262
yarn function:execute -n my-function -p '{"name": "test"}'
6363

64-
# Uninstall the application from the current workspace
64+
# Disinstalla l'applicazione dallo spazio di lavoro corrente
6565
yarn app:uninstall
6666

67-
# Display commands' help
67+
# Mostra l'aiuto dei comandi
6868
yarn help
6969
```
7070

@@ -94,11 +94,11 @@ my-twenty-app/
9494
tsconfig.json
9595
README.md
9696
src/
97-
application.config.ts # Required - main application configuration
98-
default-function.role.ts # Default role for serverless functions
99-
hello-world.function.ts # Example serverless function
100-
hello-world.front-component.tsx # Example front component
101-
// your entities (*.object.ts, *.function.ts, *.front-component.tsx, *.role.ts)
97+
application.config.ts # Obbligatorio - configurazione principale dell'applicazione
98+
default-function.role.ts # Ruolo predefinito per le funzioni serverless
99+
hello-world.function.ts # Funzione serverless di esempio
100+
hello-world.front-component.tsx # Componente front-end di esempio
101+
// le tue entità (*.object.ts, *.function.ts, *.front-component.tsx, *.role.ts)
102102
```
103103

104104
### Convenzioni invece della configurazione
@@ -109,7 +109,7 @@ Le applicazioni usano un approccio basato sulle **convenzioni invece della confi
109109
| ----------------------- | ------------------------------------- |
110110
| `*.object.ts` | Definizioni di oggetti personalizzati |
111111
| `*.function.ts` | Definizioni di funzioni serverless |
112-
| `*.front-component.tsx` | Front component definitions |
112+
| `*.front-component.tsx` | Definizioni dei componenti front-end |
113113
| `*.role.ts` | Definizioni di ruoli |
114114

115115
### Organizzazioni di cartelle supportate

packages/twenty-docs/l/ja/developers/extend/capabilities/apps.mdx

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -49,23 +49,23 @@ yarn app:dev
4949
そこで次のことができます:
5050

5151
```bash filename="Terminal"
52-
# Add a new entity to your application (guided)
52+
# アプリケーションに新しいエンティティを追加(ガイド付き)
5353
yarn entity:add
5454

55-
# Generate a typed Twenty client and workspace entity types
55+
# 型付きの Twenty クライアントとワークスペースのエンティティ型を生成
5656
yarn app:generate
5757

58-
# Watch your application's function logs
58+
# アプリケーションの関数のログを監視
5959
yarn function:logs
6060

61-
# Execute a function by name
61+
# 名前で関数を実行
6262
yarn function:execute -n my-function -p '{"name": "test"}'
6363

64-
# Uninstall the application from the current workspace
64+
# 現在のワークスペースからアプリケーションをアンインストール
6565
yarn app:uninstall
6666

67-
# Display commands' help
68-
yarn help
67+
# コマンドのヘルプを表示
68+
yarn help},{
6969
```
7070

7171
参考: [create-twenty-app](https://www.npmjs.com/package/create-twenty-app) および [twenty-sdk CLI](https://www.npmjs.com/package/twenty-sdk) の CLI リファレンスページをご覧ください。
@@ -105,12 +105,12 @@ my-twenty-app/
105105

106106
アプリケーションは **コンベンション優先(設定より規約)** のアプローチを採用し、エンティティはファイルのサフィックスで検出されます。 これにより、`src/app/` フォルダー内を柔軟に構成できます:
107107

108-
| ファイルサフィックス | エンティティタイプ |
109-
| ----------------------- | --------------------------- |
110-
| `*.object.ts` | カスタムオブジェクトの定義 |
111-
| `*.function.ts` | サーバーレス関数の定義 |
112-
| `*.front-component.tsx` | Front component definitions |
113-
| `*.role.ts` | ロールの定義 |
108+
| ファイルサフィックス | エンティティタイプ |
109+
| ----------------------- | ----------------- |
110+
| `*.object.ts` | カスタムオブジェクトの定義 |
111+
| `*.function.ts` | サーバーレス関数の定義 |
112+
| `*.front-component.tsx` | フロントエンドコンポーネントの定義 |
113+
| `*.role.ts` | ロールの定義 |
114114

115115
### サポートされるフォルダー構成
116116

packages/twenty-docs/l/ko/developers/extend/capabilities/apps.mdx

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -105,12 +105,12 @@ my-twenty-app/
105105

106106
애플리케이션은 파일 접미사로 엔티티를 감지하는 **관례 우선** 접근 방식을 사용합니다. 이를 통해 `src/app/` 폴더 내에서 유연하게 구성할 수 있습니다:
107107

108-
| 파일 접미사 | 엔티티 유형 |
109-
| ----------------------- | --------------------------- |
110-
| `*.object.ts` | 사용자 정의 객체 정의 |
111-
| `*.function.ts` | 서버리스 함수 정의 |
112-
| `*.front-component.tsx` | Front component definitions |
113-
| `*.role.ts` | 역할 정의 |
108+
| 파일 접미사 | 엔티티 유형 |
109+
| ----------------------- | ------------ |
110+
| `*.object.ts` | 사용자 정의 객체 정의 |
111+
| `*.function.ts` | 서버리스 함수 정의 |
112+
| `*.front-component.tsx` | 프런트 컴포넌트 정의 |
113+
| `*.role.ts` | 역할 정의 |
114114

115115
### 지원되는 폴더 구성 방식
116116

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

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -49,22 +49,22 @@ yarn app:dev
4949
A partir daqui você pode:
5050

5151
```bash filename="Terminal"
52-
# Add a new entity to your application (guided)
52+
# Adicionar uma nova entidade à sua aplicação (assistido)
5353
yarn entity:add
5454

55-
# Generate a typed Twenty client and workspace entity types
55+
# Gerar um cliente Twenty tipado e tipos de entidades do espaço de trabalho
5656
yarn app:generate
5757

58-
# Watch your application's function logs
58+
# Acompanhar os logs das funções da sua aplicação
5959
yarn function:logs
6060

61-
# Execute a function by name
62-
yarn function:execute -n my-function -p '{"name": "test"}'
61+
# Executar uma função pelo nome
62+
yarn function:execute -n my-function -p '{\"name\": \"test\"}'
6363

64-
# Uninstall the application from the current workspace
64+
# Desinstalar a aplicação do espaço de trabalho atual
6565
yarn app:uninstall
6666

67-
# Display commands' help
67+
# Exibir a ajuda dos comandos
6868
yarn help
6969
```
7070

@@ -94,23 +94,23 @@ my-twenty-app/
9494
tsconfig.json
9595
README.md
9696
src/
97-
application.config.ts # Required - main application configuration
98-
default-function.role.ts # Default role for serverless functions
99-
hello-world.function.ts # Example serverless function
100-
hello-world.front-component.tsx # Example front component
101-
// your entities (*.object.ts, *.function.ts, *.front-component.tsx, *.role.ts)
97+
application.config.ts # Obrigatório - configuração principal da aplicação
98+
default-function.role.ts # Papel padrão para funções serverless
99+
hello-world.function.ts # Exemplo de função serverless
100+
hello-world.front-component.tsx # Exemplo de componente de front-end
101+
// suas entidades (*.object.ts, *.function.ts, *.front-component.tsx, *.role.ts)
102102
```
103103

104104
### Convenção sobre configuração
105105

106106
Os aplicativos usam uma abordagem de **convenção sobre configuração** em que as entidades são detectadas pelo sufixo do arquivo. Isso permite organização flexível dentro da pasta `src/app/`:
107107

108-
| Sufixo de arquivo | Tipo de entidade |
109-
| ----------------------- | ------------------------------------ |
110-
| `*.object.ts` | Definições de objetos personalizados |
111-
| `*.function.ts` | Definições de funções serverless |
112-
| `*.front-component.tsx` | Front component definitions |
113-
| `*.role.ts` | Definições de papéis |
108+
| Sufixo de arquivo | Tipo de entidade |
109+
| ----------------------- | -------------------------------------- |
110+
| `*.object.ts` | Definições de objetos personalizados |
111+
| `*.function.ts` | Definições de funções serverless |
112+
| `*.front-component.tsx` | Definições de componentes de front-end |
113+
| `*.role.ts` | Definições de papéis |
114114

115115
### Organizações de pastas suportadas
116116

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

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -49,22 +49,22 @@ yarn app:dev
4949
Отсюда вы можете:
5050

5151
```bash filename="Terminal"
52-
# Add a new entity to your application (guided)
52+
# Добавить новую сущность в ваше приложение (с мастером)
5353
yarn entity:add
5454

55-
# Generate a typed Twenty client and workspace entity types
55+
# Сгенерировать типизированный клиент Twenty и типы сущностей рабочего пространства
5656
yarn app:generate
5757

58-
# Watch your application's function logs
58+
# Просматривать логи функций вашего приложения
5959
yarn function:logs
6060

61-
# Execute a function by name
61+
# Выполнить функцию по имени
6262
yarn function:execute -n my-function -p '{"name": "test"}'
6363

64-
# Uninstall the application from the current workspace
64+
# Удалить приложение из текущего рабочего пространства
6565
yarn app:uninstall
6666

67-
# Display commands' help
67+
# Показать справку по командам
6868
yarn help
6969
```
7070

@@ -109,7 +109,7 @@ my-twenty-app/
109109
| ----------------------- | ------------------------------------- |
110110
| `*.object.ts` | Определения пользовательских объектов |
111111
| `*.function.ts` | Определения бессерверных функций |
112-
| `*.front-component.tsx` | Front component definitions |
112+
| `*.front-component.tsx` | Определения компонентов фронтенда |
113113
| `*.role.ts` | Определения ролей |
114114

115115
### Поддерживаемые способы организации папок

packages/twenty-docs/l/tr/user-guide/workflows/capabilities/send-emails-from-workflows.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ Ekip
136136
| **Etkinlik onayları** | Etkinlik ayrıntıları veya gündem |
137137

138138
<Note>
139-
Ekler statiktir—aynı dosya tüm alıcılara gönderilir. Kişiselleştirilmiş teklifler gibi dinamik belgeler için, bir [Sunucusuz İşlev](/l/tr/user-guide/workflows/how-tos/connect-to-other-tools/generate-pdf-from-twenty) kullanarak dosyalar oluşturup ekleyin.
139+
Ekler statiktir—aynı dosya tüm alıcılara gönderilir. For dynamic documents (like personalized quotes), generate and attach files using a [Logic Function](/l/tr/user-guide/workflows/how-tos/connect-to-other-tools/generate-pdf-from-twenty).
140140
</Note>
141141

142142
## En İyi Uygulamalar

packages/twenty-docs/l/tr/user-guide/workflows/capabilities/workflow-actions.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -256,7 +256,7 @@ Aşağıdaki tüm adımlar için kişiselleştirme amacıyla önceki adımlardan
256256
* Kodu doğrudan adımda test edin
257257

258258
<Note>
259-
Kodunuzda harici API anahtarlarını kullanmanız gerekiyorsa, bunları doğrudan fonksiyon gövdesine girmeniz gerekir. API anahtarlarını başka bir yerde yapılandıramaz ve bunlara serverless fonksiyon içinde referans veremezsiniz.
259+
Kodunuzda harici API anahtarlarını kullanmanız gerekiyorsa, bunları doğrudan fonksiyon gövdesine girmeniz gerekir. You cannot configure API keys elsewhere and reference them in the logic function.
260260
</Note>
261261

262262
<Tip>

packages/twenty-docs/l/tr/user-guide/workflows/how-tos/need-more-help/workflows-faq.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ description: Twenty'deki iş akışları hakkında sıkça sorulan sorular.
131131
</Accordion>
132132

133133
<Accordion title="Code eylemleri için en uzun yürütme süresi nedir?">
134-
Code eylemlerinin (sunucusuz fonksiyonlar) **varsayılan zaman aşımı 5 dakikadır** (300 saniye).
134+
Code actions (logic functions) have a **default timeout of 5 minutes** (300 seconds).
135135

136136
Yapılandırılabilir en yüksek zaman aşımı **15 dakikadır** (900 saniye).
137137

0 commit comments

Comments
 (0)