i18n - docs translations (#22296)
Created by Github action Co-authored-by: github-actions <github-actions@twenty.com>
This commit is contained in:
committed by
GitHub
parent
db7d8172f7
commit
73b0d55350
+1
-1
@@ -18,7 +18,7 @@ server
|
||||
└───integrations
|
||||
└───metadata
|
||||
└───workspace
|
||||
└───utils},{
|
||||
└───utils
|
||||
```
|
||||
|
||||
## قدرات
|
||||
|
||||
+1
-1
@@ -23,7 +23,7 @@ npx nx run twenty-server:start
|
||||
### Lint
|
||||
|
||||
```
|
||||
npx nx run twenty-server:lint # pass --fix to fix lint errors},{
|
||||
npx nx run twenty-server:lint # pass --fix to fix lint errors
|
||||
```
|
||||
|
||||
### تجربة
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
---
|
||||
title: دليل الأسلوب
|
||||
icon: فرشاة طلاء
|
||||
icon: paintbrush
|
||||
description: اتفاقيات الشيفرة وأفضل الممارسات للمساهمة في Twenty.
|
||||
---
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
---
|
||||
title: تلميح التطبيق
|
||||
icon: رسالة
|
||||
icon: message
|
||||
---
|
||||
|
||||
<Frame>
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
---
|
||||
title: الأيقونات
|
||||
icon: الأيقونات
|
||||
icon: icons
|
||||
---
|
||||
|
||||
<Frame>
|
||||
|
||||
@@ -18,7 +18,7 @@ export const MyComponent = () => {
|
||||
toggleSize = "medium"
|
||||
/>
|
||||
);
|
||||
};},{
|
||||
};
|
||||
```
|
||||
|
||||
</Tab>
|
||||
|
||||
+1
-1
@@ -18,7 +18,7 @@ server
|
||||
└───integrations
|
||||
└───metadata
|
||||
└───workspace
|
||||
└───utils},{
|
||||
└───utils
|
||||
```
|
||||
|
||||
## Habilidad
|
||||
|
||||
+2
-2
@@ -227,12 +227,12 @@ const EmailField = ({ value, disabled = false }: EmailFieldProps) => (
|
||||
|
||||
```tsx
|
||||
// ❌ Bad, passing in the same value as the default value adds no value
|
||||
const Form = () => <EmailField value=\"username@email.com\" disabled={false} />;
|
||||
const Form = () => <EmailField value="username@email.com" disabled={false} />;
|
||||
```
|
||||
|
||||
```tsx
|
||||
// ✅ Good, assumes the default value
|
||||
const Form = () => <EmailField value=\"username@email.com\" />;
|
||||
const Form = () => <EmailField value="username@email.com" />;
|
||||
```
|
||||
|
||||
## Componente como props
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
---
|
||||
title: Consejo de la aplicación
|
||||
icon: mensaje
|
||||
icon: message
|
||||
---
|
||||
|
||||
<Frame>
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
---
|
||||
title: Iconos
|
||||
icon: iconos
|
||||
icon: icons
|
||||
---
|
||||
|
||||
<Frame>
|
||||
|
||||
@@ -18,7 +18,7 @@ export const MyComponent = () => {
|
||||
toggleSize = "medium"
|
||||
/>
|
||||
);
|
||||
};},{
|
||||
};
|
||||
```
|
||||
|
||||
</Tab>
|
||||
|
||||
File diff suppressed because one or more lines are too long
@@ -132,8 +132,8 @@ export const MyComponent = () => {
|
||||
<TextArea
|
||||
disabled={false}
|
||||
minRows={4}
|
||||
onChange={()=>console.log('On change 함수 실행됨')}
|
||||
placeholder="여기에 텍스트를 입력하세요"
|
||||
onChange={()=>console.log('On change function fired')}
|
||||
placeholder="Enter text here"
|
||||
value=""
|
||||
/>
|
||||
);
|
||||
|
||||
-1
@@ -101,7 +101,6 @@ export const PageComponent = () => {
|
||||
export const App = () => (
|
||||
<PageComponent />
|
||||
);
|
||||
|
||||
```
|
||||
|
||||
```tsx
|
||||
|
||||
@@ -39,7 +39,7 @@ export const MyComponent = () => {
|
||||
/>
|
||||
);
|
||||
};
|
||||
},{
|
||||
|
||||
```
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user