@sanity/locale-ca-es 1.0.12 → 1.0.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/_chunks-cjs/copy-paste.cjs +3 -0
- package/dist/_chunks-cjs/copy-paste.cjs.map +1 -1
- package/dist/_chunks-cjs/feedback.cjs +68 -0
- package/dist/_chunks-cjs/feedback.cjs.map +1 -0
- package/dist/_chunks-cjs/presentation.cjs +194 -0
- package/dist/_chunks-cjs/presentation.cjs.map +1 -0
- package/dist/_chunks-cjs/releases.cjs +688 -0
- package/dist/_chunks-cjs/releases.cjs.map +1 -0
- package/dist/_chunks-cjs/singleDocRelease.cjs +32 -0
- package/dist/_chunks-cjs/singleDocRelease.cjs.map +1 -0
- package/dist/_chunks-cjs/structure.cjs +12 -0
- package/dist/_chunks-cjs/structure.cjs.map +1 -1
- package/dist/_chunks-cjs/studio.cjs +3 -8
- package/dist/_chunks-cjs/studio.cjs.map +1 -1
- package/dist/_chunks-cjs/vision.cjs +33 -0
- package/dist/_chunks-cjs/vision.cjs.map +1 -1
- package/dist/_chunks-es/copy-paste.js +3 -0
- package/dist/_chunks-es/copy-paste.js.map +1 -1
- package/dist/_chunks-es/feedback.js +70 -0
- package/dist/_chunks-es/feedback.js.map +1 -0
- package/dist/_chunks-es/presentation.js +196 -0
- package/dist/_chunks-es/presentation.js.map +1 -0
- package/dist/_chunks-es/releases.js +690 -0
- package/dist/_chunks-es/releases.js.map +1 -0
- package/dist/_chunks-es/singleDocRelease.js +34 -0
- package/dist/_chunks-es/singleDocRelease.js.map +1 -0
- package/dist/_chunks-es/structure.js +12 -0
- package/dist/_chunks-es/structure.js.map +1 -1
- package/dist/_chunks-es/studio.js +3 -8
- package/dist/_chunks-es/studio.js.map +1 -1
- package/dist/_chunks-es/vision.js +33 -0
- package/dist/_chunks-es/vision.js.map +1 -1
- package/dist/index.cjs +20 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +14 -2
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/src/copy-paste.ts +2 -0
- package/src/feedback.ts +46 -0
- package/src/index.ts +17 -2
- package/src/presentation.ts +143 -0
- package/src/releases.ts +518 -0
- package/src/singleDocRelease.ts +23 -0
- package/src/structure.ts +8 -0
- package/src/studio.ts +2 -9
- package/src/vision.ts +22 -0
- package/dist/_chunks-cjs/create.cjs +0 -35
- package/dist/_chunks-cjs/create.cjs.map +0 -1
- package/dist/_chunks-es/create.js +0 -37
- package/dist/_chunks-es/create.js.map +0 -1
package/src/releases.ts
ADDED
|
@@ -0,0 +1,518 @@
|
|
|
1
|
+
import {removeUndefinedLocaleResources} from 'sanity'
|
|
2
|
+
|
|
3
|
+
export default removeUndefinedLocaleResources({
|
|
4
|
+
/** Action text for adding a document to release */
|
|
5
|
+
'action.add-document': undefined, // 'Add document'
|
|
6
|
+
/** Action text for archiving a release */
|
|
7
|
+
'action.archive': undefined, // 'Archive release'
|
|
8
|
+
/** Tooltip for when the archive release action is disabled due to release being scheduled */
|
|
9
|
+
'action.archive.tooltip': undefined, // 'Unschedule this release to archive it'
|
|
10
|
+
/** Action text for showing the archived releases */
|
|
11
|
+
'action.archived': undefined, // 'Archived'
|
|
12
|
+
/** Menu item label for copying release ID */
|
|
13
|
+
'action.copy-release-id.label': undefined, // 'Copy release ID'
|
|
14
|
+
/** Menu item label for copying release URL */
|
|
15
|
+
'action.copy-release-link.label': undefined, // 'Copy release URL'
|
|
16
|
+
/** Menu item label for copying release title */
|
|
17
|
+
'action.copy-release-title.label': undefined, // 'Copy release title'
|
|
18
|
+
/** Tooltip for copy release actions button */
|
|
19
|
+
'action.copy-release.label': undefined, // 'Copy'
|
|
20
|
+
/** Action text for staging a new revert release */
|
|
21
|
+
'action.create-revert-release': undefined, // 'Create a new release'
|
|
22
|
+
/** Action text for deleting a release */
|
|
23
|
+
'action.delete-release': undefined, // 'Delete release'
|
|
24
|
+
/** Menu item label for showing scheduled drafts */
|
|
25
|
+
'action.drafts': undefined, // 'Scheduled drafts'
|
|
26
|
+
/** Action text for duplicating a release */
|
|
27
|
+
'action.duplicate-release': undefined, // 'Duplicate release'
|
|
28
|
+
/** Action text for editing a release */
|
|
29
|
+
'action.edit': undefined, // 'Edit release'
|
|
30
|
+
/** Action text for reverting a release immediately without staging changes */
|
|
31
|
+
'action.immediate-revert-release': undefined, // 'Revert now'
|
|
32
|
+
/** Action text for opening a release */
|
|
33
|
+
'action.open': undefined, // 'Active'
|
|
34
|
+
/** Action text for showing the paused scheduled drafts */
|
|
35
|
+
'action.paused': undefined, // 'Paused'
|
|
36
|
+
/** Action text for publishing all documents in a release (and the release itself) */
|
|
37
|
+
'action.publish-all-documents': undefined, // 'Run release'
|
|
38
|
+
/** Menu item label for showing releases (multi-document releases) */
|
|
39
|
+
'action.releases': undefined, // 'Releases'
|
|
40
|
+
/** Action text for reverting a release */
|
|
41
|
+
'action.revert': undefined, // 'Revert release'
|
|
42
|
+
/** Action message for when document is scheduled for unpublishing a document and you want to no longer unpublish it */
|
|
43
|
+
'action.revert-unpublish-actions': undefined, // 'Revert unpublish when releasing'
|
|
44
|
+
/** Text for the review changes button in release tool */
|
|
45
|
+
'action.review': undefined, // 'Review changes'
|
|
46
|
+
/** Action text for scheduling a release */
|
|
47
|
+
'action.schedule': undefined, // 'Schedule release...'
|
|
48
|
+
/** Action text for scheduling unpublish of a draft document */
|
|
49
|
+
'action.schedule-unpublish': undefined, // 'Schedule Unpublish'
|
|
50
|
+
/** Tooltip text for when schedule unpublish is disabled because document is not published */
|
|
51
|
+
'action.schedule-unpublish.disabled.not-published': undefined, // 'Document must be published to schedule unpublish'
|
|
52
|
+
/** Label for unarchiving a release */
|
|
53
|
+
'action.unarchive': undefined, // 'Unarchive release'
|
|
54
|
+
/** Action text for unpublishing a document in a release in the context menu */
|
|
55
|
+
'action.unpublish': undefined, // 'Unpublish'
|
|
56
|
+
/** Action message for scheduling an unpublished of a document */
|
|
57
|
+
'action.unpublish-doc-actions': undefined, // 'Unpublish when releasing'
|
|
58
|
+
/** Action text for unscheduling a release */
|
|
59
|
+
'action.unschedule': undefined, // 'Unschedule release'
|
|
60
|
+
|
|
61
|
+
/** Text for the summary button in release tool */
|
|
62
|
+
'actions.summary': undefined, // 'Summary'
|
|
63
|
+
|
|
64
|
+
/* The text for the activity event when a document is added to a release */
|
|
65
|
+
'activity.event.add-document': undefined, // 'Added a document version'
|
|
66
|
+
/* The text for the activity event when the release is archived */
|
|
67
|
+
'activity.event.archive': undefined, // 'Archived the <strong>{{releaseTitle}}</strong> release'
|
|
68
|
+
/* The text for the activity event when the release is created */
|
|
69
|
+
'activity.event.create': undefined, // 'Created the <strong>{{releaseTitle}}</strong> release <ScheduleTarget>targeting </ScheduleTarget>'
|
|
70
|
+
/* The text for the activity event when a document is removed from a release */
|
|
71
|
+
'activity.event.discard-document': undefined, // 'Discarded a document version'
|
|
72
|
+
'activity.event.edit': undefined, // 'Set release time to <ScheduleTarget></ScheduleTarget>'
|
|
73
|
+
/**The text to display in the changes when the release type changes to asap */
|
|
74
|
+
'activity.event.edit-time-asap': undefined, // 'As soon as possible'
|
|
75
|
+
/**The text to display in the changes when the release type changes to undecided */
|
|
76
|
+
'activity.event.edit-time-undecided': undefined, // 'Undecided'
|
|
77
|
+
/* The text for the activity event when the release is published */
|
|
78
|
+
'activity.event.publish': undefined, // 'Published the <strong>{{releaseTitle}}</strong> release'
|
|
79
|
+
/* The text for the activity event when the release is scheduled */
|
|
80
|
+
'activity.event.schedule': undefined, // 'Marked as scheduled'
|
|
81
|
+
/** The text for the activity event when the release is unarchived */
|
|
82
|
+
'activity.event.unarchive': undefined, // 'Unarchived the <strong>{{releaseTitle}}</strong> release'
|
|
83
|
+
/** The text for the activity event when the release is unscheduled */
|
|
84
|
+
'activity.event.unschedule': undefined, // 'Marked as unscheduled'
|
|
85
|
+
/** The loading text for when releases are loading */
|
|
86
|
+
'activity.panel.error': undefined, // 'An error occurred getting the release activity'
|
|
87
|
+
/** The loading text for when releases are loading */
|
|
88
|
+
'activity.panel.loading': undefined, // 'Loading release activity'
|
|
89
|
+
/** The title for the activity panel shown in the releases detail screen */
|
|
90
|
+
'activity.panel.title': undefined, // 'Activity'
|
|
91
|
+
|
|
92
|
+
/** Label for the button to proceed with archiving a release */
|
|
93
|
+
'archive-dialog.confirm-archive-button': undefined, // 'Yes, archive release'
|
|
94
|
+
/** Description for the dialog confirming the archive of a release with one document */
|
|
95
|
+
'archive-dialog.confirm-archive-description_one': undefined, // 'This will archive 1 document version.'
|
|
96
|
+
/** Description for the dialog confirming the archive of a release with more than one document */
|
|
97
|
+
'archive-dialog.confirm-archive-description_other': undefined, // 'This will archive {{count}} document versions.'
|
|
98
|
+
/** Header for the dialog confirming the archive of a release */
|
|
99
|
+
'archive-dialog.confirm-archive-header': undefined, // 'Are you sure you want to archive this release?'
|
|
100
|
+
/** Title for the dialog confirming the archive of a release */
|
|
101
|
+
'archive-dialog.confirm-archive-title': undefined, // 'Are you sure you want to archive the <strong>\'{{title}}\'</strong> release?'
|
|
102
|
+
|
|
103
|
+
/** Description for information card on a published or archived release to description retention effects */
|
|
104
|
+
'archive-info.description': undefined, // 'It will be available for {{retentionDays}} days, then automatically removed on {{removalDate}}. <Link>Learn about retention</Link>.'
|
|
105
|
+
/** Title for information card on a archived release */
|
|
106
|
+
'archive-info.title': undefined, // 'This release is archived'
|
|
107
|
+
|
|
108
|
+
/** Banner text showing count of active scheduled drafts requiring confirmation with one draft */
|
|
109
|
+
'banner.confirm-active-scheduled-drafts_one': undefined, // 'There is {{count}} Scheduled Draft that requires scheduling confirmation'
|
|
110
|
+
/** Banner text showing count of active scheduled drafts requiring confirmation with multiple drafts */
|
|
111
|
+
'banner.confirm-active-scheduled-drafts_other': undefined, // 'There are {{count}} Scheduled Drafts that require scheduling confirmation'
|
|
112
|
+
/** Button text for confirming scheduling of active drafts */
|
|
113
|
+
'banner.confirm-active-scheduled-drafts.button': undefined, // 'Resume scheduling'
|
|
114
|
+
/** Button text when confirming schedules from paused mode */
|
|
115
|
+
'banner.confirm-active-scheduled-drafts.button-paused': undefined, // 'Resume all schedules'
|
|
116
|
+
/** Banner text shown when drafts mode is disabled but there are still scheduled drafts */
|
|
117
|
+
'banner.drafts-mode-disabled': undefined, // 'Drafts mode has been disabled but there are still scheduled drafts to be published.'
|
|
118
|
+
/** Banner text shown when navigating to a release that does not exist */
|
|
119
|
+
'banner.release-not-found': undefined, // 'This release could not be found'
|
|
120
|
+
/** Tooltip for the dismiss button in the release not found banner */
|
|
121
|
+
'banner.release-not-found.dismiss': undefined, // 'Dismiss'
|
|
122
|
+
/** Banner text shown when scheduled drafts feature is disabled but there are still scheduled drafts */
|
|
123
|
+
'banner.scheduled-drafts-disabled': undefined, // 'Scheduled drafts has been disabled but there are still scheduled drafts to be published.'
|
|
124
|
+
|
|
125
|
+
/** Title for changes to published documents */
|
|
126
|
+
'changes-published-docs.title': undefined, // 'Changes to published documents'
|
|
127
|
+
|
|
128
|
+
/** Dialog confirm button text for confirming all scheduled drafts */
|
|
129
|
+
'confirm-active-scheduled-drafts-dialog.confirm-button': undefined, // 'Confirm Schedules'
|
|
130
|
+
/** Dialog description for confirming active scheduled drafts */
|
|
131
|
+
'confirm-active-scheduled-drafts-dialog.description': undefined, // 'Schedule all paused Scheduled Drafts for their intended publish dates'
|
|
132
|
+
/** Dialog warning when some scheduled drafts have past dates */
|
|
133
|
+
'confirm-active-scheduled-drafts-dialog.past-dates-warning': undefined, // 'Some of these Scheduled Drafts are scheduled for past dates. Confirming schedules will immediately publish those versions of documents.'
|
|
134
|
+
/** Dialog title for confirming active scheduled drafts */
|
|
135
|
+
'confirm-active-scheduled-drafts-dialog.title': undefined, // 'Resume Scheduled Drafts'
|
|
136
|
+
|
|
137
|
+
/** Suffix for when a release is a copy of another release */
|
|
138
|
+
'copy-suffix': undefined, // 'Copy'
|
|
139
|
+
|
|
140
|
+
/** Confirm button text for overriding existing draft */
|
|
141
|
+
'copy-to-draft-dialog.confirm-button': undefined, // 'Yes, override Draft'
|
|
142
|
+
/** Description for dialog when copying version to draft that already exists */
|
|
143
|
+
'copy-to-draft-dialog.description': undefined, // 'A draft version of this document already exists. Copy the current version to the draft and override the existing draft version.'
|
|
144
|
+
/** Title for dialog when copying version to draft that already exists */
|
|
145
|
+
'copy-to-draft-dialog.title': undefined, // 'Draft version already exists'
|
|
146
|
+
|
|
147
|
+
/** Text for when a release / document was created */
|
|
148
|
+
created: undefined, // 'Created <RelativeTime/>'
|
|
149
|
+
|
|
150
|
+
/** Activity inspector button text */
|
|
151
|
+
'dashboard.details.activity': undefined, // 'Activity'
|
|
152
|
+
/** Text for the releases detail screen in the pin release button. */
|
|
153
|
+
'dashboard.details.pin-release': undefined, // 'Pin release to studio'
|
|
154
|
+
/** Text for the releases detail screen when a release was published ASAP */
|
|
155
|
+
'dashboard.details.published-asap': undefined, // 'Published'
|
|
156
|
+
/** Text for the releases detail screen when a release was published from scheduling */
|
|
157
|
+
'dashboard.details.published-on': undefined, // 'Published on {{date}}'
|
|
158
|
+
/** Text for the releases detail screen in the unpin release button. */
|
|
159
|
+
'dashboard.details.unpin-release': undefined, // 'Unpin release from studio'
|
|
160
|
+
|
|
161
|
+
/** Label for the button to proceed deleting a release */
|
|
162
|
+
'delete-dialog.confirm-delete-button': undefined, // 'Yes, delete release'
|
|
163
|
+
/** Description for the dialog confirming the deleting of a release with one document */
|
|
164
|
+
'delete-dialog.confirm-delete-description_one': undefined, // 'This will delete 1 document version.'
|
|
165
|
+
/** Description for the dialog confirming the deleting of a release with more than one document */
|
|
166
|
+
'delete-dialog.confirm-delete-description_other': undefined, // 'This will delete {{count}} document versions.'
|
|
167
|
+
/** Header for deleting a release dialog */
|
|
168
|
+
'delete-dialog.confirm-delete.header': undefined, // 'Are you sure you want to delete this release?'
|
|
169
|
+
|
|
170
|
+
/** Label when a release has been deleted by a different user */
|
|
171
|
+
'deleted-release': undefined, // 'The \'<strong>{{title}}</strong>\' release has been deleted'
|
|
172
|
+
|
|
173
|
+
/** Text for when there's no changes in a release diff */
|
|
174
|
+
'diff.list-empty': undefined, // 'Changes list is empty, see document'
|
|
175
|
+
/** Text for when there's no changes in a release diff */
|
|
176
|
+
'diff.no-changes': undefined, // 'No changes'
|
|
177
|
+
|
|
178
|
+
/** Description for discarding a draft of a document dialog */
|
|
179
|
+
'discard-version-dialog.description-draft': undefined, // 'This will permanently remove all changes made to this document. This action cannot be undone.'
|
|
180
|
+
/** Description for discarding a version of a document dialog */
|
|
181
|
+
'discard-version-dialog.description-release': undefined, // 'This will permanently remove all changes made to this document within the \'<strong>{{releaseTitle}}</strong>\' release. This action cannot be undone.'
|
|
182
|
+
/** Title for dialog for discarding a draft of a document */
|
|
183
|
+
'discard-version-dialog.header-draft': undefined, // 'Discard draft?'
|
|
184
|
+
/** Header for discarding a version from a release of a document dialog */
|
|
185
|
+
'discard-version-dialog.header-release': undefined, // 'Remove document from the \'<strong>{{releaseTitle}}</strong>\' release?'
|
|
186
|
+
/** Title for dialog for discarding a draft of a document */
|
|
187
|
+
'discard-version-dialog.title-draft': undefined, // 'Discard draft'
|
|
188
|
+
/** Title for dialog for discarding a version of a document */
|
|
189
|
+
'discard-version-dialog.title-release': undefined, // 'Remove from release'
|
|
190
|
+
|
|
191
|
+
/** Label for when a document in a release has a single validation warning */
|
|
192
|
+
'document-validation.error_one': undefined, // '{{count}} validation error'
|
|
193
|
+
/** Label for when a document in a release has multiple validation warnings */
|
|
194
|
+
'document-validation.error_other': undefined, // '{{count}} validation errors'
|
|
195
|
+
|
|
196
|
+
/** Label for the button to proceed with duplicating a release */
|
|
197
|
+
'duplicate-dialog.confirm-duplicate-button': undefined, // 'Yes, duplicate release'
|
|
198
|
+
/** Description for the dialog confirming the duplicate of a release with one document */
|
|
199
|
+
'duplicate-dialog.confirm-duplicate-description_one': undefined, // 'This will duplicate the release and the 1 document version.'
|
|
200
|
+
/** Description for the dialog confirming the duplicate of a release with more than one document */
|
|
201
|
+
'duplicate-dialog.confirm-duplicate-description_other': undefined, // 'This will duplicate the release and the {{count}} document versions.'
|
|
202
|
+
/** Header for the dialog confirming the duplicate of a release */
|
|
203
|
+
'duplicate-dialog.confirm-duplicate-header': undefined, // 'Are you sure you want to duplicate this release?'
|
|
204
|
+
|
|
205
|
+
/** Title text displayed for technical error details */
|
|
206
|
+
'error-details-title': undefined, // 'Error details'
|
|
207
|
+
|
|
208
|
+
/** Title text when error during release update */
|
|
209
|
+
'failed-edit-title': undefined, // 'Failed to save changes'
|
|
210
|
+
|
|
211
|
+
/** Title text displayed for releases that failed to publish */
|
|
212
|
+
'failed-publish-title': undefined, // 'Failed to publish'
|
|
213
|
+
|
|
214
|
+
/** Title text displayed for releases that failed to schedule */
|
|
215
|
+
'failed-schedule-title': undefined, // 'Failed to schedule'
|
|
216
|
+
|
|
217
|
+
/** Filter tab label for all documents */
|
|
218
|
+
'filter-tab.all': undefined, // 'All'
|
|
219
|
+
/** Filter tab label for documents with validation errors */
|
|
220
|
+
'filter-tab.errors': undefined, // 'Errors'
|
|
221
|
+
|
|
222
|
+
/**The text that will be shown in the footer to indicate the time the release was archived */
|
|
223
|
+
'footer.status.archived': undefined, // 'Archived'
|
|
224
|
+
/**The text that will be shown in the footer to indicate the time the release was created */
|
|
225
|
+
'footer.status.created': undefined, // 'Created'
|
|
226
|
+
/**The text that will be shown in the footer to indicate the time the release was created */
|
|
227
|
+
'footer.status.edited': undefined, // 'Edited'
|
|
228
|
+
/**The text that will be shown in the footer to indicate the time the release was published */
|
|
229
|
+
'footer.status.published': undefined, // 'Published'
|
|
230
|
+
/**The text that will be shown in the footer to indicate the time the release was unarchived */
|
|
231
|
+
'footer.status.unarchived': undefined, // 'Unarchived'
|
|
232
|
+
|
|
233
|
+
/** Label text for the loading state whilst release is being loaded */
|
|
234
|
+
'loading-release': undefined, // 'Loading release'
|
|
235
|
+
|
|
236
|
+
/** Text for when documents of a release are loading */
|
|
237
|
+
'loading-release-documents': undefined, // 'Loading documents'
|
|
238
|
+
/** Description text for when loading documents on a release failed */
|
|
239
|
+
'loading-release-documents.error.description': undefined, // 'We\'re unable to load the documents for this release. Please try again later.'
|
|
240
|
+
/** Title text for when loading documents on a release failed */
|
|
241
|
+
'loading-release-documents.error.title': undefined, // 'Something went wrong'
|
|
242
|
+
|
|
243
|
+
/** Label for title of actions for "when releasing" */
|
|
244
|
+
'menu.group.when-releasing': undefined, // 'When releasing'
|
|
245
|
+
/** Label for the release menu */
|
|
246
|
+
'menu.label': undefined, // 'Release menu'
|
|
247
|
+
/** Tooltip for the release menu */
|
|
248
|
+
'menu.tooltip': undefined, // 'Actions'
|
|
249
|
+
|
|
250
|
+
/** Text for when no archived releases are found */
|
|
251
|
+
'no-archived-release': undefined, // 'No archived releases'
|
|
252
|
+
|
|
253
|
+
/** Tooltip text when there are no paused scheduled drafts */
|
|
254
|
+
'no-paused-release': undefined, // 'No paused scheduled drafts'
|
|
255
|
+
|
|
256
|
+
/** Text for when no releases are found */
|
|
257
|
+
'no-releases': undefined, // 'No Releases'
|
|
258
|
+
|
|
259
|
+
/** Text for when no scheduled drafts are found */
|
|
260
|
+
'no-scheduled-drafts': undefined, // 'No Scheduled Drafts'
|
|
261
|
+
|
|
262
|
+
/** Text for the button name for the release tool */
|
|
263
|
+
'overview.action.documentation': undefined, // 'Documentation'
|
|
264
|
+
/** Tooltip for the calendar button in the release overview */
|
|
265
|
+
'overview.calendar.tooltip': undefined, // 'View calendar'
|
|
266
|
+
/** Description for the release tool */
|
|
267
|
+
'overview.description': undefined, // 'Releases are collections of document changes which can be managed, scheduled, and rolled back together.'
|
|
268
|
+
/** Text for the placeholder in the search release input */
|
|
269
|
+
'overview.search-releases-placeholder': undefined, // 'Search releases'
|
|
270
|
+
/** Title for the release tool */
|
|
271
|
+
'overview.title': undefined, // 'Releases'
|
|
272
|
+
|
|
273
|
+
/** Tooltip text for releases that have passed their intended publish date */
|
|
274
|
+
'passed-intended-publish-date': undefined, // 'This release has passed its intended publish date'
|
|
275
|
+
|
|
276
|
+
/** Tooltip text for scheduled drafts that have passed their intended publish date */
|
|
277
|
+
'passed-intended-publish-date-draft': undefined, // 'This draft has passed its intended publish date'
|
|
278
|
+
|
|
279
|
+
/** Description for when a user doesn't have publish or schedule releases */
|
|
280
|
+
'permission-missing-description': undefined, // 'Your role currently limits what you can see in this release. You may not publish nor schedule this release.'
|
|
281
|
+
|
|
282
|
+
/** Text for when a user doesn't have publish or schedule releases */
|
|
283
|
+
'permission-missing-title': undefined, // 'Limited access'
|
|
284
|
+
|
|
285
|
+
/** Tooltip label when the user doesn't have permission to archive release */
|
|
286
|
+
'permissions.error.archive': undefined, // 'You do not have permission to archive this release'
|
|
287
|
+
/** Tooltip label when the user doesn't have permission to delete release */
|
|
288
|
+
'permissions.error.delete': undefined, // 'You do not have permission to delete this release'
|
|
289
|
+
/** Tooltip label when the user doesn't have permission for discarding a version */
|
|
290
|
+
'permissions.error.discard-version': undefined, // 'You do not have permission to discard this version'
|
|
291
|
+
/** Tooltip label when the user doesn't have permission to duplicate release */
|
|
292
|
+
'permissions.error.duplicate': undefined, // 'You do not have permission to duplicate this release'
|
|
293
|
+
/** Tooltip label when the user doesn't have permission to unarchive release */
|
|
294
|
+
'permissions.error.unarchive': undefined, // 'You do not have permission to unarchive this release'
|
|
295
|
+
/** Tooltip label when the user doesn't have permission for unpublishing a document */
|
|
296
|
+
'permissions.error.unpublish': undefined, // 'You do not have permission to unpublish this document'
|
|
297
|
+
|
|
298
|
+
/** Tooltip text for when one user is editing a document in a release */
|
|
299
|
+
'presence.tooltip.one': undefined, // '{{displayName}} is editing this document in the "{{releaseTitle}}" release right now'
|
|
300
|
+
|
|
301
|
+
/** Tooltip text for publish release action when there are no documents */
|
|
302
|
+
'publish-action.validation.no-documents': undefined, // 'There are no documents to publish'
|
|
303
|
+
|
|
304
|
+
/** Description for the dialog confirming the publish of a release with one document */
|
|
305
|
+
'publish-dialog.confirm-publish-description_one': undefined, // 'The \'<strong>{{title}}</strong>\' release and its document will be published.'
|
|
306
|
+
/** Description for the dialog confirming the publish of a release with multiple documents */
|
|
307
|
+
'publish-dialog.confirm-publish-description_other': undefined, // 'The \'<strong>{{title}}</strong>\' release and its {{releaseDocumentsLength}} documents will be published.'
|
|
308
|
+
/** Title for the dialog confirming the publish of a release */
|
|
309
|
+
'publish-dialog.confirm-publish.title': undefined, // 'Are you sure you want to publish the release and all document versions?'
|
|
310
|
+
/** Label for when documents in release have validation errors */
|
|
311
|
+
'publish-dialog.validation.error': undefined, // 'Some documents have validation errors'
|
|
312
|
+
/** Label for when documents are being validated */
|
|
313
|
+
'publish-dialog.validation.loading': undefined, // 'Validating documents...'
|
|
314
|
+
/** Label for the button when the user doesn't have permissions to publish a release */
|
|
315
|
+
'publish-dialog.validation.no-permission': undefined, // 'You do not have permission to publish'
|
|
316
|
+
|
|
317
|
+
/** Title for information card on a published release */
|
|
318
|
+
'publish-info.title': undefined, // 'This release is published successfully.'
|
|
319
|
+
|
|
320
|
+
/** Placeholder title for a release with no title */
|
|
321
|
+
'release-placeholder.title': undefined, // 'Untitled'
|
|
322
|
+
|
|
323
|
+
/** Description for the dialog confirming the revert of a release with multiple documents */
|
|
324
|
+
'revert-dialog.confirm-revert-description_one': undefined, // 'This will revert {{releaseDocumentsLength}} document version.'
|
|
325
|
+
/** Description for the dialog confirming the revert of a release with multiple documents */
|
|
326
|
+
'revert-dialog.confirm-revert-description_other': undefined, // 'This will revert {{releaseDocumentsLength}} document versions.'
|
|
327
|
+
/** Checkbox label to confirm whether to create a staged release for revert or immediately revert */
|
|
328
|
+
'revert-dialog.confirm-revert.stage-revert-checkbox-label': undefined, // 'Immediately revert the release'
|
|
329
|
+
/** Title for the dialog confirming the revert of a release */
|
|
330
|
+
'revert-dialog.confirm-revert.title': undefined, // 'Are you sure you want to revert the \'{{title}}\' release?'
|
|
331
|
+
/** Warning card text for when immediately revert a release with history */
|
|
332
|
+
'revert-dialog.confirm-revert.warning-card': undefined, // 'Changes were made to documents in this release after they were published. Reverting will overwrite these changes.'
|
|
333
|
+
|
|
334
|
+
/** Description of a reverted release */
|
|
335
|
+
'revert-release.description': undefined, // 'Revert changes to document versions in "{{title}}".'
|
|
336
|
+
/** Title of a reverted release */
|
|
337
|
+
'revert-release.title': undefined, // 'Reverting "{{title}}"'
|
|
338
|
+
|
|
339
|
+
/** Description for the review changes button in release tool */
|
|
340
|
+
'review.description': undefined, // 'Add documents to this release to review changes'
|
|
341
|
+
/** Text for when a document is edited */
|
|
342
|
+
'review.edited': undefined, // 'Edited <RelativeTime/>'
|
|
343
|
+
|
|
344
|
+
/** Schedule release button tooltip when there are no documents to schedule */
|
|
345
|
+
'schedule-action.validation.no-documents': undefined, // 'There are no documents to schedule'
|
|
346
|
+
|
|
347
|
+
/** Schedule release button tooltip when the release is already scheduled */
|
|
348
|
+
'schedule-button-tooltip.already-scheduled': undefined, // 'This release is already scheduled'
|
|
349
|
+
/** Schedule release button tooltip when there are validation errors */
|
|
350
|
+
'schedule-button-tooltip.validation.error': undefined, // 'Some documents have validation errors'
|
|
351
|
+
/** Schedule release button tooltip when validation is loading */
|
|
352
|
+
'schedule-button-tooltip.validation.loading': undefined, // 'Validating documents...'
|
|
353
|
+
/** Schedule release button tooltip when user has no permissions to schedule */
|
|
354
|
+
'schedule-button-tooltip.validation.no-permission': undefined, // 'You do not have permission to schedule'
|
|
355
|
+
|
|
356
|
+
/** Title of unschedule release dialog */
|
|
357
|
+
'schedule-button.tooltip': undefined, // 'Are you sure you want to unschedule the release?'
|
|
358
|
+
|
|
359
|
+
/** Description for the confirm button for scheduling a release */
|
|
360
|
+
'schedule-dialog.confirm-button': undefined, // 'Yes, schedule'
|
|
361
|
+
/** Description shown in unschedule relaease dialog */
|
|
362
|
+
'schedule-dialog.confirm-description_one': undefined, // 'The \'<strong>{{title}}</strong>\' release and its document will be published on the selected date.'
|
|
363
|
+
/** Description for the dialog confirming the publish of a release with multiple documents */
|
|
364
|
+
'schedule-dialog.confirm-description_other': undefined, // 'The <strong>{{title}}</strong> release and its {{count}} document versions will be scheduled.'
|
|
365
|
+
/** Title for unschedule release dialog */
|
|
366
|
+
'schedule-dialog.confirm-title': undefined, // 'Schedule the release'
|
|
367
|
+
/** Description for warning that the published schedule time is in the past */
|
|
368
|
+
'schedule-dialog.publish-date-in-past-warning': undefined, // 'Schedule for a future time and date.'
|
|
369
|
+
/** Label for date picker when scheduling a release */
|
|
370
|
+
'schedule-dialog.select-publish-date-label': undefined, // 'Schedule on'
|
|
371
|
+
|
|
372
|
+
/** Confirm button text for the schedule unpublish dialog */
|
|
373
|
+
'schedule-unpublish-dialog.confirm': undefined, // 'Schedule Unpublish'
|
|
374
|
+
/** Description for the schedule unpublish dialog */
|
|
375
|
+
'schedule-unpublish-dialog.description': undefined, // 'Select when this document should be unpublished.'
|
|
376
|
+
/** Header for the schedule unpublish dialog */
|
|
377
|
+
'schedule-unpublish-dialog.header': undefined, // 'Schedule draft for Unpublish'
|
|
378
|
+
|
|
379
|
+
/** Placeholder for search of documents in a release */
|
|
380
|
+
'search-documents-placeholder': undefined, // 'Search documents'
|
|
381
|
+
|
|
382
|
+
/** Text for when the release has no errors found */
|
|
383
|
+
'summary.all-documents-errors-found': undefined, // 'All documents validated, issues found'
|
|
384
|
+
/** Text for when the release has validated all documents */
|
|
385
|
+
'summary.all-documents-validated': undefined, // 'All documents validated, no issues found'
|
|
386
|
+
/** Text for when the release was created */
|
|
387
|
+
'summary.created': undefined, // 'Created <RelativeTime/>'
|
|
388
|
+
/** Text for when the release is composed of one document */
|
|
389
|
+
'summary.document-count_one': undefined, // '{{count}} document'
|
|
390
|
+
/** Text for when the release is composed of multiple documents */
|
|
391
|
+
'summary.document-count_other': undefined, // '{{count}} documents'
|
|
392
|
+
/** Text for when the release has some errors found */
|
|
393
|
+
'summary.errors-found': undefined, // 'In order to publish or schedule the release, please resolve the issues found in the documents'
|
|
394
|
+
/** Text for when the release has no documents */
|
|
395
|
+
'summary.no-documents': undefined, // 'No documents'
|
|
396
|
+
/** Description for the empty state when a cardinality-one release has no documents */
|
|
397
|
+
'summary.no-documents-cardinality-one.description': undefined, // 'This scheduled draft does not contain a document. It may have been removed.'
|
|
398
|
+
/** Title for the empty state when a cardinality-one release has no documents */
|
|
399
|
+
'summary.no-documents-cardinality-one.title': undefined, // 'No document in this release'
|
|
400
|
+
/** Text for when the release has not published */
|
|
401
|
+
'summary.not-published': undefined, // 'Not published'
|
|
402
|
+
/** Text for when the release was published */
|
|
403
|
+
'summary.published': undefined, // 'Published <RelativeTime/>'
|
|
404
|
+
/** Text for when the release has validated documents */
|
|
405
|
+
'summary.validated-documents': undefined, // '{{validatedCount}} of {{totalCount}} documents validated'
|
|
406
|
+
/** Text for validation loading indicator */
|
|
407
|
+
'summary.validating-documents': undefined, // 'Validating documents: {{validatedCount}} of {{totalCount}}'
|
|
408
|
+
|
|
409
|
+
/** add action type that will be shown in the table*/
|
|
410
|
+
'table-body.action.add': undefined, // 'Add'
|
|
411
|
+
/** Change action type that will be shown in the table*/
|
|
412
|
+
'table-body.action.change': undefined, // 'Change'
|
|
413
|
+
/** Change action type that will be shown in the table*/
|
|
414
|
+
'table-body.action.unpublish': undefined, // 'Unpublish'
|
|
415
|
+
|
|
416
|
+
/** Header for the document table in the release tool - action */
|
|
417
|
+
'table-header.action': undefined, // 'Action'
|
|
418
|
+
/** Header for the document table in the release tool - Archived */
|
|
419
|
+
'table-header.archivedAt': undefined, // 'Archived'
|
|
420
|
+
/** Header for the document table in the release tool - contributors */
|
|
421
|
+
'table-header.contributors': undefined, // 'Contributors'
|
|
422
|
+
/** Header for the document table in the release tool - created by */
|
|
423
|
+
'table-header.created-by': undefined, // 'Created by'
|
|
424
|
+
/** Header for the document table in the release tool - document preview */
|
|
425
|
+
'table-header.document': undefined, // 'Document'
|
|
426
|
+
/** Header for the document table in the release tool - title */
|
|
427
|
+
'table-header.documents': undefined, // 'Documents'
|
|
428
|
+
/** Header for the document table in the release tool - edited */
|
|
429
|
+
'table-header.edited': undefined, // 'Edited'
|
|
430
|
+
/** Header for the paused scheduled drafts table - intended for */
|
|
431
|
+
'table-header.intended-for': undefined, // 'Intended for'
|
|
432
|
+
/** Header for the document table in the release tool - Published */
|
|
433
|
+
'table-header.published-at': undefined, // 'Published'
|
|
434
|
+
/** Header for the document table in the release tool - Published */
|
|
435
|
+
'table-header.publishedAt': undefined, // 'Published'
|
|
436
|
+
/** Header for the scheduled drafts document table in the release tool - published at */
|
|
437
|
+
'table-header.scheduled-draft.published-at': undefined, // 'Published at'
|
|
438
|
+
/** Header for the scheduled drafts document table in the release tool - scheduled for */
|
|
439
|
+
'table-header.scheduled-for': undefined, // 'Scheduled for'
|
|
440
|
+
/** Header for the document table in the release tool - time */
|
|
441
|
+
'table-header.time': undefined, // 'Time'
|
|
442
|
+
/** Header for the document table in the release tool - release title */
|
|
443
|
+
'table-header.title': undefined, // 'Release'
|
|
444
|
+
/** Header for the document table in the release tool - type */
|
|
445
|
+
'table-header.type': undefined, // 'Type'
|
|
446
|
+
/** Header for the document table in the release tool - when */
|
|
447
|
+
'table-header.when': undefined, // 'When'
|
|
448
|
+
|
|
449
|
+
/** Text for the release time label for scheduled releases which has not been scheduled yet*/
|
|
450
|
+
'time.estimated': undefined, // 'Estimated'
|
|
451
|
+
/** Text for the release time label for scheduled releases which has been scheduled*/
|
|
452
|
+
'time.scheduled': undefined, // 'Scheduled'
|
|
453
|
+
|
|
454
|
+
/** Text for toast when release failed to archive */
|
|
455
|
+
'toast.archive.error': undefined, // 'Failed to archive \'<strong>{{title}}</strong>\': {{error}}'
|
|
456
|
+
/** Toast error message when bulk scheduling of active drafts fails */
|
|
457
|
+
'toast.confirm-active-scheduled-drafts.error': undefined, // 'Failed to schedule drafts: {{error}}'
|
|
458
|
+
/** Toast message after copying release ID */
|
|
459
|
+
'toast.copy-release-id.success': undefined, // 'Release ID copied to clipboard'
|
|
460
|
+
/** Toast message after copying release link */
|
|
461
|
+
'toast.copy-release-link.success': undefined, // 'Release link copied to clipboard'
|
|
462
|
+
/** Toast message after copying release title */
|
|
463
|
+
'toast.copy-release-title.success': undefined, // 'Release title copied to clipboard'
|
|
464
|
+
/** Description for toast when creating new version of document in release failed */
|
|
465
|
+
'toast.create-version.error': undefined, // 'Failed to add document to release: {{error}}'
|
|
466
|
+
/** Description for toast when release deletion failed */
|
|
467
|
+
'toast.delete.error': undefined, // 'Failed to delete \'<strong>{{title}}</strong>\': {{error}}'
|
|
468
|
+
/** Description for toast when release is successfully deleted */
|
|
469
|
+
'toast.delete.success': undefined, // 'The \'<strong>{{title}}</strong>\' release was successfully deleted'
|
|
470
|
+
/** Description for toast when release duplication failed */
|
|
471
|
+
'toast.duplicate.error': undefined, // 'Failed to duplicate \'<strong>{{title}}</strong>\': {{error}}'
|
|
472
|
+
/** Description for toast when release is successfully duplicated */
|
|
473
|
+
'toast.duplicate.success': undefined, // 'The \'<strong>{{title}}</strong>\' release was duplicated. <Link/>'
|
|
474
|
+
/** Link text for toast link to the duplicated release */
|
|
475
|
+
'toast.duplicate.success-link': undefined, // 'View duplicated release'
|
|
476
|
+
/** Text for toast when release has been reverted immediately */
|
|
477
|
+
'toast.immediate-revert.success': undefined, // 'The \'{{title}}\' release was successfully reverted'
|
|
478
|
+
/** Text for toast when release failed to publish */
|
|
479
|
+
'toast.publish.error': undefined, // 'Failed to publish \'<strong>{{title}}</strong>\': {{error}}'
|
|
480
|
+
/** Text for toast when release has reverted release successfully staged */
|
|
481
|
+
'toast.revert-stage.success': undefined, // 'Revert release for \'{{title}}\' was successfully created. <Link/>'
|
|
482
|
+
/** Link text for toast link to the generated revert release */
|
|
483
|
+
'toast.revert-stage.success-link': undefined, // 'View revert release'
|
|
484
|
+
/** Text for toast when release failed to revert */
|
|
485
|
+
'toast.revert.error': undefined, // 'Failed to revert release: {{error}}'
|
|
486
|
+
/** Text for toast when release failed to schedule */
|
|
487
|
+
'toast.schedule.error': undefined, // 'Failed to schedule \'<strong>{{title}}</strong>\': {{error}}'
|
|
488
|
+
/** Text for toast when release has been scheduled */
|
|
489
|
+
'toast.schedule.success': undefined, // 'The \'<strong>{{title}}</strong>\' release was scheduled.'
|
|
490
|
+
/** Text for toast when release failed to unarchive */
|
|
491
|
+
'toast.unarchive.error': undefined, // 'Failed to unarchive \'<strong>{{title}}</strong>\': {{error}}'
|
|
492
|
+
/** Text for toast when release failed to unschedule */
|
|
493
|
+
'toast.unschedule.error': undefined, // 'Failed to unscheduled \'<strong>{{title}}</strong>\': {{error}}'
|
|
494
|
+
|
|
495
|
+
/** Text for tooltip when a release has been scheduled */
|
|
496
|
+
'type-picker.tooltip.scheduled': undefined, // 'The release is scheduled, unschedule it to change type'
|
|
497
|
+
|
|
498
|
+
/** Text action in unpublish dialog to cancel */
|
|
499
|
+
'unpublish-dialog.action.cancel': undefined, // 'Cancel'
|
|
500
|
+
/** Text action in unpublish dialog to unpublish */
|
|
501
|
+
'unpublish-dialog.action.unpublish': undefined, // 'Yes, unpublish when releasing'
|
|
502
|
+
/** Description for unpublish dialog, explaining that all changes made to this document will be lost */
|
|
503
|
+
'unpublish-dialog.description.lost-changes': undefined, // 'Any changes made to this document version will be lost.'
|
|
504
|
+
/** Description for the unpublish dialog, explaining that it will create a draft if no draft exists at time of release */
|
|
505
|
+
'unpublish-dialog.description.to-draft': undefined, // 'This will unpublish the document as part of the <Label>{{title}}</Label> release, and create a draft if no draft exists at the time of release.'
|
|
506
|
+
/** Title for the dialog confirming the unpublish of a release */
|
|
507
|
+
'unpublish-dialog.header': undefined, // 'Are you sure you want to unpublish this document when releasing?'
|
|
508
|
+
|
|
509
|
+
/** Text for when a document is unpublished */
|
|
510
|
+
'unpublish.already-unpublished': undefined, // 'This document is already unpublished.'
|
|
511
|
+
/** Tooltip label for when a document is unpublished */
|
|
512
|
+
'unpublish.no-published-version': undefined, // 'There is no published version of this document.'
|
|
513
|
+
|
|
514
|
+
/** Description shown in unschedule relaease dialog */
|
|
515
|
+
'unschedule-dialog.confirm-description': undefined, // 'The release will no longer be published on the scheduled date'
|
|
516
|
+
/** Title for unschedule release dialog */
|
|
517
|
+
'unschedule-dialog.confirm-title': undefined, // 'Are you sure you want to unschedule the release?'
|
|
518
|
+
})
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import {removeUndefinedLocaleResources} from 'sanity'
|
|
2
|
+
|
|
3
|
+
export default removeUndefinedLocaleResources({
|
|
4
|
+
/** Action text for scheduling publish of a draft document */
|
|
5
|
+
'action.schedule-publish': undefined, // 'Schedule publish'
|
|
6
|
+
/** Tooltip text for when schedule publish fails */
|
|
7
|
+
'action.schedule-publish-error': undefined, // 'Failed to schedule publishing'
|
|
8
|
+
/** Tooltip text for when a document is scheduled for publishing */
|
|
9
|
+
'action.schedule-publish-success': undefined, // 'Document scheduled for publishing'
|
|
10
|
+
/** Tooltip description for when a document is scheduled for publishing */
|
|
11
|
+
'action.schedule-publish-success-description': undefined, // 'Publishing scheduled for {{publishAt}}'
|
|
12
|
+
/** Tooltip text for when schedule publish is disabled due to cardinality one releases */
|
|
13
|
+
'action.schedule-publish.disabled.cardinality-one': undefined, // 'A Scheduled Draft for this document already exists.'
|
|
14
|
+
/** Tooltip text for when schedule publish is disabled due to validation errors */
|
|
15
|
+
'action.schedule-publish.disabled.validation-issues': undefined, // 'Cannot Schedule Draft due to validation errors in the current draft.'
|
|
16
|
+
|
|
17
|
+
/** Empty state action documentation for scheduled drafts */
|
|
18
|
+
'empty-state.action.documentation': undefined, // 'Learn about scheduling'
|
|
19
|
+
/** Empty state description for scheduled drafts */
|
|
20
|
+
'empty-state.description': undefined, // 'Schedule and lock draft documents for publishing at a future date and time.'
|
|
21
|
+
/** Empty state title for scheduled drafts */
|
|
22
|
+
'empty-state.title': undefined, // 'Scheduled Drafts'
|
|
23
|
+
})
|
package/src/structure.ts
CHANGED
|
@@ -172,6 +172,8 @@ export default removeUndefinedLocaleResources({
|
|
|
172
172
|
/** The text for the reference change banner if the reason is that the reference has been deleted */
|
|
173
173
|
'banners.reference-changed-banner.reason-removed.text':
|
|
174
174
|
"Aquesta referència s'ha eliminat des que l'has oberta.",
|
|
175
|
+
/** The text that appears for the action button to add the current document to the global bundle, this happens when user is viewing an anonymous bundle */
|
|
176
|
+
'banners.release.action.add-to-bundle': undefined, // 'Add to bundle'
|
|
175
177
|
/** The text that appears for the action button to add the current document to the global release */
|
|
176
178
|
'banners.release.action.add-to-release': 'Afegeix a la publicació',
|
|
177
179
|
/** The text that appears for the action button to add the current document to the global release */
|
|
@@ -478,6 +480,8 @@ export default removeUndefinedLocaleResources({
|
|
|
478
480
|
'incoming-references-input.types-not-defined':
|
|
479
481
|
"No s'han definit referències entrants per a aquest tipus, consulta la documentació per a més informació.",
|
|
480
482
|
|
|
483
|
+
/** The text shown if there are no incoming references in the inspector */
|
|
484
|
+
'incoming-references-pane.no-references': undefined, // 'No incoming references found.'
|
|
481
485
|
/** The text shown if there are no incoming references for a type */
|
|
482
486
|
'incoming-references-pane.no-references-found': "No s'han trobat referències d'aquest tipus.",
|
|
483
487
|
/** The text shown if there is no schema type found for a document in the incoming references pane */
|
|
@@ -571,6 +575,8 @@ export default removeUndefinedLocaleResources({
|
|
|
571
575
|
'panes.document-list-pane.search-input.aria-label': 'Cerca a la llista',
|
|
572
576
|
/** The search input for the search input on the document list pane */
|
|
573
577
|
'panes.document-list-pane.search-input.placeholder': 'Cerca a la llista',
|
|
578
|
+
/** The tooltip text shown when a sort menu item references fields not present in the current schema */
|
|
579
|
+
'panes.document-list-pane.sort-order.disabled-reason': undefined, // 'This sorting option uses fields that are not part of this document type'
|
|
574
580
|
/** The summary title when displaying an error for a document operation result */
|
|
575
581
|
'panes.document-operation-results.error.summary.title': 'Detalls',
|
|
576
582
|
/** The text when a generic operation failed (fallback, generally not shown) */
|
|
@@ -604,6 +610,8 @@ export default removeUndefinedLocaleResources({
|
|
|
604
610
|
/** The text when a publish operation succeeded */
|
|
605
611
|
'panes.document-operation-results.operation-success_publish':
|
|
606
612
|
"<Strong>{{title}}</Strong> s'ha publicat",
|
|
613
|
+
/** The text when a publish operation succeeded in an anonymous version */
|
|
614
|
+
'panes.document-operation-results.operation-success_publishVersion': undefined, // 'Version was published'
|
|
607
615
|
/** The text when a restore operation succeeded */
|
|
608
616
|
'panes.document-operation-results.operation-success_restore':
|
|
609
617
|
'<Strong>{{title}}</Strong> ha estat restaurat',
|
package/src/studio.ts
CHANGED
|
@@ -424,6 +424,8 @@ export default removeUndefinedLocaleResources({
|
|
|
424
424
|
'changes.same-revision-selected-title': 'Seleccionada la mateixa revisió',
|
|
425
425
|
/** Title for the Review Changes pane */
|
|
426
426
|
'changes.title': 'Història',
|
|
427
|
+
/** Shown above raw JSON diff for document fields that are not defined in the schema */
|
|
428
|
+
'changes.unknown-schema-field.description': undefined, // 'This field is not defined in the schema. Values are shown as JSON.'
|
|
427
429
|
/**The title that will be shown in the badge inside the events when the item is a draft */
|
|
428
430
|
'changes.versions.draft': 'Esborrany',
|
|
429
431
|
|
|
@@ -2032,15 +2034,6 @@ export default removeUndefinedLocaleResources({
|
|
|
2032
2034
|
/** Accessibility label for the search results section, shown when the user has typed valid terms */
|
|
2033
2035
|
'search.search-results-aria-label': 'Resultats de la cerca',
|
|
2034
2036
|
|
|
2035
|
-
/** Label for the edit columns button to change field visibility in sheet list */
|
|
2036
|
-
'sheet-list.edit-columns': 'Edita les columnes',
|
|
2037
|
-
/** Label for the header menu option to hide a field from the sheet list */
|
|
2038
|
-
'sheet-list.hide-field': 'Elimina de la taula',
|
|
2039
|
-
/** Label for reset column visibilities button */
|
|
2040
|
-
'sheet-list.reset-columns': 'Restableix les columnes',
|
|
2041
|
-
/** Title for the edit columns menu */
|
|
2042
|
-
'sheet-list.select-fields': 'Selecciona fins a 5 tipus de camps',
|
|
2043
|
-
|
|
2044
2037
|
/** Accessibility label for the navbar status button */
|
|
2045
2038
|
'status-button.aria-label': 'Estat de la configuració',
|
|
2046
2039
|
|