-
-
Notifications
You must be signed in to change notification settings - Fork 467
Expand file tree
/
Copy pathtranslations.json
More file actions
1474 lines (1474 loc) · 98.9 KB
/
Copy pathtranslations.json
File metadata and controls
1474 lines (1474 loc) · 98.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"author": {
"addNewAuthor": "Add new author",
"author": "Author",
"authorDataParsingErrorMessage": "An error occurred during parsing of author data for ID: ",
"authorHasBeenUpdated": "Author has been updated",
"authorLink": "Author link",
"authorName": "Author name",
"authorNameCannotBeEmptyErrorMessage": "Author name cannot be empty. Please enter a name",
"authorNameInUseErrorMessage": "Provided author name is already in use. Please try another name.",
"authorNameSimilarInUseErrorMessage": "Provided author name is in use; author names are not case-sensitive. Please try another name.",
"authorPage": "Author page",
"authorSlugCannotBeEmpty": "Author slug cannot be empty",
"avatar": "Avatar",
"avatarAndFeaturedImage": "Avatar and Featured image",
"cannotRemoveMainAuthor": "The main author cannot be removed.",
"changePageAuthor": "Change page author",
"changePostAuthor": "Change post author",
"editAuthor": "Edit author",
"eMail": "E-mail",
"filterOrSearchAuthors": "Filter or search authors...",
"gravatarEmailWarningMessage": "Enter the email address you used for registering your account on Gravatar.",
"mainAuthor": "Main author",
"mainAuthorCannotBeRemoved": "This is the main author of this website. It cannot be removed.",
"newAuthorHasBeenCreated": "New author has been created",
"noAuthorsMatchingYourCriteria": "There are no authors matching your criteria.",
"removeAuthorsMessage": "Do you really want to remove selected authors?",
"removeAuthorsSuccessMessage": "Selected authors have been removed",
"selectAuthor": "Select author",
"selectAuthorPage": "Select author page",
"themeDoesNotSupportFeaturedImagesForAuthors": "Your theme does not support featured images for authors",
"whenYouUseGravatarYourSiteVisitorsWillQueryAThirdPartyServer": "When you use the Gravatar service, please note, that your site visitors need to query a third-party server to load your avatar image.",
"toUseThisOptionEnableIndexingAuthorPages": "To use this option, first enable indexing of author pages in SEO settings.",
"url": "URL",
"useGravatarMessage": "Use <a href=\"https://gravatar.com/\" target=\"_blank\" rel=\"noopener noreferrer\">Gravatar </a> to provide your author avatar",
"useGravatarServiceMessage": "In order to use Gravatar service first provide the author's e-mail.",
"website": "Website"
},
"core": {
"archive": {
"destinationNotExists": "Specified output destination not exists",
"errorDuringCreatingTAR": "An error occurred during TAR archive creation. Please try again.",
"errorDuringCreatingZIP": "An error occurred during ZIP archive creation. Please try again."
},
"backup": {
"destinationDirectoryDoesNotExists": "Destination directory does not exist",
"errorDuringFileSaveProcess": "An error occurred during the file saving process",
"errorDuringReadingBackupFile": "An error occurred during reading of the backup file",
"fileDoesNotExists": "Backup file does not exist",
"fileIsCorrupted": "The backup file is corrupted - aborting the restore process.",
"locationDoesNotExists": "Backup location does not exist",
"temporaryDirectoryDoesNotExists": "Temporary directory does not exist"
},
"credits": {
"errorLoadingLicenseMsg": "An error occurred during loading of the license. Please try again."
},
"images": {
"responsiveImagesDisabled": "Responsive images are disabled under site settings - all responsive images have been removed."
},
"rendering": {
"renderingProcessCrashed": "Rendering process crashed",
"renderingProcessCrashedMsg": "For more information, check the rendering-errors.log and rendering-process.log files under Tools -> Log viewer.",
"renderingProcessFailed": "Rendering process failed"
},
"server": {
"branchDoesNotExist": "Selected branch does not exist.",
"creatingNewRemoteFilesTree": "Creating new remote files tree...",
"finishingDeploymentProcess": "Finishing the deployment process...",
"getInfoAboutLatestCommit": "Get information about the latest commit...",
"preparingFilesTreeToUpload": "Preparing file tree for upload...",
"repositoryDoesNotExist": "Selected repository does not exist.",
"requestLimitExceededInfo": "Your API request limit was exceeded ({remaining} requests left). Please wait till {resetTime} UTC and then try again.",
"requestTimeout": "Request timeout.",
"retrievingHandlerOfRemoteFilesTree": "Retrieving remote file tree handler...",
"retrievingRemoteFilesTree": "Retrieving the remote file tree...",
"tokenOrServerAddressInvalid": "Provided credentials or server/repository address are invalid.",
"tooManyFilesInfo": "Your website contains over 4000 items ({numberOfFiles} files and directories). Currently our Github Pages implementation only supports websites with up to 4000 items."
},
"site": {
"noConfigurationForResponsiveImages": "There is no configuration data for responsive images",
"noImagesToRegenerate": "There are no images to regenerate",
"noThemeSelected": "No theme selected"
},
"sureYouWantQuit": "Are you sure you want to quit? \nAll unsaved changes will be lost.",
"wpImport": {
"authorsProgressInfo": "Importing authors ({progress} / {total})",
"imageDownloadError": "An error occurred during downloading of the image: {image}",
"imagesProgressInfo": "Downloading images ({progress} / {total})",
"postsProgressInfo": "Importing posts ({progress} / {total})",
"tagsProgressInfo": "Importing tags ({progress} / {total})"
}
},
"customHTML": {
"tabs": {
"head": "Head",
"body": "Body",
"comments": "Comments",
"searchInput": "Search input",
"searchContent": "Search content",
"socialSharing": "Social sharing",
"footer": "Footer",
"beforePost": "Before every post",
"afterPost": "After every post",
"afterPage": "After every page"
}
},
"date": {
"apr": "Apr",
"aug": "Aug",
"changePagePublicationDate": "Change page publication date",
"changePostPublicationDate": "Change post publication date",
"dec": "Dec",
"feb": "Feb",
"jan": "Jan",
"jul": "Jul",
"jun": "Jun",
"mar": "Mar",
"may": "May",
"nov": "Nov",
"oct": "Oct",
"sep": "Sep"
},
"editor": {
"addHeading": "Add heading",
"addLabel": "Add label",
"alignTextCenter": "Align text center",
"alignTextLeft": "Align text left",
"alignTextRight": "Align text right",
"blockEditorHelpPanelDesc": "You can insert a block either by clicking the <span>+</span> or <span>TAB</span> button on a new line, or typing the following shortcuts or markdown syntax on a new line:",
"blocks": {
"code": {
"idTooltip": "This value will be used as the code ID"
},
"cssClassesLabel": "CSS class",
"cssClassesTooltip": "These CSS classes will be added in the class attribute of the field",
"embed": {
"idTooltip": "This value will be used as the embed ID"
},
"gallery": {
"idTooltip": "This value will be used as the gallery ID"
},
"header": {
"customIdLabel": "Use custom ID",
"customIdTooltip": "Enable this option if you want to use your own ID, instead of the auto-generated ID",
"idTooltip": "This value will be used as the header ID"
},
"html": {
"idTooltip": "This value will be used as the HTML ID"
},
"idLabel": "ID",
"image": {
"idTooltip": "This value will be used as the image ID"
},
"list": {
"idTooltip": "This value will be used as the list ID"
},
"paragraph": {
"idTooltip": "This value will be used as the paragraph ID",
"styleLabel": "Paragraph style",
"styles": {
"highlight": "Highlight",
"info": "Info",
"success": "Success",
"warning": "Warning"
},
"styleTooltip": "Select additional styling for the paragraph block"
},
"quote": {
"idTooltip": "This value will be used as the quote ID"
},
"separator": {
"idTooltip": "This value will be used as the separator ID"
},
"toc": {
"idTooltip": "This value will be used as the ID of the table of contents"
}
},
"cantSavePostWithEmptyTitle": "You cannot save a post with an empty title.",
"cantSavePageWithEmptyTitle": "You cannot save a page with an empty title.",
"changesSaved": "Changes have been saved",
"clearFormatting": "Clear formatting",
"clickToConfirm": "Click to confirm",
"code": "Code",
"conversions": {
"toCode": "Code",
"toHeader": "Heading",
"toHTML": "HTML",
"toList": "List",
"toParagraph": "Paragraph",
"toQuote": "Quote"
},
"convertTo": "Convert to:",
"custom": "Custom",
"defaultSelect": "- Select -",
"deleteBlock": "Delete block",
"dot": "Dot",
"dots": "Dots",
"dragAndDropImgToEditor": "Drag and drop an image onto the editor",
"dropToUploadYourPhotoOr": "Drop to upload your photo or",
"dropToUploadYourPhotosOr": "Drop to upload your photos or",
"element": "Element",
"emptyGalleryBlock": "Empty gallery block",
"emptyImageBlock": "Empty image block",
"enterAltText": "Enter alternative text",
"enterCaption": "Enter caption",
"enterUrlOrEmbedCode": "Enter URL or embed code...",
"errorOccurred": "An error occurred - please try again.",
"gallery": "Gallery",
"header": "Heading",
"heading1": "Heading 1",
"heading2": "Heading 2",
"heading3": "Heading 3",
"heading4": "Heading 4",
"heading5": "Heading 5",
"heading6": "Heading 6",
"hideBulkEdit": "Hide Bulk Edit",
"hideHelp": "Hide Help",
"hideStats": "Hide Stats",
"html": "HTML",
"insertGallery": "Insert gallery",
"list": "List",
"markdown": "Markdown",
"markdownHelpPanelDesc": "You can easily manage headings, text styles or create other HTML elements by using the following keyboard shortcuts or markdown syntax:",
"newDraftCreated": "New draft has been created",
"newPageCreated": "New page has been created",
"newPostCreated": "New post has been created",
"nothingFound": "No blocks found",
"paragraph": "Paragraph",
"quote": "Quote",
"quoteAuthor": "Quote author",
"quoteText": "Quote text",
"readMore": "Read more",
"readMoreBlockName": "Readmore",
"selectFiles": "Select files",
"separator": "Separator",
"shortcuts": "Shortcuts",
"sourceCode": "Source code",
"searchForABlock": "Search for a block...",
"startWriting": "Start writing...",
"startWritingOrPressTabToChooseBlock": "Start writing or press the TAB key to choose a block.",
"toc": "TOC",
"tocAutoGenerationInfo": "The table of contents is generated automatically based on the headings (H1-H6) of your content.",
"togglePostStatsPanel": "Toggle post statistics panel",
"unableToSetSpellCheckerForLanguage": "(!) Unable to set spellchecker to use the selected language - ",
"useOrderedList": "Use ordered list",
"useUnorderedList": "Use unordered list",
"viewBulkEdit": "Bulk Edit",
"viewHelp": "View Help",
"viewStats": "View Stats",
"wideLine": "Wide line"
},
"file": {
"addNewFile": "Add new file",
"backups": "Backups",
"createBackup": "Create backup",
"createBackupConfirmMsg": "Select a name for your backup - filename can contain only alphanumeric characters, dashes and underscores:",
"createBackupErrorMsg": "An error occurred during backup creation. Please try again.",
"createBackupNameEmptyMsg": "Provided filename cannot be empty. Please enter a name.",
"createBackupNameInUseMsg": "Provided filename (<strong>{filename}</strong>) is already in use by an existing backup. Please try again with a different name.",
"createBackupSuccessMsg": "Backup has been created.",
"createFirstBackupMsg": "You don't have any backups, yet. Let's create the first one!",
"creatingBackup": "Creating backup",
"creationDate": "Creation date",
"deleteBackupsConfirmMsg": "Do you really want to remove the selected backups? This action cannot be undone.",
"deleteBackupsErrorMsg": "An error occurred during removal of the selected backups. Please try again.",
"deleteBackupsSuccessMsg": "Selected backups have been removed",
"dragAndDropBackupFile": "Drag and drop backup file here or",
"dropYourFileHere": "Drop your file here",
"file": "File",
"fileFromFileManager": "File from File Manager",
"fileManager": "File manager",
"filename": "Filename",
"files": "Files",
"fileSemicolon": "File:",
"fileSize": "File Size",
"filterOrSearchFiles": "Filter or search files...",
"mediaFiles": "media/files",
"noBackupsAvailable": "No backups available",
"noFileInMediaFilesDirInfo": "There are no files in the media/files directory...",
"noFileInRootDirInfo": "There are no files in the root directory...",
"noFileMatchingCriteriaInfo": "There are no files matching your criteria.",
"operations": "Operations",
"preparingFilesInOutputDir": "Preparing files in the output directory",
"provideNameForNewFile": "Please provide name for a new file",
"removeFilesConfirmMsg": "Do you really want to remove the selected files? This action cannot be undone.",
"removeFilesSuccessMsg": "Selected files have been removed",
"rename": "Rename",
"renameBackupConfirmLabel": "Rename file",
"renameBackupConfirmMsg": "Please specify a new backup filename:",
"renameBackupErrorMsg": "An error occurred while renaming the selected backup file. Please try again.",
"renameBackupNameEmptyMsg": "The backup filename cannot be empty. Please try again.",
"renameBackupNameInUseMsg": "The specified name is in use by another backup file. Please try again.",
"renameBackupSameNameMsg": "The specified name is the same as the old name. Please try again.",
"renameBackupSuccessMsg": "The backup has been successfully renamed.",
"restore": "Restore",
"restoreBackupConfirmLabel": "Restore backup",
"restoreBackupConfirmMsg": "Do you really want to restore the selected backup? Existing files will be overwritten.",
"restoreBackupErrorMsg": "An error occurred while restoring the selected backup file: ",
"restoreBackupSuccessMsg": "The website has been successfully restored.",
"rootDirectory": "root directory",
"selectedFileExistsMsg": "The following files cannot be copied as they already exist in the selected directory: ",
"selectedFilenameInUseMsg": "The selected filename is in use. Please use a different filename.",
"selectFile": "Select file",
"selectFileFromFileManager": "Select a file from the File Manager",
"uploadFiles": "Upload files"
},
"gdpr": {
"addGroup": "Add group",
"embedConsents": {
"addRule": "Add rule",
"groupButtonLabel": "Button label",
"groupCookieGroup": "Cookies group",
"groupRule": "URL contains",
"groupRulePlaceholder": "youtube.com",
"groupTextPlaceholder": "Consent text"
},
"groupDescriptionPlaceholder": "Enter a cookies group description here",
"groupID": "Group ID",
"groupName": "Group name",
"state": "State"
},
"image": {
"addImages": "Add images",
"align": "Align",
"centeredImage": "Centered image",
"columns": "Columns:",
"dropFeaturedImageOr": "Drop featured image here or",
"dropToUploadPhotoOr": "Drop to upload your photo or",
"eightColumns": "8 columns",
"enterAltText": "Enter alt text",
"enterCaption": "Enter caption",
"fiveColumns": "5 columns",
"fourColumns": "4 columns",
"fullWidth": "Full-width",
"fullWidthImage": "Full-width image",
"image": "Image",
"imageAlternativeText": "Image alternative text",
"imageCaption": "Image caption",
"images": "Images",
"insertEditGallery": "Insert/Edit Gallery",
"layout": "Layout",
"loadingImage": "Loading image...",
"none": "None",
"oneColumn": "1 column",
"pictures": "pictures",
"removeImage": "Remove image",
"sevenColumns": "7 columns",
"sixColumns": "6 columns",
"threeColumns": "3 columns",
"twoColumns": "2 columns",
"uploading": "Uploading",
"wide": "Wide",
"wideImage": "Wide image",
"yourGalleryIsEmpty": "Your gallery is empty"
},
"langs": {
"addLanguageSuccessMessage": "Language has been added",
"deleteLanguage": "Delete language",
"getMoreLanguages": "Get more languages",
"goToLanguagesManager": "Go to the languages manager",
"installLanguage": "Install language",
"isOutdated": "Outdated",
"isOutdatedTitle": "This language supports Publii up to v.{supportedVersion}, while you are using Publii v.{currentVersion} - please update Publii to use this language.",
"language": "Language:",
"languageChangedMsg": "Application language changed",
"languageChangeError": "Language change error occurred - please try again.",
"languageLoadingError": "An error occurred during loading of app language. The default language (english) will be used instead. Please go to the language settings to select another.",
"languages": "Languages",
"removeLanguageMessage": "Do you really want to remove the {languageName} language?",
"removeLanguageSuccessMessage": "The selected language has been removed",
"updatedLanguageSuccessMessage": "Selected language has been updated",
"uploadLanguageErrorMessage": "An error occurred during installation. Please try again."
},
"link": {
"addDownloadAttr": "Add \"download\" attribute",
"addLink": "Add link",
"addNofollow": "Add rel=\"nofollow\"",
"downloadAttribute": "Attribute 'download':",
"insertEditLink": "Insert/Edit link",
"linkInvalidMsg": "Sorry! This link seems to be invalid.",
"linkRelAttribute": "Link \"rel\" attribute",
"linkTitleAttribute": "Link \"title\" attribute",
"openInNewTab": "Open in new tab",
"previewLinkInBrowser": "Preview this link in browser",
"previewOnlyExternalLinksMsg": "You can only preview external links in the post editor",
"removeLink": "Remove link",
"selectLinkType": "Select link type"
},
"menu": {
"addMenuItem": "Add menu item",
"addNewMenu": "Add new menu",
"addNewMenuItem": "Add new menu item",
"addSubmenu": "Add submenu",
"addSubmenuItem": "Add submenu item",
"assignedMenu": "Assigned menu",
"classCSS": "CSS class",
"createNewMenu": "Create new menu",
"deleteThisMenuItem": "Delete this menu item",
"duplicateThisMenuItem": "Duplicate this menu item",
"editMenuItem": "Edit menu item",
"editMenuName": "Edit menu name",
"editThisMenuItem": "Edit this menu item",
"externalLink": "External link",
"externalURL": "External URL",
"hideThisMenuItem": "Hide this menu item",
"insertActions": "Insert selected item:",
"insertAfter": "after",
"insertAsChild": "as submenu",
"insertBefore": "before",
"internalLink": "Internal link",
"items": "Items",
"label": "Label",
"likedItemError": "Linked item hasn't been rendered (empty tag/author page), doesn't exist or has been trashed",
"likedItemIsADraft": "Linked item is a draft",
"menu": "Menu",
"menuItemsRemoveMessage": "Do you really want to remove selected menu item?",
"menuItemIsHidden": "This menu item is hidden",
"menuNameCannotBeEmptyCreateNewMenuErrorMessage": "The menu name field cannot be empty. Please enter a menu name.",
"menuNameCannotBeEmptyErrorMessage": "The menu name field cannot be empty. Please enter a new menu name.",
"menuNameExistsErrorMessage": "The specified menu name already exists. Please use a different name.",
"menuNameHasBeenEdited": "Menu name has been edited",
"menuNameInUseErrorMessage": "The specified menu name is in use. Please enter a new menu name.",
"menusRemoveMessage": "Do you really want to remove the selected menus?",
"menusRemoveSuccessMessage": "The selected menus have been removed",
"moveItem": "Move",
"newMenuCreated": "New menu has been created",
"noMenusAvailable": "No menus available",
"noMenusCreateNewOne": "You don't have any menus, yet. Let's create the first one!",
"noMenusMessage": "There are no menu items; create new ones via the \"Add menu item\" button above.",
"provideNameForNewMenu": "Provide a name for your new menu:",
"provideNewNameForMenu": "Provide a new name for the selected menu:",
"selectItemType": "Select item type",
"selectLinkTarget": "Select link target",
"showThisMenuItem": "Show this menu item",
"textSeparator": "Text separator",
"type": "Type",
"unassigned": "Unassigned",
"unselectItem": "Unselect"
},
"menuPositionPopup": {
"invalidValue": "Invalid value: the entered value cannot be 0 and exceed the theme's default maximum limit. Use -1 for no restrictions.",
"maxLevels": "Max level:",
"themeDefaultValue": "Theme default value:",
"title": "Configure menu position",
"usedBy": "Used by other menu:"
},
"page": {
"addNewPage": "Add new page",
"addPageTitle": "Add page title",
"all": "All",
"closeHierarchy": "Close edit",
"changePageDate": "Change page date",
"cleanUrlsDisabled": "Activate 'Pretty URLs' in the Site settings to unlock the Edit hierarchy option. This will allow you to easily manage the parent-child relationships between your pages.",
"editHierarchy": "Edit hierarchy",
"configureThemeBeforeGeneratingPreview": "A theme must be selected and configured for this website before a preview of this page may be generated.",
"convertToPost": "Convert to post",
"currentDefaultTemplate": "Current default template",
"customPageTypes": "Custom Page Types",
"drafts": "Drafts",
"duplicate": "Duplicate",
"duplicatePageErrorMessage": "An error occurred during duplication of the selected pages. Please try again.",
"duplicatePageSuccessMessage": "Selected pages have been duplicated",
"editorBlock": "Block editor",
"editorBlockInfo": "A modern and intuitive editor with shortkey and markdown support to make blogging easy, with no need to worry about HTML or other code elements.",
"editorBlockNotSupportedEditPageInfo": "The current theme does not support the block editor used in this page. This page may be rendered incorrectly to the output files.",
"editorBlockNotSupportedNewPageInfo": "The current theme does not support the block editor used in this page. This page may be rendered incorrectly to the output files.",
"editorBlockUse": "Use Block editor",
"editorMarkdown": "Markdown editor",
"editorMarkdownInfo": "This editor supports Markdown syntax as shorthand for producing content quickly; great for extensive, no-frills projects such as documentation.",
"editorMarkdownUse": "Use Markdown editor",
"editorWYSIWYG": "WYSIWYG editor",
"editorWYSIWYGInfo": "This editor provides a familiar word-processing experience, with additional tools for users that want to control every aspect of their page content.",
"editorWYSIWYGUse": "Use WYSIWYG editor",
"editPageAnyway": "Edit page anyway",
"filterOrSearchPages": "Filter or search pages...",
"insertActions": "Insert selected page",
"insertAfter": "after",
"insertAsChild": "as subpage",
"insertBefore": "before",
"isHomepage": "Homepage",
"markAsDraft": "Mark as draft",
"markAsFeatured": "Mark as featured",
"markAsUnfeatured": "Mark as unfeatured",
"modificationDate": "Modification date",
"moveItem": "Move",
"moveToTrash": "Move to trash",
"noPagesMatchingYourCriteria": "There are no pages matching your criteria.",
"noParentPage": "No parent",
"openEditorAnyway": "Open editor anyway",
"page": "Page",
"pageAuthor": "Page author",
"pageLink": "Page link",
"pageName": "Page name:",
"pages": "Pages",
"pageSettings": "Page settings",
"pageSlug": "Page slug",
"pageSlugLengthWarning": "Page slugs longer than 250 characters can lead to the creation of broken files during website rendering.",
"pageSlugTooLong": "Page slug is too long",
"pageSlugUpdateButton": "Update",
"pageState": "Page state",
"pageStatusChangeSuccessMessage": "Status of the selected pages has been changed",
"pageTemplate": "Page template",
"parentPage": "Parent page",
"publicationDate": "Publication date",
"publish": "Publish",
"published": "Published",
"removePageMessage": "Do you really want to remove the selected pages? This cannot be undone.",
"removePageSuccessMessage": "Selected pages have been removed",
"selectPage": "Select page",
"setAsParent": "Set as parent",
"setAsSubpage": "Set as subpage",
"setCustomPageDate": "Set custom post date",
"status": "Status",
"thisPageIsADraft": "This page is a draft",
"title": "Title",
"trashed": "Trashed",
"unselectItem": "Unselect",
"updatedOn": "Updated on",
"url": "URL"
},
"plugins": {
"addPluginSuccessMessage": "Plugin has been added",
"deletePlugin": "Delete plugin",
"getMorePlugins": "Get more plugins",
"goToPluginsManager": "Go to the plugins manager",
"installPlugin": "Install plugin",
"isIncompatible": "Is outdated",
"isIncompatibleTitle": "This plugin supports Publii from v.{supportedVersion}, while you are using Publii v.{currentVersion} - please update Publii to use this plugin.",
"plugin": "Plugin:",
"plugins": "Plugins",
"removePluginMessage": "Do you really want to remove the {pluginName} plugin?",
"removePluginSuccessMessage": "The selected plugin has been removed",
"updatedPluginSuccessMessage": "Selected plugin has been updated",
"uploadPluginErrorMessage": "An error occurred during installation. Please try again."
},
"post": {
"addNewPost": "Add new post",
"addPostTitle": "Add post title",
"all": "All",
"changePostDate": "Change post date",
"characters": "Characters",
"configureThemeBeforeGeneratingPreview": "A theme must be selected and configured for this website before a preview of this post may be generated.",
"convertToPage": "Convert to page",
"currentDefaultTemplate": "Current default template",
"customPostTypes": "Custom Post Types",
"drafts": "Drafts",
"duplicate": "Duplicate",
"duplicatePostErrorMessage": "An error occurred during duplication of the selected posts. Please try again.",
"duplicatePostSuccessMessage": "Selected posts have been duplicated",
"editorBlock": "Block editor",
"editorBlockInfo": "A modern and intuitive editor with shortkey and markdown support to make blogging easy, with no need to worry about HTML or other code elements.",
"editorBlockNotSupportedEditPostInfo": "The current theme does not support the block editor used in this post. This post may be rendered incorrectly to the output files.",
"editorBlockNotSupportedNewPostInfo": "The current theme does not support the block editor used in this post. This post may be rendered incorrectly to the output files.",
"editorBlockUse": "Use Block editor",
"editorMarkdown": "Markdown editor",
"editorMarkdownInfo": "This editor supports Markdown syntax as shorthand for producing content quickly; great for extensive, no-frills projects such as documentation.",
"editorMarkdownUse": "Use Markdown editor",
"editorWYSIWYG": "WYSIWYG editor",
"editorWYSIWYGInfo": "This editor provides a familiar word-processing experience, with additional tools for users that want to control every aspect of their page content.",
"editorWYSIWYGUse": "Use WYSIWYG editor",
"editPostAnyway": "Edit post anyway",
"excluded": "Excluded",
"excludeFromHomepage": "Exclude from homepage",
"featured": "Featured",
"filterOrSearchPosts": "Filter or search posts...",
"hidden": "Hidden",
"hidePost": "Hide Post",
"includeInHomepage": "Include in homepage",
"markAsDraft": "Mark as draft",
"markAsFeatured": "Mark as featured",
"markAsUnfeatured": "Mark as unfeatured",
"min": "min",
"modificationDate": "Modification date",
"moveToTrash": "Move to trash",
"noPostsMatchingYourCriteria": "There are no posts matching your criteria.",
"openEditorAnyway": "Open editor anyway",
"paragraphs": "Paragraphs",
"post": "Post",
"postAuthor": "Post author",
"postLink": "Post link",
"postName": "Post name:",
"postPage": "Post page",
"posts": "posts",
"postSettings": "Post settings",
"postSlug": "Post slug",
"postSlugLengthWarning": "Post slugs longer than 250 characters can lead to the creation of broken files during website rendering.",
"postSlugTooLong": "Post slug is too long",
"postSlugUpdateButton": "Update",
"postState": "Post state",
"postStatusChangeSuccessMessage": "Status of the selected posts has been changed",
"postTemplate": "Post template",
"postWillNotAppearOnHomepageListMsg": "Post will not appear on homepage listings",
"postWillNotAppearOnListMsg": "Post will not appear in any generated post lists such as tag or author pages",
"publicationDate": "Publication date",
"publish": "Publish",
"published": "Published",
"readingTime": "Reading Time",
"removePostMessage": "Do you really want to remove the selected posts? This cannot be undone.",
"removePostSuccessMessage": "Selected posts have been removed",
"selectPostPage": "Select post page",
"sentences": "Sentences",
"setCustomPostDate": "Set custom post date",
"status": "Status",
"thisPostIsADraft": "This post is a draft",
"thisPostIsExcludedFromHomepage": "This post is excluded from the homepage",
"thisPostIsFeatured": "This post is featured",
"thisPostIsHidden": "This post is hidden",
"title": "Title",
"trashed": "Trashed",
"uniqueWords": "Unique words",
"updatedOn": "Updated on",
"url": "URL",
"words": "Words"
},
"publii": {
"aboutPublii": "About Publii",
"currentPubliiVersion": "Version",
"accept": "Accept",
"copyright": "Copyright 2025 <a href=\"https://tidycustoms.net\" target=\"_blank\" rel=\"noopener noreferrer\">TidyCustoms</a>. All rights reserved.<br>Publii is designed and maintained by core team and is made possible by the <a href=\"https://electronjs.org\" target=\"_blank\" rel=\"noopener noreferrer\">Electron</a> Open Source project and other ",
"creditsIntro": "Publii uses the following third-party Open Source Software:",
"dataCollectionInfo": "<strong>We do not collect any </strong>personal data while you use Publii app; we do not store, track, or allow third parties to collect, personally identifiable information about you. ",
"homepage": "Homepage",
"license": "License",
"licensingInformation": "Licensing information",
"openSourceSoftware": "Open Source Software",
"publiiLicenseAgreement": "Publii License Agreement.",
"publiiLicenseAgreementInfo": "This software is licensed under GNU GPL version 3.<br>By clicking \"Accept\" you agree to the"
},
"rendering": {
"errorDuringPreviewCreatingMsg": "An error occurred during preview creation.",
"rendering": "Rendering...",
"renderingErrorText": "An error occurred during the website rendering process.",
"renderingPleaseWait": "Please wait while the rendering process is completed.",
"selectThemeBeforeCreatingPreviewMsg": "You have to select a theme before trying to create a preview of your website. Please go to the website settings section and select a theme."
},
"repeater": {
"addItem": "Add item",
"duplicateItem": "Duplicate item",
"emptyState": "Click the button to add first element",
"removeItem": "Remove item"
},
"settings": {
"addGDPRCookieBanner": "Enable banner",
"additionalValidElementsInWYSIWYGEditor": "Additional valid elements in the WYSIWYG editor",
"additionalValidElementsInWYSIWYGEditorInfo": "If the WYSIWYG editor automatically removes some tags from your HTML code, you may add them here as allowed elements.<br> For example: <strong>v-select[*],v-dropdown[*]</strong> will allow custom v-select and v-dropdown tags with any attributes.",
"advancedOptions": "Advanced options",
"advancedPreviewDesc": "Advanced preview allows you to render a website without opening your browser",
"alwaysAddIndexHTMLInURLs": "Always add index.html in URLs",
"alwaysSaveSearchState": "Always save search state",
"anchorLink": "Anchor link",
"appSettings": "App settings",
"appSettingsSavedMsg": "App settings have been successfully saved.",
"appSettingsSaveErrorMsg": "An error occurred during saving of the App Settings. Please try again.",
"appUIZoomLevel": "Interface scale",
"appUIZoomLevelInfo": "Adjust the interface scale to enhance your visibility and comfort while managing your content. This option allows you to scale the user interface to your preferred size, ensuring that text, icons, and other UI elements are easily readable and accessible.",
"ascending": "Ascending",
"authorPage": "Author page",
"authorPages": "Author pages",
"authorPageTitleVariables": "The following variables can be used: %authorname, %sitename.",
"authorPrefix": "Author prefix:",
"authorPrefixInfo": "Defines the prefix that appears before the author slug in a URL e.g. <strong>https://example.com/AUTHOR_PREFIX/author-slug</strong>.<br>",
"authorPrefixInfoExtended": "Defines the prefix that appears before the author slug in a URL e.g. <strong>https://example.com/POSTS_PREFIX/AUTHORS_PREFIX/author-slug</strong>.<br>",
"authorsPrefixAfterPostsPrefix": "Put authors prefix after posts prefix",
"authorsPrefixCannotBeEmpty": "Authors prefix cannot be empty.",
"authorsPrefixCannotEqualTagsPrefix": "The authors prefix cannot be the same as the tags prefix.",
"backupLocation": "Backup location",
"backupLocationChangedConfirmMsg": "The backups storage location has been changed. All new backups will be stored in this directory. If you require access to earlier backups, they may be moved manually to the new directory.",
"badge": "Badge",
"badgeAndCustomLink": "Badge + custom link",
"badgeLabel": "Badge label",
"bannerPosition": "Banner position",
"basicSettings": "Basic settings",
"byIDAscending": "By ID ascending",
"byIDDescending": "By ID descending",
"cannotAddIndexHTMLInURLsInfo": "Enable this option if you cannot enable loading index.html files by default when a folder on your server is opened.",
"cardTypes": "Card types:",
"changeSitesLocationWithoutCopyingFiles": "Change sites location without moving existing sites to the new catalog",
"closePostEditorOnSave": "Close post editor on save",
"codeEditor": "Code editor (CodeMirror)",
"colorTheme": "Color theme",
"content": "Content",
"continueSync": "Continue and sync",
"continueSyncNoRemoteFiles": "Publii is unable to find remote files list on your server. If you will continue the sync process, ALL generated website files will be uploaded to your server. You can cancel the sync process to check the reason of your issue and then try again.",
"convertToWebp": "Convert to WebP format",
"convertToWebpInfo": "Enable this option if you want to convert all JPG, JPEG and PNG images to WebP format. Once enabled, your image thumbnails will need to be regenerated. Note, this feature works only if you’re using the Sharp library for generating thumbnails.",
"convertToWebpJimpWarning": "This option does not work with the currently used image resizing engine, Jimp. Instead, switch to Sharp in the app's settings.",
"cookieGroups": "Cookie Groups",
"cookieBanner": "Cookie Banner",
"cookieBasic": "Basic",
"cookieBasicDescription": "This section contains the settings responsible for displaying the cookie banner on the your site, which lets visitors know if the website uses cookies.",
"cookieAdvanced": "Advanced",
"cookieAdvancedDescription": "This section contains options for displaying a modal pop-up with advanced cookie settings, which lets visitors manage consents for a specific group of cookies.",
"createXMLSitemap": "Create XML Sitemap",
"currentTheme": "Current theme:",
"currentThemeHasOverrides": "It seems that you override the theme files, and your custom theme modifications might not fully align with the updated version. Updating your theme requires reviewing and merging these files. Click 'OK' to proceed with the update and address any potential issues later, or 'Cancel' to review your customizations first.",
"customElementsInWYSIWYGEditor": "Custom elements available in the WYSIWYG editor",
"customElementsInWYSIWYGEditorInfo": "If the WYSIWYG editor automatically removes some tags from your HTML code, you may add them here as custom elements.<br> For example: <strong>v-select,v-dropdown</strong>",
"customFeedTitle": "Custom feed title",
"customLanguageCode": "Custom language code:",
"darkMode": "Dark mode",
"defaultAuthorsOrdering": "Default authors ordering:",
"defaultOrderingOnLists": "Default lists ordering:",
"defaultPagesOrdering": "Default pages ordering:",
"defaultPostsOrdering": "Default posts ordering:",
"defaultTagsOrdering": "Default tags ordering:",
"descending": "Descending",
"disableAuthorsPagination": "Disable authors pagination",
"disableAuthorsPaginationIndexing": "Disable authors pagination indexing",
"disableAuthorsPaginationIndexingInfo": "When enabled, your authors pagination files will be excluded from the sitemap and will have the <strong>noindex, follow</strong> robots metatags added.",
"disableAuthorsPaginationInfo": "When enabled, your authors pagination won't be generated.",
"disableHomepagePagination": "Disable homepage pagination",
"disableHomepagePaginationInfo": "When enabled, your homepage pagination won't be generated.",
"disableHomepagePaginationIndexing": "Disable homepage pagination indexing",
"disableTagsPagination": "Disable tags pagination",
"disableTagsPaginationIndexing": "Disable tags pagination indexing",
"disableTagsPaginationIndexingInfo": "When enabled, your tags pagination files will be excluded from the sitemap and will have the <strong>noindex, follow</strong> robots metatags added.",
"disableTagsPaginationInfo": "When enabled, your tags pagination won't be generated.",
"displayEmptyAuthors": "Display authors w/o posts",
"displayEmptyAuthorsInfo": "When enabled, authors without posts assigned to them will still have their subpages created and appear on the authors list.",
"displayEmptyTags": "Display tags w/o posts",
"displayEmptyTagsInfo": "When enabled, tags without posts assigned to them will still have their subpages created and appear on the tags list.",
"dontIndexThisPage": "Ask the search engine not to crawl the whole website.",
"editorFontFamily": "Font family",
"editorFontFamilySansSerif": "Sans serif",
"editorFontFamilySerif": "Serif",
"editorFontSize": "Font size (px)",
"editors": "Editors",
"embedConsents": "Embed content consents",
"embedConsentsDescription": "This section allows you to block content loaded in iframes from third-party content providers that may set cookies. By providing the domain of the iframe URL e.g. <strong>youtube.com</strong>, filling out the required elements such as a message, an accept button, and assigning it to an existing cookie group, iframes will be replaced with a placeholder informing visitors that the content is blocked due to their consent settings (i.e. that the visitor has not consented to the types of cookies used by the iframe in the cookie banner).",
"embedVideos": "Embedding Videos",
"enableAdvancedPreview": "Enable advanced preview",
"enableAutoIndent": "Enable auto-indent",
"enableCSSCompression": "Enable CSS compression",
"enableHTMLCompression": "Enable HTML compression",
"enableJSONFeed": "Enable JSON feed",
"enableMediaLazyLoad": "Enable media lazy load",
"enableMediaLazyLoadInfo": "Enable this option if you want to use native lazy loading that lazy loads images, videos and iframes.",
"enableResponsiveImages": "Enable responsive images",
"enableResponsiveImagesInfo": "Enable this option if you want to deliver different sized images at different screen resolutions depending on breakpoints defined through the config.json file in a theme's folder.",
"enableRSSFeed": "Enable RSS feed",
"enableSharingButtons": "Enable sharing buttons",
"enableSpellchecker": "Enable spellchecker",
"errorPage": "Error page:",
"errorPageFilenameCannotBeEmpty": "Error page filename cannot be empty.",
"errorPageFilenameCannotEqualSearchPageFilename": "Error page filename cannot be the same as search page filename.,",
"errorPageTitleVariables": "The following variables can be used: %sitename.",
"excludedFiles": "Excluded files",
"excludeFeaturedPosts": "Exclude featured posts",
"excludeFilesFromSitemapInfo": "Type a comma-separated list of HTML files or folders to exclude from the sitemap.<br>For example: <strong>avoid-this-file.html,avoid-this-catalog-too</strong>.",
"experimentalFeaturesWarning": "We're always looking for ways to improve our app. This section contains experimental features designed to extend Publii's functionality. Since they're experimental we can't guarantee they will work properly; activate them at your own risk.",
"experimentalFeatureAppAutoBeautifySourceCode": "Auto-beautify source code in WYSIWYG editor",
"experimentalFeatureAppAutoBeautifySourceCodeDesc": "This function enable automatic beautify for source code in the WYSIWYG editor",
"experimentalFeatureAppFtpAlt": "Use alternative FTP library for deployment",
"experimentalFeatureAppFtpAltDesc": "Try this, especially if your hosting uses IPv6 for server address",
"externalImages": "External images",
"externalPage": "External page",
"facebook": "Facebook",
"facebookAppID": "Facebook App ID",
"facebookAppIDInfo": "Read how to obtain <a href=\"https://developers.facebook.com/docs/apps/\" target=\"_blank\" rel=\"noopener noreferrer\">Facebook App ID</a>.",
"fallbackImage": "Fallback image",
"fallbackLogoImage": "Fallback logo image",
"fallbackLogoImageInfo": "The logo must fit in a 60 × 600 pixel box.",
"featuredPostsOrderBy": "Featured posts order by:",
"featuredPostsOrdering": "Featured posts ordering:",
"feedsRelativeUrlsInfo": "To view RSS/JSON feed settings please disable the 'Use relative URLs' option in the Server Settings; the feed won't be generated for your website otherwise.",
"feedTitle": "Feed title:",
"feedUpdatedDateType": "Post update date set as:",
"filesLocation": "Files location",
"footerText": "Footer text",
"frontpage": "Homepage",
"frontpagePageCannotBeEmpty": "Homepage selection cannot be empty.",
"gConsentModeDefaultState": "Default state",
"gConsentModeEnabled": "Enable Google Consent Mode",
"gConsentMode": {
"addGroup": "Add cookies group settings",
"cookieGroup": "Cookies group",
"description": "This section allows you to specify the default state of the Google Consent Mode and specify signals which will be sent when specific cookies group will be accepted by user. Use these options if you need compatibility with Google Consent Mode. If you are not using Google Analytics, Google Ads or similar tools, most probably you do not need to enable this feature.",
"title": "Google Consent Mode"
},
"GDPR": "Privacy Settings",
"gdprBannerPosition": {
"centered": "Centered",
"left": "Left",
"right": "Right",
"bar": "Bar"
},
"gdprAllowAdvancedConfiguration": "Enable advanced cookies configuration",
"gdprAdvancedConfigurationLinkLabel": "Advanced configuration button label",
"gdprAdvancedConfigurationLinkPlaceholder": "Manage preferences",
"gdprAdvancedConfigurationAcceptButtonLabel": "Accept button label",
"gdprAdvancedConfigurationRejectButtonLabel": "Reject button label",
"gdprAdvancedConfigurationSaveButtonLabel": "Save button label",
"gdprAdvancedConfigurationTitle": "Pop-up title",
"gdprAdvancedConfigurationDescription": "Pop-up message",
"gdprAdvancedConfigurationPrivacyLink": "Privacy policy link",
"gdprAdvancedConfigurationPrivacyLinkDescription":"Display a link to the privacy policy page in the pop-up message. If the 'Show privacy policy link' option in the Basic section is disabled, the link will also not be displayed in the pop-up.",
"gdprBehaviourInfo": "Remember to place a link with the above anchor in your website navigation or the website content (e.g. <a href=\"#cookie-settings\">Cookie preferences</a>). Otherwise, your website's visitors might not be able to change their individual cookie preferences.",
"gdprCookieSettingsRevision": "Settings version",
"gdprCookieSettingsTTL": "Store visitors consent settings for X days",
"gdprDebugMode": "Enable debug mode",
"gdprShowRejectButton": "Show reject button",
"gdprRejectButtonLabel": "Reject button label",
"gdprBannerTitle": "Banner title",
"gdprBannerMessage": "Banner message",
"generateOpenGraphTags": "Generate Open Graph tags",
"generateTwitterCards": "Generate Twitter cards",
"googleAnalyticsTrackingID": "Google Analytics Tracking ID",
"hiddenPostsOrderBy": "Hidden posts order by:",
"hiddenPostsOrdering": "Hidden posts ordering:",
"hideCustomExcerptsOnPostPages": "Hide custom excerpts on post pages",
"hideCustomExcerptsOnPostPagesInfo": "When enabled, your post pages won't display text which is placed above the \"Read more\" element in the post editor.",
"hideCustomExcerptsOnPagePages": "Hide custom excerpts on pages",
"hideCustomExcerptsOnPagePagesInfo": "When enabled, your pages won't display text which is placed above the \"Read more\" element in the editor.",
"homepage": "Homepage",
"homepageNoIndexPagination": "When enabled, your homepage pagination files will be excluded from the sitemap and will have the <strong>noindex, follow</strong> robots metatags added.",
"homepagePagination": "Homepage pagination",
"howToPrepareYourThemeForGDPRInfo": "Enabling this option will display a cookie banner on your website. Please read the <a href=\"https://getpublii.com/docs/gdpr-cookie-banner-configuration.html\" target=\"_blank\" rel=\"noopener noreferrer\">GDPR Cookie Banner Configuration</a> article for more information on how to configure the banner correctly. ",
"howYtNoCookiesWorks": "When enabled, the YouTube domain for the embed URL e.g. 'www.youtube.com' will be automatically changed to 'www.youtube-nocookie.com', to prevent the embedded player from personalizing the YouTube browsing experience of the visitors, and also ensures that no information is used to customize advertising shown to the visitor outside of your site. Learn more about Enhanced Privacy Mode by visiting <a href=\"https://support.google.com/youtube/answer/171780?hl=en#zippy=%2Cturn-on-privacy-enhanced-mode\">YouTube help page</a>.",
"howVimeoNoTrackWorks": "When enabled, the additional dnt=1 parameter will be added to the Vimeo embed URL (player.vimeo.com/video) to prevent the embedded player from tracking any session data, including all cookies and analytics. Learn more about Vimeo player parameters by visiting <a href=\"https://vimeo.zendesk.com/hc/en-us/articles/360001494447-Player-parameters-overview\">Vimeo help page</a>.",
"imageResizeEngineInfo": "The Sharp resize engine is much faster than Jimp, but can cause issues with some images. If you are encountering problems when creating or regenerating thumbnails, please try switching to the Jimp resize engine. Should you wish to use WebP images, then you’ll need to use the Sharp resize engine.",
"imagesResizeEngine": "Images resize engine:",
"imageResizeEngineWarning": "Jimp resize engine and the option to convert images to WebP format won't work properly. Make sure that all of your websites has the “Website Speed / Convert to WebP format” disabled, and make sure to regenerate thumbnails for consistency.",
"indentSize": "Indent size (spaces)",
"internalPage": "Internal page",
"leaveBlankForDefaultBackupsDir": "Leave blank to use the default backups directory",
"leaveBlankForDefaultPreviewDirectory": "Leave blank to use the default preview directory",
"leaveBlankToUseDefaultPageTitle": "Leave blank to use the default Page title",
"leaveBlankToUseDefaultSitesDir": "Leave blank to use the default sites directory",
"lightMode": "Light mode",
"linkedIn": "LinkedIn",
"linkLabel": "Link label",
"loadAtStart": "Load at start:",
"metaDescription": "Meta Description:",
"metaRobots": "Meta Robots:",
"noIndexForChatGPTBot": "Block GPTBot bot",
"noIndexForChatGPTUser": "Block ChatGPT-User bot",
"noIndexForChatGPTBotInfo": "When enabled, this option prevents your site content from being indexed by GPTBot bot (<a href=\"https://platform.openai.com/docs/gptbot\" target=\"_blank\">used for crawling</a>). Please note that it will only take effect if you do not use your own robots.txt file.",
"noIndexForChatGPTUserInfo": "When enabled, this option prevents your site content from being indexed by ChatGPT-User bot (<a href=\"https://platform.openai.com/docs/plugins/bot\" target=\"_blank\">used in ChatGPT plugins</a>). Please note that it will only take effect if you do not use your own robots.txt file.",
"noIndexForCommonCrawlBots": "Block Common Crawl bots",
"noIndexForCommonCrawlBotsInfo": "When enabled, this option prevents your site content from being indexed by Common Crawl bots. Please note that it will only take effect if you do not use your own robots.txt file.",
"noIndexWebsite": "Noindex website",
"notSelected": "Not selected",
"numberOfPostsInFeed": "Number of posts in feed",
"openDevtoolsInMainW": "Open DevTools automatically in the Main Window",
"openGraph": "Open Graph",
"openLastUsedWebsite": "Open the last used website",
"openPopupWindowBy": "Open banner by",
"optionsForDevelopers": "Options for developers",
"optionsForEditors": "Options for editors",
"optionsForExperimentalFeatures": "Experimental features",
"ordering": {
"authorASC": "By author (ascending)",
"authorDESC": "By author (descending)",
"createdASC": "By created date (ascending)",
"createdDESC": "By created date (descending)",
"hierarchical": "Hierarchical",
"idASC": "By ID (ascending)",
"idDESC": "By ID (descending)",
"modifiedASC": "By modified date (ascending)",
"modifiedDESC": "By modified date (descending)",
"nameASC": "By name (ascending)",
"nameDESC": "By name (descending)",
"postsCounterASC": "By posts count (ascending)",
"postsCounterDESC": "By posts count (descending)",
"titleASC": "By title (ascending)",
"titleDESC": "By title (descending)"
},
"pageAsFrontpage": "Select page",
"pageTitle": "Page Title",
"pageTitleVariables": "The following variables can be used: %pagetitle, %sitename, %authorname",
"paginationPhrase": "Pagination phrase:",
"paginationPhraseCannotBeEmpty": "Pagination phrase cannot be empty.",
"paginationPhraseInfo": "Defines the phrase used before the page number in a URL e.g. <strong>https://example.com/tags/tag-slug/page/2</strong>.<br>",
"password": {
"alwaysAskForPassword": "Always ask for password",
"password": "Password",
"passwordFieldCantBeEmpty": "The password field cannot be empty."
},
"pinterest": "Pinterest",
"postCreationDate": "Post creation date",
"postID": "Post ID",
"postModificationDate": "Post modification date",
"postPageTitleVariables": "The following variables can be used: %posttitle, %sitename, %authorname.",
"postsListing": "Posts Listing",
"postsIndex": "Posts Index",
"postsOrderBy": "Posts order by:",
"postsOrdering": "Posts ordering:",
"postPrefixInfo": "The prefix entered here will be added before the post slug in the URL. For example, https://example.com/POSTS_PREFIX/post-slug. This option is necessary if you set a <a href=\"#\" data-internal-link=\"SEO\">page as the homepage</a> and need post pagination. In this case, post pagination will be available at https://example.com/POSTS_PREFIX/page/X. Additionally, tags will be rendered under https://example.com/POSTS_PREFIX/TAG_PREFIX/tag-slug.",
"postsPrefix": "Posts prefix",
"postTile": "Post title",
"previewLocation": "Preview location",
"previewLocationChangedConfirmMsg": "The preview storage location has been changed. Note that existing files in this folder will be deleted when a preview of your website is created.",
"privacyPolicyLinkLabel": "Privacy policy link label",
"privacyPolicyPage": "Select page",
"privacyPolicyPageURL": "Enter external URL",
"privacyPolicyURL": "Privacy policy link source",
"provideFacebookAppID": "Please provide the <a href=\"https://developers.facebook.com/docs/apps/\" target=\"_blank\" rel=\"noopener noreferrer\">Facebook App ID</a>",
"random": "Random",
"readAboutOurRecommendedServerSettings": "Looking to learn more about recommended server configurations? Please refer to the following documentation <a href=\"https://getpublii.com/docs/recommended-server-settings.html\" target=\"_blank\">article</a>.",
"relatedPostsOptions": "Related posts options",
"relatedPostsOptionsInfo": "When enabled, related posts will be taken from all tags. When disabled, related posts will only be generated from the same tags as the current post.",
"relatedPostsOrdering": "Related posts ordering:",
"relatedPostsSelectionMechanism": "Related posts selection mechanism:",
"removeHTMLComments": "Remove HTML comments",
"responsiveImagesQuality": "Responsive Images quality",
"responsiveImagesAlphaQuality": "Responsive Images alpha quality (only WebP)",
"RSSJSONFeed": "RSS/JSON Feed",
"saveButtonLabel": "Save button label",
"saveSearchStateInfo": "When enabled, Publii will save the current search results even when creating a new post, allowing you to return to the listing. By default, Publii only saves search results when opening a post to edit.",
"requiresRestartingApp": "Requires a restart of the Publii app",
"saveSettings": "Save Settings",
"searchPage": "Search page:",
"searchPageFilenameCannotBeEmpty": "Search page filename cannot be empty.",
"searchPageTitleVariables": "The following variables can be used: %sitename.",
"selectedDirInvalid": "Selected directory does not exist.",
"selectPage": "Select page",
"showFeaturedImage": "Show Featured image",
"showFeaturedImageInfo": "Display a post's featured image in the feed.",
"showFullText": "Show full text",
"showFullTextInFeedInfo": "Display full text of the post in the feed.",
"showModificationDate": "Show modification date",
"showModificationDateAsColumn": "Show modification date as column",
"showOnlyFeaturedPosts": "Show only featured posts",
"showPostTagsOnTheListing": "Show post tags on the listing",
"showPostSlugsOnTheListing": "Show slugs across all listing views",
"showPrivacyPolicyLink": "Show privacy policy link",
"sitemap": "Sitemap",
"sitemapLinkInfo": "You can find the XML sitemap here: <a href=\"{sitemapLink}\" class=\"sitemap-external-link\" target=\"_blank\" rel=\"noopener noreferrer\">sitemap.xml</a>",
"sitemapRelativeUrlsInfo": "To view sitemap settings please disable the 'Use relative URLs' option in the Server Settings; the sitemap won't be generated for your website otherwise.",
"siteSettings": "Site settings",
"siteSettingsSaveDuplicateNameErrorMessage": "Provided site name is in use. Please try another site name.",
"siteSettingsSaveEmptyNameErrorMessage": "Site name cannot be empty. Please enter a site name.",
"siteSettingsSaveNoKeyringErrorMessage": "Publii cannot save settings due to a problem with the safe password storage software. Restart the application and try again. If the problem persists, please report it to our team via the community forum.",
"siteSettingsSaveNoKeyringErrorMessageLinux": "Publii cannot save settings as no safe password storage software is installed. Follow the installation instructions for Node Keytar via https://github.com/atom/node-keytar/ and try again. Most likely the libsecret-1-dev and gnome-keyring packages are missing from your system.",
"siteSettingsSaveSiteNotExistsErrorMessage": "Site does not exist. Please restart the application.",
"siteSettingsSaveSuccessMessage": "Site settings have been successfully saved.",
"sitesLocation": "Sites location",
"sitesLocationChangedConfirmMsg": "The sites location has been changed. Existing files in the new destination folder will be deleted before your sites files are moved there; do you want to continue?",
"spellcheckerDoesNotSupportLanguage": "The spellchecker does not support your selected website language. We recommend disabling this feature.",
"system": "System",
"systemColors": "Use system colors",
"tagPages": "Tag pages",
"tagPageTitleVariables": "The following variables can be used: %tagname, %sitename.",
"tagPrefix": "Tag prefix:",
"tagPrefixInfo": "Prefixes entered here will be added before the tag slug in the URL e.g. <strong>https://example.com/TAGS_PREFIX/tag-slug</strong>.<br>This prefix is also used to generate the tags list page (if supported in your theme) e.g. <strong>https://example.com/TAGS_PREFIX/index.html</strong>.",
"tagPrefixInfoExtended": "Prefixes entered here will be added before the tag slug in the URL e.g. <strong>https://example.com/POSTS_PREFIX/TAGS_PREFIX/tag-slug</strong>.<br>This prefix is also used to generate the tags list page (if supported in your theme) e.g. <strong>https://example.com/POSTS_PREFIX/TAGS_PREFIX/index.html</strong>.",
"tagsListPage": "Tags list page",
"tagsListPageTitleVariables": "The following variables can be used: %sitename.",
"tagsPrefixAfterPostsPrefix": "Put tags prefix after posts prefix",
"tagsPrefixCannotBeEmpty": "Tags prefix cannot be empty if pretty URLs are enabled.",
"themeDoesNotHaveSupportedFeaturesList": "<p>Your theme's <strong>config.json</strong> file does not contain a <strong>supportedFeatures</strong> section. Please update or modify your theme to include accurate messaging about features which are not supported by your currently used theme. <a href=\"https://getpublii.com/dev/theme-supported-features\" target=\"_blank\" rel=\"noopener noreferrer\">Read more about supported features</a>.</p>",
"themeDoesNotSupport404ErrorPage": "Your theme does not support a 404 Error page.",
"themeDoesNotSupportAuthorPages": "Your theme does not support author pages.",
"themeDoesNotSupportErrorPages": "Your theme does not support error pages",
"themeDoesNotSupportSearchPages": "Your theme does not support search pages",
"themeDoesNotSupportTagPages": "Your theme does not support tag pages.",
"themeDoesNotSupportTagsListPage": "Your theme does not support a Tags list page.",
"themeDoesNotSupportEmbedConsents": "Your theme does not support consents for embed content.",
"themePrimaryColor": "Theme primary color",
"timeFormat": "Time format:",
"toViewSitemapEnableIndexingInfo": "To view sitemap settings please disable the 'Ask search engines to not index this website' option in the SEO Settings tab; the sitemap won't be generated for your website otherwise.",
"tumblr": "Tumblr",
"twitter": "Twitter",
"twitterCards": "Twitter Cards",
"twitterUsername": "Twitter username",
"twitterSummaryCard": "Summary card",
"twitterSummaryCardLargeImage": "Summary card with large image",
"urls": "URLs",
"useAsTitlePageTitle": "Use as a title for the title page",
"useAsTitlePageTitleInfo": "When this option is enabled, og:title and twitter:title metatags will contain the page title instead of the post title, tag name or author name.",
"useGlobalConfiguration": "Use global configuration",
"useOnlyTags": "Use only tags",
"useOnlyTitles": "Use only titles",
"usePageAsFrontpage": "Set page as homepage",
"usePageAsFrontpageNotice": "When enabled, the selected page will become your website's homepage, accessible at your main web address (the root URL). Note that leaving the <a href=\"#\" data-internal-link=\"URLs\">Posts prefix</a> empty will disable posts pagination.",
"usePrettyURLs": "Use pretty URLs",
"usePrettyURLsInfo": "When enabled, your post URLs won't contain the .html suffix e.g. it will change URLs from <strong>https://example.com/post.html</strong> to <strong>https://example.com/post/</strong>. For pages hierarchy won't be visible in the URL if this option is disabled",
"useSiteGlobalSettings": "Use global site settings",
"useTitlesAndTags": "Use titles and tags",
"useWideScrollbars": "Use wider scrollbars",
"versionParameter": "Version parameter",
"versionParameterInfo": "Adds a version parameter in CSS/JS URLs to skip browser cache. This option can cause more files than usual to be synced during deployment.",
"vimeoNoTrack": "Enable 'Do Not Track' mode for Vimeo videos",
"webpLossless": "Enable lossless compression for responsive WebP images",
"websiteName": "Website name",
"websiteSpeed": "Website Speed",
"whatsApp": "WhatsApp",
"youMustReviewGdprSettings": "Make sure to check and review your Privacy Settings, especially the Cookie Banner settings due to some significant changes in Publii v.0.40. <a href=\"https://getpublii.com/blog/release-040.html#cookie-banner\" target=\"_blank\">Read more...</a>",
"youMustSelectFrontpage": "You must specify page used as homepage",
"ytNoCookies": "Enable Privacy-Enhanced mode for YouTube videos"
},
"site": {
"addNewWebsite": "Add new website",
"cloneWebsite": "Clone website",
"cloneWebsiteSuccessMsg": "Website has been cloned. Switched to: ",
"createNewWebsite": "Create new website",
"createWebsite": "Create website",
"createYourFirstWebsite": "Create your first website",
"creationInProgress": "Creation in progress...",
"deleteWebsite": "Delete website",