Added check for sections in tables
This commit is contained in:
parent
6c42e2b6b3
commit
6059460ced
7 changed files with 63 additions and 5 deletions
|
@ -212,6 +212,12 @@ Function getRussian(identifier As String) As String
|
|||
Case "setOutlineLevel"
|
||||
getRussian = "задан уровень структуры документа"
|
||||
Exit Function
|
||||
Case "section"
|
||||
getRussian = "Раздел"
|
||||
Exit Function
|
||||
Case "isInTable"
|
||||
getRussian = "находится внутри таблицы."
|
||||
Exit Function
|
||||
Case Else
|
||||
getRussian = "Перевод не найден"
|
||||
End Select
|
||||
|
@ -406,6 +412,12 @@ Function getEnglish(identifier As String) As String
|
|||
Case "setOutlineLevel"
|
||||
getEnglish = "set document structure level"
|
||||
Exit Function
|
||||
Case "section"
|
||||
getEnglish = "Section"
|
||||
Exit Function
|
||||
Case "isInTable"
|
||||
getEnglish = "located inside the table."
|
||||
Exit Function
|
||||
Case Else
|
||||
getEnglish = "No translation"
|
||||
End Select
|
||||
|
@ -599,6 +611,12 @@ Function getCroatian(identifier As String) As String
|
|||
Case "setOutlineLevel"
|
||||
getCroatian = "zadati uroven strukturni dokument"
|
||||
Exit Function
|
||||
Case "section"
|
||||
getCroatian = "Odjeljak"
|
||||
Exit Function
|
||||
Case "isInTable"
|
||||
getCroatian = "smještene unutar stola."
|
||||
Exit Function
|
||||
Case Else
|
||||
getCroatian = "No translation"
|
||||
End Select
|
||||
|
@ -792,6 +810,12 @@ Function getSerbian(identifier As String) As String
|
|||
Case "setOutlineLevel"
|
||||
getSerbian = "задатен уровен структури документа"
|
||||
Exit Function
|
||||
Case "section"
|
||||
getSerbian = "Одјељак"
|
||||
Exit Function
|
||||
Case "isInTable"
|
||||
getSerbian = "смештене унутар стола."
|
||||
Exit Function
|
||||
Case Else
|
||||
getSerbian = "No translation"
|
||||
End Select
|
||||
|
@ -985,6 +1009,12 @@ Function getBosnian(identifier As String) As String
|
|||
Case "setOutlineLevel"
|
||||
getBosnian = "zadati uroven strukturni dokument"
|
||||
Exit Function
|
||||
Case "section"
|
||||
getBosnian = "Odjeljak"
|
||||
Exit Function
|
||||
Case "isInTable"
|
||||
getBosnian = "smještene unutar stola."
|
||||
Exit Function
|
||||
Case Else
|
||||
getBosnian = "No translation"
|
||||
End Select
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue