Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Tweak Wording #351

Merged
merged 2 commits into from
Feb 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions html/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -1047,23 +1047,23 @@ <h2 id="detection-title" @click="startEdit('detection-title', 'title')" v-if="!i

<v-tabs grow v-model="activeTab" v-else>
<v-tab id="detection_summaryTab" href="#summary">
<v-icon left>fa-comments</v-icon>
<v-icon left>fa-circle-nodes</v-icon>
<div class="d-none d-lg-block">{{ i18n.overview }}</div>
</v-tab>
<v-tab id="detection_commentsTab" href="#comments">
<v-icon left>fa-paperclip</v-icon>
<div class="d-none d-lg-block">{{ i18n.comments }}</div>
<div class="d-none d-lg-block">{{ i18n.detectionComments }}</div>
</v-tab>
<v-tab id="detection_signatureTab" href="#source">
<v-icon left>fa-eye</v-icon>
<v-icon left>fa-code</v-icon>
<div class="d-none d-lg-block">{{ i18n.detectionSource }}</div>
</v-tab>
<!-- <v-tab id="detection_playbookTab" href="#playbook">
<v-icon left>fa-book-bookmark</v-icon>
<div class="d-none d-lg-block">Investigative Playbook</div>
</v-tab> -->
<v-tab id="detection_tuningTab" href="#tuning">
<v-icon left>fa-link</v-icon>
<v-icon left>fa-wrench</v-icon>
<div class="d-none d-lg-block">{{ i18n.tuning }}</div>
</v-tab>
<v-tab id="detection_historyTab" href="#history">
Expand Down Expand Up @@ -1213,7 +1213,7 @@ <h2 id="detection-title" @click="startEdit('detection-title', 'title')" v-if="!i
{{ $root.getAvatar($root.username) }}
</div>
</v-avatar>
<h3 class="text--primary">{{ i18n.commentAdd }}</h3>
<h3 class="text--primary">{{ i18n.commentAddDetection }}</h3>
</div>
<div class="d-flex flex-column" style="width: 100%;">
<div class="d-flex flex-column flex-sm-row align-sm-center align-self-start text-body-2 mb-1 ml-3">
Expand Down Expand Up @@ -1741,7 +1741,7 @@ <h3>{{ i18n.details }}</h3>
{{ i18n.type }}:
</div>
<div class="ops-value case-title">
{{ detect.engine }}
{{ detect.language }}
</div>
<div class="ops-header">
{{ i18n.severity }}:
Expand Down
8 changes: 5 additions & 3 deletions html/js/i18n.js
Original file line number Diff line number Diff line change
Expand Up @@ -168,9 +168,10 @@ const i18n = {
comment: 'Comments',
comments: 'Comments',
commentAdd: 'Add Comment',
commentAddDetection: 'Add Note',
commentDescription: 'Comment',
commentDescriptionHelp: 'Provide follow-up information to this case',
commentDescriptionDetectionHelp: 'Provide follow-up information to this detection',
commentDescriptionDetectionHelp: 'Operational notes for this detection',
commentHours: 'Work Hours',
commentHoursHelp: 'Hours spent working on this update (leave blank for 0 hours)',
commentRequired: 'Comments cannot be empty.',
Expand Down Expand Up @@ -217,7 +218,7 @@ const i18n = {
continue: 'Would you like to continue?',
contributors: 'Contributors',
convert: 'Convert',
convertToElasticsearch: 'Convert to Elasticsearch',
convertToElasticsearch: 'Convert to EQL',
copyEventToClipboardAsJson: 'Copy full event as JSON',
copyEventToClipboardAsKvp: 'Copy full event as field:value pairs',
copyFieldToClipboard: 'Copy this value only',
Expand Down Expand Up @@ -271,6 +272,7 @@ const i18n = {
destination: 'Destination',
details: 'Details',
detections: 'Detections',
detectionComments: 'Operational Notes',
detectionDefaultTitle: 'Detection title not yet provided - click here to update this title',
detectionDefaultDescription: 'Detection description not yet provided',
detectionDescription: 'Detection Description',
Expand Down Expand Up @@ -861,7 +863,7 @@ const i18n = {
version: 'Version',
view: 'View',
viewCase: 'Case Details',
viewInDiscover: 'View in Discover',
viewInDiscover: 'Test in Kibana',
viewResults: 'View Results',
webauthn: 'Security Keys (WebAuthn / PassKey)',
webauthnActive: 'Webauthn / Security Keys Active',
Expand Down
Loading