Skip to content

Commit

Permalink
Change: Improve wording for creating a new dashboard
Browse files Browse the repository at this point in the history
Improve the wording for the create new dashboard dialog especially the
German translation.
  • Loading branch information
bjoernricks committed Jan 14, 2025
1 parent dd43673 commit 4d97a8e
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions public/locales/gsa-de.json
Original file line number Diff line number Diff line change
Expand Up @@ -630,7 +630,6 @@
"Email Encryption": "E-Mail-Verschlüsselung",
"Email report to": "E-Mail-Bericht an",
"Email to {{address}}": "E-Mail an {{address}}",
"Empty": "Leeren",
"Empty Trash": "Papierkorb leeren",
"Empty, static and fast": "Empty, static and fast",
"Enable": "Aktivieren",
Expand Down Expand Up @@ -930,7 +929,7 @@
"Info": "Info",
"Information": "Informationen",
"Inheriting user": "Erbender Benutzer",
"Initial Displays": "Erste Anzeigen",
"Initial Displays": "Initiale Anzeigen",
"Insight": "Einblick",
"Integrity": "Integrität",
"Integrity Impact": "Integritätsauswirkungen",
Expand Down Expand Up @@ -1109,6 +1108,7 @@
"No CVEs available": "Keine CVEs vorhanden",
"No details available for this method.": "Keine Details für diese Methode vorhanden.",
"No DFN-CERT Advisories available": "Keine DFN-CERT-Advisories vorhanden",
"No Displays": "Keine Anzeigen",
"No Errors available": "Keine Fehler vorhanden",
"No filters available": "Keine Filter vorhanden",
"No first result available.": "Kein erstes Ergebnis verfügbar.",
Expand Down
2 changes: 1 addition & 1 deletion public/locales/gsa-zh_CN.json
Original file line number Diff line number Diff line change
Expand Up @@ -630,7 +630,6 @@
"Email Encryption": "邮件加密",
"Email report to": "发送邮件至",
"Email to {{address}}": "发送邮件至 {{address}}",
"Empty": "",
"Empty Trash": "清空回收站",
"Empty, static and fast": "",
"Enable": "启用",
Expand Down Expand Up @@ -1109,6 +1108,7 @@
"No CVEs available": "没有可用的CVEs",
"No details available for this method.": "此方法没有详细信息.",
"No DFN-CERT Advisories available": "没有可用的DFN-CERT Advisories",
"No Displays": "",
"No Errors available": "没有可用的错误消息",
"No filters available": "没有可用的筛选",
"No first result available.": "没有首选结果可用.",
Expand Down
2 changes: 1 addition & 1 deletion public/locales/gsa-zh_TW.json
Original file line number Diff line number Diff line change
Expand Up @@ -630,7 +630,6 @@
"Email Encryption": "電子郵件加密",
"Email report to": "",
"Email to {{address}}": "寄送郵件至 {{address}}",
"Empty": "空白",
"Empty Trash": "",
"Empty, static and fast": "",
"Enable": "啟用",
Expand Down Expand Up @@ -1109,6 +1108,7 @@
"No CVEs available": "沒有可用的 CVE",
"No details available for this method.": "",
"No DFN-CERT Advisories available": "",
"No Displays": "",
"No Errors available": "沒有可用的錯誤",
"No filters available": "沒有可用的篩選器",
"No first result available.": "",
Expand Down
2 changes: 1 addition & 1 deletion src/web/pages/start/newdashboarddialog.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ const NewDashboardDialog = ({additionalDisplayChoices, onClose, onSave}) => {
key: 'secinfo-displays',
value: SECINFO_DEFAULT_DISPLAYS,
},
{label: _('Empty'), key: 'empty', value: EMPTY_DISPLAYS},
{label: _('No Displays'), key: 'empty', value: EMPTY_DISPLAYS},
...additionalDisplayChoices.map(choice => ({
label: choice.label,
key: `${choice.label}-${JSON.stringify(choice.value)}`,
Expand Down

0 comments on commit 4d97a8e

Please sign in to comment.