Skip to content
Snippets Groups Projects
Commit 9b9c12fc authored by Kainhofer Reinhold's avatar Kainhofer Reinhold
Browse files

Fix UTF-8 strings in Windows

parent 9a45aa0d
No related branches found
No related tags found
No related merge requests found
...@@ -512,10 +512,10 @@ exportProfitParticipationTable = function(wb, sheet, contract, ccol = 1, crow = ...@@ -512,10 +512,10 @@ exportProfitParticipationTable = function(wb, sheet, contract, ccol = 1, crow =
# Add table headers for the various sections: # Add table headers for the various sections:
if (length(baseCols) > 0) { if (length(baseCols) > 0) {
writeTableCaption(wb, sheet, "Basisgren", rows = crow, cols = baseCols + ccol.table, style = styles$header); writeTableCaption(wb, sheet, "Basisgrößen", rows = crow, cols = baseCols + ccol.table, style = styles$header);
} }
if (length(rateCols) > 0) { if (length(rateCols) > 0) {
writeTableCaption(wb, sheet, "Gewinnbeteiligungsstze", rows = crow, cols = rateCols + ccol.table, style = styles$header); writeTableCaption(wb, sheet, "Gewinnbeteiligungssätze", rows = crow, cols = rateCols + ccol.table, style = styles$header);
} }
if (length(profitCols) > 0) { if (length(profitCols) > 0) {
writeTableCaption(wb, sheet, "GB Zuweisungen", rows = crow, cols = profitCols + ccol.table, style = styles$header); writeTableCaption(wb, sheet, "GB Zuweisungen", rows = crow, cols = profitCols + ccol.table, style = styles$header);
...@@ -530,10 +530,10 @@ exportProfitParticipationTable = function(wb, sheet, contract, ccol = 1, crow = ...@@ -530,10 +530,10 @@ exportProfitParticipationTable = function(wb, sheet, contract, ccol = 1, crow =
writeTableCaption(wb, sheet, "Todesfallleistung", rows = crow, cols = deathCols + ccol.table, style = styles$header); writeTableCaption(wb, sheet, "Todesfallleistung", rows = crow, cols = deathCols + ccol.table, style = styles$header);
} }
if (length(surrenderCols) > 0) { if (length(surrenderCols) > 0) {
writeTableCaption(wb, sheet, "Rckkauf", rows = crow, cols = surrenderCols + ccol.table, style = styles$header); writeTableCaption(wb, sheet, "Rückkauf", rows = crow, cols = surrenderCols + ccol.table, style = styles$header);
} }
if (length(premiumWaiverCols) > 0) { if (length(premiumWaiverCols) > 0) {
writeTableCaption(wb, sheet, "Prmienfreistellung", rows = crow, cols = premiumWaiverCols + ccol.table, style = styles$header); writeTableCaption(wb, sheet, "Prämienfreistellung", rows = crow, cols = premiumWaiverCols + ccol.table, style = styles$header);
} }
exportBlockID(wb, sheet, id = id, rows = blockid.row, cols = ccol:cl, styles = styles) exportBlockID(wb, sheet, id = id, rows = blockid.row, cols = ccol:cl, styles = styles)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment