Merge pull request #1352 from ONLYOFFICE/fix/bugfix

[SSE] Fix for translation
This commit is contained in:
Julia Radzhabova 2021-11-24 21:37:10 +03:00 committed by GitHub
commit 48dc9aefbe
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 4 deletions

View file

@ -75,9 +75,9 @@ define([ 'text!spreadsheeteditor/main/app/template/PrintSettings.template',
'</div>',
'<div class="separator horizontal"></div>',
'<div class="footer justify">',
'<button id="printadv-dlg-btn-hide" class="btn btn-text-default" style="width: 100px;">' + this.textHideDetails + '</button>',
'<button class="btn normal dlg-btn primary" result="ok" style="margin-left: 55px; width: 150px;">' + ((this.type == 'print') ? this.btnPrint : this.btnDownload) + '</button>',
'<button class="btn normal dlg-btn" result="cancel" style="width: 86px;">' + this.cancelButtonText + '</button>',
'<button id="printadv-dlg-btn-hide" class="btn btn-text-default" style="min-width: 100px;width: auto;">' + this.textHideDetails + '</button>',
'<button class="btn normal dlg-btn" result="cancel" style="width: 86px;float: right;">' + this.cancelButtonText + '</button>',
'<button class="btn normal dlg-btn primary" result="ok" style="margin-left: 10px; width: 150px;float: right;">' + ((this.type == 'print') ? this.btnPrint : this.btnDownload) + '</button>',
'</div>'
].join('')
}, options);

View file

@ -30,10 +30,11 @@
.advanced-settings-dlg {
.div-category {
padding: 0 15px;
padding: 0 0 0 10px;
text-align: right;
font-weight: bold;
font-size: 11px;
white-space: nowrap;
}
.range-tableview {