apostrophe 3.5.0 → 3.8.1
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/.eslintrc +4 -0
- package/.scratch.md +2 -0
- package/CHANGELOG.md +96 -3
- package/README.md +1 -1
- package/index.js +108 -3
- package/lib/moog-require.js +23 -0
- package/lib/moog.js +1 -0
- package/modules/@apostrophecms/admin-bar/ui/apos/components/TheAposContextBar.vue +30 -14
- package/modules/@apostrophecms/area/lib/custom-tags/area.js +1 -1
- package/modules/@apostrophecms/area/lib/custom-tags/widget.js +1 -1
- package/modules/@apostrophecms/area/ui/apos/components/AposAreaWidget.vue +2 -2
- package/modules/@apostrophecms/asset/index.js +77 -13
- package/modules/@apostrophecms/attachment/index.js +1 -0
- package/modules/@apostrophecms/db/index.js +5 -6
- package/modules/@apostrophecms/doc/index.js +2 -0
- package/modules/@apostrophecms/doc-type/index.js +39 -16
- package/modules/@apostrophecms/doc-type/ui/apos/components/AposDocContextMenu.vue +13 -1
- package/modules/@apostrophecms/doc-type/ui/apos/components/AposDocEditor.vue +3 -0
- package/modules/@apostrophecms/i18n/i18n/en.json +19 -6
- package/modules/@apostrophecms/i18n/i18n/es.json +382 -0
- package/modules/@apostrophecms/i18n/i18n/pt-BR.json +379 -0
- package/modules/@apostrophecms/i18n/i18n/sk.json +380 -0
- package/modules/@apostrophecms/i18n/index.js +10 -1
- package/modules/@apostrophecms/image/index.js +2 -1
- package/modules/@apostrophecms/image/ui/apos/components/AposMediaManager.vue +6 -3
- package/modules/@apostrophecms/image/ui/apos/components/AposMediaManagerEditor.vue +2 -1
- package/modules/@apostrophecms/image-widget/index.js +2 -1
- package/modules/@apostrophecms/image-widget/views/widget.html +12 -2
- package/modules/@apostrophecms/job/index.js +164 -212
- package/modules/@apostrophecms/login/index.js +1 -16
- package/modules/@apostrophecms/login/ui/apos/components/TheAposLogin.vue +5 -0
- package/modules/@apostrophecms/migration/index.js +1 -1
- package/modules/@apostrophecms/modal/ui/apos/components/AposDocsManagerToolbar.vue +151 -61
- package/modules/@apostrophecms/modal/ui/apos/components/AposModal.vue +6 -2
- package/modules/@apostrophecms/modal/ui/apos/components/AposModalConfirm.vue +8 -6
- package/modules/@apostrophecms/modal/ui/apos/mixins/AposDocsManagerMixin.js +12 -15
- package/modules/@apostrophecms/modal/ui/apos/mixins/AposEditorMixin.js +6 -0
- package/modules/@apostrophecms/notification/index.js +116 -8
- package/modules/@apostrophecms/notification/ui/apos/components/AposNotification.vue +89 -11
- package/modules/@apostrophecms/notification/ui/apos/components/TheAposNotifications.vue +1 -1
- package/modules/@apostrophecms/page/index.js +37 -30
- package/modules/@apostrophecms/permission/index.js +1 -1
- package/modules/@apostrophecms/permission/ui/apos/components/AposInputRole.vue +4 -2
- package/modules/@apostrophecms/piece-type/index.js +178 -61
- package/modules/@apostrophecms/piece-type/ui/apos/components/AposDocsManager.vue +179 -47
- package/modules/@apostrophecms/piece-type/ui/apos/components/AposDocsManagerDisplay.vue +1 -3
- package/modules/@apostrophecms/piece-type/ui/apos/components/AposDocsManagerSelectBox.vue +138 -0
- package/modules/@apostrophecms/rich-text-widget/ui/apos/components/AposRichTextWidgetEditor.vue +35 -6
- package/modules/@apostrophecms/rich-text-widget/ui/apos/tiptap-extensions/Classes.js +1 -3
- package/modules/@apostrophecms/schema/index.js +97 -20
- package/modules/@apostrophecms/schema/ui/apos/components/AposArrayEditor.vue +1 -0
- package/modules/@apostrophecms/schema/ui/apos/components/AposInputArray.vue +4 -1
- package/modules/@apostrophecms/schema/ui/apos/components/AposInputAttachment.vue +11 -160
- package/modules/@apostrophecms/schema/ui/apos/components/AposInputRelationship.vue +24 -2
- package/modules/@apostrophecms/schema/ui/apos/components/AposInputSelect.vue +24 -6
- package/modules/@apostrophecms/schema/ui/apos/components/AposInputSlug.vue +0 -4
- package/modules/@apostrophecms/schema/ui/apos/components/AposInputString.vue +0 -7
- package/modules/@apostrophecms/schema/ui/apos/components/AposSchema.vue +25 -3
- package/modules/@apostrophecms/schema/ui/apos/mixins/AposInputMixin.js +10 -2
- package/modules/@apostrophecms/task/index.js +2 -2
- package/modules/@apostrophecms/template/index.js +63 -36
- package/modules/@apostrophecms/template/lib/custom-tags/component.js +1 -1
- package/modules/@apostrophecms/template/lib/custom-tags/render.js +6 -2
- package/modules/@apostrophecms/ui/ui/apos/components/AposButton.vue +5 -2
- package/modules/@apostrophecms/ui/ui/apos/components/AposCellContextMenu.vue +1 -1
- package/modules/@apostrophecms/ui/ui/apos/components/AposFile.vue +205 -0
- package/modules/@apostrophecms/ui/ui/apos/lib/i18next.js +16 -2
- package/modules/@apostrophecms/ui/ui/apos/scss/global/_tables.scss +4 -3
- package/modules/@apostrophecms/util/index.js +2 -2
- package/modules/@apostrophecms/util/ui/src/http.js +12 -8
- package/modules/@apostrophecms/util/ui/src/util.js +15 -0
- package/modules/@apostrophecms/widget-type/index.js +1 -1
- package/modules/@apostrophecms/widget-type/ui/apos/components/AposWidgetEditor.vue +1 -0
- package/modules/@apostrophecms/widget-type/ui/apos/mixins/AposWidgetMixin.js +15 -7
- package/package.json +3 -3
- package/test/extra_node_modules/improve-global/index.js +7 -0
- package/test/extra_node_modules/improve-piece-type/index.js +7 -0
- package/test/improve-overrides.js +30 -0
- package/test/job.js +224 -0
- package/test/modules/@apostrophecms/global/index.js +8 -0
- package/test/modules/fragment-all/views/aux-test.html +7 -0
- package/test/modules/fragment-all/views/fragment.html +5 -0
- package/test/package.json +5 -4
- package/test/pieces.js +34 -0
- package/test/reverse-relationship.js +170 -0
- package/test/templates.js +7 -1
- package/test-lib/test.js +23 -12
- package/test-lib/util.js +33 -0
|
@@ -439,6 +439,7 @@ module.exports = {
|
|
|
439
439
|
await self.insertBody(req, doc, options);
|
|
440
440
|
await m.emit('afterInsert', req, doc, options);
|
|
441
441
|
await m.emit('afterSave', req, doc, options);
|
|
442
|
+
// TODO: Remove `afterLoad` in next major version. Deprecated.
|
|
442
443
|
await m.emit('afterLoad', req, [ doc ]);
|
|
443
444
|
return doc;
|
|
444
445
|
},
|
|
@@ -474,6 +475,7 @@ module.exports = {
|
|
|
474
475
|
await self.updateBody(req, doc, options);
|
|
475
476
|
await m.emit('afterUpdate', req, doc, options);
|
|
476
477
|
await m.emit('afterSave', req, doc, options);
|
|
478
|
+
// TODO: Remove `afterLoad` in next major version. Deprecated.
|
|
477
479
|
await m.emit('afterLoad', req, [ doc ]);
|
|
478
480
|
return doc;
|
|
479
481
|
},
|
|
@@ -389,7 +389,7 @@ module.exports = {
|
|
|
389
389
|
self.schema = self.apos.schema.compose({
|
|
390
390
|
addFields: self.apos.schema.fieldsToArray(`Module ${self.__meta.name}`, self.fields),
|
|
391
391
|
arrangeFields: self.apos.schema.groupsToArray(self.fieldsGroups)
|
|
392
|
-
});
|
|
392
|
+
}, self);
|
|
393
393
|
if (self.options.slugPrefix) {
|
|
394
394
|
if (self.options.slugPrefix === 'deduplicate-') {
|
|
395
395
|
const req = self.apos.task.getReq();
|
|
@@ -545,8 +545,11 @@ module.exports = {
|
|
|
545
545
|
|
|
546
546
|
await self.apos.schema.convert(req, schema, input, doc);
|
|
547
547
|
|
|
548
|
-
doc.copyOfId = copyOf && copyOf._id;
|
|
549
548
|
if (copyOf) {
|
|
549
|
+
if (copyOf._id) {
|
|
550
|
+
doc.copyOfId = copyOf._id;
|
|
551
|
+
}
|
|
552
|
+
|
|
550
553
|
self.apos.schema.regenerateIds(req, fullSchema, doc);
|
|
551
554
|
}
|
|
552
555
|
},
|
|
@@ -554,17 +557,9 @@ module.exports = {
|
|
|
554
557
|
// taking into account issues like relationship fields keeping their data in
|
|
555
558
|
// a separate ids property, etc.
|
|
556
559
|
fieldsPresent(input) {
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
if (field.type.name.substring(0, 5) === '_relationship') {
|
|
561
|
-
if (_.has(input, field.idsStorage)) {
|
|
562
|
-
output.push(field.name);
|
|
563
|
-
}
|
|
564
|
-
} else {
|
|
565
|
-
output.push(field.name);
|
|
566
|
-
}
|
|
567
|
-
}
|
|
560
|
+
return self.schema
|
|
561
|
+
.filter((field) => _.has(input, field.name))
|
|
562
|
+
.map((field) => field.name);
|
|
568
563
|
},
|
|
569
564
|
// Returns a query that finds docs the current user can edit. Unlike
|
|
570
565
|
// find(), this query defaults to including docs in the archive. Subclasses
|
|
@@ -738,7 +733,7 @@ module.exports = {
|
|
|
738
733
|
},
|
|
739
734
|
// Localize (export) the given draft to another locale, creating the document in the
|
|
740
735
|
// other locale if necessary. By default, if the document already exists in the
|
|
741
|
-
// other locale, it is not
|
|
736
|
+
// other locale, it is not overwritten. Use the `update: true` option to change that.
|
|
742
737
|
// You can localize starting from either draft or published content. Either way what
|
|
743
738
|
// gets created or updated in the other locale is a draft.
|
|
744
739
|
async localize(req, draft, toLocale, options = { update: false }) {
|
|
@@ -1217,6 +1212,21 @@ module.exports = {
|
|
|
1217
1212
|
// cursors.
|
|
1218
1213
|
|
|
1219
1214
|
project: {
|
|
1215
|
+
launder (p) {
|
|
1216
|
+
// check that project is an object
|
|
1217
|
+
if (!p || typeof p !== 'object' || Array.isArray(p)) {
|
|
1218
|
+
return {};
|
|
1219
|
+
}
|
|
1220
|
+
|
|
1221
|
+
const projection = Object.entries(p).reduce((acc, [ key, val ]) => {
|
|
1222
|
+
return {
|
|
1223
|
+
...acc,
|
|
1224
|
+
[key]: self.apos.launder.boolean(val)
|
|
1225
|
+
};
|
|
1226
|
+
}, {});
|
|
1227
|
+
|
|
1228
|
+
return projection;
|
|
1229
|
+
},
|
|
1220
1230
|
finalize() {
|
|
1221
1231
|
let projection = query.get('project') || {};
|
|
1222
1232
|
// Keys beginning with `_` are computed values
|
|
@@ -1259,6 +1269,14 @@ module.exports = {
|
|
|
1259
1269
|
if (query.get('search')) {
|
|
1260
1270
|
// MongoDB mandates this if we want to sort on search result quality
|
|
1261
1271
|
projection.textScore = { $meta: 'textScore' };
|
|
1272
|
+
} else if (projection.textScore) {
|
|
1273
|
+
// Gracefully elide the textScore projection when it is not useful and
|
|
1274
|
+
// would cause an error anyway.
|
|
1275
|
+
//
|
|
1276
|
+
// This allows the reuse of the `project()` value passed to one query
|
|
1277
|
+
// in a second query without worrying about whether the second query
|
|
1278
|
+
// contains a search or not
|
|
1279
|
+
delete projection.textScore;
|
|
1262
1280
|
}
|
|
1263
1281
|
query.set('project', projection);
|
|
1264
1282
|
}
|
|
@@ -1442,9 +1460,14 @@ module.exports = {
|
|
|
1442
1460
|
attachments: {
|
|
1443
1461
|
def: false,
|
|
1444
1462
|
after(results) {
|
|
1445
|
-
|
|
1446
|
-
|
|
1463
|
+
const attachments = query.get('attachments');
|
|
1464
|
+
|
|
1465
|
+
if (attachments) {
|
|
1466
|
+
self.apos.attachment.all(results, { annotate: true });
|
|
1447
1467
|
}
|
|
1468
|
+
},
|
|
1469
|
+
launder(b) {
|
|
1470
|
+
return self.apos.launder.boolean(b);
|
|
1448
1471
|
}
|
|
1449
1472
|
},
|
|
1450
1473
|
|
|
@@ -286,9 +286,21 @@ export default {
|
|
|
286
286
|
apos.bus.$off('content-changed', this.onContentChanged);
|
|
287
287
|
},
|
|
288
288
|
methods: {
|
|
289
|
-
onContentChanged(e) {
|
|
289
|
+
async onContentChanged(e) {
|
|
290
290
|
if (e.doc && (e.doc._id === this.context._id)) {
|
|
291
291
|
this.context = e.doc;
|
|
292
|
+
} else if (e.docIds && e.docIds.includes(this.context._id)) {
|
|
293
|
+
try {
|
|
294
|
+
this.context = await apos.http.get(`${this.moduleOptions.action}/${this.context._id}`, {
|
|
295
|
+
busy: true
|
|
296
|
+
});
|
|
297
|
+
} catch (error) {
|
|
298
|
+
// If not found it is likely that there was an archiving or restoring
|
|
299
|
+
// batch operation.
|
|
300
|
+
if (error.name !== 'notfound') {
|
|
301
|
+
console.error(error);
|
|
302
|
+
}
|
|
303
|
+
}
|
|
292
304
|
}
|
|
293
305
|
},
|
|
294
306
|
menuHandler(action) {
|
|
@@ -68,6 +68,7 @@
|
|
|
68
68
|
:doc-id="docId"
|
|
69
69
|
:value="docFields"
|
|
70
70
|
@input="updateDocFields"
|
|
71
|
+
@validate="triggerValidate"
|
|
71
72
|
:server-errors="serverErrors"
|
|
72
73
|
:ref="tab.name"
|
|
73
74
|
/>
|
|
@@ -90,6 +91,7 @@
|
|
|
90
91
|
:doc-id="docId"
|
|
91
92
|
:value="docFields"
|
|
92
93
|
@input="updateDocFields"
|
|
94
|
+
@validate="triggerValidate"
|
|
93
95
|
:modifiers="['small', 'inverted']"
|
|
94
96
|
ref="utilitySchema"
|
|
95
97
|
:server-errors="serverErrors"
|
|
@@ -444,6 +446,7 @@ export default {
|
|
|
444
446
|
if (!this.errorCount) {
|
|
445
447
|
this[action]();
|
|
446
448
|
} else {
|
|
449
|
+
this.triggerValidation = false;
|
|
447
450
|
await apos.notify('apostrophe:resolveErrorsBeforeSaving', {
|
|
448
451
|
type: 'warning',
|
|
449
452
|
icon: 'alert-circle-icon',
|
|
@@ -3,6 +3,7 @@
|
|
|
3
3
|
"addItem": "Add Item",
|
|
4
4
|
"addWidgetType": "Add {{ label }}",
|
|
5
5
|
"admin": "Admin",
|
|
6
|
+
"affirmativeLabel": "Yes, continue.",
|
|
6
7
|
"altText": "Alt Text",
|
|
7
8
|
"altTextHelp": "Image description used for accessibility",
|
|
8
9
|
"any": "Any",
|
|
@@ -17,6 +18,8 @@
|
|
|
17
18
|
"archiveTypeAffirmativeLabel": "Yes, archive {{ type }}",
|
|
18
19
|
"archiveTypeNote": "You are currently viewing the {{ type }} you want to archive. When it is archived you will be returned to the home page.",
|
|
19
20
|
"archived": "Archived",
|
|
21
|
+
"archivingBatchConfirmation": "Are you sure you want to archive {{ count }} {{ type }}?",
|
|
22
|
+
"archivingBatchConfirmationButton": "Yes, archive content.",
|
|
20
23
|
"archivingDraftChildCount": "{{ count }} of those descendants have never been published.",
|
|
21
24
|
"archivingPageHasChild": "That page has one descendant.",
|
|
22
25
|
"archivingPageHasChild_plural": "That page has {{ count }} descendants.",
|
|
@@ -180,9 +183,11 @@
|
|
|
180
183
|
"mediaMB": "{{ size }}MB",
|
|
181
184
|
"mediaUploadViaDrop": "Drop ’em when you’re ready",
|
|
182
185
|
"mediaUploadViaExplorer": "Or click to open the file explorer",
|
|
186
|
+
"modify": "Modify",
|
|
187
|
+
"modifyOrDelete": "Modify / Delete",
|
|
183
188
|
"moreOptions": "More Options",
|
|
184
189
|
"moreOperations": "More Operations",
|
|
185
|
-
"multipleEditors": "
|
|
190
|
+
"multipleEditors": "Multiple Editors",
|
|
186
191
|
"newDocType": "New {{ type }}",
|
|
187
192
|
"newItem": "New item",
|
|
188
193
|
"newPage": "New Page",
|
|
@@ -202,6 +207,7 @@
|
|
|
202
207
|
"notFoundPageStatusCode": "404",
|
|
203
208
|
"notFoundPageTitle": "404 - Page not found",
|
|
204
209
|
"notInLocale": "The current page doesn’t exist in {{ label }}. Localize the version from {{ currentLocale }}?",
|
|
210
|
+
"notificationClearEventError": "There was an error clearing a registered notification event.",
|
|
205
211
|
"noTypeFound": "No {{ type }} Found",
|
|
206
212
|
"parentNotLocalized": "Localize the parent page first",
|
|
207
213
|
"notYetPublished": "This document hasn't been published yet.",
|
|
@@ -253,12 +259,12 @@
|
|
|
253
259
|
"provideButtonLabel": "Provide a Button Label",
|
|
254
260
|
"previousPage": "Previous Page",
|
|
255
261
|
"public": "Public",
|
|
256
|
-
"modernBuild": "
|
|
257
|
-
"ie11Build": "
|
|
262
|
+
"modernBuild": "Public-facing modern JavaScript and Sass",
|
|
263
|
+
"ie11Build": "Public-facing modern JavaScript and Sass (IE11 build)",
|
|
258
264
|
"publish": "Publish",
|
|
259
265
|
"publishBeforeUsingTooltip": "Publish this content before using it in a relationship",
|
|
260
266
|
"published": "Published",
|
|
261
|
-
"rawCssAndJs": "
|
|
267
|
+
"rawCssAndJs": "Raw CSS and JS",
|
|
262
268
|
"rawHtml": "Raw HTML",
|
|
263
269
|
"rawHtmlCode": "Raw HTML (Code)",
|
|
264
270
|
"rawHtmlCodeHelp": "Be careful when embedding third-party code, as it can break the website editing functionality. If a page becomes unusable, add \"?safe_mode=1\" to the URL to make it work temporarily without the problem code being rendered.",
|
|
@@ -267,7 +273,7 @@
|
|
|
267
273
|
"redoTooltipNoChanges": "No Changes to Redo",
|
|
268
274
|
"redoFailed": "The operation could not be redone.",
|
|
269
275
|
"remove": "Remove",
|
|
270
|
-
"removeItem": "Remove
|
|
276
|
+
"removeItem": "Remove Item",
|
|
271
277
|
"removeLink": "Remove Link",
|
|
272
278
|
"replace": "Replace",
|
|
273
279
|
"refreshForRawHtml": "Refresh the page to view raw HTML.",
|
|
@@ -277,6 +283,8 @@
|
|
|
277
283
|
"relatedDocsOnly": "Related documents only",
|
|
278
284
|
"relatedDocsDefinition": "Related documents are documents referenced by this document. This typically includes images, content defined by relationships, etc.",
|
|
279
285
|
"restore": "Restore",
|
|
286
|
+
"restoreBatchConfirmation": "Are you sure you want to restore {{ count }} {{ type }}?",
|
|
287
|
+
"restoreBatchConfirmationButton": "Yes, restore content.",
|
|
280
288
|
"resolveErrorsBeforeSaving": "Resolve errors before saving.",
|
|
281
289
|
"resolveErrorsFirst": "Resolve errors first.",
|
|
282
290
|
"restoreOnlyThisPage": "Restore only this page",
|
|
@@ -305,6 +313,12 @@
|
|
|
305
313
|
"select": "Select",
|
|
306
314
|
"selectedMenuItem": "✓ {{ label }}",
|
|
307
315
|
"selectAll": "Select All",
|
|
316
|
+
"selectBoxMessage": "{{ num }} {{ label }} selected.",
|
|
317
|
+
"selectBoxMessagePage": "{{ num }} {{ label }} on this page selected.",
|
|
318
|
+
"selectBoxMessageAllButton": "Select all {{ num }} {{ label }}.",
|
|
319
|
+
"selectBoxMessageButton": "Select {{ num }} {{ label }}.",
|
|
320
|
+
"selectBoxMessageSelected": "{{ num }} {{ label }} selected.",
|
|
321
|
+
"selectBoxMessageAllSelected": "All {{ num }} {{ label }} selected.",
|
|
308
322
|
"deselectAll": "Deselect All",
|
|
309
323
|
"selectContent": "Select Content",
|
|
310
324
|
"selectContentToLocalize": "What content do you want to localize?",
|
|
@@ -373,7 +387,6 @@
|
|
|
373
387
|
"videoUrlHelp": "Enter the URL for a media source you wish to embed (e.g., YouTube, Vimeo, or other hosted video URL).",
|
|
374
388
|
"view": "View",
|
|
375
389
|
"visibility": "Visibility",
|
|
376
|
-
"visibilityLabel": "Who can view this?",
|
|
377
390
|
"willMoveImageToArchive": "This will move the image to the archive.",
|
|
378
391
|
"yes": "Yes",
|
|
379
392
|
"yesLocalizeAndSwitchLocales": "Yes, localize this page and switch locales",
|
|
@@ -0,0 +1,382 @@
|
|
|
1
|
+
{
|
|
2
|
+
"addContent": "Añadir Contenido",
|
|
3
|
+
"addItem": "Añadir Elemento",
|
|
4
|
+
"addWidgetType": "Añadir {{ label }}",
|
|
5
|
+
"admin": "Administrador",
|
|
6
|
+
"altText": "Texto Alternativo",
|
|
7
|
+
"altTextHelp": "Descripción de imagen utilizada para accesibilidad",
|
|
8
|
+
"any": "Cualquiera",
|
|
9
|
+
"apostropheAdminUi": "Interfaz de Administración Apostrophe",
|
|
10
|
+
"applyToSubpages": "Aplicar a Subpáginas",
|
|
11
|
+
"arrayCancelDescription": "¿Quiere descartar los cambios a esta lista?",
|
|
12
|
+
"archive": "Archivar",
|
|
13
|
+
"archiveImage": "Archivar Imagen",
|
|
14
|
+
"archiveOnlyThisPage": "Archivar sólo esta página",
|
|
15
|
+
"archivePageAndSubpages": "Archivar esta página y páginas secundarias",
|
|
16
|
+
"archiveType": "Archivar {{ type }}",
|
|
17
|
+
"archiveTypeAffirmativeLabel": "Sí, archivar {{ type }}",
|
|
18
|
+
"archiveTypeNote": "Esta actualmente viendo el {{ type }} que quiere archivar. Cuando esté archivado, regresará a la página de inicio.",
|
|
19
|
+
"archived": "Archivado",
|
|
20
|
+
"archivingDraftChildCount": "{{ count }} de las páginas secundarias nunca han sido publicadas.",
|
|
21
|
+
"archivingPageHasChild": "Esa página tiene una página secundaria.",
|
|
22
|
+
"archivingPageHasChild_plural": "Esa página tiene {{ count }} páginas secundarias.",
|
|
23
|
+
"archivingPageWillLoseDraftChanges": "Cambios sin publicar al borrador de esta página y sus páginas secunadrias serán eliminados permanentemente.",
|
|
24
|
+
"archivingWillDeleteDraftChildren": "Páginas secundarias que nunca han sido publicadas serán eliminadas permanentemente.",
|
|
25
|
+
"archivingWillLoseDraftChanges": "Cambios al borrador de este {{ type }} sin publicar serán eliminados permanentemente.",
|
|
26
|
+
"archivingWillUnpublish": "Esto también despublicará el {{ type }}.",
|
|
27
|
+
"areYouSure": "¿Está Seguro?",
|
|
28
|
+
"assetTypeBuildComplete": "👍 ¡{{ label }} está completo!",
|
|
29
|
+
"assetTypeBuilding": "🧑💻 Creando {{ label }}...",
|
|
30
|
+
"back": "Atrás",
|
|
31
|
+
"backToHome": "Regresar a la Página de Inicio",
|
|
32
|
+
"basics": "Información Básica",
|
|
33
|
+
"browseDocType": "Navegar {{ type }}",
|
|
34
|
+
"cancel": "Cancelar",
|
|
35
|
+
"cannotMoveArchive": "No puede mover el Archivo de Documentos",
|
|
36
|
+
"changed": "Modificado",
|
|
37
|
+
"changesAwaitingApproval": "Cambios a este documento estan esperando ser aprobados por un administrador o editor.",
|
|
38
|
+
"changesDiscarded": "Cambios descartados",
|
|
39
|
+
"changesPublished": "Sus cambios han sido publicados.",
|
|
40
|
+
"cannotChangeSlugPrefix": "No se puede cambiar el prefijo del slug",
|
|
41
|
+
"chooseDocType": "Elegir {{ type }}",
|
|
42
|
+
"clear": "Borrar",
|
|
43
|
+
"clearSelection": "Borrar Selección",
|
|
44
|
+
"clone": "Clonar",
|
|
45
|
+
"close": "Cerrar",
|
|
46
|
+
"closeGlobal": "Cerrar Configuración Global del Sitio",
|
|
47
|
+
"confirmArchive": "Va a archivar el {{ type }} {{ title }}.",
|
|
48
|
+
"confirmSettings": "Confirmar Configuración",
|
|
49
|
+
"contentArchived": "Contenido Archivado",
|
|
50
|
+
"contentRestored": "Contenido Restaurado",
|
|
51
|
+
"contributor": "Colaborador",
|
|
52
|
+
"create": "Crear",
|
|
53
|
+
"credit": "Crédito",
|
|
54
|
+
"creditUrl": "Dirección URL del Crédito",
|
|
55
|
+
"currentLocale": "Configuración regional seleccionada",
|
|
56
|
+
"cut": "Cortar",
|
|
57
|
+
"copy": "Copiar",
|
|
58
|
+
"dayjsRelativeTimeFormat": "apostrophe",
|
|
59
|
+
"dayjsTitleDateFormat": "ddd MMMM D [at] H:mma",
|
|
60
|
+
"dayjsCellDateFormat": "apostrophe",
|
|
61
|
+
"dayjsMediaCreatedDateFormat": "MMM Do, YYYY",
|
|
62
|
+
"deduplicateSlugReserved": "El slug deduplicado- está reservado.",
|
|
63
|
+
"delete": "Eliminar",
|
|
64
|
+
"deleteDraft": "Eliminar Borrador",
|
|
65
|
+
"deleteDraftAffirmativeLabel": "Sí, eliminar documento",
|
|
66
|
+
"deleteDraftDescription": "Ya que {{ title }} nunca ha sido publicado, esto eliminará completamente el documento.",
|
|
67
|
+
"description": "Descripción",
|
|
68
|
+
"disabled": "Deshabilitado",
|
|
69
|
+
"discardChanges": "Descartar Cambios",
|
|
70
|
+
"discardChangesPrompt": "¿Quiere descartar los cambios?",
|
|
71
|
+
"discardChangesToDocTypePrompt": "¿Quiere descartar los cambios a este {{ type }}?",
|
|
72
|
+
"discardImageChangesPrompt": "¿Quiere descartar los cambios a la imagen activa?",
|
|
73
|
+
"discardDraft": "Descartar Borrador",
|
|
74
|
+
"discardDraftAffirmativeLabel": "Sí, descartar cambios",
|
|
75
|
+
"discardDraftDescription": "Esto descartará todos los cambios que se han hecho desde la ultima vez que fue publicado.",
|
|
76
|
+
"dismissSubmission": "Descartar Propuesta",
|
|
77
|
+
"dismissedSubmission": "Propuesta descartada.",
|
|
78
|
+
"displayName": "Nombre Para Mostrar",
|
|
79
|
+
"docInUseByAnother": "Otro Usuario Esta Editando",
|
|
80
|
+
"docInUseBySelf": "Editando en Otra Pestaña o Ventana",
|
|
81
|
+
"document": "documento",
|
|
82
|
+
"documentExistsInLocales": "Este documento existe en estas configuraciones regionales:",
|
|
83
|
+
"documentPublishedNoPreview": "Documento publicado pero no se pudo navegar a vista previa.",
|
|
84
|
+
"documentSaved": "Documento guardado.",
|
|
85
|
+
"doesNotExistYet": "Aún No Existe",
|
|
86
|
+
"doesNotExistYetDescription": "Este documento aún no existe cómo {{ mode }} en la configuración regional {{ locale }}.",
|
|
87
|
+
"download": "Descargar",
|
|
88
|
+
"draft": "Borrador",
|
|
89
|
+
"draftDeleted": "Borrador Eliminado",
|
|
90
|
+
"draftDiscarded": "Borrador Descartado",
|
|
91
|
+
"draftSaved": "Borrador guardado",
|
|
92
|
+
"draftSavedNoPreview": "El borrador ha sido guardado pero no se pudo navegar a la vista previa.",
|
|
93
|
+
"dropMedia": "Colocar media aquí",
|
|
94
|
+
"duplicate": "Duplicar...",
|
|
95
|
+
"edit": "Editar",
|
|
96
|
+
"editType": "Editar {{ type }}",
|
|
97
|
+
"editor": "Editor",
|
|
98
|
+
"editRelationshipFor": "Editar relación para {{ title }}",
|
|
99
|
+
"editWidget": "Editar Componente",
|
|
100
|
+
"editWidgetForeignTooltip": "Haga clic para editar este contenido en su contexto natural",
|
|
101
|
+
"editWidgetType": "Editar {{ label }}",
|
|
102
|
+
"email": "Correo Electrónico",
|
|
103
|
+
"emptyRichTextWidget": "Componente de Texto Enriquecido Vacío",
|
|
104
|
+
"enabled": "Habilitado",
|
|
105
|
+
"error": "Ocurrió un error",
|
|
106
|
+
"errorCount": "Queda {{ count }} error",
|
|
107
|
+
"errorCount_plural": "Quedan {{ count }} errores",
|
|
108
|
+
"errorCreatingNewContent": "Error al crear nuevo contenido vacio.",
|
|
109
|
+
"errorWhileRestoring": "Ocurrió un error al restaurar la version previamente publicada.",
|
|
110
|
+
"errorWhileUnpublishing": "Ocurrió un error al despublicar el documento.",
|
|
111
|
+
"errorWhileArchiving": "Ocurrió un error al mover el documento al archivo de documentos.",
|
|
112
|
+
"errorWhileDismissing": "Ocurrió Un Error Al Descartar",
|
|
113
|
+
"errorWhileDismissingDescription": "Ocurrió un error al descartar la propuesta o presentación.",
|
|
114
|
+
"errorWhilePublishing": "Ocurrió Un Error Al Publicar",
|
|
115
|
+
"errorWhilePublishingDocument": "Ocurrió un error al publicar el documento.",
|
|
116
|
+
"errorWhilePublishingParentPage": "Ocurrió un error al publicar una página principal.",
|
|
117
|
+
"errorWhileRestoringArchive": "Ocurrió un error al restaurar el documento del archivo de documentos.",
|
|
118
|
+
"errorWhileRestoringPrevious": "Ocurrió un error al restaurar la version previamente publicada.",
|
|
119
|
+
"errorWhileSubmitting": "Ocurrió Un Error Al Enviar",
|
|
120
|
+
"errorWhileSubmittingDescription": "Ocurrió un error al enviar el documento.",
|
|
121
|
+
"errorPageMessage": "Ha sucedido un error",
|
|
122
|
+
"errorPageStatusCode": "500",
|
|
123
|
+
"errorPageTitle": "Ha sucedido un error",
|
|
124
|
+
"everythingElse": "Todo lo Demás",
|
|
125
|
+
"exit": "Salir",
|
|
126
|
+
"fetchPublishedVersionFailed": "Ocurrió un error al obtener la versión publicada del documento.",
|
|
127
|
+
"fieldHasUnpublishedChanges": "Este campo tiene cambios sin publicar",
|
|
128
|
+
"file": "Archivo",
|
|
129
|
+
"fileTag": "Etiqueta de Archivo",
|
|
130
|
+
"fileTags": "Etiquetas del Archivo",
|
|
131
|
+
"fileTypeNotAccepted": "El tipo de archivo no fue acceptado. Extensiones de Archivo permitidas: {{ extensions }}",
|
|
132
|
+
"fileInvalid": "El archivo no fue aceptado. Puede estar corrupto o su contenido no coincide con su extensión de archivo.",
|
|
133
|
+
"files": "Archivos",
|
|
134
|
+
"filter": "Filtrar",
|
|
135
|
+
"filterByTag": "Filtrar por Etiqueta",
|
|
136
|
+
"filterResultsByType": "Filtrar Resultados por Tipo",
|
|
137
|
+
"findOrAddTag": "Encuentrar una etiqueta o añadir una etiqueta nueva",
|
|
138
|
+
"globalDocLabel": "Contenido Global",
|
|
139
|
+
"goToPage": "Ir a página {{ page }}",
|
|
140
|
+
"guest": "Invitado",
|
|
141
|
+
"hideInNavigation": "Esconder en Navegación",
|
|
142
|
+
"home": "Inicio",
|
|
143
|
+
"image": "Imagen",
|
|
144
|
+
"imageFile": "Archivo de Imagen",
|
|
145
|
+
"imageTag": "Etiqueta de Imagen",
|
|
146
|
+
"imageTags": "Etiquetas de Imágenes",
|
|
147
|
+
"images": "Imágenes",
|
|
148
|
+
"insertAndRedirect": "{{ saveLabel }} {{ typeLabel }} y navegar a {{ typeLabel }}.",
|
|
149
|
+
"insertAndReturn": "{{ saveLabel }} y regresar al listado de {{ typeLabel }}.",
|
|
150
|
+
"insertAndNew": "{{ saveLabel }} {{ typeLabel }} y crear uno nuevo.",
|
|
151
|
+
"lastEdited": "Editado Por Última Vez",
|
|
152
|
+
"leavePageDescription": "El contenido que esta buscando editar pertenece a otro documento y debe ser editado ahí.\nCambios hechos a {{ oldTitle }} son guardados automaticamente.",
|
|
153
|
+
"leavePageHeading": "¿Salir de {{ oldTitle }} para editar {{ newTitle }}?",
|
|
154
|
+
"listJoiner": ", ",
|
|
155
|
+
"live": "En Vivo",
|
|
156
|
+
"lastUpdatedBy": "Guardado por última vez el {{ updatedAt }} <br /> por {{ updatedBy }}",
|
|
157
|
+
"loadDocFailed": "El documentio solicitado no fue encontrado.",
|
|
158
|
+
"locale": "Configuración Regional",
|
|
159
|
+
"localize": "Traducir...",
|
|
160
|
+
"localizeContent": "Traducir Contenido",
|
|
161
|
+
"localized": "El {{ type }} {{ title }} ha sido traducido a la configuración regional {{ locale }}",
|
|
162
|
+
"localizeAllRelated": "Traducir a configuración regional todos los documentos relacionados y sobrescribir documentos existentes",
|
|
163
|
+
"localizeNewRelated": "Traducir nuevos documentos relacionados",
|
|
164
|
+
"localizingBusy": "Traduciendo Contenido a Configuración Regional",
|
|
165
|
+
"login": "Inicio de Sesión",
|
|
166
|
+
"loginDisabled": "Acceso Deshabilitado",
|
|
167
|
+
"loginPageBothRequired": "El usuario y la contraseña son requeridos.",
|
|
168
|
+
"loginPageBadCredentials": "Sus credenciales son incorrectas, o no existe dicho usuario",
|
|
169
|
+
"loginPageTitle": "Ingresar",
|
|
170
|
+
"loginRequired": "Inicio de Sesión Obligatorio",
|
|
171
|
+
"logOut": "Cerrar Sesión",
|
|
172
|
+
"logOutNotLoggedIn": "No había iniciado su sesión.",
|
|
173
|
+
"manageDocType": "Administrar {{ type }}",
|
|
174
|
+
"manageDraftSubmissions": "Administrar Propuestas de Borrador",
|
|
175
|
+
"managePages": "Administrar Páginas",
|
|
176
|
+
"mediaCreatedDate": "Subido: {{ createdDate }}",
|
|
177
|
+
"mediaDimensions": "Dimensiones: {{ width }} 𝗑 {{ height }}",
|
|
178
|
+
"mediaFileSize": "Tamaño del Archivo: {{ fileSize }}",
|
|
179
|
+
"mediaKB": "{{ size }}KB",
|
|
180
|
+
"mediaMB": "{{ size }}MB",
|
|
181
|
+
"mediaUploadViaDrop": "Añadalos cuando esté listo",
|
|
182
|
+
"mediaUploadViaExplorer": "O dele clic para abrir el explorador",
|
|
183
|
+
"modify": "Modificar",
|
|
184
|
+
"modifyOrDelete": "Modificar / Borrar",
|
|
185
|
+
"moreOptions": "Más Opciones",
|
|
186
|
+
"moreOperations": "Más Operaciones",
|
|
187
|
+
"multipleEditors": "Varios Editores",
|
|
188
|
+
"newDocType": "Nuevo {{ type }}",
|
|
189
|
+
"newItem": "Nuevo Elemento",
|
|
190
|
+
"newPage": "Nueva Página",
|
|
191
|
+
"newSearch": "Nueva Búsqueda",
|
|
192
|
+
"next": "Siguiente",
|
|
193
|
+
"nextPage": "Siguiente Página",
|
|
194
|
+
"no": "No",
|
|
195
|
+
"noDraftSubmissions": "Ninguna Propuesta de Borrador a Administrar",
|
|
196
|
+
"noItemsSelected": "Ningún Elemento Seleccionado",
|
|
197
|
+
"noJustSwitchLocales": "No, sólo cambiar de configuración regional",
|
|
198
|
+
"noLongerPublished": "Ya no está publicado.",
|
|
199
|
+
"noMediaFound": "Ningun archivo multimedia encontrado",
|
|
200
|
+
"noNewRelatedDocuments": "Aunque este documento tiene documentos relacionados, ninguno de ellos es nuevo para las configuraciones regionales que ha seleccionado.",
|
|
201
|
+
"none": "Ningún",
|
|
202
|
+
"notFound": "No encontrado.",
|
|
203
|
+
"notFoundPageMessage": "No podemos encontrar la página que busca.",
|
|
204
|
+
"notFoundPageStatusCode": "404",
|
|
205
|
+
"notFoundPageTitle": "404 - Página no encontrada",
|
|
206
|
+
"notInLocale": "La página actual no existe en {{ label }}. ¿Traducir la versión desde la configuración regional {{ currentLocale }}?",
|
|
207
|
+
"noTypeFound": "Ningún {{ type }} Ecnontrado",
|
|
208
|
+
"parentNotLocalized": "Primero traduzca la configuración regional de la página principal",
|
|
209
|
+
"notYetPublished": "Este documento aún no ha sido publicado.",
|
|
210
|
+
"nudgeDown": "Mover Hacia Arriba",
|
|
211
|
+
"nudgeUp": "Mover Hacia Abajo",
|
|
212
|
+
"office": "Oficina",
|
|
213
|
+
"openGlobal": "Abrir Configuración Global del Sitio",
|
|
214
|
+
"page": "Página",
|
|
215
|
+
"pageDoesNotExistYet": "La Página Aún No Existe",
|
|
216
|
+
"pageDoesNotExistYetDescription": "La página que provee un listado para este tipo de pieza aún no esta disponible en {{ mode }} en la configuración regional {{ locale }}.",
|
|
217
|
+
"pageIsParked": "Esta página esta aparcada y no se puede mover",
|
|
218
|
+
"pageNumber": "Página {{ number }}",
|
|
219
|
+
"pageTitle": "Título de la Página",
|
|
220
|
+
"pages": "Páginas",
|
|
221
|
+
"piecePermissionsIntro": "Piezas son contenido estructurado. Se utilizan para contenido como artículos, eventos, productos, categorías, etc.",
|
|
222
|
+
"piecePermissionsPieceTypeList": "Este sitio incluye las piezas:",
|
|
223
|
+
"richTextAlignCenter": "Alinear al Centro",
|
|
224
|
+
"richTextAlignJustify": "Alinear Justificar",
|
|
225
|
+
"richTextAlignLeft": "Alinear a la Izquierda",
|
|
226
|
+
"richTextAlignRight": "Alinear a la Derecha",
|
|
227
|
+
"richTextBlockquote": "Bloque",
|
|
228
|
+
"richTextBold": "Negrita",
|
|
229
|
+
"richTextBulletedList": "Lista con Puntos",
|
|
230
|
+
"richTextCodeBlock": "Bloque de Código",
|
|
231
|
+
"richTextHighlight": "Marcador",
|
|
232
|
+
"richTextHorizontalRule": "Regla Horizontal",
|
|
233
|
+
"richTextItalic": "Cursiva",
|
|
234
|
+
"richTextLink": "Liga",
|
|
235
|
+
"richTextParagraph": "Párrafo (P)",
|
|
236
|
+
"richTextH2": "Título 2 (H2)",
|
|
237
|
+
"richTextH3": "Título 3 (H3)",
|
|
238
|
+
"richTextH4": "Título 4 (H4)",
|
|
239
|
+
"richTextOrderedList": "Lista Ordenada",
|
|
240
|
+
"richTextRedo": "Rehacer",
|
|
241
|
+
"richTextStrikethrough": "Tachar",
|
|
242
|
+
"richTextStyles": "Estilos",
|
|
243
|
+
"richTextUnderline": "Subrayar",
|
|
244
|
+
"richTextUndo": "Deshacer",
|
|
245
|
+
"richTextStyleConfigWarning": "Estilo de texto enriquecido mal configurado: etiqueta: {{ label }}, {{ tag }}",
|
|
246
|
+
"password": "Contraseña",
|
|
247
|
+
"passwordResetRequest": "Su solicitud para reestablecer su contraseña en {{ site }}",
|
|
248
|
+
"pasteWidget": "Pegar {{ widget }}",
|
|
249
|
+
"pending": "Pendiente",
|
|
250
|
+
"pendingUpdates": "Actualizaciones Pendientes",
|
|
251
|
+
"permissions": "Autorizaciones",
|
|
252
|
+
"pieceContent": "Contenido Pieza",
|
|
253
|
+
"preview": "Vista Previa",
|
|
254
|
+
"previewTooltip": "Activar o Desactivar Modo Vista Previa",
|
|
255
|
+
"provideButtonLabel": "Proporcione un Texto para el Botón",
|
|
256
|
+
"previousPage": "Página Previa",
|
|
257
|
+
"public": "Público",
|
|
258
|
+
"modernBuild": "JavaScript y Sass moderno orientado al público",
|
|
259
|
+
"ie11Build": "JavaScript y Sass (edición IE11) moderno orientado al público",
|
|
260
|
+
"publish": "Publicar",
|
|
261
|
+
"publishBeforeUsingTooltip": "Publique este contenido antes de utilizarlo en una relación",
|
|
262
|
+
"published": "Publicado",
|
|
263
|
+
"rawCssAndJs": "CSS y JS Sin Procesar",
|
|
264
|
+
"rawHtml": "HTML Sin Procesar",
|
|
265
|
+
"rawHtmlCode": "HTML Sin Procesar (Código)",
|
|
266
|
+
"rawHtmlCodeHelp": "Cuidado al añadir código de terceros, ya que puede quebrar la funcionalidad de edición del sitio. Si una página no se puede utilizar, añada \"?safe_mode=1\" a la dirección URL para que funcione temporalmente sin que se cargue el codigo problemático.",
|
|
267
|
+
"redo": "Rehacer",
|
|
268
|
+
"redoTooltip": "Rehacer Cambios",
|
|
269
|
+
"redoTooltipNoChanges": "Ningun cambio por rehacer",
|
|
270
|
+
"redoFailed": "Esta operación no se pudo rehacer.",
|
|
271
|
+
"remove": "Eliminar",
|
|
272
|
+
"removeItem": "Eliminar Elemento",
|
|
273
|
+
"removeLink": "Eliminar Liga",
|
|
274
|
+
"replace": "Reemplazar",
|
|
275
|
+
"refreshForRawHtml": "Refresca la página para mirar HTML sin procesar.",
|
|
276
|
+
"relatedDocOverwriteWarning": "Si un documento relacionado existe en la configuracion regional destino, será sobrescrito por el documento entrante. Esto puede resultar en la pérdida de trabajo de traducción.",
|
|
277
|
+
"relatedDocSettings": "Configuraciones de Documentos Relacionados",
|
|
278
|
+
"relatedDocTypesToLocalize": "Tipos de documentos relacionados a traducir",
|
|
279
|
+
"relatedDocsOnly": "Únicamente documentos relacionados",
|
|
280
|
+
"relatedDocsDefinition": "Documentos relacionados son documentos referenciados por este documento. Esto normalmente incluye imágenes, contendio definido por relaciones, etc.",
|
|
281
|
+
"restore": "Restuarar",
|
|
282
|
+
"resolveErrorsBeforeSaving": "Corriga los errores antes de guardar.",
|
|
283
|
+
"resolveErrorsFirst": "Primero corriga los errores.",
|
|
284
|
+
"restoreOnlyThisPage": "Restaurar solo esta Página",
|
|
285
|
+
"restoreThisPageAndSubpages": "Restuarar esta página y subpáginas",
|
|
286
|
+
"restoreType": "Restaurar {{ type }}",
|
|
287
|
+
"restoreTypeAffirmativeLabel": "Sí, restaurar {{ type }}",
|
|
288
|
+
"restoredPrevious": "Versión previamente publicada ha sido restaurada.",
|
|
289
|
+
"resumeEditing": "Continuar Editando",
|
|
290
|
+
"returnToPage": "Regresar a {{ label }}",
|
|
291
|
+
"retryingSaveDocument": "Reintentando guardar documento...",
|
|
292
|
+
"richText": "Texto Enriquecido",
|
|
293
|
+
"safeModeActive": "Trabajando en modo seguro, HTML sin procesar no aparece.",
|
|
294
|
+
"save": "Guardar",
|
|
295
|
+
"saveType": "Guardar {{ type }}",
|
|
296
|
+
"saveDraft": "Guardar Borrador",
|
|
297
|
+
"saveDraftDescription": "Guardar cómo borrador para publicar más tarde.",
|
|
298
|
+
"saveDraftAndCreateNew": "Guardar Borrador y Crear Nuevo",
|
|
299
|
+
"saveDraftAndCreateNewDescription": "Guardar cómo borrador y crear nuevo {{ typeLabel }}.",
|
|
300
|
+
"saveDraftAndPreview": "Guardar Borrador y Mirar Vista Previa",
|
|
301
|
+
"saveDraftAndPreviewDescription": "Guardar cómo borrador y mirar la vista previa de {{ typeLabel }}.",
|
|
302
|
+
"savingDocument": "Guardando documento...",
|
|
303
|
+
"searchDocType": "Buscar {{ type }}",
|
|
304
|
+
"searchLabel": "Buscar Página",
|
|
305
|
+
"searchLocales": "Buscar Configuraciones Regionales",
|
|
306
|
+
"searchLocalesPlaceholder": "Buscar configuraciones regionales...",
|
|
307
|
+
"select": "Seleccionar",
|
|
308
|
+
"selectedMenuItem": "✓ {{ label }}",
|
|
309
|
+
"selectAll": "Seleccionar Todo",
|
|
310
|
+
"deselectAll": "Deseleccionar Todo",
|
|
311
|
+
"selectContent": "Seleccionar Contenido",
|
|
312
|
+
"selectContentToLocalize": "¿Cual contenido quiere traducir?",
|
|
313
|
+
"selectPage": "Seleccionar Página",
|
|
314
|
+
"selectOneLabel": "Seleccionar {{ typeLabel }}",
|
|
315
|
+
"selectManyLabel": "Seleccionar {{ typeLabel }}",
|
|
316
|
+
"selectLocales": "Seleccionar Configuración Regional",
|
|
317
|
+
"sentenceJoiner": " ",
|
|
318
|
+
"visibilityHelp": "Seleccione si este contenido es público o privado",
|
|
319
|
+
"slug": "Slug",
|
|
320
|
+
"slugInUse": "Este slug ya está en uso",
|
|
321
|
+
"someoneElseTookControl": "{{ who }} tomó control de este documento en otra pestaña o ventana. Un documento solo puede ser editado en un lugar a la vez.",
|
|
322
|
+
"submit": "Enviar",
|
|
323
|
+
"submitted": "Enviado",
|
|
324
|
+
"submittedDraft": "Borrador Enviado",
|
|
325
|
+
"submittedForReview": "Enviado a Administradores y Editores para revisión",
|
|
326
|
+
"submitUpdate": "Enviar Actualización",
|
|
327
|
+
"suggestionsHeader": "Intente una de estas sugerencias:",
|
|
328
|
+
"switchLocalesAndLocalizePage": "¿Cambiar de configuracion regional y traducir la página a la configuracion regional {{ label }}?",
|
|
329
|
+
"tags": "Etiquetas",
|
|
330
|
+
"tagYourImages": "Etiquete sus imágenes para facilitar la busqueda y filtrado en el gestor multimedia",
|
|
331
|
+
"takeActionAndCreateNew": "{{ saveLabel }} y Mirar",
|
|
332
|
+
"takeActionAndView": "{{ saveLabel }} y Mirar",
|
|
333
|
+
"takeControlFromOther": "{{ who }} está editando ese documento. ¿Quiere tomar el control?",
|
|
334
|
+
"takeControlFromSelf": "Está editando ese documento en otra pestaña o ventana. ¿Quiere tomar control en esta pestaña?",
|
|
335
|
+
"thereAreActiveChanges": "Este documento tiene cambios en curso.",
|
|
336
|
+
"thereWasAnIssueLocalizing": "Hubo un problema al traducir cierto contenido:",
|
|
337
|
+
"title": "Título",
|
|
338
|
+
"thisDocument": "Este documento",
|
|
339
|
+
"thisDocumentAndRelated": "Este documento y documentos relacionados",
|
|
340
|
+
"toggleEditMode": "Activar o Desactivar Modo Editar",
|
|
341
|
+
"toggleSection": "Activar o desactivar sección",
|
|
342
|
+
"toggleSelectionOf": "Activar o desactivar selección de {{ title }}",
|
|
343
|
+
"treeError": "Ocurrió un error al actualizar el árbol web.",
|
|
344
|
+
"type": "Tipo",
|
|
345
|
+
"typeWithCount": "{{ type }} ({{ count }})",
|
|
346
|
+
"unableToSwitchModes": "No se pudo cambiar de modo.",
|
|
347
|
+
"undo": "Revertir",
|
|
348
|
+
"undoTooltip": "Revertir Cambio",
|
|
349
|
+
"undoTooltipNoChanges": "Ningun Cambio que Revertir",
|
|
350
|
+
"undoFailed": "La operación no se pudo revertir",
|
|
351
|
+
"undoPublish": "Revertir Publicación",
|
|
352
|
+
"ungrouped": "Desagrupado",
|
|
353
|
+
"ungroupedWidgets": "Componentes Desagrupados",
|
|
354
|
+
"unpublish": "Despublicar",
|
|
355
|
+
"unpublishedParent": "Una o más páginas principales no han sido publicadas",
|
|
356
|
+
"unpublishedParentDescription": "Para publicar esta página, también debe publicar las siguientes páginas: {{ unpublishedParents }}.\n¿Quiere hacer eso ahora?",
|
|
357
|
+
"unsavedChanges": "Cambios no Guardados",
|
|
358
|
+
"update": "Actualizar",
|
|
359
|
+
"updateAndRedirect": "{{ saveLabel }} actualizaciones y navegar a {{ typeLabel }}.",
|
|
360
|
+
"updateAndReturn": "{{ saveLabel }} actualizaciones y regresar al listado de {{ typeLabel }}.",
|
|
361
|
+
"updateAndNew": "{{ saveLabel }} actualizaciones y crear nuevo {{ typeLabel }}.",
|
|
362
|
+
"updated": "Actualizado",
|
|
363
|
+
"uploadError": "Error al Subir",
|
|
364
|
+
"uploadForbidden": "No tiene permiso para subir un archivo",
|
|
365
|
+
"uploaded": "Archivo fue subido exitosamente",
|
|
366
|
+
"uploaded_plural": "{{ count }} Archivos exitosamente subidos",
|
|
367
|
+
"uploadedMediaPlaceholder": "Multimedia subida aparecerá aquí",
|
|
368
|
+
"uploading": "Subiendo {{ name }}",
|
|
369
|
+
"user": "Usuario",
|
|
370
|
+
"username": "Nombre de Usuario",
|
|
371
|
+
"users": "Usuarios",
|
|
372
|
+
"utility": "Utilidad",
|
|
373
|
+
"video": "Video",
|
|
374
|
+
"videoUrl": "Dirección URL del Video",
|
|
375
|
+
"videoUrlHelp": "Ingresa la dirección URL del video que quiere insertar (e.j., YouTube, Vimeo, o otra dirección URL de video).",
|
|
376
|
+
"view": "Mirar",
|
|
377
|
+
"visibility": "Visibilidad",
|
|
378
|
+
"willMoveImageToArchive": "Esto moverá la imagen al archivo de documentos.",
|
|
379
|
+
"yes": "Sí",
|
|
380
|
+
"yesLocalizeAndSwitchLocales": "Sí, traducir esta página y cambiar de configuración regional",
|
|
381
|
+
"youTookControl": "Tomó el control de este documento en otra pestaña o ventana. Un documento sólo puede ser editado en un lugar a la vez."
|
|
382
|
+
}
|