Dave Jarvis' Repositories

git clone https://repo.autonoma.ca/repo/keenwrite.git
#
# Copyright (c) 2016 Karl Tauber <karl at jformdesigner dot com>
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are met:
#
#  * Redistributions of source code must retain the above copyright
#    notice, this list of conditions and the following disclaimer.
#
#  * Redistributions in binary form must reproduce the above copyright
#    notice, this list of conditions and the following disclaimer in the
#    documentation and/or other materials provided with the distribution.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
# HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#

#---- MainWindow ----

MainWindow.fileMenu=File
MainWindow.fileNewAction=New
MainWindow.fileOpenAction=Open...
MainWindow.fileCloseAction=Close
MainWindow.fileCloseAllAction=Close All
MainWindow.fileSaveAction=Save
MainWindow.fileSaveAllAction=Save All
MainWindow.fileExitAction=Exit

MainWindow.editMenu=Edit
MainWindow.editUndoAction=Undo
MainWindow.editRedoAction=Redo

MainWindow.insertMenu=Insert
MainWindow.insertBoldAction=Bold
MainWindow.insertItalicAction=Italic
MainWindow.insertStrikethroughAction=Strikethrough
MainWindow.insertBlockquoteAction=Blockquote
MainWindow.insertCodeAction=Inline Code
MainWindow.insertFencedCodeBlockAction=Fenced Code Block
MainWindow.insertFencedCodeBlockText=enter code here
MainWindow.insertLinkAction=Link...
MainWindow.insertImageAction=Image...
MainWindow.insertHeader1Action=Header 1
MainWindow.insertHeader1Text=header 1
MainWindow.insertHeader2Action=Header 2
MainWindow.insertHeader2Text=header 2
MainWindow.insertHeader3Action=Header 3
MainWindow.insertHeader3Text=header 3
MainWindow.insertHeader4Action=Header 4
MainWindow.insertHeader4Text=header 4
MainWindow.insertHeader5Action=Header 5
MainWindow.insertHeader5Text=header 5
MainWindow.insertHeader6Action=Header 6
MainWindow.insertHeader6Text=header 6
MainWindow.insertUnorderedListAction=Unordered List
MainWindow.insertOrderedListAction=Ordered List
MainWindow.insertHorizontalRuleAction=Horizontal Rule

MainWindow.toolsMenu=Tools
MainWindow.toolsOptionsAction=Options

MainWindow.helpMenu=Help
MainWindow.helpAboutAction=About Markdown Writer FX

MainWindow.about.title=About
MainWindow.about.headerText=Markdown Writer FX
MainWindow.about.contentText=Copyright (c) 2015 Karl Tauber <karl at jformdesigner dot com>\nAll rights reserved.


#---- FileEditor ----

FileEditor.untitled=Untitled
FileEditor.loadFailed.message=Failed to load ''{0}''.\n\nReason: {1}
FileEditor.loadFailed.title=Load
FileEditor.saveFailed.message=Failed to save ''{0}''.\n\nReason: {1}
FileEditor.saveFailed.title=Save


#---- FileEditorTabPane ----

FileEditorTabPane.openChooser.title=Open Markdown File
FileEditorTabPane.saveChooser.title=Save Markdown File
FileEditorTabPane.closeAlert.message=''{0}'' has been modified. Save changes?
FileEditorTabPane.closeAlert.title=Close
FileEditorTabPane.chooser.markdownFilesFilter=Markdown Files
FileEditorTabPane.chooser.allFilesFilter=All Files


#==== Controls ================================================================

#---- BrowseDirectoryButton ----

BrowseDirectoryButton.tooltip=Browse for local folder
BrowseDirectoryButton.chooser.title=Browse for local folder


#---- BrowseFileButton ----

BrowseFileButton.tooltip=Browse for local file
BrowseFileButton.chooser.title=Browse for local file
BrowseFileButton.chooser.allFilesFilter=All Files


#==== Dialogs =================================================================

#---- ImageDialog ----

ImageDialog.title=Image
ImageDialog.chooser.imagesFilter=Images
ImageDialog.previewLabel.text=Markdown Preview\:
ImageDialog.textLabel.text=Alternate Text\:
ImageDialog.titleLabel.text=Title (tooltip)\:
ImageDialog.urlLabel.text=Image URL\:


#---- LinkDialog ----

LinkDialog.title=Link
LinkDialog.previewLabel.text=Markdown Preview\:
LinkDialog.textLabel.text=Link Text\:
LinkDialog.titleLabel.text=Title (tooltip)\:
LinkDialog.urlLabel.text=Link URL\:


#==== Options =================================================================

#---- OptionsDialog ----

OptionsDialog.title=Options
OptionsDialog.generalTab.text=General
OptionsDialog.markdownTab.text=Markdown


#---- GeneralOptionsPane ----

GeneralOptionsPane.encodingLabel.text=En_coding\:
GeneralOptionsPane.lineSeparatorLabel.text=_Line separator\:
GeneralOptionsPane.lineSeparatorLabel2.text=(applies to new files only)
GeneralOptionsPane.showWhitespaceCheckBox.text=Show _Whitespace Characters

GeneralOptionsPane.platformDefault=Platform Default ({0})
GeneralOptionsPane.sepWindows=Windows (CRLF)
GeneralOptionsPane.sepUnix=Unix (LF)


#---- MarkdownOptionsPane ----

MarkdownOptionsPane.abbreviationsExtCheckBox.text=A_bbreviations in the way of
MarkdownOptionsPane.abbreviationsExtLink.text=Markdown Extra
MarkdownOptionsPane.anchorlinksExtCheckBox.text=_Anchor links in headers
MarkdownOptionsPane.atxHeaderSpaceExtCheckBox.text=Requires a space char after Atx \# header prefixes, so that \#dasdsdaf is not a header
MarkdownOptionsPane.autolinksExtCheckBox.text=_Plain (undelimited) autolinks in the way of
MarkdownOptionsPane.autolinksExtLink.text=Github-flavoured-Markdown
MarkdownOptionsPane.definitionListsExtCheckBox.text=_Definition lists in the way of
MarkdownOptionsPane.definitionListsExtLink.text=Markdown Extra
MarkdownOptionsPane.extAnchorLinksExtCheckBox.text=Generate anchor links for headers using complete contents of the header
MarkdownOptionsPane.fencedCodeBlocksExtCheckBox.text=_Fenced Code Blocks in the way of
MarkdownOptionsPane.fencedCodeBlocksExtLabel.text=or
MarkdownOptionsPane.fencedCodeBlocksExtLink.text=Markdown Extra
MarkdownOptionsPane.fencedCodeBlocksExtLink2.text=Github-flavoured-Markdown
MarkdownOptionsPane.forceListItemParaExtCheckBox.text=Force List and Definition Paragraph wrapping if it includes more than just a single paragraph
MarkdownOptionsPane.hardwrapsExtCheckBox.text=_Newlines in paragraph-like content as real line breaks, see
MarkdownOptionsPane.hardwrapsExtLink.text=Github-flavoured-Markdown
MarkdownOptionsPane.quotesExtCheckBox.text=Beautify single _quotes, double quotes and double angle quotes (� and �)
MarkdownOptionsPane.relaxedHrRulesExtCheckBox.text=Allow horizontal rules without a blank line following them
MarkdownOptionsPane.smartsExtCheckBox.text=Beautify apostrophes, _ellipses ("..." and ". . .") and dashes ("--" and "---")
MarkdownOptionsPane.strikethroughExtCheckBox.text=_Strikethrough
MarkdownOptionsPane.suppressHtmlBlocksExtCheckBox.text=Suppress the _output of HTML blocks
MarkdownOptionsPane.suppressInlineHtmlExtCheckBox.text=Suppress the o_utput of inline HTML elements
MarkdownOptionsPane.tablesExtCheckBox.text=_Tables similar to
MarkdownOptionsPane.tablesExtLabel.text=(like
MarkdownOptionsPane.tablesExtLabel2.text=tables, but with colspan support)
MarkdownOptionsPane.tablesExtLink.text=MultiMarkdown
MarkdownOptionsPane.tablesExtLink2.text=Markdown Extra
MarkdownOptionsPane.taskListItemsExtCheckBox.text=GitHub style task list items
MarkdownOptionsPane.wikilinksExtCheckBox.text=_Wiki-style links ("[[wiki link]]")


#===== preview ================================================================

#---- MarkdownPreviewPane ----

MarkdownPreviewPane.astTab=Markdown AST
MarkdownPreviewPane.htmlSourceTab=HTML Source
MarkdownPreviewPane.webViewTab=Preview