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

Final update for 1.13 #10

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 12 additions & 3 deletions DNS_Inventory_V1.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -400,9 +400,9 @@
This script creates a Word, PDF, Formatted Text or HTML document.
.NOTES
NAME: DNS_Inventory.ps1
VERSION: 1.12
VERSION: 1.13
AUTHOR: Carl Webster and Michael B. Smith
LASTEDIT: December 6, 2019
LASTEDIT: December 17, 2019
#>

#endregion
Expand Down Expand Up @@ -525,6 +525,14 @@ Param(
#Created on February 10, 2016
#Version 1.00 released to the community on July 25, 2016

#Version 1.13 17-Dec-2019
# Fix Swedish Table of Contents (Thanks to Johan Kallio)
# From
# 'sv-' { 'Automatisk innehållsförteckning2'; Break }
# To
# 'sv-' { 'Automatisk innehållsförteckn2'; Break }
# Updated help text
#
#Version 1.12 6-Dec-2019
# Fixed text string "Use root hint if no forwarders are available" to "Use root hints if no forwarders are available"
# Fixed spacing error in Text output for "Use root hints if no forwarders are available"
Expand Down Expand Up @@ -881,7 +889,8 @@ Function SetWordHashTable
'nb-' { 'Automatisk tabell 2'; Break }
'nl-' { 'Automatische inhoudsopgave 2'; Break }
'pt-' { 'Sumário Automático 2'; Break }
'sv-' { 'Automatisk innehållsförteckning2'; Break }
# fix in 1.13 thanks to Johan Kallio 'sv-' { 'Automatisk innehållsförteckning2'; Break }
'sv-' { 'Automatisk innehållsförteckn2'; Break }
'zh-' { '自动目录 2'; Break }
}
)
Expand Down
Loading