Skip to content

Commit b5069cc

Browse files
committed
chore(call_to_action): rephrase
1 parent 3b6791f commit b5069cc

File tree

5 files changed

+4
-14
lines changed

5 files changed

+4
-14
lines changed

apps/client/src/translations/cn/translation.json

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1992,9 +1992,6 @@
19921992
"help_title": "显示关于此画面的更多信息"
19931993
},
19941994
"call_to_action": {
1995-
"next_theme_title": "新的 Trilium 主题已进入稳定版",
1996-
"next_theme_message": "有一段时间,我们一直在设计新的主题,为了让应用程序看起来更加现代。",
1997-
"next_theme_button": "切换至新的 Trilium 主题",
19981995
"background_effects_title": "背景效果现已推出稳定版本",
19991996
"background_effects_message": "在 Windows 装置上,背景效果现在已完全稳定。背景效果通过模糊背后的背景,为使用者界面增添一抹色彩。此技术也用于其他应用程序,例如 Windows 资源管理器。",
20001997
"background_effects_button": "启用背景效果"

apps/client/src/translations/en/translation.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1994,9 +1994,9 @@
19941994
"help_title": "Display more information about this screen"
19951995
},
19961996
"call_to_action": {
1997-
"next_theme_title": "The new Trilium theme is now stable",
1998-
"next_theme_message": "For a while now, we've been working on a new theme to give the application a more modern look.",
1999-
"next_theme_button": "Switch to the new Trilium theme",
1997+
"next_theme_title": "Try the new Trilium theme",
1998+
"next_theme_message": "You are currently using the legacy theme, would you like to try the new theme?",
1999+
"next_theme_button": "Try the new theme",
20002000
"background_effects_title": "Background effects are now stable",
20012001
"background_effects_message": "On Windows devices, background effects are now fully stable. The background effects adds a touch of color to the user interface by blurring the background behind it. This technique is also used in other applications such as Windows Explorer.",
20022002
"background_effects_button": "Enable background effects"

apps/client/src/translations/ro/translation.json

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1996,9 +1996,6 @@
19961996
"help_title": "Afișează mai multe informații despre acest ecran"
19971997
},
19981998
"call_to_action": {
1999-
"next_theme_title": "Noua tema Trilium este stabilă",
2000-
"next_theme_message": "Lucrăm de ceva timp la o nouă temă, cu un aspect modern.",
2001-
"next_theme_button": "Testează noua temă Trilium",
20021999
"background_effects_title": "Efectele de fundal sunt acum stabile",
20032000
"background_effects_message": "Pe dispozitive cu Windows, efectele de fundal sunt complet stabile. Acestea adaugă un strop de culoare interfeței grafice prin estomparea fundalului din spatele ferestrei. Această tehnică este folosită și în alte aplicații precum Windows Explorer.",
20042001
"background_effects_button": "Activează efectele de fundal"

apps/client/src/translations/tw/translation.json

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1992,9 +1992,6 @@
19921992
"help_title": "顯示關於此畫面的更多資訊"
19931993
},
19941994
"call_to_action": {
1995-
"next_theme_title": "新的 Trilium 主題已推出穩定版本",
1996-
"next_theme_message": "有一段時間,我們一直在設計新的主題,為了讓應用程式看起來更現代。",
1997-
"next_theme_button": "切換至新的 Trilium 主題",
19981995
"background_effects_title": "背景特效已推出穩定版本",
19991996
"background_effects_message": "在 Windows 裝置上,背景特效現在已完全穩定。背景特效透過模糊背後的背景,為使用者介面增添一抹色彩。此技術也用於其他應用程式,例如 Windows 檔案總管。",
20001997
"background_effects_button": "啟用背景特效"

apps/client/src/widgets/dialogs/call_to_action.tsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ function CallToActionDialogComponent({ activeCallToActions }: { activeCallToActi
2525
<Modal
2626
className="call-to-action"
2727
size="md"
28-
title="New features"
28+
title={activeItem.title}
2929
show={shown}
3030
onHidden={() => setShown(false)}
3131
footerAlignment="between"
@@ -43,7 +43,6 @@ function CallToActionDialogComponent({ activeCallToActions }: { activeCallToActi
4343
)}
4444
</>}
4545
>
46-
<h4>{activeItem.title}</h4>
4746
<p>{activeItem.message}</p>
4847
</Modal>
4948
)

0 commit comments

Comments
 (0)