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

fix(core): minor typo fix in i18n comment #7115

Merged
merged 2 commits into from
Jul 9, 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
10 changes: 5 additions & 5 deletions packages/sanity/src/core/i18n/bundles/studio.ts
Original file line number Diff line number Diff line change
Expand Up @@ -705,13 +705,13 @@ export const studioLocaleStrings = defineLocalesResources('studio', {
'Click or press space to activate',
/** Label for activate on focus with context of tap and not focused */
'inputs.portable-text.activate-on-focus-message_tap': 'Tap to activate',
/**Aria label for the annotation object */
/** Aria label for the annotation object */
'inputs.portable-text.annotation-aria-label': 'Annotation object',
/** Title for dialog that allows editing an annotation */
'inputs.portable-text.annotation-editor.title': 'Edit {{schemaType}}',
/** Title of the default "link" annotation */
'inputs.portable-text.annotation.link': 'Link',
/**Aria label for the block object */
/** Aria label for the block object */
'inputs.portable-text.block.aria-label': 'Block object',
/** Label for action to edit a block item, in the case where it is editable */
'inputs.portable-text.block.edit': 'Edit',
Expand All @@ -735,7 +735,7 @@ export const studioLocaleStrings = defineLocalesResources('studio', {
'inputs.portable-text.decorator.underline': 'Underline',
/** Placeholder text for when the editor is empty */
'inputs.portable-text.empty-placeholder': 'Empty',
/**Aria label for the block object */
/** Aria label for the block object */
'inputs.portable-text.inline-block.aria-label': 'Inline object',
/** Label for action to edit an inline object item */
'inputs.portable-text.inline-object.edit': 'Edit object',
Expand Down Expand Up @@ -1641,9 +1641,9 @@ export const studioLocaleStrings = defineLocalesResources('studio', {
'timeline.since': 'Since: {{timestamp, datetime}}',
/** Label for missing change version for timeline menu dropdown are showing */
'timeline.since-version-missing': 'Since: unknown version',
/**Aria label for the action buttons in the PTE toolbar */
/** Aria label for the action buttons in the PTE toolbar */
'toolbar.portable-text.action-button-aria-label': '{{action}}',
/** Accesibility label for the breadcrumb menu */
/** Accessibility label for the breadcrumb menu */
'tree-editing-dialog.breadcrumbs.menu': 'Breadcrumb menu',
/** Title placeholder for search input in array of objects */
'tree-editing-dialog.search-placeholder': 'Search',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import {getPublishedId, useSearchState} from 'sanity'
import {useDocumentSheetListStore} from './useDocumentSheetListStore'

interface DocumentSheetListOptions {
/**The schemaType.name */
/** The schemaType.name */
typeName: string
}

Expand Down
Loading