Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
W
web-apps
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Boris Kocherov
web-apps
Commits
298946f6
Commit
298946f6
authored
Apr 01, 2016
by
Julia Radzhabova
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[SSE] Bug 21666, 25965 : изменение настройки печати.
parent
cc5cb12c
Changes
15
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
15 changed files
with
223 additions
and
254 deletions
+223
-254
apps/spreadsheeteditor/main/app/controller/Print.js
apps/spreadsheeteditor/main/app/controller/Print.js
+84
-140
apps/spreadsheeteditor/main/app/template/PrintSettings.template
...preadsheeteditor/main/app/template/PrintSettings.template
+9
-13
apps/spreadsheeteditor/main/app/view/FileMenuPanels.js
apps/spreadsheeteditor/main/app/view/FileMenuPanels.js
+37
-16
apps/spreadsheeteditor/main/app/view/PrintSettings.js
apps/spreadsheeteditor/main/app/view/PrintSettings.js
+60
-63
apps/spreadsheeteditor/main/locale/cs.json
apps/spreadsheeteditor/main/locale/cs.json
+2
-2
apps/spreadsheeteditor/main/locale/de.json
apps/spreadsheeteditor/main/locale/de.json
+2
-2
apps/spreadsheeteditor/main/locale/en.json
apps/spreadsheeteditor/main/locale/en.json
+13
-2
apps/spreadsheeteditor/main/locale/es.json
apps/spreadsheeteditor/main/locale/es.json
+2
-2
apps/spreadsheeteditor/main/locale/fr.json
apps/spreadsheeteditor/main/locale/fr.json
+2
-2
apps/spreadsheeteditor/main/locale/it.json
apps/spreadsheeteditor/main/locale/it.json
+2
-2
apps/spreadsheeteditor/main/locale/lv.json
apps/spreadsheeteditor/main/locale/lv.json
+2
-2
apps/spreadsheeteditor/main/locale/pt.json
apps/spreadsheeteditor/main/locale/pt.json
+2
-2
apps/spreadsheeteditor/main/locale/ru.json
apps/spreadsheeteditor/main/locale/ru.json
+2
-2
apps/spreadsheeteditor/main/locale/sl.json
apps/spreadsheeteditor/main/locale/sl.json
+2
-2
apps/spreadsheeteditor/main/locale/tr.json
apps/spreadsheeteditor/main/locale/tr.json
+2
-2
No files found.
apps/spreadsheeteditor/main/app/controller/Print.js
View file @
298946f6
This diff is collapsed.
Click to expand it.
apps/spreadsheeteditor/main/app/template/PrintSettings.template
View file @
298946f6
<div class="settings-panel active">
<div class="padding-large inner-content" >
<div id="printadv-dlg-radio-current" class="padding-small" style="display: block;"></div>
<div id="printadv-dlg-radio-all" class="padding-small" style="display: block;"></div>
<div id="printadv-dlg-radio-selection" style="display: block;"></div>
<div id="printadv-dlg-combo-range" class="input-group-nr" /> </div>
<div class="padding-large"/>
<div class="padding-large inner-content" >
<div id="printadv-dlg-combo-sheets" class="input-group-nr" />
</div>
<div class="separator horizontal padding-large"/>
<div class="padding-large inner-content" >
<div id="printadv-dlg-combo-pages" class="input-group-nr" />
</div>
<div class="separator horizontal padding-large"/>
<div class="padding-large inner-content" >
<span id="printadv-dlg-combo-orient" />
</div>
<div class="padding-large inner-content" >
<span id="printadv-dlg-combo-layout" />
</div>
<div id="printadv-dlg-content-to-hide">
<div class="separator horizontal padding-large"/>
<div class="padding-large inner-content" >
<table cols="2" class="no-padding">
<tr>
...
...
@@ -21,7 +22,7 @@
<td><label><%= scope.strBottom %></label></td>
</tr>
<tr>
<td class="padding-small"><div id="printadv-dlg-spin-margin-top" style="margin-right: 1
5
px;"></div></td>
<td class="padding-small"><div id="printadv-dlg-spin-margin-top" style="margin-right: 1
9
px;"></div></td>
<td class="padding-small"><div id="printadv-dlg-spin-margin-bottom"></div></td>
</tr>
<tr>
...
...
@@ -34,12 +35,7 @@
</tr>
</table>
</div>
<div class="separator horizontal padding-large"/>
<!--<div class="padding-large inner-content" >-->
<!--<div id="printadv-dlg-radio-actual" class="padding-small" style="display: block;"></div>-->
<!--<div id="printadv-dlg-radio-fit" class="" style="display: block;"></div>-->
<!--</div>-->
<!--<div class="separator horizontal padding-large"/>-->
<div class="padding-small"/>
<div class="inner-content">
<div id="printadv-dlg-chb-grid" style="margin-bottom: 10px;"/>
<div id="printadv-dlg-chb-rows"/>
...
...
apps/spreadsheeteditor/main/app/view/FileMenuPanels.js
View file @
298946f6
...
...
@@ -102,7 +102,7 @@ define([
el
:
$
(
'
#id-settings-menu
'
),
store
:
new
Common
.
UI
.
DataViewStore
([
{
name
:
this
.
txtGeneral
,
panel
:
this
.
generalSettings
,
iconCls
:
'
mnu-settings-general
'
,
selected
:
true
},
{
name
:
this
.
txtP
rint
,
panel
:
this
.
printSettings
,
iconCls
:
'
mnu-print
'
}
{
name
:
this
.
txtP
ageSettings
,
panel
:
this
.
printSettings
,
iconCls
:
'
mnu-print
'
}
]),
itemTemplate
:
_
.
template
([
'
<div id="<%= id %>" class="settings-item-wrap">
'
,
...
...
@@ -141,7 +141,7 @@ define([
},
txtGeneral
:
'
General
'
,
txtP
rint
:
'
Print
'
txtP
ageSettings
:
'
Page Settings
'
},
SSE
.
Views
.
FileMenuPanels
.
Settings
||
{}));
SSE
.
Views
.
MainSettingsPrint
=
Common
.
UI
.
BaseView
.
extend
(
_
.
extend
({
...
...
@@ -161,6 +161,10 @@ define([
'
<td class="left"><label><%= scope.textPageOrientation %></label></td>
'
,
'
<td class="right"><span id="advsettings-print-combo-orient" /></td>
'
,
'
</tr>
'
,
'
<tr class="divider"></tr>
'
,
'
<tr>
'
,
'
<td class="left"><label><%= scope.textPageScaling %></label></td>
'
,
'
<td class="right"><span id="advsettings-print-combo-layout" /></td>
'
,
'
</tr>
'
,
'
<tr class="divider"></tr>
'
,
'
<tr>
'
,
'
<td class="left" style="vertical-align: top;"><label><%= scope.strMargins %></label></td>
'
,
'
<td class="right" style="vertical-align: top;"><div id="advsettings-margins">
'
,
...
...
@@ -213,19 +217,17 @@ define([
this
.
cmbSheet
=
new
Common
.
UI
.
ComboBox
({
el
:
$
(
'
#advsettings-print-combo-sheets
'
),
style
:
'
width: 2
60
px;
'
,
menuStyle
:
'
min-width: 2
60
px;max-height: 280px;
'
,
style
:
'
width: 2
42
px;
'
,
menuStyle
:
'
min-width: 2
42
px;max-height: 280px;
'
,
editable
:
false
,
cls
:
'
input-group-nr
'
,
data
:
[
{
value
:
-
255
,
displayValue
:
this
.
strAllSheets
}
]
data
:
[]
});
this
.
cmbPaperSize
=
new
Common
.
UI
.
ComboBox
({
el
:
$
(
'
#advsettings-print-combo-pages
'
),
style
:
'
width: 2
60
px;
'
,
menuStyle
:
'
max-height: 280px; min-width: 2
60
px;
'
,
style
:
'
width: 2
42
px;
'
,
menuStyle
:
'
max-height: 280px; min-width: 2
42
px;
'
,
editable
:
false
,
cls
:
'
input-group-nr
'
,
data
:
[
...
...
@@ -247,8 +249,8 @@ define([
this
.
cmbPaperOrientation
=
new
Common
.
UI
.
ComboBox
({
el
:
$
(
'
#advsettings-print-combo-orient
'
),
style
:
'
width:
200
px;
'
,
menuStyle
:
'
min-width:
200
px;
'
,
style
:
'
width:
132
px;
'
,
menuStyle
:
'
min-width:
132
px;
'
,
editable
:
false
,
cls
:
'
input-group-nr
'
,
data
:
[
...
...
@@ -257,6 +259,20 @@ define([
]
});
this
.
cmbLayout
=
new
Common
.
UI
.
ComboBox
({
el
:
$
(
'
#advsettings-print-combo-layout
'
),
style
:
'
width: 242px;
'
,
menuStyle
:
'
min-width: 242px;
'
,
editable
:
false
,
cls
:
'
input-group-nr
'
,
data
:
[
{
value
:
0
,
displayValue
:
this
.
textActualSize
},
{
value
:
1
,
displayValue
:
this
.
textFitPage
},
{
value
:
2
,
displayValue
:
this
.
textFitCols
},
{
value
:
3
,
displayValue
:
this
.
textFitRows
}
]
});
this
.
chPrintGrid
=
new
Common
.
UI
.
CheckBox
({
el
:
$
(
'
#advsettings-print-chb-grid
'
),
labelText
:
this
.
textPrintGrid
...
...
@@ -270,7 +286,7 @@ define([
this
.
spnMarginTop
=
new
Common
.
UI
.
MetricSpinner
({
el
:
$
(
'
#advsettings-spin-margin-top
'
),
step
:
.
1
,
width
:
9
0
,
width
:
11
0
,
defaultUnit
:
"
cm
"
,
value
:
'
0 cm
'
,
maxValue
:
48.25
,
...
...
@@ -281,7 +297,7 @@ define([
this
.
spnMarginBottom
=
new
Common
.
UI
.
MetricSpinner
({
el
:
$
(
'
#advsettings-spin-margin-bottom
'
),
step
:
.
1
,
width
:
9
0
,
width
:
11
0
,
defaultUnit
:
"
cm
"
,
value
:
'
0 cm
'
,
maxValue
:
48.25
,
...
...
@@ -292,7 +308,7 @@ define([
this
.
spnMarginLeft
=
new
Common
.
UI
.
MetricSpinner
({
el
:
$
(
'
#advsettings-spin-margin-left
'
),
step
:
.
1
,
width
:
9
0
,
width
:
11
0
,
defaultUnit
:
"
cm
"
,
value
:
'
0.19 cm
'
,
maxValue
:
48.25
,
...
...
@@ -303,7 +319,7 @@ define([
this
.
spnMarginRight
=
new
Common
.
UI
.
MetricSpinner
({
el
:
$
(
'
#advsettings-spin-margin-right
'
),
step
:
.
1
,
width
:
9
0
,
width
:
11
0
,
defaultUnit
:
"
cm
"
,
value
:
'
0.19 cm
'
,
maxValue
:
48.25
,
...
...
@@ -365,7 +381,12 @@ define([
textPageSize
:
'
Page Size
'
,
textPageOrientation
:
'
Page Orientation
'
,
strPrint
:
'
Print
'
,
textSettings
:
'
Settings for
'
textSettings
:
'
Settings for
'
,
textPageScaling
:
'
Scaling
'
,
textActualSize
:
'
Actual Size
'
,
textFitPage
:
'
Fit Sheet on One Page
'
,
textFitCols
:
'
Fit All Columns on One Page
'
,
textFitRows
:
'
Fit All Rows on One Page
'
},
SSE
.
Views
.
MainSettingsPrint
||
{}));
SSE
.
Views
.
FileMenuPanels
.
MainSettingsGeneral
=
Common
.
UI
.
BaseView
.
extend
(
_
.
extend
({
...
...
apps/spreadsheeteditor/main/app/view/PrintSettings.js
View file @
298946f6
This diff is collapsed.
Click to expand it.
apps/spreadsheeteditor/main/locale/cs.json
View file @
298946f6
...
...
@@ -493,7 +493,7 @@
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRu"
:
"Ruština"
,
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWin"
:
"jako Windows"
,
"SSE.Views.FileMenuPanels.Settings.txtGeneral"
:
"Obecný"
,
"SSE.Views.FileMenuPanels.Settings.txtPrint"
:
"Tisk"
,
"
del_
SSE.Views.FileMenuPanels.Settings.txtPrint"
:
"Tisk"
,
"SSE.Views.FormulaDialog.cancelButtonText"
:
"Zrušit"
,
"SSE.Views.FormulaDialog.okButtonText"
:
"OK"
,
"SSE.Views.FormulaDialog.sCategoryAll"
:
"Vše"
,
...
...
@@ -673,7 +673,7 @@
"SSE.Views.PrintSettings.textActualSize"
:
"Skutečná velikost"
,
"SSE.Views.PrintSettings.textAllSheets"
:
"Všechny listy"
,
"SSE.Views.PrintSettings.textCurrentSheet"
:
"Aktuální list"
,
"SSE.Views.PrintSettings.textFit"
:
"Přizpůsobit šířce"
,
"
del_
SSE.Views.PrintSettings.textFit"
:
"Přizpůsobit šířce"
,
"SSE.Views.PrintSettings.textHideDetails"
:
"Skrýt podrobnosti"
,
"SSE.Views.PrintSettings.textLayout"
:
"Rozložení"
,
"SSE.Views.PrintSettings.textPageOrientation"
:
"Otočení stránky"
,
...
...
apps/spreadsheeteditor/main/locale/de.json
View file @
298946f6
...
...
@@ -493,7 +493,7 @@
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRu"
:
"Russian"
,
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWin"
:
"wie Windows"
,
"SSE.Views.FileMenuPanels.Settings.txtGeneral"
:
"Allgemein"
,
"SSE.Views.FileMenuPanels.Settings.txtPrint"
:
"Drucken"
,
"
del_
SSE.Views.FileMenuPanels.Settings.txtPrint"
:
"Drucken"
,
"SSE.Views.FormulaDialog.cancelButtonText"
:
"Abbrechen"
,
"SSE.Views.FormulaDialog.okButtonText"
:
"OK"
,
"SSE.Views.FormulaDialog.sCategoryAll"
:
"All"
,
...
...
@@ -673,7 +673,7 @@
"SSE.Views.PrintSettings.textActualSize"
:
"Volle Größe"
,
"SSE.Views.PrintSettings.textAllSheets"
:
"Alle Blätter"
,
"SSE.Views.PrintSettings.textCurrentSheet"
:
"Aktuelles Blatt"
,
"SSE.Views.PrintSettings.textFit"
:
"An Breite anpassen"
,
"
del_
SSE.Views.PrintSettings.textFit"
:
"An Breite anpassen"
,
"SSE.Views.PrintSettings.textHideDetails"
:
"Details ausblenden"
,
"SSE.Views.PrintSettings.textLayout"
:
"Layout"
,
"SSE.Views.PrintSettings.textPageOrientation"
:
"Seitenorientierung"
,
...
...
apps/spreadsheeteditor/main/locale/en.json
View file @
298946f6
...
...
@@ -500,7 +500,8 @@
"SSE.Views.FileMenuPanels.Settings.strAutoRecover"
:
"Turn on autorecover"
,
"SSE.Views.FileMenuPanels.Settings.textAutoRecover"
:
"Autorecover"
,
"SSE.Views.FileMenuPanels.Settings.txtGeneral"
:
"General"
,
"SSE.Views.FileMenuPanels.Settings.txtPrint"
:
"Print"
,
"del_SSE.Views.FileMenuPanels.Settings.txtPrint"
:
"Print"
,
"SSE.Views.FileMenuPanels.Settings.txtPageSettings"
:
"Page Settings"
,
"SSE.Views.FormulaDialog.cancelButtonText"
:
"Cancel"
,
"SSE.Views.FormulaDialog.okButtonText"
:
"OK"
,
"SSE.Views.FormulaDialog.sCategoryAll"
:
"All"
,
...
...
@@ -588,6 +589,11 @@
"SSE.Views.MainSettingsPrint.textPrintGrid"
:
"Print Gridlines"
,
"SSE.Views.MainSettingsPrint.textPrintHeadings"
:
"Print Row and Column Headings"
,
"SSE.Views.MainSettingsPrint.textSettings"
:
"Settings for"
,
"SSE.Views.MainSettingsPrint.textPageScaling"
:
"Scaling"
,
"SSE.Views.MainSettingsPrint.textActualSize"
:
"Actual Size"
,
"SSE.Views.MainSettingsPrint.textFitPage"
:
"Fit Sheet on One Page"
,
"SSE.Views.MainSettingsPrint.textFitCols"
:
"Fit All Columns on One Page"
,
"SSE.Views.MainSettingsPrint.textFitRows"
:
"Fit All Rows on One Page"
,
"SSE.Views.NamedRangeEditDlg.cancelButtonText"
:
"Cancel"
,
"SSE.Views.NamedRangeEditDlg.errorCreateDefName"
:
"The existing named ranges cannot be edited and the new ones cannot be created<br>at the moment as some of them are being edited."
,
"SSE.Views.NamedRangeEditDlg.namePlaceholder"
:
"Defined name"
,
...
...
@@ -680,7 +686,7 @@
"SSE.Views.PrintSettings.textActualSize"
:
"Actual Size"
,
"SSE.Views.PrintSettings.textAllSheets"
:
"All Sheets"
,
"SSE.Views.PrintSettings.textCurrentSheet"
:
"Current Sheet"
,
"SSE.Views.PrintSettings.textFit"
:
"Fit to width"
,
"
del_
SSE.Views.PrintSettings.textFit"
:
"Fit to width"
,
"SSE.Views.PrintSettings.textHideDetails"
:
"Hide Details"
,
"SSE.Views.PrintSettings.textLayout"
:
"Layout"
,
"SSE.Views.PrintSettings.textPageOrientation"
:
"Page Orientation"
,
...
...
@@ -691,6 +697,11 @@
"SSE.Views.PrintSettings.textSelection"
:
"Selection"
,
"SSE.Views.PrintSettings.textShowDetails"
:
"Show Details"
,
"SSE.Views.PrintSettings.textTitle"
:
"Print Settings"
,
"SSE.Views.PrintSettings.textPageScaling"
:
"Scaling"
,
"SSE.Views.PrintSettings.textFitPage"
:
"Fit Sheet on One Page"
,
"SSE.Views.PrintSettings.textFitCols"
:
"Fit All Columns on One Page"
,
"SSE.Views.PrintSettings.textFitRows"
:
"Fit All Rows on One Page"
,
"SSE.Views.PrintSettings.textSettings"
:
"Sheet Settings"
,
"SSE.Views.RightMenu.txtChartSettings"
:
"Chart Settings"
,
"SSE.Views.RightMenu.txtImageSettings"
:
"Image Settings"
,
"SSE.Views.RightMenu.txtParagraphSettings"
:
"Text Settings"
,
...
...
apps/spreadsheeteditor/main/locale/es.json
View file @
298946f6
...
...
@@ -496,7 +496,7 @@
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRu"
:
"Ruso"
,
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWin"
:
"como Windows"
,
"SSE.Views.FileMenuPanels.Settings.txtGeneral"
:
"General"
,
"SSE.Views.FileMenuPanels.Settings.txtPrint"
:
"Imprimir"
,
"
del_
SSE.Views.FileMenuPanels.Settings.txtPrint"
:
"Imprimir"
,
"SSE.Views.FormulaDialog.cancelButtonText"
:
"Cancelar"
,
"SSE.Views.FormulaDialog.okButtonText"
:
"OK"
,
"SSE.Views.FormulaDialog.sCategoryAll"
:
"All"
,
...
...
@@ -676,7 +676,7 @@
"SSE.Views.PrintSettings.textActualSize"
:
"Tamaño actual"
,
"SSE.Views.PrintSettings.textAllSheets"
:
"Todas las hojas"
,
"SSE.Views.PrintSettings.textCurrentSheet"
:
"Hoja actual"
,
"SSE.Views.PrintSettings.textFit"
:
"Ajustar al ancho"
,
"
del_
SSE.Views.PrintSettings.textFit"
:
"Ajustar al ancho"
,
"SSE.Views.PrintSettings.textHideDetails"
:
"Ocultar detalles"
,
"SSE.Views.PrintSettings.textLayout"
:
"Diseño"
,
"SSE.Views.PrintSettings.textPageOrientation"
:
"Orientación de página"
,
...
...
apps/spreadsheeteditor/main/locale/fr.json
View file @
298946f6
...
...
@@ -496,7 +496,7 @@
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRu"
:
"Russian"
,
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWin"
:
"comme Windows"
,
"SSE.Views.FileMenuPanels.Settings.txtGeneral"
:
"Général"
,
"SSE.Views.FileMenuPanels.Settings.txtPrint"
:
"Imprimer"
,
"
del_
SSE.Views.FileMenuPanels.Settings.txtPrint"
:
"Imprimer"
,
"SSE.Views.FormulaDialog.cancelButtonText"
:
"Annuler"
,
"SSE.Views.FormulaDialog.okButtonText"
:
"OK"
,
"SSE.Views.FormulaDialog.sCategoryAll"
:
"All"
,
...
...
@@ -676,7 +676,7 @@
"SSE.Views.PrintSettings.textActualSize"
:
"Taille réelle"
,
"SSE.Views.PrintSettings.textAllSheets"
:
"Toutes les feuilles"
,
"SSE.Views.PrintSettings.textCurrentSheet"
:
"Feuille active"
,
"SSE.Views.PrintSettings.textFit"
:
"Ajuster à la largeur"
,
"
del_
SSE.Views.PrintSettings.textFit"
:
"Ajuster à la largeur"
,
"SSE.Views.PrintSettings.textHideDetails"
:
"Masquer détails"
,
"SSE.Views.PrintSettings.textLayout"
:
"Disposition"
,
"SSE.Views.PrintSettings.textPageOrientation"
:
"Orientation de la page"
,
...
...
apps/spreadsheeteditor/main/locale/it.json
View file @
298946f6
...
...
@@ -493,7 +493,7 @@
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRu"
:
"Russian"
,
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWin"
:
"come Windows"
,
"SSE.Views.FileMenuPanels.Settings.txtGeneral"
:
"Generale"
,
"SSE.Views.FileMenuPanels.Settings.txtPrint"
:
"Stampa"
,
"
del_
SSE.Views.FileMenuPanels.Settings.txtPrint"
:
"Stampa"
,
"SSE.Views.FormulaDialog.cancelButtonText"
:
"Annulla"
,
"SSE.Views.FormulaDialog.okButtonText"
:
"OK"
,
"SSE.Views.FormulaDialog.sCategoryAll"
:
"All"
,
...
...
@@ -673,7 +673,7 @@
"SSE.Views.PrintSettings.textActualSize"
:
"Dimensione reale"
,
"SSE.Views.PrintSettings.textAllSheets"
:
"Tutti i fogli"
,
"SSE.Views.PrintSettings.textCurrentSheet"
:
"Foglio attuale"
,
"SSE.Views.PrintSettings.textFit"
:
"Adatta alla larghezza"
,
"
del_
SSE.Views.PrintSettings.textFit"
:
"Adatta alla larghezza"
,
"SSE.Views.PrintSettings.textHideDetails"
:
"Nascondi dettagli"
,
"SSE.Views.PrintSettings.textLayout"
:
"Layout"
,
"SSE.Views.PrintSettings.textPageOrientation"
:
"Orientamento pagina"
,
...
...
apps/spreadsheeteditor/main/locale/lv.json
View file @
298946f6
...
...
@@ -493,7 +493,7 @@
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRu"
:
"Russian"
,
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWin"
:
"as Windows"
,
"SSE.Views.FileMenuPanels.Settings.txtGeneral"
:
"General"
,
"SSE.Views.FileMenuPanels.Settings.txtPrint"
:
"Print"
,
"
del_
SSE.Views.FileMenuPanels.Settings.txtPrint"
:
"Print"
,
"SSE.Views.FormulaDialog.cancelButtonText"
:
"Atcelt"
,
"SSE.Views.FormulaDialog.okButtonText"
:
"OK"
,
"SSE.Views.FormulaDialog.sCategoryAll"
:
"All"
,
...
...
@@ -673,7 +673,7 @@
"SSE.Views.PrintSettings.textActualSize"
:
"Actual Size"
,
"SSE.Views.PrintSettings.textAllSheets"
:
"All Sheets"
,
"SSE.Views.PrintSettings.textCurrentSheet"
:
"Current Sheet"
,
"SSE.Views.PrintSettings.textFit"
:
"Fit to width"
,
"
del_
SSE.Views.PrintSettings.textFit"
:
"Fit to width"
,
"SSE.Views.PrintSettings.textHideDetails"
:
"Hide Details"
,
"SSE.Views.PrintSettings.textLayout"
:
"Layout"
,
"SSE.Views.PrintSettings.textPageOrientation"
:
"Lapas orientācija"
,
...
...
apps/spreadsheeteditor/main/locale/pt.json
View file @
298946f6
...
...
@@ -493,7 +493,7 @@
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRu"
:
"Russian"
,
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWin"
:
"como Windows"
,
"SSE.Views.FileMenuPanels.Settings.txtGeneral"
:
"Geral"
,
"SSE.Views.FileMenuPanels.Settings.txtPrint"
:
"Imprimir"
,
"
del_
SSE.Views.FileMenuPanels.Settings.txtPrint"
:
"Imprimir"
,
"SSE.Views.FormulaDialog.cancelButtonText"
:
"Cancelar"
,
"SSE.Views.FormulaDialog.okButtonText"
:
"OK"
,
"SSE.Views.FormulaDialog.sCategoryAll"
:
"All"
,
...
...
@@ -673,7 +673,7 @@
"SSE.Views.PrintSettings.textActualSize"
:
"Tamanho real"
,
"SSE.Views.PrintSettings.textAllSheets"
:
"Todas as folhas"
,
"SSE.Views.PrintSettings.textCurrentSheet"
:
"Folha atual"
,
"SSE.Views.PrintSettings.textFit"
:
"Ajustar à Largura"
,
"
del_
SSE.Views.PrintSettings.textFit"
:
"Ajustar à Largura"
,
"SSE.Views.PrintSettings.textHideDetails"
:
"Ocultar detalhes"
,
"SSE.Views.PrintSettings.textLayout"
:
"Layout"
,
"SSE.Views.PrintSettings.textPageOrientation"
:
"Orientação da página"
,
...
...
apps/spreadsheeteditor/main/locale/ru.json
View file @
298946f6
...
...
@@ -499,7 +499,7 @@
"SSE.Views.FileMenuPanels.Settings.strAutoRecover"
:
"Включить автовосстановление"
,
"SSE.Views.FileMenuPanels.Settings.textAutoRecover"
:
"Автовосстановление"
,
"SSE.Views.FileMenuPanels.Settings.txtGeneral"
:
"Общие"
,
"SSE.Views.FileMenuPanels.Settings.txtPrint"
:
"Печать"
,
"
del_
SSE.Views.FileMenuPanels.Settings.txtPrint"
:
"Печать"
,
"SSE.Views.FormulaDialog.cancelButtonText"
:
"Отмена"
,
"SSE.Views.FormulaDialog.okButtonText"
:
"OK"
,
"SSE.Views.FormulaDialog.sCategoryAll"
:
"All"
,
...
...
@@ -679,7 +679,7 @@
"SSE.Views.PrintSettings.textActualSize"
:
"Реальный размер"
,
"SSE.Views.PrintSettings.textAllSheets"
:
"Все листы"
,
"SSE.Views.PrintSettings.textCurrentSheet"
:
"Текущий лист"
,
"SSE.Views.PrintSettings.textFit"
:
"По ширине"
,
"
del_
SSE.Views.PrintSettings.textFit"
:
"По ширине"
,
"SSE.Views.PrintSettings.textHideDetails"
:
"Скрыть детали"
,
"SSE.Views.PrintSettings.textLayout"
:
"Макет"
,
"SSE.Views.PrintSettings.textPageOrientation"
:
"Ориентация страницы"
,
...
...
apps/spreadsheeteditor/main/locale/sl.json
View file @
298946f6
...
...
@@ -493,7 +493,7 @@
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRu"
:
"Russian"
,
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWin"
:
"kot Windows"
,
"SSE.Views.FileMenuPanels.Settings.txtGeneral"
:
"Splošen"
,
"SSE.Views.FileMenuPanels.Settings.txtPrint"
:
"Natisni"
,
"
del_
SSE.Views.FileMenuPanels.Settings.txtPrint"
:
"Natisni"
,
"SSE.Views.FormulaDialog.cancelButtonText"
:
"Prekliči"
,
"SSE.Views.FormulaDialog.okButtonText"
:
"OK"
,
"SSE.Views.FormulaDialog.sCategoryAll"
:
"All"
,
...
...
@@ -673,7 +673,7 @@
"SSE.Views.PrintSettings.textActualSize"
:
"Dejanska velikost"
,
"SSE.Views.PrintSettings.textAllSheets"
:
"Vsi listi"
,
"SSE.Views.PrintSettings.textCurrentSheet"
:
"Trenuten list"
,
"SSE.Views.PrintSettings.textFit"
:
"Prilagodi k širini"
,
"
del_
SSE.Views.PrintSettings.textFit"
:
"Prilagodi k širini"
,
"SSE.Views.PrintSettings.textHideDetails"
:
"Skrij podrobnosti"
,
"SSE.Views.PrintSettings.textLayout"
:
"Postavitev"
,
"SSE.Views.PrintSettings.textPageOrientation"
:
"Orientacija strani"
,
...
...
apps/spreadsheeteditor/main/locale/tr.json
View file @
298946f6
...
...
@@ -493,7 +493,7 @@
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRu"
:
"Russian"
,
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWin"
:
"Windows olarak"
,
"SSE.Views.FileMenuPanels.Settings.txtGeneral"
:
"Genel"
,
"SSE.Views.FileMenuPanels.Settings.txtPrint"
:
"Yazdır"
,
"
del_
SSE.Views.FileMenuPanels.Settings.txtPrint"
:
"Yazdır"
,
"SSE.Views.FormulaDialog.cancelButtonText"
:
"İptal Et"
,
"SSE.Views.FormulaDialog.okButtonText"
:
"TAMAM"
,
"SSE.Views.FormulaDialog.sCategoryAll"
:
"All"
,
...
...
@@ -673,7 +673,7 @@
"SSE.Views.PrintSettings.textActualSize"
:
"Gerçek Boyut"
,
"SSE.Views.PrintSettings.textAllSheets"
:
"Tüm Tablolar"
,
"SSE.Views.PrintSettings.textCurrentSheet"
:
"Mevcut Tablo"
,
"SSE.Views.PrintSettings.textFit"
:
"Genişliğe Sığdır"
,
"
del_
SSE.Views.PrintSettings.textFit"
:
"Genişliğe Sığdır"
,
"SSE.Views.PrintSettings.textHideDetails"
:
"Detayları Gizle"
,
"SSE.Views.PrintSettings.textLayout"
:
"Tasarım"
,
"SSE.Views.PrintSettings.textPageOrientation"
:
"Sayfa Orientasyonu"
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment