Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add punctuation inventory #1383

Merged
merged 10 commits into from
Dec 19, 2024
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
"%webView_platformScriptureEditor_charactersInventory%": "Inventory: Characters...",
"%webView_platformScriptureEditor_repeatedWordsInventory%": "Inventory: Repeated Words...",
"%webView_platformScriptureEditor_markersInventory%": "Inventory: Markers...",
"%webView_platformScriptureEditor_punctuationInventory%": "Inventory: Punctuation...",
"%webView_platformScriptureEditor_configureChecks%": "Configure Checks...",
"%webView_platformScriptureEditor_showCheckResults%": "Show Check Results...",
"%webView_platformScriptureEditor_publisherInfo%": "Publisher Info",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,12 @@
"order": 3,
"command": "platformScripture.openMarkersInventory"
},
{
"label": "%webView_platformScriptureEditor_punctuationInventory%",
"group": "platformScriptureEditor.inventory",
"order": 4,
"command": "platformScripture.openPunctuationInventory"
},
{
"label": "%webView_platformScriptureEditor_configureChecks%",
"group": "platformScriptureEditor.checks",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,16 @@
"%project_settings_platformScripture_validMarkers_description%": "List of markers that are accepted in this project.",
"%project_settings_platformScripture_invalidMarkers_label%": "Invalid Markers",
"%project_settings_platformScripture_invalidMarkers_description%": "List of markers that are not accepted in this project.",
"%project_settings_platformScripture_validPunctuation_label%": "Valid Punctuation",
"%project_settings_platformScripture_validPunctuation_description%": "List of punctuation characters that are accepted in this project.",
"%project_settings_platformScripture_invalidPunctuation_label%": "Invalid Punctuation",
"%project_settings_platformScripture_invalidPunctuation_description%": "List of punctuation characters that are not accepted in this project.",
"%webView_platformScripture_tools%": "Tools",
"%webView_platformScripture_showCheckResults%": "Show Check Results...",
"%webView_characterInventory_title%": "Character Inventory: {projectName}",
"%webView_repeatedWordsInventory_title%": "Repeated Words Inventory: {projectName}",
"%webView_markersInventory_title%": "Markers Inventory: {projectName}",
"%webView_punctuationInventory_title%": "Punctuation Inventory: {projectName}",
"%webView_repeatedWordsInventory_title%": "Repeated Words Inventory: {projectName}",
"%webView_configureChecks_title%": "Configure Checks: {projectName}",
"%webView_configureChecks_checks%": "Checks",
"%webView_configureChecks_loadingChecks%": "Loading checks",
Expand All @@ -50,14 +55,22 @@
"%webView_inventory_scope_verse%": "Current verse",
"%webView_inventory_filter_text%": "Filter text...",
"%webView_inventory_show_additional_items%": "Show Additional Items",
"%webView_inventory_table_header_repeated_words%": "Repeated Word",
"%webView_inventory_table_header_character%": "Character",
"%webView_inventory_table_header_context%": "Context",
"%webView_inventory_table_header_count%": "Count",
"%webView_inventory_table_header_marker%": "Marker",
"%webView_inventory_table_header_preceding_marker%": "Preceding Marker",
"%webView_inventory_table_header_punctuation%": "Punctuation",
"%webView_inventory_table_header_repeated_words%": "Repeated Word",
"%webView_inventory_table_header_status%": "Status",
"%webView_inventory_table_header_style_name%": "Style Name",
"%webView_inventory_table_header_unicode_value%": "Unicode Value",
"%webView_inventory_table_header_count%": "Count",
"%webView_inventory_table_header_status%": "Status",
"%webView_inventory_table_punctuation_context_isolated%": "Isolated",
"%webView_inventory_table_punctuation_context_wordInitial%": "Word Initial",
"%webView_inventory_table_punctuation_context_wordFinal%": "Word Final",
"%webView_inventory_table_punctuation_context_wordMedial%": "Word Medial",
"%webView_inventory_table_punctuation_showSequences%": "Show Sequences",
"%webView_inventory_table_punctuation_showSinglePunctuationCharacter%": "Show Single Punctuation Character",
"%webView_inventory_show_preceding_marker%": "Show Preceding Marker",
"%webView_inventory_unknown_marker%": "Unknown Marker",
"%webView_inventory_occurrences_table_header_reference%": "Reference",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,18 @@
"description": "%project_settings_platformScripture_invalidMarkers_description%",
"default": "",
"includeProjectInterfaces": ["Paratext", "Scripture"]
},
"platformScripture.validPunctuation": {
"label": "%project_settings_platformScripture_validPunctuation_label%",
"description": "%project_settings_platformScripture_validPunctuation_description%",
"default": "",
"includeProjectInterfaces": ["Paratext", "Scripture"]
},
"platformScripture.invalidPunctuation": {
"label": "%project_settings_platformScripture_invalidPunctuation_label%",
"description": "%project_settings_platformScripture_invalidPunctuation_description%",
"default": "",
"includeProjectInterfaces": ["Paratext", "Scripture"]
}
}
}
Expand Down
Loading
Loading