Skip to content

Commit 6c4cef3

Browse files
[docs] Fix use of ellipsis
mui/base-ui#3633
1 parent d964c89 commit 6c4cef3

File tree

9 files changed

+11
-11
lines changed

9 files changed

+11
-11
lines changed

CONTRIBUTING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -287,13 +287,13 @@ The following steps explain how to add a new demo to the docs using the Button c
287287

288288
#### 1. Add a new component file to the directory
289289

290-
Add the new file to the component's corresponding directory...
290+
Add the new file to the component's corresponding directory:
291291

292292
```bash
293293
docs/src/pages/components/buttons/
294294
```
295295

296-
...and give it a name: how about `SuperButtons.tsx`?
296+
and give it a name: how about `SuperButtons.tsx`?
297297

298298
#### 2. Write the demo code
299299

docs/data/joy/components/breadcrumbs/BreadcrumbsUsage.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ export default function BreadcrumbsUsage() {
2121
},
2222
{
2323
propName: 'children',
24-
defaultValue: '<Link />\n ...',
24+
defaultValue: '<Link />\n ',
2525
},
2626
]}
2727
renderDemo={(props) => (

docs/data/joy/getting-started/templates/email/components/Mails.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ const data = [
4242
avatar2x: 'https://i.pravatar.cc/80?img=7',
4343
date: '10 May 2022',
4444
title: 'Exciting News!',
45-
body: 'Hello there! I have some exciting news to share with you...',
45+
body: 'Hello there! I have some exciting news to share with you',
4646
color: 'danger.500',
4747
},
4848
{
@@ -51,7 +51,7 @@ const data = [
5151
avatar2x: 'https://i.pravatar.cc/80?img=8',
5252
date: '13 Apr 2022',
5353
title: 'Upcoming Product Launch',
54-
body: 'Dear customers and supporters, I am thrilled to announc...',
54+
body: 'Dear customers and supporters, I am thrilled to announc',
5555
color: 'danger.500',
5656
},
5757
];

packages/mui-joy/src/IconButton/IconButton.test.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ describe('Joy <IconButton />', () => {
8181

8282
describe('prop: loadingIndicator', () => {
8383
const content = 'Test';
84-
const loadingText = 'loading...';
84+
const loadingText = 'loading';
8585

8686
it('is not rendered by default', () => {
8787
render(

packages/mui-material/src/locale/arEG.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ export const arEG: Localization = {
3737
defaultProps: {
3838
clearText: 'مسح',
3939
closeText: 'إغلاق',
40-
loadingText: 'جار التحميل...',
40+
loadingText: 'جار التحميل',
4141
noOptionsText: 'لا يوجد خيارات',
4242
openText: 'فتح',
4343
},

packages/mui-material/src/locale/arSA.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ export const arSA: Localization = {
3737
defaultProps: {
3838
clearText: 'مسح',
3939
closeText: 'إغلاق',
40-
loadingText: 'جار التحميل...',
40+
loadingText: 'جار التحميل',
4141
noOptionsText: 'لا توجد خيارات',
4242
openText: 'فتح',
4343
},

packages/mui-material/src/locale/arSD.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ export const arSD: Localization = {
3737
defaultProps: {
3838
clearText: 'مسح',
3939
closeText: 'إغلاق',
40-
loadingText: 'جار التحميل...',
40+
loadingText: 'جار التحميل',
4141
noOptionsText: 'لا يوجد خيارات',
4242
openText: 'فتح',
4343
},

packages/mui-material/src/locale/kuCKB.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ export const kuCKB: Localization = {
3737
defaultProps: {
3838
clearText: 'سڕینەوە',
3939
closeText: 'داخستن',
40-
loadingText: 'لە بارکردندایە...',
40+
loadingText: 'لە بارکردندایە',
4141
noOptionsText: 'هیچ بژاردەیەک نیە',
4242
openText: 'کردنەوە',
4343
},

packages/mui-material/src/locale/neNP.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ export const neNP: Localization = {
4141
defaultProps: {
4242
clearText: 'खाली गर्नुहोस्',
4343
closeText: 'बन्द गर्नुहोस्',
44-
loadingText: 'लोड हुँदै...',
44+
loadingText: 'लोड हुँदै',
4545
noOptionsText: 'कुनै विकल्प छैन',
4646
openText: 'खोल्नुहोस्',
4747
},

0 commit comments

Comments
 (0)