Skip to content

Commit 18d3dc7

Browse files
committed
CONSOLE-4701: Remove periods for consistency
1 parent 2e1f939 commit 18d3dc7

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

frontend/public/components/modals/edit-yaml-settings-modal.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -283,7 +283,7 @@ const TooltipConfigItem = () => {
283283
return (
284284
<ConfigModalSwitch
285285
title={t('Tooltips')}
286-
description={t('Show tooltips for Resource names, Field names, and definitions.')}
286+
description={t('Show tooltips for Resource names, Field names, and definitions')}
287287
onChange={(_e, checked) => setShowTooltips(checked)}
288288
isChecked={showTooltips}
289289
icon={<ICursorIcon />}
@@ -303,7 +303,7 @@ const StickyScrollConfigItem = () => {
303303
return (
304304
<ConfigModalSwitch
305305
title={t('Sticky scroll')}
306-
description={t('Pin scopes to the top of the editor so they are always visible.')}
306+
description={t('Pin scopes to the top of the editor so they are always visible')}
307307
onChange={(_e, checked) => setStickyScrollEnabled(checked)}
308308
isChecked={stickyScrollEnabled}
309309
icon={<MouseIcon />}
@@ -336,7 +336,7 @@ export const EditYamlSettingsModal: FC<AppendToProps> = ({ appendTo }) => {
336336
>
337337
<ModalHeader
338338
title={t('Editor settings')}
339-
description={t('Changes apply immediately.')}
339+
description={t('Changes apply immediately')}
340340
labelId={`${EDIT_YAML_SETTINGS_MODAL_ID}-title`}
341341
/>
342342
<ModalBody id={`${EDIT_YAML_SETTINGS_MODAL_ID}-body`}>

frontend/public/locales/en/public.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -924,11 +924,11 @@
924924
"Decrease font size": "Decrease font size",
925925
"Increase font size": "Increase font size",
926926
"Tooltips": "Tooltips",
927-
"Show tooltips for Resource names, Field names, and definitions.": "Show tooltips for Resource names, Field names, and definitions.",
927+
"Show tooltips for Resource names, Field names, and definitions": "Show tooltips for Resource names, Field names, and definitions",
928928
"Sticky scroll": "Sticky scroll",
929-
"Pin scopes to the top of the editor so they are always visible.": "Pin scopes to the top of the editor so they are always visible.",
929+
"Pin scopes to the top of the editor so they are always visible": "Pin scopes to the top of the editor so they are always visible",
930930
"Editor settings": "Editor settings",
931-
"Changes apply immediately.": "Changes apply immediately.",
931+
"Changes apply immediately": "Changes apply immediately",
932932
"OK": "OK",
933933
"Expand {{kind}}": "Expand {{kind}}",
934934
"Increase the capacity of PVC <2>{{resourceName}}.</2> Note that capacity must be at least the current PVC size. This expansion might take some time to complete.": "Increase the capacity of PVC <2>{{resourceName}}.</2> Note that capacity must be at least the current PVC size. This expansion might take some time to complete.",

0 commit comments

Comments
 (0)