Skip to content

Commit 36a5302

Browse files
committed
fix(docs): correct file extensions in get_started documentation across multiple languages
1 parent b806884 commit 36a5302

File tree

13 files changed

+76
-76
lines changed

13 files changed

+76
-76
lines changed

docs/ar/dictionary/get_started.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424

2525
قم بإنشاء وإدارة القواميس الخاصة بك:
2626

27-
```tsx fileName="src/example.content.ts" contentDeclarationFormat="typescript"
27+
```tsx fileName="src/example.content.tsx" contentDeclarationFormat="typescript"
2828
import { t, enu, cond, nest, md, type Dictionary } from "intlayer";
2929

3030
interface Content {
@@ -93,7 +93,7 @@ export default {
9393
} satisfies Dictionary<Content>; // [اختياري] القاموس هو عام ويسمح لك بتقوية تنسيق القاموس الخاص بك
9494
```
9595

96-
```javascript fileName="src/example.content.mjs" contentDeclarationFormat="esm"
96+
```javascript fileName="src/example.content.mjx" contentDeclarationFormat="esm"
9797
import { t, enu, cond, nest, md } from "intlayer";
9898

9999
/** @type {import('intlayer').Dictionary} */
@@ -142,7 +142,7 @@ export default {
142142
};
143143
```
144144

145-
```javascript fileName="src/example.content.cjs" contentDeclarationFormat="commonjs"
145+
```javascript fileName="src/example.content.cjx" contentDeclarationFormat="commonjs"
146146
const { t, enu, cond, nest, md } = require("intlayer");
147147

148148
/** @type {import('intlayer').Dictionary} */
@@ -258,7 +258,7 @@ module.exports = {
258258

259259
مثال:
260260

261-
```javascript fileName="src/example.content.ts" contentDeclarationFormat="typescript"
261+
```javascript fileName="src/example.content.tsx" contentDeclarationFormat="typescript"
262262
import { t, enu, cond, nest, md, type Dictionary } from "intlayer";
263263

264264
const getName = async () => "جون دو";
@@ -311,7 +311,7 @@ export default {
311311
} satisfies Dictionary;
312312
```
313313

314-
```javascript fileName="src/example.content.mjs" contentDeclarationFormat="esm"
314+
```javascript fileName="src/example.content.mjx" contentDeclarationFormat="esm"
315315
import { t, enu, cond, nest, md } from "intlayer";
316316

317317
const getName = async () => "جون دو";
@@ -365,7 +365,7 @@ export default {
365365
};
366366
```
367367

368-
```javascript fileName="src/example.content.cjs" contentDeclarationFormat="commonjs"
368+
```javascript fileName="src/example.content.cjx" contentDeclarationFormat="commonjs"
369369
const { t, enu, cond, nest, md } = require("intlayer");
370370

371371
const getName = async () => "جون دو";

docs/de/dictionary/get_started.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ Für eine vollständige Liste der Konfigurationsoptionen besuchen Sie die Konfig
2424

2525
Erstellen und verwalten Sie Ihre Wörterbücher:
2626

27-
```tsx fileName="src/example.content.ts" contentDeclarationFormat="typescript"
27+
```tsx fileName="src/example.content.tsx" contentDeclarationFormat="typescript"
2828
import { t, enu, cond, nest, md, type Dictionary } from "intlayer";
2929

3030
interface Content {
@@ -92,7 +92,7 @@ export default {
9292
} satisfies Dictionary<Content>; // [optional] Dictionary ist generisch und ermöglicht es Ihnen, die Formatierung Ihres Wörterbuchs zu stärken
9393
```
9494

95-
```javascript fileName="src/example.content.mjs" contentDeclarationFormat="esm"
95+
```javascript fileName="src/example.content.mjx" contentDeclarationFormat="esm"
9696
import { t, enu, cond, nest, md } from "intlayer";
9797

9898
/** @type {import('intlayer').Dictionary} */
@@ -140,7 +140,7 @@ export default {
140140
};
141141
```
142142

143-
```javascript fileName="src/example.content.cjs" contentDeclarationFormat="commonjs"
143+
```javascript fileName="src/example.content.cjx" contentDeclarationFormat="commonjs"
144144
const { t, enu, cond, nest, md } = require("intlayer");
145145

146146
/** @type {import('intlayer').Dictionary} */
@@ -254,7 +254,7 @@ Sie können problemlos Funktionen in andere Funktionen verschachteln.
254254

255255
Beispiel:
256256

257-
```javascript fileName="src/example.content.ts" contentDeclarationFormat="typescript"
257+
```javascript fileName="src/example.content.tsx" contentDeclarationFormat="typescript"
258258
import { t, enu, cond, nest, md, type Dictionary } from "intlayer";
259259

260260
const getName = async () => "John Doe";
@@ -302,7 +302,7 @@ export default {
302302
} satisfies Dictionary;
303303
```
304304

305-
```javascript fileName="src/example.content.mjs" contentDeclarationFormat="esm"
305+
```javascript fileName="src/example.content.mjx" contentDeclarationFormat="esm"
306306
import { t, enu, cond, nest, md } from "intlayer";
307307

308308
const getName = async () => "John Doe";
@@ -351,7 +351,7 @@ export default {
351351
};
352352
```
353353

354-
```javascript fileName="src/example.content.cjs" contentDeclarationFormat="commonjs"
354+
```javascript fileName="src/example.content.cjx" contentDeclarationFormat="commonjs"
355355
const { t, enu, cond, nest, md } = require("intlayer");
356356

357357
const getName = async () => "John Doe";

docs/en-GB/dictionary/get_started.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ For a full list of configuration options, visit the configuration documentation.
2424

2525
Create and manage your dictionaries:
2626

27-
```tsx fileName="src/example.content.ts" contentDeclarationFormat="typescript"
27+
```tsx fileName="src/example.content.tsx" contentDeclarationFormat="typescript"
2828
import { t, enu, cond, nest, md, type Dictionary } from "intlayer";
2929

3030
interface Content {
@@ -92,7 +92,7 @@ export default {
9292
} satisfies Dictionary<Content>; // [optional] Dictionary is generic and allow you to strengthen the formatting of your dictionary
9393
```
9494

95-
```javascript fileName="src/example.content.mjs" contentDeclarationFormat="esm"
95+
```javascript fileName="src/example.content.mjx" contentDeclarationFormat="esm"
9696
import { t, enu, cond, nest, md } from "intlayer";
9797

9898
/** @type {import('intlayer').Dictionary} */
@@ -140,7 +140,7 @@ export default {
140140
};
141141
```
142142

143-
```javascript fileName="src/example.content.cjs" contentDeclarationFormat="commonjs"
143+
```javascript fileName="src/example.content.cjx" contentDeclarationFormat="commonjs"
144144
const { t, enu, cond, nest, md } = require("intlayer");
145145

146146
/** @type {import('intlayer').Dictionary} */
@@ -254,7 +254,7 @@ You can without problem imbricate functions into other ones.
254254

255255
Example :
256256

257-
```javascript fileName="src/example.content.ts" contentDeclarationFormat="typescript"
257+
```javascript fileName="src/example.content.tsx" contentDeclarationFormat="typescript"
258258
import { t, enu, cond, nest, md, type Dictionary } from "intlayer";
259259

260260
const getName = async () => "John Doe";
@@ -302,7 +302,7 @@ export default {
302302
} satisfies Dictionary;
303303
```
304304

305-
```javascript fileName="src/example.content.mjs" contentDeclarationFormat="esm"
305+
```javascript fileName="src/example.content.mjx" contentDeclarationFormat="esm"
306306
import { t, enu, cond, nest, md } from "intlayer";
307307

308308
const getName = async () => "John Doe";
@@ -351,7 +351,7 @@ export default {
351351
};
352352
```
353353

354-
```javascript fileName="src/example.content.cjs" contentDeclarationFormat="commonjs"
354+
```javascript fileName="src/example.content.cjx" contentDeclarationFormat="commonjs"
355355
const { t, enu, cond, nest, md } = require("intlayer");
356356

357357
const getName = async () => "John Doe";

docs/en/dictionary/get_started.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ For a full list of configuration options, visit the configuration documentation.
2424

2525
Create and manage your dictionaries:
2626

27-
```tsx fileName="src/example.content.ts" contentDeclarationFormat="typescript"
27+
```tsx fileName="src/example.content.tsx" contentDeclarationFormat="typescript"
2828
import {
2929
t,
3030
enu,
@@ -101,7 +101,7 @@ export default {
101101
} satisfies Dictionary<Content>; // [optional] Dictionary is generic and allow you to strengthen the formatting of your dictionary
102102
```
103103

104-
```javascript fileName="src/example.content.mjs" contentDeclarationFormat="esm"
104+
```javascript fileName="src/example.content.mjx" contentDeclarationFormat="esm"
105105
import { t, enu, cond, nest, md, insert, file } from "intlayer";
106106

107107
/** @type {import('intlayer').Dictionary} */
@@ -151,7 +151,7 @@ export default {
151151
};
152152
```
153153

154-
```javascript fileName="src/example.content.cjs" contentDeclarationFormat="commonjs"
154+
```javascript fileName="src/example.content.cjx" contentDeclarationFormat="commonjs"
155155
const { t, enu, cond, nest, md, insert, file } = require("intlayer");
156156

157157
/** @type {import('intlayer').Dictionary} */
@@ -275,7 +275,7 @@ You can without problem imbricate functions into other ones.
275275

276276
Example :
277277

278-
```javascript fileName="src/example.content.ts" contentDeclarationFormat="typescript"
278+
```javascript fileName="src/example.content.tsx" contentDeclarationFormat="typescript"
279279
import { t, enu, cond, nest, md, type Dictionary } from "intlayer";
280280

281281
const getName = async () => "John Doe";
@@ -323,7 +323,7 @@ export default {
323323
} satisfies Dictionary;
324324
```
325325

326-
```javascript fileName="src/example.content.mjs" contentDeclarationFormat="esm"
326+
```javascript fileName="src/example.content.mjx" contentDeclarationFormat="esm"
327327
import { t, enu, cond, nest, md } from "intlayer";
328328

329329
const getName = async () => "John Doe";
@@ -372,7 +372,7 @@ export default {
372372
};
373373
```
374374

375-
```javascript fileName="src/example.content.cjs" contentDeclarationFormat="commonjs"
375+
```javascript fileName="src/example.content.cjx" contentDeclarationFormat="commonjs"
376376
const { t, enu, cond, nest, md } = require("intlayer");
377377

378378
const getName = async () => "John Doe";

docs/es/dictionary/get_started.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ Para una lista completa de opciones de configuración, visite la documentación
2424

2525
Cree y gestione sus diccionarios:
2626

27-
```tsx fileName="src/example.content.ts" contentDeclarationFormat="typescript"
27+
```tsx fileName="src/example.content.tsx" contentDeclarationFormat="typescript"
2828
import { t, enu, cond, nest, md, type Dictionary } from "intlayer";
2929

3030
interface Content {
@@ -92,7 +92,7 @@ export default {
9292
} satisfies Dictionary<Content>; // [opcional] Dictionary es genérico y permite fortalecer el formato de su diccionario
9393
```
9494

95-
```javascript fileName="src/example.content.mjs" contentDeclarationFormat="esm"
95+
```javascript fileName="src/example.content.mjx" contentDeclarationFormat="esm"
9696
import { t, enu, cond, nest, md } from "intlayer";
9797

9898
/** @type {import('intlayer').Dictionary} */
@@ -140,7 +140,7 @@ export default {
140140
};
141141
```
142142

143-
```javascript fileName="src/example.content.cjs" contentDeclarationFormat="commonjs"
143+
```javascript fileName="src/example.content.cjx" contentDeclarationFormat="commonjs"
144144
const { t, enu, cond, nest, md } = require("intlayer");
145145

146146
/** @type {import('intlayer').Dictionary} */
@@ -254,7 +254,7 @@ Puede sin problema imbricar funciones en otras.
254254

255255
Ejemplo:
256256

257-
```javascript fileName="src/example.content.ts" contentDeclarationFormat="typescript"
257+
```javascript fileName="src/example.content.tsx" contentDeclarationFormat="typescript"
258258
import { t, enu, cond, nest, md, type Dictionary } from "intlayer";
259259

260260
const getName = async () => "John Doe";
@@ -302,7 +302,7 @@ export default {
302302
} satisfies Dictionary;
303303
```
304304

305-
```javascript fileName="src/example.content.mjs" contentDeclarationFormat="esm"
305+
```javascript fileName="src/example.content.mjx" contentDeclarationFormat="esm"
306306
import { t, enu, cond, nest, md } from "intlayer";
307307

308308
const getName = async () => "John Doe";
@@ -351,7 +351,7 @@ export default {
351351
};
352352
```
353353

354-
```javascript fileName="src/example.content.cjs" contentDeclarationFormat="commonjs"
354+
```javascript fileName="src/example.content.cjx" contentDeclarationFormat="commonjs"
355355
const { t, enu, cond, nest, md } = require("intlayer");
356356

357357
const getName = async () => "John Doe";

docs/fr/dictionary/get_started.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ Pour une liste complète des options de configuration, visitez la documentation
2424

2525
Créez et gérez vos dictionnaires :
2626

27-
```tsx fileName="src/example.content.ts" contentDeclarationFormat="typescript"
27+
```tsx fileName="src/example.content.tsx" contentDeclarationFormat="typescript"
2828
import { t, enu, cond, nest, md, type Dictionary } from "intlayer";
2929

3030
interface Content {
@@ -92,7 +92,7 @@ export default {
9292
} satisfies Dictionary<Content>; // [optionnel] Dictionary est générique et vous permet de renforcer le formatage de votre dictionnaire
9393
```
9494

95-
```javascript fileName="src/example.content.mjs" contentDeclarationFormat="esm"
95+
```javascript fileName="src/example.content.mjx" contentDeclarationFormat="esm"
9696
import { t, enu, cond, nest, md } from "intlayer";
9797

9898
/** @type {import('intlayer').Dictionary} */
@@ -140,7 +140,7 @@ export default {
140140
};
141141
```
142142

143-
```javascript fileName="src/example.content.cjs" contentDeclarationFormat="commonjs"
143+
```javascript fileName="src/example.content.cjx" contentDeclarationFormat="commonjs"
144144
const { t, enu, cond, nest, md } = require("intlayer");
145145

146146
/** @type {import('intlayer').Dictionary} */
@@ -254,7 +254,7 @@ Vous pouvez sans problème imbriquer des fonctions dans d'autres.
254254

255255
Exemple :
256256

257-
```javascript fileName="src/example.content.ts" contentDeclarationFormat="typescript"
257+
```javascript fileName="src/example.content.tsx" contentDeclarationFormat="typescript"
258258
import { t, enu, cond, nest, md, type Dictionary } from "intlayer";
259259

260260
const getName = async () => "Jean Dupont";
@@ -302,7 +302,7 @@ export default {
302302
} satisfies Dictionary;
303303
```
304304

305-
```javascript fileName="src/example.content.mjs" contentDeclarationFormat="esm"
305+
```javascript fileName="src/example.content.mjx" contentDeclarationFormat="esm"
306306
import { t, enu, cond, nest, md } from "intlayer";
307307

308308
const getName = async () => "Jean Dupont";
@@ -351,7 +351,7 @@ export default {
351351
};
352352
```
353353

354-
```javascript fileName="src/example.content.cjs" contentDeclarationFormat="commonjs"
354+
```javascript fileName="src/example.content.cjx" contentDeclarationFormat="commonjs"
355355
const { t, enu, cond, nest, md } = require("intlayer");
356356

357357
const getName = async () => "Jean Dupont";

docs/hi/dictionary/get_started.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424

2525
अपनी डिक्शनरी बनाएं और प्रबंधित करें:
2626

27-
```tsx fileName="src/example.content.ts" contentDeclarationFormat="typescript"
27+
```tsx fileName="src/example.content.tsx" contentDeclarationFormat="typescript"
2828
import { t, enu, cond, nest, md, type Dictionary } from "intlayer";
2929

3030
interface Content {
@@ -93,7 +93,7 @@ export default {
9393
} satisfies Dictionary<Content>; // [वैकल्पिक] डिक्शनरी जेनेरिक है और आपकी डिक्शनरी के स्वरूपण को मजबूत करने की अनुमति देती है
9494
```
9595

96-
```javascript fileName="src/example.content.mjs" contentDeclarationFormat="esm"
96+
```javascript fileName="src/example.content.mjx" contentDeclarationFormat="esm"
9797
import { t, enu, cond, nest, md } from "intlayer";
9898

9999
/** @type {import('intlayer').Dictionary} */
@@ -142,7 +142,7 @@ export default {
142142
};
143143
```
144144

145-
```javascript fileName="src/example.content.cjs" contentDeclarationFormat="commonjs"
145+
```javascript fileName="src/example.content.cjx" contentDeclarationFormat="commonjs"
146146
const { t, enu, cond, nest, md } = require("intlayer");
147147

148148
/** @type {import('intlayer').Dictionary} */
@@ -258,7 +258,7 @@ module.exports = {
258258

259259
उदाहरण:
260260

261-
```javascript fileName="src/example.content.ts" contentDeclarationFormat="typescript"
261+
```javascript fileName="src/example.content.tsx" contentDeclarationFormat="typescript"
262262
import { t, enu, cond, nest, md, type Dictionary } from "intlayer";
263263

264264
const getName = async () => "जॉन डो";
@@ -311,7 +311,7 @@ export default {
311311
} satisfies Dictionary;
312312
```
313313

314-
```javascript fileName="src/example.content.mjs" contentDeclarationFormat="esm"
314+
```javascript fileName="src/example.content.mjx" contentDeclarationFormat="esm"
315315
import { t, enu, cond, nest, md } from "intlayer";
316316

317317
const getName = async () => "जॉन डो";
@@ -365,7 +365,7 @@ export default {
365365
};
366366
```
367367

368-
```javascript fileName="src/example.content.cjs" contentDeclarationFormat="commonjs"
368+
```javascript fileName="src/example.content.cjx" contentDeclarationFormat="commonjs"
369369
const { t, enu, cond, nest, md } = require("intlayer");
370370

371371
const getName = async () => "जॉन डो";

0 commit comments

Comments
 (0)