Skip to content

Commit 0043dd4

Browse files
committed
CONSOLE-4701: Remove periods for consistency
1 parent 7575b6a commit 0043dd4

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
@@ -285,7 +285,7 @@ const TooltipConfigItem = () => {
285285
return (
286286
<ConfigModalSwitch
287287
title={t('Tooltips')}
288-
description={t('Show tooltips for Resource names, Field names, and definitions.')}
288+
description={t('Show tooltips for Resource names, Field names, and definitions')}
289289
onChange={(_e, checked) => setShowTooltips(checked)}
290290
isChecked={showTooltips}
291291
icon={<ICursorIcon />}
@@ -305,7 +305,7 @@ const StickyScrollConfigItem = () => {
305305
return (
306306
<ConfigModalSwitch
307307
title={t('Sticky scroll')}
308-
description={t('Pin scopes to the top of the editor so they are always visible.')}
308+
description={t('Pin scopes to the top of the editor so they are always visible')}
309309
onChange={(_e, checked) => setStickyScrollEnabled(checked)}
310310
isChecked={stickyScrollEnabled}
311311
icon={<MouseIcon />}
@@ -338,7 +338,7 @@ export const EditYamlSettingsModal: FC<AppendToProps> = ({ appendTo }) => {
338338
>
339339
<ModalHeader
340340
title={t('Editor settings')}
341-
description={t('Changes apply immediately.')}
341+
description={t('Changes apply immediately')}
342342
labelId={`${EDIT_YAML_SETTINGS_MODAL_ID}-title`}
343343
/>
344344
<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)