Modification to export json file
This commit is contained in:
parent
ea82f76e75
commit
e14b564742
|
@ -14,7 +14,7 @@ Sub Export_File(sType, iCol As Integer)
|
||||||
Dim bOut() As Byte
|
Dim bOut() As Byte
|
||||||
Dim shSheet As Worksheet: Set shSheet = Worksheets(sType)
|
Dim shSheet As Worksheet: Set shSheet = Worksheets(sType)
|
||||||
|
|
||||||
sFilename = sType & "_" & LCase$(shSheet.Cells(cLanguageCodeRow, iCol).Value) & ".properties"
|
sFilename = sType & "_" & LCase$(shSheet.Cells(cLanguageCodeRow, iCol).Value) & ".json"
|
||||||
oFile = FreeFile()
|
oFile = FreeFile()
|
||||||
sFullPath = Application.ActiveWorkbook.Path & "\" & sFilename
|
sFullPath = Application.ActiveWorkbook.Path & "\" & sFilename
|
||||||
On Error Resume Next
|
On Error Resume Next
|
||||||
|
@ -24,44 +24,48 @@ Sub Export_File(sType, iCol As Integer)
|
||||||
On Error GoTo 0
|
On Error GoTo 0
|
||||||
Open sFullPath For Binary Access Write As #oFile
|
Open sFullPath For Binary Access Write As #oFile
|
||||||
' Output comment on version as first line
|
' Output comment on version as first line
|
||||||
sOut = "# " & sFilename & " Generated by calibre2opds localization.xls v" & Worksheets(cConfiguration).Cells(cVersionRow, cVersionCol).Value & vbCrLf
|
sOut = "{" & vbCrLf
|
||||||
bOut = UnicodeToBytes(Worksheets(cConfiguration).Cells(cOutputFormatRow, cOutputFormatCol), sOut)
|
bOut = UnicodeToBytes(Worksheets(cConfiguration).Cells(cOutputFormatRow, cOutputFormatCol), sOut)
|
||||||
Put #oFile, , bOut
|
Put #oFile, , bOut
|
||||||
|
|
||||||
iRow = cFirstDataRow
|
iRow = cFirstDataRow
|
||||||
Do
|
Do
|
||||||
sTemp = shSheet.Cells(iRow, cKeywordCol).Value
|
sTemp = shSheet.Cells(iRow, cKeywordCol).Value
|
||||||
sOut = sTemp
|
sOut = "// " & sTemp
|
||||||
' Print #oFile, sTemp;
|
' Print #oFile, sTemp;
|
||||||
If Len(sTemp) = 0 Then
|
If Len(sTemp) = 0 Then
|
||||||
iBlankLines = iBlankLines + 1
|
iBlankLines = iBlankLines + 1
|
||||||
Else
|
Else
|
||||||
iBlankLines = 0
|
iBlankLines = 0
|
||||||
If Not isComment(sTemp) Then
|
If Not isComment(sTemp) And Not sTemp Like "config*" And Not sTemp Like "gui*" Then
|
||||||
sOut = sTemp & "="
|
sOut = """" & sTemp & """" & ":"
|
||||||
' Print #oFile, "=";
|
' Print #oFile, "=";
|
||||||
sTemp = shSheet.Cells(iRow, iCol).Value
|
sTemp = shSheet.Cells(iRow, iCol).Value
|
||||||
If Len(sTemp) > 0 Then
|
If Len(sTemp) > 0 Then
|
||||||
sOut = sOut & sTemp
|
sOut = sOut & """" & sTemp & ""","
|
||||||
|
sOut = sOut & vbCrLf
|
||||||
|
bOut = UnicodeToBytes(Worksheets(cConfiguration).Cells(cOutputFormatRow, cOutputFormatCol), sOut)
|
||||||
|
Put #oFile, , bOut
|
||||||
' Print #oFile, sTemp;
|
' Print #oFile, sTemp;
|
||||||
Else
|
Else
|
||||||
' If no language specific one supplied then
|
' If no language specific one supplied then
|
||||||
' output English one as a comment starting with '#EN#'
|
' output English one as a comment starting with '#EN#'
|
||||||
' (as long this is not the english column with empty value)
|
' (as long this is not the english column with empty value)
|
||||||
If iCol <> cEnglishLangCol Then
|
If iCol <> cEnglishLangCol Then
|
||||||
sOut = "#EN# " & sOut
|
sOut = "// EN" & sOut
|
||||||
End If
|
End If
|
||||||
sOut = sOut & shSheet.Cells(iRow, 3).Value
|
sOut = sOut & shSheet.Cells(iRow, 3).Value
|
||||||
' Print #oFile, shSheet.Cells(iRow, 3).Value;
|
' Print #oFile, shSheet.Cells(iRow, 3).Value;
|
||||||
End If
|
End If
|
||||||
End If
|
End If
|
||||||
End If
|
End If
|
||||||
sOut = sOut & vbCrLf
|
|
||||||
bOut = UnicodeToBytes(Worksheets(cConfiguration).Cells(cOutputFormatRow, cOutputFormatCol), sOut)
|
|
||||||
Put #oFile, , bOut
|
|
||||||
' Print #oFile, "" ' Force new line
|
' Print #oFile, "" ' Force new line
|
||||||
iRow = iRow + 1
|
iRow = iRow + 1
|
||||||
Loop Until (iBlankLines > 5)
|
Loop Until (iBlankLines > 5)
|
||||||
|
|
||||||
|
sOut = """fin"":""fin""" & vbCrLf & "}" & vbCrLf
|
||||||
|
bOut = UnicodeToBytes(Worksheets(cConfiguration).Cells(cOutputFormatRow, cOutputFormatCol), sOut)
|
||||||
|
Put #oFile, , bOut
|
||||||
|
|
||||||
Close #oFile
|
Close #oFile
|
||||||
End Sub
|
End Sub
|
||||||
|
|
Loading…
Reference in a new issue