Skip to content

Commit 9af7c6c

Browse files
committed
change dashboard to smart views
1 parent 80ee149 commit 9af7c6c

7 files changed

Lines changed: 19 additions & 19 deletions

File tree

src/cloud/components/Application.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -389,7 +389,7 @@ const Application = ({
389389
active: showSearchScreen,
390390
},
391391
{
392-
label: translate(lngKeys.GeneralDashboard),
392+
label: translate(lngKeys.GeneralSmartViews),
393393
icon: mdiViewDashboard,
394394
variant: 'transparent',
395395
labelHref: teamUrl,

src/cloud/components/ApplicationTopbar.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ const ApplicationTopbar = ({
146146
if (splittedPathnames.length >= 2 && splittedPathnames[1] === 'dashboard') {
147147
return [
148148
{
149-
label: capitalize(translate(lngKeys.GeneralDashboard)),
149+
label: capitalize(translate(lngKeys.GeneralSmartViews)),
150150
active: true,
151151
parentId: topParentId,
152152
icon: mdiViewDashboard,

src/cloud/components/DashboardPage/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@ const SmartViewSelector = ({
235235
onClick={createNewSmartView}
236236
id='new-smartView'
237237
>
238-
Add new Dashboard
238+
Add new Smart view
239239
</Button>
240240
</UpDownList>
241241
</SmartViewSelectorContainer>

src/cloud/lib/i18n/enUS.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -298,12 +298,12 @@ const enTranslation: TranslationSource = {
298298
[lngKeys.ModalsImportDisclaimer]:
299299
'Select how you want to import files ( 5Mb max per file )',
300300

301-
[lngKeys.ModalsSmartViewCreateTitle]: 'Create a dashboard',
302-
[lngKeys.ModalsSmartViewEditTitle]: 'Edit dashboard',
301+
[lngKeys.ModalsSmartViewCreateTitle]: 'Create a Smart view',
302+
[lngKeys.ModalsSmartViewEditTitle]: 'Edit Smart view',
303303
[lngKeys.ModalsSmartViewPrivateDisclaimer]:
304-
'This dashboard will become private. Only you can see it.',
304+
'This Smart view will become private. Only you can see it.',
305305
[lngKeys.ModalsSmartViewPublicDisclaimer]:
306-
'The dashboardwill become public. Every member can see it.',
306+
'This Smart view become public. Every member can see it.',
307307

308308
[lngKeys.EditorToolbarTooltipHeader]: 'Add header text',
309309
[lngKeys.EditorToolbarTooltipAdmonition]: 'Add admonition',

src/cloud/lib/i18n/fr.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -283,12 +283,12 @@ const frTranslation: TranslationSource = {
283283
[lngKeys.ModalsImportDisclaimer]:
284284
'Choissisez la méthode par laquelle vous souhaitez importer vos documents ( 5Mb max par fichier )',
285285

286-
[lngKeys.ModalsSmartViewCreateTitle]: 'Create a dashboard',
287-
[lngKeys.ModalsSmartViewEditTitle]: 'Edit dashboard',
286+
[lngKeys.ModalsSmartViewCreateTitle]: 'Créer une vue intelligente',
287+
[lngKeys.ModalsSmartViewEditTitle]: 'Editer une vue intelligente',
288288
[lngKeys.ModalsSmartViewPrivateDisclaimer]:
289-
'This dashboard will become private. Only you can see it.',
289+
'Cette vue intelligente va devenir privée. Seulement vous pouvez la voir.',
290290
[lngKeys.ModalsSmartViewPublicDisclaimer]:
291-
'The dashboardwill become public. Every member can see it.',
291+
'Cette vue intelligente va devenir publique. Chaque membre y a accès.',
292292

293293
[lngKeys.AttachmentsDeleteDisclaimer]:
294294
'Êtes vous certain de vouloir supprimer ce fichier? Il ne sera plus visible dans les documents où il a été inclus.',

src/cloud/lib/i18n/ja.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -281,12 +281,12 @@ const jpTranslation: TranslationSource = {
281281
[lngKeys.ModalsImportDisclaimer]:
282282
'インポートするファイルを選びましょう(ファイル毎に5MBが最大です)',
283283

284-
[lngKeys.ModalsSmartViewCreateTitle]: 'Create a dashboard',
285-
[lngKeys.ModalsSmartViewEditTitle]: 'Edit dashboard',
284+
[lngKeys.ModalsSmartViewCreateTitle]: 'Create a Smart view',
285+
[lngKeys.ModalsSmartViewEditTitle]: 'Edit Smart view',
286286
[lngKeys.ModalsSmartViewPrivateDisclaimer]:
287-
'This dashboard will become private. Only you can see it.',
287+
'This Smart view will become private. Only you can see it.',
288288
[lngKeys.ModalsSmartViewPublicDisclaimer]:
289-
'The dashboardwill become public. Every member can see it.',
289+
'This Smart view will become public. Every member can see it.',
290290

291291
[lngKeys.EditorToolbarTooltipHeader]: 'ヘッダー',
292292
[lngKeys.EditorToolbarTooltipAdmonition]: 'Admonition',

src/cloud/lib/i18n/zhCN.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -262,12 +262,12 @@ const zhTranslation: TranslationSource = {
262262
[lngKeys.ModalsImportDestinationDisclaimer]: '选择要导入文档的文件夹',
263263
[lngKeys.ModalsImportDisclaimer]: '选择导入文件的方式(每个文件最多5Mb)',
264264

265-
[lngKeys.ModalsSmartViewCreateTitle]: 'Create a dashboard',
266-
[lngKeys.ModalsSmartViewEditTitle]: 'Edit dashboard',
265+
[lngKeys.ModalsSmartViewCreateTitle]: 'Create a Smart view',
266+
[lngKeys.ModalsSmartViewEditTitle]: 'Edit Smart view',
267267
[lngKeys.ModalsSmartViewPrivateDisclaimer]:
268-
'This dashboard will become private. Only you can see it.',
268+
'This Smart view will become private. Only you can see it.',
269269
[lngKeys.ModalsSmartViewPublicDisclaimer]:
270-
'The dashboardwill become public. Every member can see it.',
270+
'This Smart view will become public. Every member can see it.',
271271

272272
[lngKeys.EditorToolbarTooltipHeader]: '添加标题文本',
273273
[lngKeys.EditorToolbarTooltipAdmonition]: '添加警告',

0 commit comments

Comments
 (0)