@plone/volto 18.0.0-alpha.46 → 18.0.0-alpha.48

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.
Files changed (84) hide show
  1. package/.eslintrc +0 -1
  2. package/CHANGELOG.md +64 -0
  3. package/locales/ca/LC_MESSAGES/volto.po +82 -15
  4. package/locales/ca.json +1 -1
  5. package/locales/de/LC_MESSAGES/volto.po +87 -20
  6. package/locales/de.json +1 -1
  7. package/locales/en/LC_MESSAGES/volto.po +82 -15
  8. package/locales/en.json +1 -1
  9. package/locales/es/LC_MESSAGES/volto.po +82 -15
  10. package/locales/es.json +1 -1
  11. package/locales/eu/LC_MESSAGES/volto.po +82 -15
  12. package/locales/eu.json +1 -1
  13. package/locales/fi/LC_MESSAGES/volto.po +82 -15
  14. package/locales/fi.json +1 -1
  15. package/locales/fr/LC_MESSAGES/volto.po +82 -15
  16. package/locales/fr.json +1 -1
  17. package/locales/hi/LC_MESSAGES/volto.po +82 -15
  18. package/locales/hi.json +1 -1
  19. package/locales/it/LC_MESSAGES/volto.po +82 -15
  20. package/locales/it.json +1 -1
  21. package/locales/ja/LC_MESSAGES/volto.po +82 -15
  22. package/locales/ja.json +1 -1
  23. package/locales/nl/LC_MESSAGES/volto.po +82 -15
  24. package/locales/nl.json +1 -1
  25. package/locales/pt/LC_MESSAGES/volto.po +82 -15
  26. package/locales/pt.json +1 -1
  27. package/locales/pt_BR/LC_MESSAGES/volto.po +82 -15
  28. package/locales/pt_BR.json +1 -1
  29. package/locales/ro/LC_MESSAGES/volto.po +82 -15
  30. package/locales/ro.json +1 -1
  31. package/locales/volto.pot +83 -16
  32. package/locales/zh_CN/LC_MESSAGES/volto.po +82 -15
  33. package/locales/zh_CN.json +1 -1
  34. package/package.json +11 -9
  35. package/razzle.config.js +8 -5
  36. package/src/actions/aliases/aliases.js +27 -7
  37. package/src/actions/aliases/aliases.test.js +1 -1
  38. package/src/components/manage/Blocks/Block/Edit.jsx +1 -2
  39. package/src/components/manage/Blocks/Block/EditBlockWrapper.jsx +5 -2
  40. package/src/components/manage/Blocks/Block/StyleWrapper.jsx +1 -1
  41. package/src/components/manage/Blocks/Listing/getAsyncData.js +8 -0
  42. package/src/components/manage/Blocks/ToC/View.jsx +18 -7
  43. package/src/components/manage/Blocks/ToC/variations/DefaultTocRenderer.jsx +2 -20
  44. package/src/components/manage/Blocks/ToC/variations/HorizontalMenu.jsx +2 -19
  45. package/src/components/manage/Controlpanels/Aliases.jsx +499 -412
  46. package/src/components/manage/Controlpanels/Aliases.test.jsx +7 -0
  47. package/src/components/manage/Edit/Edit.jsx +7 -3
  48. package/src/components/manage/Form/ModalForm.jsx +3 -1
  49. package/src/components/manage/Toolbar/PersonalTools.jsx +7 -7
  50. package/src/components/manage/Toolbar/PersonalTools.test.jsx +71 -0
  51. package/src/components/manage/Widgets/IdWidget.jsx +6 -7
  52. package/src/components/theme/App/App.jsx +2 -0
  53. package/src/components/theme/App/App.test.jsx +4 -3
  54. package/src/components/theme/Login/Login.jsx +1 -2
  55. package/src/components/theme/RouteAnnouncer/RouteAnnouncer.jsx +64 -0
  56. package/src/constants/ActionTypes.js +1 -0
  57. package/src/express-middleware/static.js +2 -2
  58. package/src/helpers/Api/Api.js +12 -1
  59. package/src/helpers/Blocks/Blocks.js +73 -33
  60. package/src/helpers/Blocks/Blocks.test.js +204 -27
  61. package/src/middleware/api.js +3 -0
  62. package/src/reducers/content/content.js +12 -0
  63. package/src/start-server.js +2 -5
  64. package/types/actions/aliases/aliases.d.ts +8 -1
  65. package/types/components/manage/Blocks/ToC/View.d.ts +1 -4
  66. package/types/components/manage/Blocks/ToC/variations/DefaultTocRenderer.d.ts +10 -5
  67. package/types/components/manage/Blocks/ToC/variations/HorizontalMenu.d.ts +10 -5
  68. package/types/components/manage/Blocks/ToC/variations/index.d.ts +16 -4
  69. package/types/components/manage/Contents/__mocks__/index.d.ts +0 -1
  70. package/types/components/manage/Controlpanels/Relations/RelationsMatrix.d.ts +1 -1
  71. package/types/components/manage/Controlpanels/index.d.ts +0 -1
  72. package/types/components/manage/Form/__mocks__/index.d.ts +0 -1
  73. package/types/components/manage/Form/index.d.ts +0 -1
  74. package/types/components/manage/Multilingual/ManageTranslations.d.ts +1 -1
  75. package/types/components/manage/Sidebar/ObjectBrowser.d.ts +1 -1
  76. package/types/components/manage/Widgets/InternalUrlWidget.d.ts +1 -1
  77. package/types/components/manage/Widgets/UrlWidget.d.ts +1 -1
  78. package/types/components/manage/Widgets/__mocks__/index.d.ts +0 -1
  79. package/types/components/manage/Widgets/index.d.ts +2 -3
  80. package/types/components/theme/RouteAnnouncer/RouteAnnouncer.d.ts +2 -0
  81. package/types/config/slots.d.ts +1 -1
  82. package/types/constants/ActionTypes.d.ts +1 -0
  83. package/types/helpers/Blocks/Blocks.d.ts +10 -1
  84. package/types/helpers/Helmet/Helmet.d.ts +1 -1
package/locales/volto.pot CHANGED
@@ -1,7 +1,7 @@
1
1
  msgid ""
2
2
  msgstr ""
3
3
  "Project-Id-Version: Plone\n"
4
- "POT-Creation-Date: 2024-09-19T10:10:37.548Z\n"
4
+ "POT-Creation-Date: 2024-10-24T16:41:21.354Z\n"
5
5
  "Last-Translator: Plone i18n <plone-i18n@lists.sourceforge.net>\n"
6
6
  "Language-Team: Plone i18n <plone-i18n@lists.sourceforge.net>\n"
7
7
  "Content-Type: text/plain; charset=utf-8\n"
@@ -70,7 +70,6 @@ msgstr ""
70
70
 
71
71
  #. Default: "Add"
72
72
  #: components/manage/Aliases/Aliases
73
- #: components/manage/Controlpanels/Aliases
74
73
  #: components/manage/Controlpanels/ContentTypes
75
74
  #: components/manage/Controlpanels/Rules/ConfigureRule
76
75
  #: components/manage/Rules/Rules
@@ -90,6 +89,11 @@ msgstr ""
90
89
  msgid "Add Addons"
91
90
  msgstr ""
92
91
 
92
+ #. Default: "Add Alternative URL"
93
+ #: components/manage/Controlpanels/Aliases
94
+ msgid "Add Alternative URL"
95
+ msgstr ""
96
+
93
97
  #. Default: "Add Content…"
94
98
  #: components/manage/Toolbar/Types
95
99
  msgid "Add Content"
@@ -306,6 +310,16 @@ msgstr ""
306
310
  msgid "Alias has been added"
307
311
  msgstr ""
308
312
 
313
+ #. Default: "Aliases have been removed."
314
+ #: components/manage/Controlpanels/Aliases
315
+ msgid "Aliases have been removed."
316
+ msgstr ""
317
+
318
+ #. Default: "Aliases have been uploaded."
319
+ #: components/manage/Controlpanels/Aliases
320
+ msgid "Aliases have been uploaded."
321
+ msgstr ""
322
+
309
323
  #. Default: "Alignment"
310
324
  #: components/manage/Blocks/Image/schema
311
325
  #: components/manage/Blocks/LeadImage/LeadImageSidebar
@@ -325,7 +339,7 @@ msgstr ""
325
339
  msgid "All content"
326
340
  msgstr ""
327
341
 
328
- #. Default: "All existing alternative urls for this site"
342
+ #. Default: "Existing alternative URLs for this site"
329
343
  #: components/manage/Controlpanels/Aliases
330
344
  msgid "All existing alternative urls for this site"
331
345
  msgstr ""
@@ -352,7 +366,7 @@ msgstr ""
352
366
  msgid "Alt text hint link text"
353
367
  msgstr ""
354
368
 
355
- #. Default: "Alternative url path (Required)"
369
+ #. Default: "Alternative URL path (Required)"
356
370
  #: components/manage/Controlpanels/Aliases
357
371
  msgid "Alternative url path (Required)"
358
372
  msgstr ""
@@ -363,7 +377,7 @@ msgstr ""
363
377
  msgid "Alternative url path must start with a slash."
364
378
  msgstr ""
365
379
 
366
- #. Default: "Alternative url path → target url path (date and time of creation, manually created yes/no)"
380
+ #. Default: "Alternative URL path → target URL path (date and time of creation, manually created yes/no)"
367
381
  #: components/manage/Controlpanels/Aliases
368
382
  msgid "Alternative url path → target url path (date and time of creation, manually created yes/no)"
369
383
  msgstr ""
@@ -414,6 +428,11 @@ msgstr ""
414
428
  msgid "Assignments"
415
429
  msgstr ""
416
430
 
431
+ #. Default: "Automatically"
432
+ #: components/manage/Controlpanels/Aliases
433
+ msgid "Automatically"
434
+ msgstr ""
435
+
417
436
  #. Default: "Available"
418
437
  #: components/manage/Controlpanels/AddonsControlpanel
419
438
  msgid "Available"
@@ -473,6 +492,11 @@ msgstr ""
473
492
  msgid "Block"
474
493
  msgstr ""
475
494
 
495
+ #. Default: "Both"
496
+ #: components/manage/Controlpanels/Aliases
497
+ msgid "Both"
498
+ msgstr ""
499
+
476
500
  #. Default: "Both email address and password are case sensitive, check that caps lock is not enabled."
477
501
  #: components/theme/Login/Login
478
502
  msgid "Both email address and password are case sensitive, check that caps lock is not enabled."
@@ -499,11 +523,21 @@ msgstr ""
499
523
  msgid "Browse the site, drop an image, or type a URL"
500
524
  msgstr ""
501
525
 
526
+ #. Default: "Bulk upload CSV"
527
+ #: components/manage/Controlpanels/Aliases
528
+ msgid "BulkUploadAltUrls"
529
+ msgstr ""
530
+
502
531
  #. Default: "By default, permissions from the container of this item are inherited. If you disable this, only the explicitly defined sharing permissions will be valid. In the overview, the symbol {inherited} indicates an inherited value. Similarly, the symbol {global} indicates a global role, which is managed by the site administrator."
503
532
  #: components/manage/Sharing/Sharing
504
533
  msgid "By default, permissions from the container of this item are inherited. If you disable this, only the explicitly defined sharing permissions will be valid. In the overview, the symbol {inherited} indicates an inherited value. Similarly, the symbol {global} indicates a global role, which is managed by the site administrator."
505
534
  msgstr ""
506
535
 
536
+ #. Default: "CSV file"
537
+ #: components/manage/Controlpanels/Aliases
538
+ msgid "CSVFile"
539
+ msgstr ""
540
+
507
541
  #. Default: "Cache Name"
508
542
  #: components/manage/Controlpanels/DatabaseInformation
509
543
  msgid "Cache Name"
@@ -832,6 +866,16 @@ msgstr ""
832
866
  msgid "Create working copy"
833
867
  msgstr ""
834
868
 
869
+ #. Default: "Created after"
870
+ #: components/manage/Controlpanels/Aliases
871
+ msgid "Created after"
872
+ msgstr ""
873
+
874
+ #. Default: "Created before"
875
+ #: components/manage/Controlpanels/Aliases
876
+ msgid "Created before"
877
+ msgstr ""
878
+
835
879
  #. Default: "Created by {creator} on {date}"
836
880
  #: components/manage/WorkingCopyToastsFactory/WorkingCopyToastsFactory
837
881
  msgid "Created by {creator} on {date}"
@@ -1178,6 +1222,11 @@ msgstr ""
1178
1222
  msgid "Edit"
1179
1223
  msgstr ""
1180
1224
 
1225
+ #. Default: "Edit Alternative URL"
1226
+ #: components/manage/Controlpanels/Aliases
1227
+ msgid "Edit Alternative URL"
1228
+ msgstr ""
1229
+
1181
1230
  #. Default: "Edit Rule"
1182
1231
  #: components/manage/Controlpanels/Rules/EditRule
1183
1232
  msgid "Edit Rule"
@@ -1289,14 +1338,18 @@ msgstr ""
1289
1338
  msgid "Enter map Embed Code"
1290
1339
  msgstr ""
1291
1340
 
1292
- #. Default: "Enter the absolute path of the target. Target must exist or be an existing alternative url path to the target."
1341
+ #. Default: "Enter the absolute path of the target. Target must exist or be an existing alternative URL path to the target."
1293
1342
  #: components/manage/Controlpanels/Aliases
1294
1343
  msgid "Enter the absolute path of the target. Target must exist or be an existing alternative url path to the target."
1295
1344
  msgstr ""
1296
1345
 
1346
+ #. Default: "Enter the absolute path where the alternative URL should exist. The path must start with '/'. Only URLs that result in a 404 not found page will result in a redirect occurring."
1347
+ #: components/manage/Controlpanels/Aliases
1348
+ msgid "Enter the absolute path where the alternative url should exist. The path must start with '/'. Only URLs that result in a 404 not found page will result in a redirect occurring."
1349
+ msgstr ""
1350
+
1297
1351
  #. Default: "Enter the absolute path where the alternative url should exist. The path must start with '/'. Only urls that result in a 404 not found page will result in a redirect occurring."
1298
1352
  #: components/manage/Aliases/Aliases
1299
- #: components/manage/Controlpanels/Aliases
1300
1353
  msgid "Enter the absolute path where the alternative url should exist. The path must start with '/'. Only urls that result in a 404 not found page will result in a redirect occurring."
1301
1354
  msgstr ""
1302
1355
 
@@ -1342,11 +1395,6 @@ msgstr ""
1342
1395
  msgid "Error"
1343
1396
  msgstr ""
1344
1397
 
1345
- #. Default: "Error"
1346
- #: components/manage/Controlpanels/Aliases
1347
- msgid "ErrorHeader"
1348
- msgstr ""
1349
-
1350
1398
  #. Default: "Event"
1351
1399
  #: components/manage/Controlpanels/Rules/Rules
1352
1400
  msgid "Event"
@@ -1372,6 +1420,11 @@ msgstr ""
1372
1420
  msgid "Event view"
1373
1421
  msgstr ""
1374
1422
 
1423
+ #. Default: "Example"
1424
+ #: components/manage/Controlpanels/Aliases
1425
+ msgid "Example"
1426
+ msgstr ""
1427
+
1375
1428
  #. Default: "Exclude from navigation"
1376
1429
  #: components/manage/Contents/ContentsPropertiesModal
1377
1430
  msgid "Exclude from navigation"
@@ -1483,6 +1536,7 @@ msgid "Files uploaded: {uploadedFiles}"
1483
1536
  msgstr ""
1484
1537
 
1485
1538
  #. Default: "Filter"
1539
+ #: components/manage/Controlpanels/Aliases
1486
1540
  #: helpers/MessageLabels/MessageLabels
1487
1541
  msgid "Filter"
1488
1542
  msgstr ""
@@ -1492,7 +1546,7 @@ msgstr ""
1492
1546
  msgid "Filter Rules:"
1493
1547
  msgstr ""
1494
1548
 
1495
- #. Default: "Filter by prefix"
1549
+ #. Default: "Filter by path"
1496
1550
  #: components/manage/Controlpanels/Aliases
1497
1551
  msgid "Filter by prefix"
1498
1552
  msgstr ""
@@ -2143,6 +2197,11 @@ msgstr ""
2143
2197
  msgid "Manual"
2144
2198
  msgstr ""
2145
2199
 
2200
+ #. Default: "Manually"
2201
+ #: components/manage/Controlpanels/Aliases
2202
+ msgid "Manually"
2203
+ msgstr ""
2204
+
2146
2205
  #. Default: "Manually or automatically added?"
2147
2206
  #: components/manage/Controlpanels/Aliases
2148
2207
  msgid "Manually or automatically added?"
@@ -3559,8 +3618,7 @@ msgid "Table"
3559
3618
  msgstr ""
3560
3619
 
3561
3620
  #. Default: "Table of Contents"
3562
- #: components/manage/Blocks/ToC/variations/DefaultTocRenderer
3563
- #: components/manage/Blocks/ToC/variations/HorizontalMenu
3621
+ #: components/manage/Blocks/ToC/View
3564
3622
  msgid "Table of Contents"
3565
3623
  msgstr ""
3566
3624
 
@@ -3587,7 +3645,6 @@ msgstr ""
3587
3645
 
3588
3646
  #. Default: "Target"
3589
3647
  #: components/manage/Blocks/Teaser/schema
3590
- #: components/manage/Controlpanels/Aliases
3591
3648
  #: components/manage/Controlpanels/Relations/BrokenRelations
3592
3649
  #: components/manage/Controlpanels/Relations/RelationsMatrix
3593
3650
  msgid "Target"
@@ -4428,6 +4485,11 @@ msgstr ""
4428
4485
  msgid "box_forgot_password_option"
4429
4486
  msgstr ""
4430
4487
 
4488
+ #. Default: "Add many alternative URLs at once by uploading a CSV file. The first column should be the path to redirect from; the second, the path to redirect to. Both paths must be Plone-site-relative, starting with a slash (/). An optional third column can contain a date and time. An optional fourth column can contain a boolean to mark as a manual redirect (default true)."
4489
+ #: components/manage/Controlpanels/Aliases
4490
+ msgid "bulkUploadUrlsHelp"
4491
+ msgstr ""
4492
+
4431
4493
  #. Default: "Checkbox"
4432
4494
  #: config/Blocks
4433
4495
  msgid "checkboxFacet"
@@ -4538,6 +4600,11 @@ msgstr ""
4538
4600
  msgid "event_where"
4539
4601
  msgstr ""
4540
4602
 
4603
+ #. Default: "/example"
4604
+ #: components/manage/Controlpanels/Aliases
4605
+ msgid "examplePath"
4606
+ msgstr ""
4607
+
4541
4608
  #. Default: "This website does not accept files larger than {limit}"
4542
4609
  #: helpers/MessageLabels/MessageLabels
4543
4610
  msgid "fileTooLarge"
@@ -74,7 +74,6 @@ msgstr "在此页面中活动的内容规则"
74
74
 
75
75
  #. Default: "Add"
76
76
  #: components/manage/Aliases/Aliases
77
- #: components/manage/Controlpanels/Aliases
78
77
  #: components/manage/Controlpanels/ContentTypes
79
78
  #: components/manage/Controlpanels/Rules/ConfigureRule
80
79
  #: components/manage/Rules/Rules
@@ -94,6 +93,11 @@ msgstr "添加(对象列表)"
94
93
  msgid "Add Addons"
95
94
  msgstr "添加附件"
96
95
 
96
+ #. Default: "Add Alternative URL"
97
+ #: components/manage/Controlpanels/Aliases
98
+ msgid "Add Alternative URL"
99
+ msgstr ""
100
+
97
101
  #. Default: "Add Content…"
98
102
  #: components/manage/Toolbar/Types
99
103
  msgid "Add Content"
@@ -310,6 +314,16 @@ msgstr "别名"
310
314
  msgid "Alias has been added"
311
315
  msgstr "别名已添加"
312
316
 
317
+ #. Default: "Aliases have been removed."
318
+ #: components/manage/Controlpanels/Aliases
319
+ msgid "Aliases have been removed."
320
+ msgstr ""
321
+
322
+ #. Default: "Aliases have been uploaded."
323
+ #: components/manage/Controlpanels/Aliases
324
+ msgid "Aliases have been uploaded."
325
+ msgstr ""
326
+
313
327
  #. Default: "Alignment"
314
328
  #: components/manage/Blocks/Image/schema
315
329
  #: components/manage/Blocks/LeadImage/LeadImageSidebar
@@ -329,7 +343,7 @@ msgstr "所有"
329
343
  msgid "All content"
330
344
  msgstr "所有内容"
331
345
 
332
- #. Default: "All existing alternative urls for this site"
346
+ #. Default: "Existing alternative URLs for this site"
333
347
  #: components/manage/Controlpanels/Aliases
334
348
  msgid "All existing alternative urls for this site"
335
349
  msgstr "此网站所有的替代 urls"
@@ -356,7 +370,7 @@ msgstr "替换文本提示"
356
370
  msgid "Alt text hint link text"
357
371
  msgstr "替换文本提示链接文本"
358
372
 
359
- #. Default: "Alternative url path (Required)"
373
+ #. Default: "Alternative URL path (Required)"
360
374
  #: components/manage/Controlpanels/Aliases
361
375
  msgid "Alternative url path (Required)"
362
376
  msgstr "替代 URL 路径(必选)"
@@ -367,7 +381,7 @@ msgstr "替代 URL 路径(必选)"
367
381
  msgid "Alternative url path must start with a slash."
368
382
  msgstr "替代 URL 路径必须以斜杠开头。"
369
383
 
370
- #. Default: "Alternative url path → target url path (date and time of creation, manually created yes/no)"
384
+ #. Default: "Alternative URL path → target URL path (date and time of creation, manually created yes/no)"
371
385
  #: components/manage/Controlpanels/Aliases
372
386
  msgid "Alternative url path → target url path (date and time of creation, manually created yes/no)"
373
387
  msgstr "替代 URL 路径 → 目标 URL 路径(创建的日期和时间,手动创建 yes/no)"
@@ -418,6 +432,11 @@ msgstr ""
418
432
  msgid "Assignments"
419
433
  msgstr "分配"
420
434
 
435
+ #. Default: "Automatically"
436
+ #: components/manage/Controlpanels/Aliases
437
+ msgid "Automatically"
438
+ msgstr ""
439
+
421
440
  #. Default: "Available"
422
441
  #: components/manage/Controlpanels/AddonsControlpanel
423
442
  msgid "Available"
@@ -477,6 +496,11 @@ msgstr "基本搜索查询"
477
496
  msgid "Block"
478
497
  msgstr "块"
479
498
 
499
+ #. Default: "Both"
500
+ #: components/manage/Controlpanels/Aliases
501
+ msgid "Both"
502
+ msgstr ""
503
+
480
504
  #. Default: "Both email address and password are case sensitive, check that caps lock is not enabled."
481
505
  #: components/theme/Login/Login
482
506
  msgid "Both email address and password are case sensitive, check that caps lock is not enabled."
@@ -503,11 +527,21 @@ msgstr "浏览"
503
527
  msgid "Browse the site, drop an image, or type a URL"
504
528
  msgstr "浏览网站,放入一张图片,或者输入一个URL"
505
529
 
530
+ #. Default: "Bulk upload CSV"
531
+ #: components/manage/Controlpanels/Aliases
532
+ msgid "BulkUploadAltUrls"
533
+ msgstr ""
534
+
506
535
  #. Default: "By default, permissions from the container of this item are inherited. If you disable this, only the explicitly defined sharing permissions will be valid. In the overview, the symbol {inherited} indicates an inherited value. Similarly, the symbol {global} indicates a global role, which is managed by the site administrator."
507
536
  #: components/manage/Sharing/Sharing
508
537
  msgid "By default, permissions from the container of this item are inherited. If you disable this, only the explicitly defined sharing permissions will be valid. In the overview, the symbol {inherited} indicates an inherited value. Similarly, the symbol {global} indicates a global role, which is managed by the site administrator."
509
538
  msgstr "默认情况下,条目的权限从父文件夹继承,您可以禁用继承,明确设置权限。总体来说,${inherited}符号表示这是一个继承的值,${global}符号表示这是一个由网站管理员管理的全局角色。"
510
539
 
540
+ #. Default: "CSV file"
541
+ #: components/manage/Controlpanels/Aliases
542
+ msgid "CSVFile"
543
+ msgstr ""
544
+
511
545
  #. Default: "Cache Name"
512
546
  #: components/manage/Controlpanels/DatabaseInformation
513
547
  msgid "Cache Name"
@@ -836,6 +870,16 @@ msgstr ""
836
870
  msgid "Create working copy"
837
871
  msgstr "创建工作副本"
838
872
 
873
+ #. Default: "Created after"
874
+ #: components/manage/Controlpanels/Aliases
875
+ msgid "Created after"
876
+ msgstr ""
877
+
878
+ #. Default: "Created before"
879
+ #: components/manage/Controlpanels/Aliases
880
+ msgid "Created before"
881
+ msgstr ""
882
+
839
883
  #. Default: "Created by {creator} on {date}"
840
884
  #: components/manage/WorkingCopyToastsFactory/WorkingCopyToastsFactory
841
885
  msgid "Created by {creator} on {date}"
@@ -1182,6 +1226,11 @@ msgstr "邮箱地址不匹配"
1182
1226
  msgid "Edit"
1183
1227
  msgstr "编辑"
1184
1228
 
1229
+ #. Default: "Edit Alternative URL"
1230
+ #: components/manage/Controlpanels/Aliases
1231
+ msgid "Edit Alternative URL"
1232
+ msgstr ""
1233
+
1185
1234
  #. Default: "Edit Rule"
1186
1235
  #: components/manage/Controlpanels/Rules/EditRule
1187
1236
  msgid "Edit Rule"
@@ -1293,14 +1342,18 @@ msgstr "输入您的姓名,如:张三"
1293
1342
  msgid "Enter map Embed Code"
1294
1343
  msgstr "输入 map 嵌入代码"
1295
1344
 
1296
- #. Default: "Enter the absolute path of the target. Target must exist or be an existing alternative url path to the target."
1345
+ #. Default: "Enter the absolute path of the target. Target must exist or be an existing alternative URL path to the target."
1297
1346
  #: components/manage/Controlpanels/Aliases
1298
1347
  msgid "Enter the absolute path of the target. Target must exist or be an existing alternative url path to the target."
1299
1348
  msgstr "输入目标的绝对路径。目标必须存在,或者是指向目标的现有可选的url路径。"
1300
1349
 
1350
+ #. Default: "Enter the absolute path where the alternative URL should exist. The path must start with '/'. Only URLs that result in a 404 not found page will result in a redirect occurring."
1351
+ #: components/manage/Controlpanels/Aliases
1352
+ msgid "Enter the absolute path where the alternative url should exist. The path must start with '/'. Only URLs that result in a 404 not found page will result in a redirect occurring."
1353
+ msgstr ""
1354
+
1301
1355
  #. Default: "Enter the absolute path where the alternative url should exist. The path must start with '/'. Only urls that result in a 404 not found page will result in a redirect occurring."
1302
1356
  #: components/manage/Aliases/Aliases
1303
- #: components/manage/Controlpanels/Aliases
1304
1357
  msgid "Enter the absolute path where the alternative url should exist. The path must start with '/'. Only urls that result in a 404 not found page will result in a redirect occurring."
1305
1358
  msgstr "输入已存在替代 URL 的绝对路径。路径必须以 '/' 开头。只有导致404 未找到页面的url才会发生重定向。"
1306
1359
 
@@ -1346,11 +1399,6 @@ msgstr ""
1346
1399
  msgid "Error"
1347
1400
  msgstr "错误"
1348
1401
 
1349
- #. Default: "Error"
1350
- #: components/manage/Controlpanels/Aliases
1351
- msgid "ErrorHeader"
1352
- msgstr ""
1353
-
1354
1402
  #. Default: "Event"
1355
1403
  #: components/manage/Controlpanels/Rules/Rules
1356
1404
  msgid "Event"
@@ -1376,6 +1424,11 @@ msgstr ""
1376
1424
  msgid "Event view"
1377
1425
  msgstr "事件视图"
1378
1426
 
1427
+ #. Default: "Example"
1428
+ #: components/manage/Controlpanels/Aliases
1429
+ msgid "Example"
1430
+ msgstr ""
1431
+
1379
1432
  #. Default: "Exclude from navigation"
1380
1433
  #: components/manage/Contents/ContentsPropertiesModal
1381
1434
  msgid "Exclude from navigation"
@@ -1487,6 +1540,7 @@ msgid "Files uploaded: {uploadedFiles}"
1487
1540
  msgstr "已上载的文件:{uploadedFiles}"
1488
1541
 
1489
1542
  #. Default: "Filter"
1543
+ #: components/manage/Controlpanels/Aliases
1490
1544
  #: helpers/MessageLabels/MessageLabels
1491
1545
  msgid "Filter"
1492
1546
  msgstr ""
@@ -1496,7 +1550,7 @@ msgstr ""
1496
1550
  msgid "Filter Rules:"
1497
1551
  msgstr "过滤规则"
1498
1552
 
1499
- #. Default: "Filter by prefix"
1553
+ #. Default: "Filter by path"
1500
1554
  #: components/manage/Controlpanels/Aliases
1501
1555
  msgid "Filter by prefix"
1502
1556
  msgstr "按前缀过滤"
@@ -2147,6 +2201,11 @@ msgstr "管理{title}的翻译"
2147
2201
  msgid "Manual"
2148
2202
  msgstr ""
2149
2203
 
2204
+ #. Default: "Manually"
2205
+ #: components/manage/Controlpanels/Aliases
2206
+ msgid "Manually"
2207
+ msgstr ""
2208
+
2150
2209
  #. Default: "Manually or automatically added?"
2151
2210
  #: components/manage/Controlpanels/Aliases
2152
2211
  msgid "Manually or automatically added?"
@@ -3563,8 +3622,7 @@ msgid "Table"
3563
3622
  msgstr "表格"
3564
3623
 
3565
3624
  #. Default: "Table of Contents"
3566
- #: components/manage/Blocks/ToC/variations/DefaultTocRenderer
3567
- #: components/manage/Blocks/ToC/variations/HorizontalMenu
3625
+ #: components/manage/Blocks/ToC/View
3568
3626
  msgid "Table of Contents"
3569
3627
  msgstr "表格内容"
3570
3628
 
@@ -3591,7 +3649,6 @@ msgstr "移除关键词"
3591
3649
 
3592
3650
  #. Default: "Target"
3593
3651
  #: components/manage/Blocks/Teaser/schema
3594
- #: components/manage/Controlpanels/Aliases
3595
3652
  #: components/manage/Controlpanels/Relations/BrokenRelations
3596
3653
  #: components/manage/Controlpanels/Relations/RelationsMatrix
3597
3654
  msgid "Target"
@@ -4432,6 +4489,11 @@ msgstr ""
4432
4489
  msgid "box_forgot_password_option"
4433
4490
  msgstr "忘记了密码?"
4434
4491
 
4492
+ #. Default: "Add many alternative URLs at once by uploading a CSV file. The first column should be the path to redirect from; the second, the path to redirect to. Both paths must be Plone-site-relative, starting with a slash (/). An optional third column can contain a date and time. An optional fourth column can contain a boolean to mark as a manual redirect (default true)."
4493
+ #: components/manage/Controlpanels/Aliases
4494
+ msgid "bulkUploadUrlsHelp"
4495
+ msgstr ""
4496
+
4435
4497
  #. Default: "Checkbox"
4436
4498
  #: config/Blocks
4437
4499
  msgid "checkboxFacet"
@@ -4542,6 +4604,11 @@ msgstr ""
4542
4604
  msgid "event_where"
4543
4605
  msgstr ""
4544
4606
 
4607
+ #. Default: "/example"
4608
+ #: components/manage/Controlpanels/Aliases
4609
+ msgid "examplePath"
4610
+ msgstr ""
4611
+
4545
4612
  #. Default: "This website does not accept files larger than {limit}"
4546
4613
  #: helpers/MessageLabels/MessageLabels
4547
4614
  msgid "fileTooLarge"