update: locale variables for template editor

This commit is contained in:
windingwind 2024-09-21 23:02:11 +02:00
parent 12e0ac971f
commit fca3899e8d
5 changed files with 197 additions and 152 deletions

View File

@ -83,63 +83,72 @@ snippet-itemInLoop = in loop
.title = Content to be rendered for each item in the loop
snippet-itemAfterLoop = after loop
.title = Content to be rendered after the loop of items
-variable-type = Type
-variable-item = Zotero.Item
-variable-note = Zotero.NoteItem
-variable-annotation = Zotero.AnnotationItem
-variable-string = string
-variable-object = object
-variable-function = function
snippet-itemItems = items
.title = Type: Zotero.Item[]. The array of items to be rendered, available in beforeLoop and afterLoop stage
.title = { -variable-type }: { -variable-item }[]. The array of items to be rendered, available in beforeLoop and afterLoop stage
snippet-itemItem = item
.title = Type: Zotero.Item. The current item to be rendered, available in inLoop stage
.title = { -variable-type }: { -variable-item }. The current item to be rendered, available in inLoop stage
snippet-itemTopItem = top item
.title = Type: Zotero.Item. The top-level parent of the variable `item`, available in inLoop stage
.title = { -variable-type }: { -variable-item }. The top-level parent of the variable `item`, available in inLoop stage
snippet-itemTargetNoteItem = target note
.title = Type: Zotero.NoteItem. The note item to which the template is attached, available in any stage
.title = { -variable-type }: { -variable-note }. The note item to which the template is attached, available in any stage
snippet-itemCopyNoteImage = copy note image
.title = Type: Function. Copy the image of the note to the clipboard, available in any stage
.title = { -variable-type }: { -variable-function }. Copy the image of the note to the clipboard, available in any stage
snippet-itemSharedObj = shared object
.title = Type: Object. A shared object that can be used to store data across different stages
.title = { -variable-type }: { -variable-object }. A shared object that can be used to store data across different stages
snippet-itemFieldTitle = title
.title = Type: string. The title of the top item
.title = { -variable-type }: { -variable-string }. The title of the top item
snippet-itemFieldAbstract = abstract
.title = Type: string. The abstract of the top item
.title = { -variable-type }: { -variable-string }. The abstract of the top item
snippet-itemFieldCitKey = citation key
.title = Type: string. The citation key of the top item
.title = { -variable-type }: { -variable-string }. The citation key of the top item
snippet-itemFieldDate = date
.title = Type: string. The publication date of the top item
.title = { -variable-type }: { -variable-string }. The publication date of the top item
snippet-itemFieldDOI = DOI
.title = Type: string. The DOI of the top item
.title = { -variable-type }: { -variable-string }. The DOI of the top item
snippet-itemFieldDOIURL = DOI or URL
.title = Type: string. The DOI or URL of the top item
.title = { -variable-type }: { -variable-string }. The DOI or URL of the top item
snippet-itemFieldAuthors = authors
.title = Type: string. The authors of the top item
.title = { -variable-type }: { -variable-string }. The authors of the top item
snippet-itemFieldJournal = journal
.title = Type: string. The journal of the top item
.title = { -variable-type }: { -variable-string }. The journal of the top item
snippet-itemFieldTitleTranslation = title translation
.title = Type: string. The title translation of the top item
.title = { -variable-type }: { -variable-string }. The title translation of the top item
snippet-textTargetNoteItem = target note
.title = Type: Zotero.NoteItem. The note item to which the template is attached
.title = { -variable-type }: { -variable-note }. The note item to which the template is attached
snippet-textSharedObj = shared object
.title = Type: Object. A shared object that can be used to store data
.title = { -variable-type }: { -variable-object }. A shared object that can be used to store data
snippet-quickInsertLink = note link
.title = Type: string. The link of the note item to be linked
.title = { -variable-type }: { -variable-string }. The link of the note item to be linked
snippet-quickInsertLinkText = link text
.title = Type: string. The default label of the link
.title = { -variable-type }: { -variable-string }. The default label of the link
snippet-quickInsertSubNoteItem = linked note
.title = Type: Zotero.NoteItem. The note item to be linked to
.title = { -variable-type }: { -variable-note }. The note item to be linked to
snippet-quickInsertNoteItem = target note
.title = Type: Zotero.NoteItem. The note item to which the template is attached
.title = { -variable-type }: { -variable-note }. The note item to which the template is attached
snippet-quickImportLink = note link
.title = Type: string. The link of the note item to be imported
.title = { -variable-type }: { -variable-string }. The link of the note item to be imported
snippet-quickImportNoteItem = target note
.title = Type: Zotero.NoteItem. The note item to which the template is attached
.title = { -variable-type }: { -variable-note }. The note item to which the template is attached
snippet-quickNoteAnnotationItem = annotation
.title = Type: Zotero.AnnotationItem. The annotation item to be converted to a note
.title = { -variable-type }: { -variable-annotation }. The annotation item to be converted to a note
snippet-quickNoteTopItem = top item
.title = Type: Zotero.Item. The top-level parent of the variable `annotationItem`
.title = { -variable-type }: { -variable-item }. The top-level parent of the variable `annotationItem`
snippet-quickNoteNoteItem = target note
.title = Type: Zotero.NoteItem. The note item to which the template is attached
.title = { -variable-type }: { -variable-note }. The note item to which the template is attached
snippet-exportMDFileNameNoteItem = target note
.title = Type: Zotero.NoteItem. The note item to be exported
.title = { -variable-type }: { -variable-note }. The note item to be exported
snippet-exportMDFileHeaderNoteItem = target note
.title = Type: Zotero.NoteItem. The note item to be exported
.title = { -variable-type }: { -variable-note }. The note item to be exported
snippet-exportMDFileContentNoteItem = target note
.title = Type: Zotero.NoteItem. The note item to be exported
.title = { -variable-type }: { -variable-note }. The note item to be exported
snippet-exportMDFileContentMDContent = markdown content
.title = Type: string. The markdown content to be exported
.title = { -variable-type }: { -variable-string }. The markdown content to be exported

View File

@ -83,63 +83,72 @@ snippet-itemInLoop = in loop
.title = Content to be rendered for each item in the loop
snippet-itemAfterLoop = after loop
.title = Content to be rendered after the loop of items
-variable-type = Type
-variable-item = Zotero.Item
-variable-note = Zotero.NoteItem
-variable-annotation = Zotero.AnnotationItem
-variable-string = string
-variable-object = object
-variable-function = function
snippet-itemItems = items
.title = Type: Zotero.Item[]. The array of items to be rendered, available in beforeLoop and afterLoop stage
.title = { -variable-type }: { -variable-item }[]. The array of items to be rendered, available in beforeLoop and afterLoop stage
snippet-itemItem = item
.title = Type: Zotero.Item. The current item to be rendered, available in inLoop stage
.title = { -variable-type }: { -variable-item }. The current item to be rendered, available in inLoop stage
snippet-itemTopItem = top item
.title = Type: Zotero.Item. The top-level parent of the variable `item`, available in inLoop stage
.title = { -variable-type }: { -variable-item }. The top-level parent of the variable `item`, available in inLoop stage
snippet-itemTargetNoteItem = target note
.title = Type: Zotero.NoteItem. The note item to which the template is attached, available in any stage
.title = { -variable-type }: { -variable-note }. The note item to which the template is attached, available in any stage
snippet-itemCopyNoteImage = copy note image
.title = Type: Function. Copy the image of the note to the clipboard, available in any stage
.title = { -variable-type }: { -variable-function }. Copy the image of the note to the clipboard, available in any stage
snippet-itemSharedObj = shared object
.title = Type: Object. A shared object that can be used to store data across different stages
.title = { -variable-type }: { -variable-object }. A shared object that can be used to store data across different stages
snippet-itemFieldTitle = title
.title = Type: string. The title of the top item
.title = { -variable-type }: { -variable-string }. The title of the top item
snippet-itemFieldAbstract = abstract
.title = Type: string. The abstract of the top item
.title = { -variable-type }: { -variable-string }. The abstract of the top item
snippet-itemFieldCitKey = citation key
.title = Type: string. The citation key of the top item
.title = { -variable-type }: { -variable-string }. The citation key of the top item
snippet-itemFieldDate = date
.title = Type: string. The publication date of the top item
.title = { -variable-type }: { -variable-string }. The publication date of the top item
snippet-itemFieldDOI = DOI
.title = Type: string. The DOI of the top item
.title = { -variable-type }: { -variable-string }. The DOI of the top item
snippet-itemFieldDOIURL = DOI or URL
.title = Type: string. The DOI or URL of the top item
.title = { -variable-type }: { -variable-string }. The DOI or URL of the top item
snippet-itemFieldAuthors = authors
.title = Type: string. The authors of the top item
.title = { -variable-type }: { -variable-string }. The authors of the top item
snippet-itemFieldJournal = journal
.title = Type: string. The journal of the top item
.title = { -variable-type }: { -variable-string }. The journal of the top item
snippet-itemFieldTitleTranslation = title translation
.title = Type: string. The title translation of the top item
.title = { -variable-type }: { -variable-string }. The title translation of the top item
snippet-textTargetNoteItem = target note
.title = Type: Zotero.NoteItem. The note item to which the template is attached
.title = { -variable-type }: { -variable-note }. The note item to which the template is attached
snippet-textSharedObj = shared object
.title = Type: Object. A shared object that can be used to store data
.title = { -variable-type }: { -variable-object }. A shared object that can be used to store data
snippet-quickInsertLink = note link
.title = Type: string. The link of the note item to be linked
.title = { -variable-type }: { -variable-string }. The link of the note item to be linked
snippet-quickInsertLinkText = link text
.title = Type: string. The default label of the link
.title = { -variable-type }: { -variable-string }. The default label of the link
snippet-quickInsertSubNoteItem = linked note
.title = Type: Zotero.NoteItem. The note item to be linked to
.title = { -variable-type }: { -variable-note }. The note item to be linked to
snippet-quickInsertNoteItem = target note
.title = Type: Zotero.NoteItem. The note item to which the template is attached
.title = { -variable-type }: { -variable-note }. The note item to which the template is attached
snippet-quickImportLink = note link
.title = Type: string. The link of the note item to be imported
.title = { -variable-type }: { -variable-string }. The link of the note item to be imported
snippet-quickImportNoteItem = target note
.title = Type: Zotero.NoteItem. The note item to which the template is attached
.title = { -variable-type }: { -variable-note }. The note item to which the template is attached
snippet-quickNoteAnnotationItem = annotation
.title = Type: Zotero.AnnotationItem. The annotation item to be converted to a note
.title = { -variable-type }: { -variable-annotation }. The annotation item to be converted to a note
snippet-quickNoteTopItem = top item
.title = Type: Zotero.Item. The top-level parent of the variable `annotationItem`
.title = { -variable-type }: { -variable-item }. The top-level parent of the variable `annotationItem`
snippet-quickNoteNoteItem = target note
.title = Type: Zotero.NoteItem. The note item to which the template is attached
.title = { -variable-type }: { -variable-note }. The note item to which the template is attached
snippet-exportMDFileNameNoteItem = target note
.title = Type: Zotero.NoteItem. The note item to be exported
.title = { -variable-type }: { -variable-note }. The note item to be exported
snippet-exportMDFileHeaderNoteItem = target note
.title = Type: Zotero.NoteItem. The note item to be exported
.title = { -variable-type }: { -variable-note }. The note item to be exported
snippet-exportMDFileContentNoteItem = target note
.title = Type: Zotero.NoteItem. The note item to be exported
.title = { -variable-type }: { -variable-note }. The note item to be exported
snippet-exportMDFileContentMDContent = markdown content
.title = Type: string. The markdown content to be exported
.title = { -variable-type }: { -variable-string }. The markdown content to be exported

View File

@ -83,63 +83,72 @@ snippet-itemInLoop = in loop
.title = Content to be rendered for each item in the loop
snippet-itemAfterLoop = after loop
.title = Content to be rendered after the loop of items
-variable-type = Type
-variable-item = Zotero.Item
-variable-note = Zotero.NoteItem
-variable-annotation = Zotero.AnnotationItem
-variable-string = string
-variable-object = object
-variable-function = function
snippet-itemItems = items
.title = Type: Zotero.Item[]. The array of items to be rendered, available in beforeLoop and afterLoop stage
.title = { -variable-type }: { -variable-item }[]. The array of items to be rendered, available in beforeLoop and afterLoop stage
snippet-itemItem = item
.title = Type: Zotero.Item. The current item to be rendered, available in inLoop stage
.title = { -variable-type }: { -variable-item }. The current item to be rendered, available in inLoop stage
snippet-itemTopItem = top item
.title = Type: Zotero.Item. The top-level parent of the variable `item`, available in inLoop stage
.title = { -variable-type }: { -variable-item }. The top-level parent of the variable `item`, available in inLoop stage
snippet-itemTargetNoteItem = target note
.title = Type: Zotero.NoteItem. The note item to which the template is attached, available in any stage
.title = { -variable-type }: { -variable-note }. The note item to which the template is attached, available in any stage
snippet-itemCopyNoteImage = copy note image
.title = Type: Function. Copy the image of the note to the clipboard, available in any stage
.title = { -variable-type }: { -variable-function }. Copy the image of the note to the clipboard, available in any stage
snippet-itemSharedObj = shared object
.title = Type: Object. A shared object that can be used to store data across different stages
.title = { -variable-type }: { -variable-object }. A shared object that can be used to store data across different stages
snippet-itemFieldTitle = title
.title = Type: string. The title of the top item
.title = { -variable-type }: { -variable-string }. The title of the top item
snippet-itemFieldAbstract = abstract
.title = Type: string. The abstract of the top item
.title = { -variable-type }: { -variable-string }. The abstract of the top item
snippet-itemFieldCitKey = citation key
.title = Type: string. The citation key of the top item
.title = { -variable-type }: { -variable-string }. The citation key of the top item
snippet-itemFieldDate = date
.title = Type: string. The publication date of the top item
.title = { -variable-type }: { -variable-string }. The publication date of the top item
snippet-itemFieldDOI = DOI
.title = Type: string. The DOI of the top item
.title = { -variable-type }: { -variable-string }. The DOI of the top item
snippet-itemFieldDOIURL = DOI or URL
.title = Type: string. The DOI or URL of the top item
.title = { -variable-type }: { -variable-string }. The DOI or URL of the top item
snippet-itemFieldAuthors = authors
.title = Type: string. The authors of the top item
.title = { -variable-type }: { -variable-string }. The authors of the top item
snippet-itemFieldJournal = journal
.title = Type: string. The journal of the top item
.title = { -variable-type }: { -variable-string }. The journal of the top item
snippet-itemFieldTitleTranslation = title translation
.title = Type: string. The title translation of the top item
.title = { -variable-type }: { -variable-string }. The title translation of the top item
snippet-textTargetNoteItem = target note
.title = Type: Zotero.NoteItem. The note item to which the template is attached
.title = { -variable-type }: { -variable-note }. The note item to which the template is attached
snippet-textSharedObj = shared object
.title = Type: Object. A shared object that can be used to store data
.title = { -variable-type }: { -variable-object }. A shared object that can be used to store data
snippet-quickInsertLink = note link
.title = Type: string. The link of the note item to be linked
.title = { -variable-type }: { -variable-string }. The link of the note item to be linked
snippet-quickInsertLinkText = link text
.title = Type: string. The default label of the link
.title = { -variable-type }: { -variable-string }. The default label of the link
snippet-quickInsertSubNoteItem = linked note
.title = Type: Zotero.NoteItem. The note item to be linked to
.title = { -variable-type }: { -variable-note }. The note item to be linked to
snippet-quickInsertNoteItem = target note
.title = Type: Zotero.NoteItem. The note item to which the template is attached
.title = { -variable-type }: { -variable-note }. The note item to which the template is attached
snippet-quickImportLink = note link
.title = Type: string. The link of the note item to be imported
.title = { -variable-type }: { -variable-string }. The link of the note item to be imported
snippet-quickImportNoteItem = target note
.title = Type: Zotero.NoteItem. The note item to which the template is attached
.title = { -variable-type }: { -variable-note }. The note item to which the template is attached
snippet-quickNoteAnnotationItem = annotation
.title = Type: Zotero.AnnotationItem. The annotation item to be converted to a note
.title = { -variable-type }: { -variable-annotation }. The annotation item to be converted to a note
snippet-quickNoteTopItem = top item
.title = Type: Zotero.Item. The top-level parent of the variable `annotationItem`
.title = { -variable-type }: { -variable-item }. The top-level parent of the variable `annotationItem`
snippet-quickNoteNoteItem = target note
.title = Type: Zotero.NoteItem. The note item to which the template is attached
.title = { -variable-type }: { -variable-note }. The note item to which the template is attached
snippet-exportMDFileNameNoteItem = target note
.title = Type: Zotero.NoteItem. The note item to be exported
.title = { -variable-type }: { -variable-note }. The note item to be exported
snippet-exportMDFileHeaderNoteItem = target note
.title = Type: Zotero.NoteItem. The note item to be exported
.title = { -variable-type }: { -variable-note }. The note item to be exported
snippet-exportMDFileContentNoteItem = target note
.title = Type: Zotero.NoteItem. The note item to be exported
.title = { -variable-type }: { -variable-note }. The note item to be exported
snippet-exportMDFileContentMDContent = markdown content
.title = Type: string. The markdown content to be exported
.title = { -variable-type }: { -variable-string }. The markdown content to be exported

View File

@ -83,63 +83,72 @@ snippet-itemInLoop = in loop
.title = Content to be rendered for each item in the loop
snippet-itemAfterLoop = after loop
.title = Content to be rendered after the loop of items
-variable-type = Type
-variable-item = Zotero.Item
-variable-note = Zotero.NoteItem
-variable-annotation = Zotero.AnnotationItem
-variable-string = string
-variable-object = object
-variable-function = function
snippet-itemItems = items
.title = Type: Zotero.Item[]. The array of items to be rendered, available in beforeLoop and afterLoop stage
.title = { -variable-type }: { -variable-item }[]. The array of items to be rendered, available in beforeLoop and afterLoop stage
snippet-itemItem = item
.title = Type: Zotero.Item. The current item to be rendered, available in inLoop stage
.title = { -variable-type }: { -variable-item }. The current item to be rendered, available in inLoop stage
snippet-itemTopItem = top item
.title = Type: Zotero.Item. The top-level parent of the variable `item`, available in inLoop stage
.title = { -variable-type }: { -variable-item }. The top-level parent of the variable `item`, available in inLoop stage
snippet-itemTargetNoteItem = target note
.title = Type: Zotero.NoteItem. The note item to which the template is attached, available in any stage
.title = { -variable-type }: { -variable-note }. The note item to which the template is attached, available in any stage
snippet-itemCopyNoteImage = copy note image
.title = Type: Function. Copy the image of the note to the clipboard, available in any stage
.title = { -variable-type }: { -variable-function }. Copy the image of the note to the clipboard, available in any stage
snippet-itemSharedObj = shared object
.title = Type: Object. A shared object that can be used to store data across different stages
.title = { -variable-type }: { -variable-object }. A shared object that can be used to store data across different stages
snippet-itemFieldTitle = title
.title = Type: string. The title of the top item
.title = { -variable-type }: { -variable-string }. The title of the top item
snippet-itemFieldAbstract = abstract
.title = Type: string. The abstract of the top item
.title = { -variable-type }: { -variable-string }. The abstract of the top item
snippet-itemFieldCitKey = citation key
.title = Type: string. The citation key of the top item
.title = { -variable-type }: { -variable-string }. The citation key of the top item
snippet-itemFieldDate = date
.title = Type: string. The publication date of the top item
.title = { -variable-type }: { -variable-string }. The publication date of the top item
snippet-itemFieldDOI = DOI
.title = Type: string. The DOI of the top item
.title = { -variable-type }: { -variable-string }. The DOI of the top item
snippet-itemFieldDOIURL = DOI or URL
.title = Type: string. The DOI or URL of the top item
.title = { -variable-type }: { -variable-string }. The DOI or URL of the top item
snippet-itemFieldAuthors = authors
.title = Type: string. The authors of the top item
.title = { -variable-type }: { -variable-string }. The authors of the top item
snippet-itemFieldJournal = journal
.title = Type: string. The journal of the top item
.title = { -variable-type }: { -variable-string }. The journal of the top item
snippet-itemFieldTitleTranslation = title translation
.title = Type: string. The title translation of the top item
.title = { -variable-type }: { -variable-string }. The title translation of the top item
snippet-textTargetNoteItem = target note
.title = Type: Zotero.NoteItem. The note item to which the template is attached
.title = { -variable-type }: { -variable-note }. The note item to which the template is attached
snippet-textSharedObj = shared object
.title = Type: Object. A shared object that can be used to store data
.title = { -variable-type }: { -variable-object }. A shared object that can be used to store data
snippet-quickInsertLink = note link
.title = Type: string. The link of the note item to be linked
.title = { -variable-type }: { -variable-string }. The link of the note item to be linked
snippet-quickInsertLinkText = link text
.title = Type: string. The default label of the link
.title = { -variable-type }: { -variable-string }. The default label of the link
snippet-quickInsertSubNoteItem = linked note
.title = Type: Zotero.NoteItem. The note item to be linked to
.title = { -variable-type }: { -variable-note }. The note item to be linked to
snippet-quickInsertNoteItem = target note
.title = Type: Zotero.NoteItem. The note item to which the template is attached
.title = { -variable-type }: { -variable-note }. The note item to which the template is attached
snippet-quickImportLink = note link
.title = Type: string. The link of the note item to be imported
.title = { -variable-type }: { -variable-string }. The link of the note item to be imported
snippet-quickImportNoteItem = target note
.title = Type: Zotero.NoteItem. The note item to which the template is attached
.title = { -variable-type }: { -variable-note }. The note item to which the template is attached
snippet-quickNoteAnnotationItem = annotation
.title = Type: Zotero.AnnotationItem. The annotation item to be converted to a note
.title = { -variable-type }: { -variable-annotation }. The annotation item to be converted to a note
snippet-quickNoteTopItem = top item
.title = Type: Zotero.Item. The top-level parent of the variable `annotationItem`
.title = { -variable-type }: { -variable-item }. The top-level parent of the variable `annotationItem`
snippet-quickNoteNoteItem = target note
.title = Type: Zotero.NoteItem. The note item to which the template is attached
.title = { -variable-type }: { -variable-note }. The note item to which the template is attached
snippet-exportMDFileNameNoteItem = target note
.title = Type: Zotero.NoteItem. The note item to be exported
.title = { -variable-type }: { -variable-note }. The note item to be exported
snippet-exportMDFileHeaderNoteItem = target note
.title = Type: Zotero.NoteItem. The note item to be exported
.title = { -variable-type }: { -variable-note }. The note item to be exported
snippet-exportMDFileContentNoteItem = target note
.title = Type: Zotero.NoteItem. The note item to be exported
.title = { -variable-type }: { -variable-note }. The note item to be exported
snippet-exportMDFileContentMDContent = markdown content
.title = Type: string. The markdown content to be exported
.title = { -variable-type }: { -variable-string }. The markdown content to be exported

View File

@ -1,6 +1,6 @@
title = 模板编辑器
templateType = 模板类型
templateType = 模板{ -variable-type }
templateType-item =
.label = 条目
@ -12,7 +12,7 @@ templateType-unknown =
.label = ?
templateType-help =
.label = 关于...
.title = 模板类型的详细解释
.title = 模板{ -variable-type }的详细解释
templateName = 模板名称
@ -82,63 +82,72 @@ snippet-itemInLoop = 循环中
.title = 为循环中的每个条目渲染的内容
snippet-itemAfterLoop = 循环后
.title = 在条目循环之后渲染的内容
-variable-type = 类型
-variable-item = Zotero.Item
-variable-note = Zotero.NoteItem
-variable-annotation = Zotero.AnnotationItem
-variable-string = 字符串
-variable-object = 对象
-variable-function = 函数
snippet-itemItems = 所有条目
.title = 类型Zotero.Item[]。要渲染的条目数组,可在 beforeLoop 和 afterLoop 阶段使用
.title = { -variable-type }{ -variable-item }[]。要渲染的条目数组,可在 beforeLoop 和 afterLoop 阶段使用
snippet-itemItem = 当前条目
.title = 类型Zotero.Item。要渲染的当前条目可在 inLoop 阶段使用
.title = { -variable-type }{ -variable-item }。要渲染的当前条目,可在 inLoop 阶段使用
snippet-itemTopItem = 顶级条目
.title = 类型Zotero.Item。变量 `item` 的顶级父级,可在 inLoop 阶段使用
.title = { -variable-type }{ -variable-item }。变量 `item` 的顶级父级,可在 inLoop 阶段使用
snippet-itemTargetNoteItem = 目标笔记
.title = 类型Zotero.NoteItem。模板插入到的笔记条目可在任何阶段使用
.title = { -variable-type }{ -variable-note }。模板插入到的笔记条目,可在任何阶段使用
snippet-itemCopyNoteImage = 复制笔记图片
.title = 类型Function。将笔记的图片复制到剪贴板,可在任何阶段使用
.title = { -variable-type }{ -variable-function }。将笔记的图片复制到剪贴板,可在任何阶段使用
snippet-itemSharedObj = 共享对象
.title = 类型object。可用于在不同阶段存储数据的共享对象
.title = { -variable-type }{ -variable-object }。可用于在不同阶段存储数据的共享对象
snippet-itemFieldTitle = 标题
.title = 类型: 字符串。顶级条目的标题。可在 inLoop 阶段使用
.title = { -variable-type }{ -variable-string }。顶级条目的标题。可在 inLoop 阶段使用
snippet-itemFieldAbstract = 摘要
.title = 类型: 字符串。顶级条目的摘要。可在 inLoop 阶段使用
.title = { -variable-type }{ -variable-string }。顶级条目的摘要。可在 inLoop 阶段使用
snippet-itemFieldCitKey = citation key
.title = 类型: 字符串。顶级条目的 citation key。可在 inLoop 阶段使用
.title = { -variable-type }{ -variable-string }。顶级条目的 citation key。可在 inLoop 阶段使用
snippet-itemFieldDate = 日期
.title = 类型: 字符串。顶级条目的发布日期。可在 inLoop 阶段使用
.title = { -variable-type }{ -variable-string }。顶级条目的发布日期。可在 inLoop 阶段使用
snippet-itemFieldDOI = DOI
.title = 类型: 字符串。顶级条目的DOI。可在 inLoop 阶段使用
.title = { -variable-type }{ -variable-string }。顶级条目的DOI。可在 inLoop 阶段使用
snippet-itemFieldDOIURL = DOI或URL
.title = 类型: 字符串。顶级条目的DOI或URL。可在 inLoop 阶段使用
.title = { -variable-type }{ -variable-string }。顶级条目的DOI或URL。可在 inLoop 阶段使用
snippet-itemFieldAuthors = 作者
.title = 类型: 字符串。顶级条目的作者。可在 inLoop 阶段使用
.title = { -variable-type }{ -variable-string }。顶级条目的作者。可在 inLoop 阶段使用
snippet-itemFieldJournal = 期刊
.title = 类型: 字符串。顶级条目的期刊。可在 inLoop 阶段使用
.title = { -variable-type }{ -variable-string }。顶级条目的期刊。可在 inLoop 阶段使用
snippet-itemFieldTitleTranslation = 标题翻译
.title = 类型: 字符串。顶级条目的标题翻译*需要Translate for Zotero插件。可在 inLoop 阶段使用
.title = { -variable-type }{ -variable-string }。顶级条目的标题翻译*需要Translate for Zotero插件。可在 inLoop 阶段使用
snippet-textTargetNoteItem = 目标笔记
.title = 类型Zotero.NoteItem。模板插入到的笔记条目
.title = { -variable-type }{ -variable-note }。模板插入到的笔记条目
snippet-textSharedObj = 共享对象
.title = 类型object。可用于存储数据的共享对象
.title = { -variable-type }{ -variable-object }。可用于存储数据的共享对象
snippet-quickInsertLink = 笔记链接
.title = 类型:字符串。要链接的笔记条目的链接
.title = { -variable-type }{ -variable-string }。要链接的笔记条目的链接
snippet-quickInsertLinkText = 链接文本
.title = 类型:字符串。链接的默认标签
.title = { -variable-type }{ -variable-string }。链接的默认标签
snippet-quickInsertSubNoteItem = 链接的笔记
.title = 类型Zotero.NoteItem。要链接到的笔记条目
.title = { -variable-type }{ -variable-note }。要链接到的笔记条目
snippet-quickInsertNoteItem = 目标笔记
.title = 类型Zotero.NoteItem。模板插入到的笔记条目
.title = { -variable-type }{ -variable-note }。模板插入到的笔记条目
snippet-quickImportLink = 笔记链接
.title = 类型:字符串。要导入的笔记条目的链接
.title = { -variable-type }{ -variable-string }。要导入的笔记条目的链接
snippet-quickImportNoteItem = 目标笔记
.title = 类型Zotero.NoteItem。模板插入到的笔记条目
.title = { -variable-type }{ -variable-note }。模板插入到的笔记条目
snippet-quickNoteAnnotationItem = 注释
.title = 类型Zotero.AnnotationItem。要转换为笔记的注释条目
.title = { -variable-type }{ -variable-annotation }。要转换为笔记的注释条目
snippet-quickNoteTopItem = 顶级条目
.title = 类型Zotero.Item。变量 `annotationItem` 的顶级父级
.title = { -variable-type }{ -variable-item }。变量 `annotationItem` 的顶级父级
snippet-quickNoteNoteItem = 目标笔记
.title = 类型Zotero.NoteItem。模板插入到的笔记条目
.title = { -variable-type }{ -variable-note }。模板插入到的笔记条目
snippet-exportMDFileNameNoteItem = 目标笔记
.title = 类型Zotero.NoteItem。要导出的笔记条目
.title = { -variable-type }{ -variable-note }。要导出的笔记条目
snippet-exportMDFileHeaderNoteItem = 目标笔记
.title = 类型Zotero.NoteItem。要导出的笔记条目
.title = { -variable-type }{ -variable-note }。要导出的笔记条目
snippet-exportMDFileContentNoteItem = 目标笔记
.title = 类型Zotero.NoteItem。要导出的笔记条目
.title = { -variable-type }{ -variable-note }。要导出的笔记条目
snippet-exportMDFileContentMDContent = markdown 内容
.title = 类型:字符串。要导出的 markdown 内容
.title = { -variable-type }{ -variable-string }。要导出的 markdown 内容