Merge pull request #43 from ONLYOFFICE/release/v4.2.0

Release/v4.2.0
This commit is contained in:
Julia Radzhabova 2016-12-01 17:33:19 +03:00 committed by GitHub
commit df7db81378
31 changed files with 290 additions and 216 deletions

View file

@ -94,7 +94,7 @@ define([
'Common.Views.ExternalDiagramEditor': { 'Common.Views.ExternalDiagramEditor': {
'setchartdata': _.bind(this.setChartData, this), 'setchartdata': _.bind(this.setChartData, this),
'drag': _.bind(function(o, state){ 'drag': _.bind(function(o, state){
externalEditor.serviceCommand('window:drag', state == 'start'); externalEditor && externalEditor.serviceCommand('window:drag', state == 'start');
},this), },this),
'show': _.bind(function(cmp){ 'show': _.bind(function(cmp){
var h = this.diagramEditorView.getHeight(), var h = this.diagramEditorView.getHeight(),
@ -138,7 +138,7 @@ define([
}, },
handler: function(result, value) { handler: function(result, value) {
externalEditor.serviceCommand('queryClose',{mr:result}); externalEditor && externalEditor.serviceCommand('queryClose',{mr:result});
return true; return true;
}, },

View file

@ -94,7 +94,7 @@ define([
'Common.Views.ExternalMergeEditor': { 'Common.Views.ExternalMergeEditor': {
'setmergedata': _.bind(this.setMergeData, this), 'setmergedata': _.bind(this.setMergeData, this),
'drag': _.bind(function(o, state){ 'drag': _.bind(function(o, state){
externalEditor.serviceCommand('window:drag', state == 'start'); externalEditor && externalEditor.serviceCommand('window:drag', state == 'start');
},this), },this),
'show': _.bind(function(cmp){ 'show': _.bind(function(cmp){
var h = this.mergeEditorView.getHeight(), var h = this.mergeEditorView.getHeight(),
@ -138,7 +138,7 @@ define([
}, },
handler: function(result, value) { handler: function(result, value) {
externalEditor.serviceCommand('queryClose',{mr:result}); externalEditor && externalEditor.serviceCommand('queryClose',{mr:result});
return true; return true;
}, },

View file

@ -105,8 +105,25 @@ Common.Utils = _.extend(new(function() {
me = this, me = this,
checkSize = function() { checkSize = function() {
if (isChrome && !isOpera && document && document.firstElementChild && document.body) { if (isChrome && !isOpera && document && document.firstElementChild && document.body) {
document.firstElementChild.style.zoom = "reset"; //document.firstElementChild.style.zoom = "reset";
me.zoom = document.body.clientWidth / window.innerWidth; if (window.innerWidth > 300)
me.zoom = window.outerWidth / window.innerWidth;
if (Math.abs(me.zoom - 1) < 0.1)
me.zoom = 1;
me.zoom = window.outerWidth / window.innerWidth;
var _devicePixelRatio = window.devicePixelRatio / me.zoom;
// device pixel ratio: кратно 0.5
_devicePixelRatio = (5 * (((2.5 + 10 * _devicePixelRatio) / 5) >> 0)) / 10;
me.zoom = window.devicePixelRatio / _devicePixelRatio;
// chrome 54.x: zoom = "reset" - clear retina zoom (windows)
//document.firstElementChild.style.zoom = "reset";
document.firstElementChild.style.zoom = 1.0 / me.zoom;
} }
me.innerWidth = window.innerWidth * me.zoom; me.innerWidth = window.innerWidth * me.zoom;
me.innerHeight = window.innerHeight * me.zoom; me.innerHeight = window.innerHeight * me.zoom;

View file

@ -1211,11 +1211,11 @@ define([
break; break;
case Asc.c_oAscError.ID.VKeyEncrypt: case Asc.c_oAscError.ID.VKeyEncrypt:
config.msg = this.errorKeyEncrypt; config.msg = this.errorToken;
break; break;
case Asc.c_oAscError.ID.KeyExpire: case Asc.c_oAscError.ID.KeyExpire:
config.msg = this.errorKeyExpire; config.msg = this.errorTokenExpire;
break; break;
case Asc.c_oAscError.ID.UserCountExceed: case Asc.c_oAscError.ID.UserCountExceed:
@ -1263,6 +1263,22 @@ define([
config.msg = this.errorConnectToServer; config.msg = this.errorConnectToServer;
break; break;
case Asc.c_oAscError.ID.SessionAbsolute:
config.msg = this.errorSessionAbsolute;
break;
case Asc.c_oAscError.ID.SessionIdle:
config.msg = this.errorSessionIdle;
break;
case Asc.c_oAscError.ID.SessionToken:
config.msg = this.errorSessionToken;
break;
case Asc.c_oAscError.ID.AccessDeny:
config.msg = this.errorAccessDeny;
break;
default: default:
config.msg = this.errorDefaultMessage.replace('%1', id); config.msg = this.errorDefaultMessage.replace('%1', id);
break; break;
@ -2002,7 +2018,13 @@ define([
warnLicenseExp: 'Your license has expired.<br>Please update your license and refresh the page.', warnLicenseExp: 'Your license has expired.<br>Please update your license and refresh the page.',
titleLicenseExp: 'License expired', titleLicenseExp: 'License expired',
openErrorText: 'An error has occurred while opening the file', openErrorText: 'An error has occurred while opening the file',
saveErrorText: 'An error has occurred while saving the file' saveErrorText: 'An error has occurred while saving the file',
errorToken: 'The document security token is not correctly formed.<br>Please contact your Document Server administrator.',
errorTokenExpire: 'The document security token has expired.<br>Please contact your Document Server administrator.',
errorSessionAbsolute: 'The document editing session has expired. Please reload the page.',
errorSessionIdle: 'The document has not been edited for quite a long time. Please reload the page.',
errorSessionToken: 'The connection to the server has been interrupted. Please reload the page.',
errorAccessDeny: 'You are trying to perform an action you do not have rights for.<br>Please contact your Document Server administrator.'
} }
})(), DE.Controllers.Main || {})) })(), DE.Controllers.Main || {}))
}); });

View file

@ -221,6 +221,12 @@
"DE.Controllers.Main.errorUserDrop": "The file cannot be accessed right now.", "DE.Controllers.Main.errorUserDrop": "The file cannot be accessed right now.",
"DE.Controllers.Main.errorUsersExceed": "The number of users allowed by the pricing plan was exceeded", "DE.Controllers.Main.errorUsersExceed": "The number of users allowed by the pricing plan was exceeded",
"DE.Controllers.Main.errorViewerDisconnect": "Connection is lost. You can still view the document,<br>but will not be able to download or print until the connection is restored.", "DE.Controllers.Main.errorViewerDisconnect": "Connection is lost. You can still view the document,<br>but will not be able to download or print until the connection is restored.",
"DE.Controllers.Main.errorToken": "The document security token is not correctly formed.<br>Please contact your Document Server administrator.",
"DE.Controllers.Main.errorTokenExpire": "The document security token has expired.<br>Please contact your Document Server administrator.",
"DE.Controllers.Main.errorSessionAbsolute": "The document editing session has expired. Please reload the page.",
"DE.Controllers.Main.errorSessionIdle": "The document has not been edited for quite a long time. Please reload the page.",
"DE.Controllers.Main.errorSessionToken": "The connection to the server has been interrupted. Please reload the page.",
"DE.Controllers.Main.errorAccessDeny": "You are trying to perform an action you do not have rights for.<br>Please contact your Document Server administrator.",
"DE.Controllers.Main.leavePageText": "You have unsaved changes in this document. Click \"Stay on This Page\", then \"Save\" to save them. Click \"Leave This Page\" to discard all the unsaved changes.", "DE.Controllers.Main.leavePageText": "You have unsaved changes in this document. Click \"Stay on This Page\", then \"Save\" to save them. Click \"Leave This Page\" to discard all the unsaved changes.",
"DE.Controllers.Main.loadFontsTextText": "Loading data...", "DE.Controllers.Main.loadFontsTextText": "Loading data...",
"DE.Controllers.Main.loadFontsTitleText": "Loading Data", "DE.Controllers.Main.loadFontsTitleText": "Loading Data",

View file

@ -974,11 +974,11 @@ define([
break; break;
case Asc.c_oAscError.ID.VKeyEncrypt: case Asc.c_oAscError.ID.VKeyEncrypt:
config.msg = this.errorKeyEncrypt; config.msg = this.errorToken;
break; break;
case Asc.c_oAscError.ID.KeyExpire: case Asc.c_oAscError.ID.KeyExpire:
config.msg = this.errorKeyExpire; config.msg = this.errorTokenExpire;
break; break;
case Asc.c_oAscError.ID.UserCountExceed: case Asc.c_oAscError.ID.UserCountExceed:
@ -1018,6 +1018,22 @@ define([
config.msg = this.errorConnectToServer; config.msg = this.errorConnectToServer;
break; break;
case Asc.c_oAscError.ID.SessionAbsolute:
config.msg = this.errorSessionAbsolute;
break;
case Asc.c_oAscError.ID.SessionIdle:
config.msg = this.errorSessionIdle;
break;
case Asc.c_oAscError.ID.SessionToken:
config.msg = this.errorSessionToken;
break;
case Asc.c_oAscError.ID.AccessDeny:
config.msg = this.errorAccessDeny;
break;
default: default:
config.msg = this.errorDefaultMessage.replace('%1', id); config.msg = this.errorDefaultMessage.replace('%1', id);
break; break;
@ -1809,7 +1825,13 @@ define([
warnLicenseExp: 'Your license has expired.<br>Please update your license and refresh the page.', warnLicenseExp: 'Your license has expired.<br>Please update your license and refresh the page.',
titleLicenseExp: 'License expired', titleLicenseExp: 'License expired',
openErrorText: 'An error has occurred while opening the file', openErrorText: 'An error has occurred while opening the file',
saveErrorText: 'An error has occurred while saving the file' saveErrorText: 'An error has occurred while saving the file',
errorToken: 'The document security token is not correctly formed.<br>Please contact your Document Server administrator.',
errorTokenExpire: 'The document security token has expired.<br>Please contact your Document Server administrator.',
errorSessionAbsolute: 'The document editing session has expired. Please reload the page.',
errorSessionIdle: 'The document has not been edited for quite a long time. Please reload the page.',
errorSessionToken: 'The connection to the server has been interrupted. Please reload the page.',
errorAccessDeny: 'You are trying to perform an action you do not have rights for.<br>Please contact your Document Server administrator.'
} }
})(), PE.Controllers.Main || {})) })(), PE.Controllers.Main || {}))
}); });

View file

@ -1323,11 +1323,10 @@ define([
}; };
var onApiCurrentPages = function(number) { var onApiCurrentPages = function(number) {
if (me.currentMenu && me.currentMenu.isVisible()) { if (me.currentMenu && me.currentMenu.isVisible() && me._isFromSlideMenu !== true && me._isFromSlideMenu !== number)
if (me._isFromSlideMenu !== true && me._isFromSlideMenu !== number) me.currentMenu.hide();
me.currentMenu.hide();
me._isFromSlideMenu = number; me._isFromSlideMenu = number;
}
}; };
this.setApi = function(o) { this.setApi = function(o) {

View file

@ -206,8 +206,8 @@ define([ 'text!presentationeditor/main/app/template/ImageSettingsAdvanced.tem
if (props.get_Position()) { if (props.get_Position()) {
var Position = {X: props.get_Position().get_X(), Y: props.get_Position().get_Y()}; var Position = {X: props.get_Position().get_X(), Y: props.get_Position().get_Y()};
if (Position.X !== null && Position.X !== undefined) this.spnX.setValue(Common.Utils.Metric.fnRecalcFromMM(Position.X), true); this.spnX.setValue((Position.X !== null && Position.X !== undefined) ? Common.Utils.Metric.fnRecalcFromMM(Position.X) : '', true);
if (Position.Y !== null && Position.Y !== undefined) this.spnY.setValue(Common.Utils.Metric.fnRecalcFromMM(Position.Y), true); this.spnY.setValue((Position.Y !== null && Position.Y !== undefined) ? Common.Utils.Metric.fnRecalcFromMM(Position.Y) : '', true);
} else { } else {
this.spnX.setValue('', true); this.spnX.setValue('', true);
this.spnY.setValue('', true); this.spnY.setValue('', true);

View file

@ -135,6 +135,12 @@
"PE.Controllers.Main.errorUserDrop": "The file cannot be accessed right now.", "PE.Controllers.Main.errorUserDrop": "The file cannot be accessed right now.",
"PE.Controllers.Main.errorUsersExceed": "The number of users allowed by the pricing plan was exceeded", "PE.Controllers.Main.errorUsersExceed": "The number of users allowed by the pricing plan was exceeded",
"PE.Controllers.Main.errorViewerDisconnect": "Connection is lost. You can still view the document,<br>but will not be able to download or print until the connection is restored.", "PE.Controllers.Main.errorViewerDisconnect": "Connection is lost. You can still view the document,<br>but will not be able to download or print until the connection is restored.",
"PE.Controllers.Main.errorToken": "The document security token is not correctly formed.<br>Please contact your Document Server administrator.",
"PE.Controllers.Main.errorTokenExpire": "The document security token has expired.<br>Please contact your Document Server administrator.",
"PE.Controllers.Main.errorSessionAbsolute": "The document editing session has expired. Please reload the page.",
"PE.Controllers.Main.errorSessionIdle": "The document has not been edited for quite a long time. Please reload the page.",
"PE.Controllers.Main.errorSessionToken": "The connection to the server has been interrupted. Please reload the page.",
"PE.Controllers.Main.errorAccessDeny": "You are trying to perform an action you do not have rights for.<br>Please contact your Document Server administrator.",
"PE.Controllers.Main.leavePageText": "You have unsaved changes in this presentation. Click \"Stay on This Page\", then \"Save\" to save them. Click \"Leave This Page\" to discard all the unsaved changes.", "PE.Controllers.Main.leavePageText": "You have unsaved changes in this presentation. Click \"Stay on This Page\", then \"Save\" to save them. Click \"Leave This Page\" to discard all the unsaved changes.",
"PE.Controllers.Main.loadFontsTextText": "Loading data...", "PE.Controllers.Main.loadFontsTextText": "Loading data...",
"PE.Controllers.Main.loadFontsTitleText": "Loading Data", "PE.Controllers.Main.loadFontsTitleText": "Loading Data",

View file

@ -153,6 +153,7 @@ define([
view.pmiDeleteEntire.on('click', _.bind(me.onDeleteEntire, me)); view.pmiDeleteEntire.on('click', _.bind(me.onDeleteEntire, me));
view.pmiInsertCells.menu.on('item:click', _.bind(me.onInsertCells, me)); view.pmiInsertCells.menu.on('item:click', _.bind(me.onInsertCells, me));
view.pmiDeleteCells.menu.on('item:click', _.bind(me.onDeleteCells, me)); view.pmiDeleteCells.menu.on('item:click', _.bind(me.onDeleteCells, me));
view.pmiSparklines.menu.on('item:click', _.bind(me.onClear, me));
view.pmiSortCells.menu.on('item:click', _.bind(me.onSortCells, me)); view.pmiSortCells.menu.on('item:click', _.bind(me.onSortCells, me));
view.pmiFilterCells.menu.on('item:click', _.bind(me.onFilterCells, me)); view.pmiFilterCells.menu.on('item:click', _.bind(me.onFilterCells, me));
view.pmiReapply.on('click', _.bind(me.onReapply, me)); view.pmiReapply.on('click', _.bind(me.onReapply, me));
@ -1265,6 +1266,7 @@ define([
var iscelledit = this.api.isCellEdited, var iscelledit = this.api.isCellEdited,
formatTableInfo = cellinfo.asc_getFormatTableInfo(), formatTableInfo = cellinfo.asc_getFormatTableInfo(),
isinsparkline = (cellinfo.asc_getSparklineInfo()!==null),
isintable = (formatTableInfo !== null), isintable = (formatTableInfo !== null),
ismultiselect = cellinfo.asc_getFlags().asc_getMultiselect(); ismultiselect = cellinfo.asc_getFlags().asc_getMultiselect();
documentHolder.ssMenu.formatTableName = (isintable) ? formatTableInfo.asc_getTableName() : null; documentHolder.ssMenu.formatTableName = (isintable) ? formatTableInfo.asc_getTableName() : null;
@ -1279,10 +1281,11 @@ define([
documentHolder.pmiSelectTable.setVisible(iscellmenu && !iscelledit && isintable); documentHolder.pmiSelectTable.setVisible(iscellmenu && !iscelledit && isintable);
documentHolder.pmiInsertTable.setVisible(iscellmenu && !iscelledit && isintable); documentHolder.pmiInsertTable.setVisible(iscellmenu && !iscelledit && isintable);
documentHolder.pmiDeleteTable.setVisible(iscellmenu && !iscelledit && isintable); documentHolder.pmiDeleteTable.setVisible(iscellmenu && !iscelledit && isintable);
documentHolder.pmiSparklines.setVisible(isinsparkline);
documentHolder.pmiSortCells.setVisible((iscellmenu||isallmenu||cansort) && !iscelledit); documentHolder.pmiSortCells.setVisible((iscellmenu||isallmenu||cansort) && !iscelledit);
documentHolder.pmiFilterCells.setVisible((iscellmenu||cansort) && !iscelledit); documentHolder.pmiFilterCells.setVisible((iscellmenu||cansort) && !iscelledit);
documentHolder.pmiReapply.setVisible((iscellmenu||isallmenu||cansort) && !iscelledit); documentHolder.pmiReapply.setVisible((iscellmenu||isallmenu||cansort) && !iscelledit);
documentHolder.ssMenu.items[12].setVisible((iscellmenu||isallmenu||cansort) && !iscelledit); documentHolder.ssMenu.items[12].setVisible((iscellmenu||isallmenu||cansort||isinsparkline) && !iscelledit);
documentHolder.pmiInsFunction.setVisible(iscellmenu||insfunc); documentHolder.pmiInsFunction.setVisible(iscellmenu||insfunc);
documentHolder.pmiAddNamedRange.setVisible(iscellmenu && !iscelledit); documentHolder.pmiAddNamedRange.setVisible(iscellmenu && !iscelledit);
@ -1311,7 +1314,7 @@ define([
documentHolder.pmiEntriesList.setVisible(!iscelledit); documentHolder.pmiEntriesList.setVisible(!iscelledit);
/** coauthoring begin **/ /** coauthoring begin **/
documentHolder.ssMenu.items[16].setVisible(iscellmenu && !iscelledit && this.permissions.canCoAuthoring && this.permissions.canComments); documentHolder.ssMenu.items[17].setVisible(iscellmenu && !iscelledit && this.permissions.canCoAuthoring && this.permissions.canComments);
documentHolder.pmiAddComment.setVisible(iscellmenu && !iscelledit && this.permissions.canCoAuthoring && this.permissions.canComments); documentHolder.pmiAddComment.setVisible(iscellmenu && !iscelledit && this.permissions.canCoAuthoring && this.permissions.canComments);
/** coauthoring end **/ /** coauthoring end **/
documentHolder.pmiCellMenuSeparator.setVisible(iscellmenu || isrowmenu || iscolmenu || isallmenu || insfunc); documentHolder.pmiCellMenuSeparator.setVisible(iscellmenu || isrowmenu || iscolmenu || isallmenu || insfunc);

View file

@ -1087,11 +1087,11 @@ define([
break; break;
case Asc.c_oAscError.ID.VKeyEncrypt: case Asc.c_oAscError.ID.VKeyEncrypt:
config.msg = this.errorKeyEncrypt; config.msg = this.errorToken;
break; break;
case Asc.c_oAscError.ID.KeyExpire: case Asc.c_oAscError.ID.KeyExpire:
config.msg = this.errorKeyExpire; config.msg = this.errorTokenExpire;
break; break;
case Asc.c_oAscError.ID.UserCountExceed: case Asc.c_oAscError.ID.UserCountExceed:
@ -1183,6 +1183,22 @@ define([
config.msg = this.errorPrintMaxPagesCount; config.msg = this.errorPrintMaxPagesCount;
break; break;
case Asc.c_oAscError.ID.SessionAbsolute:
config.msg = this.errorSessionAbsolute;
break;
case Asc.c_oAscError.ID.SessionIdle:
config.msg = this.errorSessionIdle;
break;
case Asc.c_oAscError.ID.SessionToken:
config.msg = this.errorSessionToken;
break;
case Asc.c_oAscError.ID.AccessDeny:
config.msg = this.errorAccessDeny;
break;
default: default:
config.msg = this.errorDefaultMessage.replace('%1', id); config.msg = this.errorDefaultMessage.replace('%1', id);
break; break;
@ -2019,7 +2035,13 @@ define([
openErrorText: 'An error has occurred while opening the file', openErrorText: 'An error has occurred while opening the file',
saveErrorText: 'An error has occurred while saving the file', saveErrorText: 'An error has occurred while saving the file',
errorCopyMultiselectArea: 'This command cannot be used with multiple selections.<br>Select a single range and try again.', errorCopyMultiselectArea: 'This command cannot be used with multiple selections.<br>Select a single range and try again.',
errorPrintMaxPagesCount: 'Unfortunately, its not possible to print more than 1500 pages at once in the current version of the program.<br>This restriction will be eliminated in upcoming releases.' errorPrintMaxPagesCount: 'Unfortunately, its not possible to print more than 1500 pages at once in the current version of the program.<br>This restriction will be eliminated in upcoming releases.',
errorToken: 'The document security token is not correctly formed.<br>Please contact your Document Server administrator.',
errorTokenExpire: 'The document security token has expired.<br>Please contact your Document Server administrator.',
errorSessionAbsolute: 'The document editing session has expired. Please reload the page.',
errorSessionIdle: 'The document has not been edited for quite a long time. Please reload the page.',
errorSessionToken: 'The connection to the server has been interrupted. Please reload the page.',
errorAccessDeny: 'You are trying to perform an action you do not have rights for.<br>Please contact your Document Server administrator.'
} }
})(), SSE.Controllers.Main || {})) })(), SSE.Controllers.Main || {}))
}); });

View file

@ -349,6 +349,17 @@ define([
caption : me.textEntriesList caption : me.textEntriesList
}); });
me.pmiSparklines = new Common.UI.MenuItem({
caption : me.txtSparklines,
menu : new Common.UI.Menu({
menuAlign: 'tl-tr',
items : [
{ caption: me.txtClearSparklines, value: Asc.c_oAscCleanOptions.Sparklines },
{ caption: me.txtClearSparklineGroups, value: Asc.c_oAscCleanOptions.SparklineGroups }
]
})
});
me.ssMenu = new Common.UI.Menu({ me.ssMenu = new Common.UI.Menu({
id : 'id-context-menu-cell', id : 'id-context-menu-cell',
items : [ items : [
@ -365,6 +376,7 @@ define([
me.pmiDeleteTable, me.pmiDeleteTable,
me.pmiClear, me.pmiClear,
{caption: '--'}, {caption: '--'},
me.pmiSparklines,
me.pmiSortCells, me.pmiSortCells,
me.pmiFilterCells, me.pmiFilterCells,
me.pmiReapply, me.pmiReapply,
@ -691,7 +703,10 @@ define([
txtAutoRowHeight: 'Auto Fit Row Height', txtAutoRowHeight: 'Auto Fit Row Height',
txtCustomColumnWidth: 'Custom Column Width', txtCustomColumnWidth: 'Custom Column Width',
txtCustomRowHeight: 'Custom Row Height', txtCustomRowHeight: 'Custom Row Height',
textEntriesList: 'Select from drop-down list' textEntriesList: 'Select from drop-down list',
txtSparklines: 'Sparklines',
txtClearSparklines: 'Clear Selected Sparklines',
txtClearSparklineGroups: 'Clear Selected Sparkline Groups'
}, SSE.Views.DocumentHolder || {})); }, SSE.Views.DocumentHolder || {}));
}); });

View file

@ -260,6 +260,12 @@
"SSE.Controllers.Main.errorViewerDisconnect": "Connection is lost. You can still view the document,<br>but will not be able to download or print until the connection is restored.", "SSE.Controllers.Main.errorViewerDisconnect": "Connection is lost. You can still view the document,<br>but will not be able to download or print until the connection is restored.",
"SSE.Controllers.Main.errorWrongBracketsCount": "An error in the entered formula.<br>Wrong number of brackets is used.", "SSE.Controllers.Main.errorWrongBracketsCount": "An error in the entered formula.<br>Wrong number of brackets is used.",
"SSE.Controllers.Main.errorWrongOperator": "An error in the entered formula. Wrong operator is used.<br>Please correct the error or use the Esc button to cancel the formula editing.", "SSE.Controllers.Main.errorWrongOperator": "An error in the entered formula. Wrong operator is used.<br>Please correct the error or use the Esc button to cancel the formula editing.",
"SSE.Controllers.Main.errorToken": "The document security token is not correctly formed.<br>Please contact your Document Server administrator.",
"SSE.Controllers.Main.errorTokenExpire": "The document security token has expired.<br>Please contact your Document Server administrator.",
"SSE.Controllers.Main.errorSessionAbsolute": "The document editing session has expired. Please reload the page.",
"SSE.Controllers.Main.errorSessionIdle": "The document has not been edited for quite a long time. Please reload the page.",
"SSE.Controllers.Main.errorSessionToken": "The connection to the server has been interrupted. Please reload the page.",
"SSE.Controllers.Main.errorAccessDeny": "You are trying to perform an action you do not have rights for.<br>Please contact your Document Server administrator.",
"SSE.Controllers.Main.leavePageText": "You have unsaved changes in this spreadsheet. Click 'Stay on this Page' then 'Save' to save them. Click 'Leave this Page' to discard all the unsaved changes.", "SSE.Controllers.Main.leavePageText": "You have unsaved changes in this spreadsheet. Click 'Stay on this Page' then 'Save' to save them. Click 'Leave this Page' to discard all the unsaved changes.",
"SSE.Controllers.Main.loadFontsTextText": "Loading data...", "SSE.Controllers.Main.loadFontsTextText": "Loading data...",
"SSE.Controllers.Main.loadFontsTitleText": "Loading Data", "SSE.Controllers.Main.loadFontsTitleText": "Loading Data",
@ -940,6 +946,9 @@
"SSE.Views.DocumentHolder.txtUngroup": "Ungroup", "SSE.Views.DocumentHolder.txtUngroup": "Ungroup",
"SSE.Views.DocumentHolder.txtWidth": "Width", "SSE.Views.DocumentHolder.txtWidth": "Width",
"SSE.Views.DocumentHolder.vertAlignText": "Vertical Alignment", "SSE.Views.DocumentHolder.vertAlignText": "Vertical Alignment",
"SSE.Views.DocumentHolder.txtSparklines": "Sparklines",
"SSE.Views.DocumentHolder.txtClearSparklines": "Clear Selected Sparklines",
"SSE.Views.DocumentHolder.txtClearSparklineGroups": "Clear Selected Sparkline Groups",
"SSE.Views.FileMenu.btnBackCaption": "Go to Documents", "SSE.Views.FileMenu.btnBackCaption": "Go to Documents",
"SSE.Views.FileMenu.btnCloseMenuCaption": "Close Menu", "SSE.Views.FileMenu.btnCloseMenuCaption": "Close Menu",
"SSE.Views.FileMenu.btnCreateNewCaption": "Create New", "SSE.Views.FileMenu.btnCreateNewCaption": "Create New",

View file

@ -938,6 +938,9 @@
"SSE.Views.DocumentHolder.txtUngroup": "Разгруппировать", "SSE.Views.DocumentHolder.txtUngroup": "Разгруппировать",
"SSE.Views.DocumentHolder.txtWidth": "Ширина", "SSE.Views.DocumentHolder.txtWidth": "Ширина",
"SSE.Views.DocumentHolder.vertAlignText": "Вертикальное выравнивание", "SSE.Views.DocumentHolder.vertAlignText": "Вертикальное выравнивание",
"SSE.Views.DocumentHolder.txtSparklines": "Спарклайны",
"SSE.Views.DocumentHolder.txtClearSparklines": "Очистить выбранные спарклайны",
"SSE.Views.DocumentHolder.txtClearSparklineGroups": "Очистить выбранные группы спарклайнов",
"SSE.Views.FileMenu.btnBackCaption": "Перейти к Документам", "SSE.Views.FileMenu.btnBackCaption": "Перейти к Документам",
"SSE.Views.FileMenu.btnCloseMenuCaption": "Закрыть меню", "SSE.Views.FileMenu.btnCloseMenuCaption": "Закрыть меню",
"SSE.Views.FileMenu.btnCreateNewCaption": "Создать новую", "SSE.Views.FileMenu.btnCreateNewCaption": "Создать новую",

View file

@ -9,7 +9,7 @@
<body> <body>
<div class="mainpart"> <div class="mainpart">
<h1>About Spreadsheet Editor</h1> <h1>About Spreadsheet Editor</h1>
<p><b>Spreadsheet Editor</b> is an online application that lets you edit your spreadsheets directly in your browser.</p> <p><b>Spreadsheet Editor</b> is an <span class="onlineDocumentFeatures">online</span> application that lets you edit your spreadsheets<span class="onlineDocumentFeatures"> directly in your browser</span>.</p>
<p>Using <b>Spreadsheet Editor</b>, you can perform various editing operations like in any desktop editor, print the edited spreadsheets keeping all the formatting details or download them onto your computer hard disk drive as XLSX, ODS, CSV, or PDF file.</p> <p>Using <b>Spreadsheet Editor</b>, you can perform various editing operations like in any desktop editor, print the edited spreadsheets keeping all the formatting details or download them onto your computer hard disk drive as XLSX, ODS, CSV, or PDF file.</p>
<p>To view the current software version and licensor details, click the <img alt="About icon" src="../images/about.png" /> icon at the left sidebar.</p> <p>To view the current software version and licensor details, click the <img alt="About icon" src="../images/about.png" /> icon at the left sidebar.</p>
</div> </div>

View file

@ -12,9 +12,9 @@
<p><b>Spreadsheet Editor</b> lets you change its general advanced settings. To access them, click the <b>File</b> <img alt="File icon" src="../images/file.png" /> icon at the left sidebar and select the <b>Advanced Settings...</b> option. You can also use the <img alt="Advanced Settings icon" src="../images/advanced_settings_icon.png" /> icon in the right upper corner of the top toolbar.</p> <p><b>Spreadsheet Editor</b> lets you change its general advanced settings. To access them, click the <b>File</b> <img alt="File icon" src="../images/file.png" /> icon at the left sidebar and select the <b>Advanced Settings...</b> option. You can also use the <img alt="Advanced Settings icon" src="../images/advanced_settings_icon.png" /> icon in the right upper corner of the top toolbar.</p>
<p>The general advanced settings are:</p> <p>The general advanced settings are:</p>
<ul> <ul>
<li><b>Commenting Display</b><sup>*</sup> is used to turn on/off the live commenting option. If you disable this feature, the commented passages will be highlighted only if you click the <b>Comments</b> <img alt="Comments icon" src="../images/commentsicon.png" /> icon.</li> <li><b>Commenting Display</b><sup class="oOfficeFeatures">*</sup> is used to turn on/off the live commenting option. If you disable this feature, the commented passages will be highlighted only if you click the <b>Comments</b> <img alt="Comments icon" src="../images/commentsicon.png" /> icon.</li>
<li><b>Autosave</b> is used to turn on/off automatic saving of changes you make while editing.</li> <li class="onlineDocumentFeatures"><b>Autosave</b> is used to turn on/off automatic saving of changes you make while editing.</li>
<li><b>Co-editing Mode</b> is used to select the display of the changes made during the co-editing: <li class="onlineDocumentFeatures"><b>Co-editing Mode</b> is used to select the display of the changes made during the co-editing:
<ul> <ul>
<li>By default the <b>Fast</b> mode is selected, the users who take part in the document co-editing will see the changes in realtime once they are made by other users.</li> <li>By default the <b>Fast</b> mode is selected, the users who take part in the document co-editing will see the changes in realtime once they are made by other users.</li>
<li>If you prefer not to see other user changes (so that they do not disturb you, or for some other reason), select the <b>Strict</b> mode and all the changes will be shown only after you click the <b>Save</b> <img alt="Save icon" src="../images/saveupdate.png" /> icon notifying you that there are changes from other users.</li> <li>If you prefer not to see other user changes (so that they do not disturb you, or for some other reason), select the <b>Strict</b> mode and all the changes will be shown only after you click the <b>Save</b> <img alt="Save icon" src="../images/saveupdate.png" /> icon notifying you that there are changes from other users.</li>
@ -33,7 +33,7 @@
<li><b>Regional Settings</b> is used to select the default display format for currency and date and time.</li> <li><b>Regional Settings</b> is used to select the default display format for currency and date and time.</li>
</ul> </ul>
<p>To save the changes you made, click the <b>Apply</b> button.</p> <p>To save the changes you made, click the <b>Apply</b> button.</p>
<p><sup>*</sup>available for paid versions only</p> <p class="oOfficeFeatures"><sup>*</sup>available for paid versions only</p>
</div> </div>
</body> </body>
</html> </html>

View file

@ -12,50 +12,53 @@
<h1>Collaborative Spreadsheet Editing</h1> <h1>Collaborative Spreadsheet Editing</h1>
<p><b>Spreadsheet Editor</b> offers you the possibility to work at a spreadsheet collaboratively with other users. This feature includes:</p> <p><b>Spreadsheet Editor</b> offers you the possibility to work at a spreadsheet collaboratively with other users. This feature includes:</p>
<ul> <ul>
<li>simultaneous multi-user access to the edited spreadsheet</li> <li class="onlineDocumentFeatures">simultaneous multi-user access to the edited spreadsheet</li>
<li>visual indication of cells that are being edited by other users</li> <li class="onlineDocumentFeatures">visual indication of cells that are being edited by other users</li>
<li>synchronization of changes with one button click</li> <li class="onlineDocumentFeatures">synchronization of changes with one button click</li>
<li>chat to share ideas concerning particular spreadsheet parts</li> <li class="onlineDocumentFeatures">chat to share ideas concerning particular spreadsheet parts</li>
<li>comments containing the description of a task or problem that should be solved</li> <li>comments containing the description of a task or problem that should be solved</li>
</ul> </ul>
<h3>Co-editing</h3> <div class="onlineDocumentFeatures">
<p><b>Spreadsheet Editor</b> allows to select one of the two available co-editing modes. <b>Fast</b> is used by default and shows the changes made by other users in realtime. <b>Strict</b> is selected to hide other user changes until you click the <b>Save</b> <img alt="Save icon" src="../images/saveupdate.png" /> icon to save your own changes and accept the changes made by others. The mode can be selected in the <a href="../HelpfulHints/AdvancedSettings.htm" onclick="onhyperlinkclick(this)">Advanced Settings</a>.</p> <h3>Co-editing</h3>
<p>When a document is being edited by several users simultaneously in the <b>Strict</b> mode, the edited cells as well as the tab of the sheet where these cells are situated are marked with dashed lines of different colors. By hovering the mouse cursor over one of the edited cells, the name of the user who is editing it at the moment is displayed. The <b>Fast</b> mode will show the actions and the names of the co-editors once they are editing the text.</p> <p><b>Spreadsheet Editor</b> allows to select one of the two available co-editing modes. <b>Fast</b> is used by default and shows the changes made by other users in realtime. <b>Strict</b> is selected to hide other user changes until you click the <b>Save</b> <img alt="Save icon" src="../images/saveupdate.png" /> icon to save your own changes and accept the changes made by others. The mode can be selected in the <a href="../HelpfulHints/AdvancedSettings.htm" onclick="onhyperlinkclick(this)">Advanced Settings</a>.</p>
<p>The number of users who are working at the current document is specified in the right lower corner at the status bar - <img alt="Number of users icon" src="../images/usersnumber.png" />. If you want to see who exactly are editing the file now, you can open the <b>Chat</b> panel with the full list of the users.</p> <p>When a document is being edited by several users simultaneously in the <b>Strict</b> mode, the edited cells as well as the tab of the sheet where these cells are situated are marked with dashed lines of different colors. By hovering the mouse cursor over one of the edited cells, the name of the user who is editing it at the moment is displayed. The <b>Fast</b> mode will show the actions and the names of the co-editors once they are editing the text.</p>
<p>When no users are viewing or editing the file, the icon in the status bar will look like <img alt="Manage document access rights icon" src="../images/access_rights.png" /> allowing you to manage the users who have access to the file right from the document: invite new users giving them either full or read-only access, or denying some users access rights to the file. Click this icon to manage the access to the file; this can be done both when there are no other users who view or co-edit the document at the moment and when there are other users and the icon looks like <img alt="Number of users icon" src="../images/usersnumber.png" />.</p> <p>The number of users who are working at the current document is specified in the right lower corner at the status bar - <img alt="Number of users icon" src="../images/usersnumber.png" />. If you want to see who exactly are editing the file now, you can open the <b>Chat</b> panel with the full list of the users.</p>
<p>As soon as one of the users saves his/her changes by clicking the <img alt="Save icon" src="../images/savewhilecoediting.png" /> icon, the others will see a note in the upper left corner stating that they have updates. To save the changes you made, so that other users can view them, and get the updates saved by your co-editors, click the <img alt="Save icon" src="../images/saveupdate.png" /> icon in the left upper corner of the top toolbar.</p> <p>When no users are viewing or editing the file, the icon in the status bar will look like <img alt="Manage document access rights icon" src="../images/access_rights.png" /> allowing you to manage the users who have access to the file right from the document: invite new users giving them either full or read-only access, or denying some users access rights to the file. Click this icon to manage the access to the file; this can be done both when there are no other users who view or co-edit the document at the moment and when there are other users and the icon looks like <img alt="Number of users icon" src="../images/usersnumber.png" />.</p>
<h3>Chat<a class="sup_link" href="../HelpfulHints/CollaborativeEditing.htm#footnote" onclick="onhyperlinkclick(this)"><sup>*</sup></a></h3> <p>As soon as one of the users saves his/her changes by clicking the <img alt="Save icon" src="../images/savewhilecoediting.png" /> icon, the others will see a note in the upper left corner stating that they have updates. To save the changes you made, so that other users can view them, and get the updates saved by your co-editors, click the <img alt="Save icon" src="../images/saveupdate.png" /> icon in the left upper corner of the top toolbar.</p>
<p>You can use this tool to coordinate the co-editing process on-the-fly, for example, to arrange with your collaborators about who is doing what, which paragraph you are going to edit now etc.</p> <h3>Chat<a class="sup_link" href="../HelpfulHints/CollaborativeEditing.htm#footnote" onclick="onhyperlinkclick(this)"><sup>*</sup></a></h3>
<p>The chat messages are stored during one session only. To discuss the document content it is better to use comments which are stored until you decide to delete them.</p> <p>You can use this tool to coordinate the co-editing process on-the-fly, for example, to arrange with your collaborators about who is doing what, which paragraph you are going to edit now etc.</p>
<p>To access the chat and leave a message for other users,</p> <p>The chat messages are stored during one session only. To discuss the document content it is better to use comments which are stored until you decide to delete them.</p>
<ol> <p>To access the chat and leave a message for other users,</p>
<li>click the <img alt="Chat icon" src="../images/chaticon.png" /> icon at the left sidebar,</li> <ol>
<li>enter your text into the corresponding field below,</li> <li>click the <img alt="Chat icon" src="../images/chaticon.png" /> icon at the left sidebar,</li>
<li>press the <b>Send</b> button.</li> <li>enter your text into the corresponding field below,</li>
</ol> <li>press the <b>Send</b> button.</li>
<p>All the messages left by users will be displayed on the panel on the left. If there are new messages you haven't read yet, the chat icon will look like this - <img alt="Chat icon" src="../images/chaticon_new.png" />.</p> </ol>
<p>To close the panel with chat messages, click the <img alt="Chat icon" src="../images/chaticon.png" /> icon once again.</p> <p>All the messages left by users will be displayed on the panel on the left. If there are new messages you haven't read yet, the chat icon will look like this - <img alt="Chat icon" src="../images/chaticon_new.png" />.</p>
<h3>Comments<a class="sup_link" href="../HelpfulHints/CollaborativeEditing.htm#footnote" onclick="onhyperlinkclick(this)"><sup>*</sup></a></h3> <p>To close the panel with chat messages, click the <img alt="Chat icon" src="../images/chaticon.png" /> icon once again.</p>
<p>To leave a comment,</p> </div>
<ol> <h3>Comments<a class="sup_link oOfficeFeatures" href="../HelpfulHints/CollaborativeEditing.htm#footnote" onclick="onhyperlinkclick(this)"><sup>*</sup></a></h3>
<li>select a cell where you think there is an error or problem,</li> <p>To leave a comment,</p>
<li>use the <img alt="Comments icon" src="../images/commentsicon.png" /> icon at the left sidebar to open the <b>Comments</b> panel and click the <b>Add Comment to Document</b> link, or<br /> <ol>
right-click within the selected cell and select the <b>Add Сomment</b> option from the menu, <li>select a cell where you think there is an error or problem,</li>
</li> <li>
<li>enter the needed text,</li> use the <img alt="Comments icon" src="../images/commentsicon.png" /> icon at the left sidebar to open the <b>Comments</b> panel and click the <b>Add Comment to Document</b> link, or<br />
<li>click the <b>Add Comment</b>/<b>Add</b> button.</li> right-click within the selected cell and select the <b>Add Сomment</b> option from the menu,
</ol> </li>
<p>The comment will be seen on the panel on the left. The orange triangle will appear in the upper right corner of the cell you commented. If you need to disable this feature, click the <img alt="File icon" src="../images/file.png" /> icon, select the <b>Advanced Settings...</b> option and uncheck the <b>Turn on live commenting option</b> box. In this case the commented cells will be marked only if you click the <img alt="Comments icon" src="../images/commentsicon.png" /> icon.</p> <li>enter the needed text,</li>
<p>To view the comment, just click within the cell. You or any other user can answer to the added comment asking questions or reporting on the work he/she has done. For this purpose, use the <b>Add Reply</b> link.</p> <li>click the <b>Add Comment</b>/<b>Add</b> button.</li>
<p>You can manage the comments you added in the following way:</p> </ol>
<ul> <p>The comment will be seen on the panel on the left. The orange triangle will appear in the upper right corner of the cell you commented. If you need to disable this feature, click the <img alt="File icon" src="../images/file.png" /> icon, select the <b>Advanced Settings...</b> option and uncheck the <b>Turn on live commenting option</b> box. In this case the commented cells will be marked only if you click the <img alt="Comments icon" src="../images/commentsicon.png" /> icon.</p>
<li>edit them by clicking the <img alt="Edit icon" src="../images/editcommenticon.png" /> icon,</li> <p>To view the comment, just click within the cell. You or any other user can answer to the added comment asking questions or reporting on the work he/she has done. For this purpose, use the <b>Add Reply</b> link.</p>
<li>delete them by clicking the <img alt="Delete icon" src="../images/deletecommenticon.png" /> icon,</li> <p>You can manage the comments you added in the following way:</p>
<li>close the discussion by clicking the <img alt="Resolve icon" src="../images/resolveicon.png" /> icon if the task or problem you stated in your comment was solved, after that the discussion you opened with your comment gets the resolved status. To open it again, click the <img alt="Open again icon" src="../images/resolvedicon.png" /> icon.</li> <ul>
</ul> <li>edit them by clicking the <img alt="Edit icon" src="../images/editcommenticon.png" /> icon,</li>
<p>New comments added by other users will become visible only after you click the <img alt="Save icon" src="../images/saveupdate.png" /> icon in the left upper corner of the top toolbar.</p> <li>delete them by clicking the <img alt="Delete icon" src="../images/deletecommenticon.png" /> icon,</li>
<p>To close the panel with comments, click the <img alt="Comments icon" src="../images/commentsicon.png" /> icon once again.</p> <li>close the discussion by clicking the <img alt="Resolve icon" src="../images/resolveicon.png" /> icon if the task or problem you stated in your comment was solved, after that the discussion you opened with your comment gets the resolved status. To open it again, click the <img alt="Open again icon" src="../images/resolvedicon.png" /> icon.</li>
<p><sup id="footnote">*</sup>available for paid versions only</p> </ul>
</div> <p>New comments added by other users will become visible only after you click the <img alt="Save icon" src="../images/saveupdate.png" /> icon in the left upper corner of the top toolbar.</p>
<p>To close the panel with comments, click the <img alt="Comments icon" src="../images/commentsicon.png" /> icon once again.</p>
<p class="oOfficeFeatures"><sup id="footnote">*</sup>available for paid versions only</p>
</div>
</body> </body>
</html> </html>

View file

@ -25,17 +25,17 @@
<td>Open the <b>Search</b> window to start searching for a cell containing the characters you need.</td> <td>Open the <b>Search</b> window to start searching for a cell containing the characters you need.</td>
</tr> </tr>
<tr> <tr>
<td>Open 'Comments' panel<a class="sup_link" href="../HelpfulHints/KeyboardShortcuts.htm#footnote" onclick="onhyperlinkclick(this)"><sup>*</sup></a></td> <td>Open 'Comments' panel<a class="sup_link oOfficeFeatures" href="../HelpfulHints/KeyboardShortcuts.htm#footnote" onclick="onhyperlinkclick(this)"><sup>*</sup></a></td>
<td>Ctrl+Shift+H</td> <td>Ctrl+Shift+H</td>
<td>Open the <b>Comments</b> panel to add your own comment or reply to other users' comments.</td> <td>Open the <b>Comments</b> panel to add your own comment or reply to other users' comments.</td>
</tr> </tr>
<tr> <tr>
<td>Open comment field<a class="sup_link" href="../HelpfulHints/KeyboardShortcuts.htm#footnote" onclick="onhyperlinkclick(this)"><sup>*</sup></a></td> <td>Open comment field<a class="sup_link oOfficeFeatures" href="../HelpfulHints/KeyboardShortcuts.htm#footnote" onclick="onhyperlinkclick(this)"><sup>*</sup></a></td>
<td>Alt+H</td> <td>Alt+H</td>
<td>Open a data entry field where you can add the text of your comment.</td> <td>Open a data entry field where you can add the text of your comment.</td>
</tr> </tr>
<tr> <tr class="onlineDocumentFeatures">
<td>Open 'Chat' panel<a class="sup_link" href="../HelpfulHints/KeyboardShortcuts.htm#footnote" onclick="onhyperlinkclick(this)"><sup>*</sup></a></td> <td>Open 'Chat' panel<a class="sup_link oOfficeFeatures" href="../HelpfulHints/KeyboardShortcuts.htm#footnote" onclick="onhyperlinkclick(this)"><sup>*</sup></a></td>
<td>Alt+Q</td> <td>Alt+Q</td>
<td>Open the <b>Chat</b> panel and send a message.</td> <td>Open the <b>Chat</b> panel and send a message.</td>
</tr> </tr>
@ -49,7 +49,7 @@
<td>Ctrl+P</td> <td>Ctrl+P</td>
<td>Print your spreadsheet with one of the available printers or save it to a file.</td> <td>Print your spreadsheet with one of the available printers or save it to a file.</td>
</tr> </tr>
<tr> <tr class="onlineDocumentFeatures">
<td>Download as</td> <td>Download as</td>
<td>Ctrl+Shift+S</td> <td>Ctrl+Shift+S</td>
<td>Open the <b>Download as</b> pane to save the currently viewed spreadsheet to the computer hard disk drive in one of the supported formats: XLSX, ODS, CSV, HTML.</td> <td>Open the <b>Download as</b> pane to save the currently viewed spreadsheet to the computer hard disk drive in one of the supported formats: XLSX, ODS, CSV, HTML.</td>
@ -85,7 +85,7 @@
<tr> <tr>
<td>Jump to the end of the spreadsheet</td> <td>Jump to the end of the spreadsheet</td>
<td>Ctrl+End</td> <td>Ctrl+End</td>
<td>Outline the bottom right cell of your spreadsheet.</td> <td>Outline the last cell of the spreadsheet situated at the bottommost row with data of the rightmost column with data. If the cursor is at the formula line, it will be placed to the end of the text.</td>
</tr> </tr>
<!--<tr> <!--<tr>
<td>Scroll down</td> <td>Scroll down</td>
@ -296,7 +296,7 @@
</tr> </tr>
</table> </table>
<p><sup id="footnote">*</sup>available for paid versions only</p> <p class="oOfficeFeatures"><sup id="footnote">*</sup>available for paid versions only</p>
</div> </div>
</body> </body>
</html> </html>

View file

@ -9,20 +9,22 @@
</head> </head>
<body> <body>
<div class="mainpart"> <div class="mainpart">
<h1>Save/print/download your spreadsheet</h1> <h1>Save/print<span class="onlineDocumentFeatures">/download</span> your spreadsheet</h1>
<p>By default, <b>Spreadsheet Editor</b> automatically saves your file each 2 seconds when you work on it preventing your data loss in case of the unexpected program closing. If you co-edit the file in the <b>Fast</b> mode, the timer requests for updates 25 times a second and saves the changes if they have been made. When the file is being co-edited in the <b>Strict</b> mode, changes are automatically saved at 10-minute intervals. If you need, you can easily select the preferred co-editing mode or disable the <b>Autosave</b> feature on the <a href="../HelpfulHints/AdvancedSettings.htm" onclick="onhyperlinkclick(this)">Advanced Settings</a> page.</p> <p>By default, <b>Spreadsheet Editor</b> automatically saves your file each 2 seconds when you work on it preventing your data loss in case of the unexpected program closing. <span class="onlineDocumentFeatures">If you co-edit the file in the <b>Fast</b> mode, the timer requests for updates 25 times a second and saves the changes if they have been made. When the file is being co-edited in the <b>Strict</b> mode, changes are automatically saved at 10-minute intervals. If you need, you can easily select the preferred co-editing mode or disable the <b>Autosave</b> feature on the <a href="../HelpfulHints/AdvancedSettings.htm" onclick="onhyperlinkclick(this)">Advanced Settings</a> page.</span></p>
<p>To save your current spreadsheet manually,</p> <p>To save your current spreadsheet manually,</p>
<ul> <ul>
<li>click the <b>Save</b> <img alt="Save icon" src="../images/save.png" /> icon at the top toolbar, or</li> <li>click the <b>Save</b> <img alt="Save icon" src="../images/save.png" /> icon at the top toolbar, or</li>
<li>use the <b>Ctrl+S</b> key combination, or</li> <li>use the <b>Ctrl+S</b> key combination, or</li>
<li>click the <b>File</b> <img alt="File icon" src="../images/file.png" /> icon at the left sidebar and select the <b>Save</b> option.</li> <li>click the <b>File</b> <img alt="File icon" src="../images/file.png" /> icon at the left sidebar and select the <b>Save</b> option.</li>
</ul> </ul>
<div class="onlineDocumentFeatures">
<p>To download the resulting spreadsheet onto your computer hard disk drive,</p> <p>To download the resulting spreadsheet onto your computer hard disk drive,</p>
<ol> <ol>
<li>click the <b>File</b> <img alt="File icon" src="../images/file.png" /> icon at the left sidebar,</li> <li>click the <b>File</b> <img alt="File icon" src="../images/file.png" /> icon at the left sidebar,</li>
<li>select the <b>Download as...</b> option,</li> <li>select the <b>Download as...</b> option,</li>
<li>choose one of the available formats depending on your needs: XLSX, PDF, ODS, CSV.</li> <li>choose one of the available formats depending on your needs: XLSX, PDF, ODS, CSV.</li>
</ol> </ol>
</div>
<p>To print out the current spreadsheet,</p> <p>To print out the current spreadsheet,</p>
<ul> <ul>
<li>click the <b>Print</b> <img alt="Print icon" src="../images/print.png" /> icon at the top toolbar, or</li> <li>click the <b>Print</b> <img alt="Print icon" src="../images/print.png" /> icon at the top toolbar, or</li>
@ -42,7 +44,7 @@
<li><b>Margins</b> - specify the distance between the worksheet data and the edges of the printed page changing the default sizes in the <b>Top</b>, <b>Bottom</b>, <b>Left</b> and <b>Right</b> fields,</li> <li><b>Margins</b> - specify the distance between the worksheet data and the edges of the printed page changing the default sizes in the <b>Top</b>, <b>Bottom</b>, <b>Left</b> and <b>Right</b> fields,</li>
<li><b>Print</b> - specify the worksheet elements to print checking the corresponding boxes: <b>Print Gridlines</b> and <b>Print Row and Column Headings</b>.</li> <li><b>Print</b> - specify the worksheet elements to print checking the corresponding boxes: <b>Print Gridlines</b> and <b>Print Row and Column Headings</b>.</li>
</ul> </ul>
<p>When the parameters are set, click the <b>Save & Print</b> button to apply the changes and close the window. After that a PDF file will be generated on the basis of the spreadsheet. You can open and print it out, or save onto your computer hard disk drive or removable medium to print it out later.</p> <p class="onlineDocumentFeatures">When the parameters are set, click the <b>Save & Print</b> button to apply the changes and close the window. After that a PDF file will be generated on the basis of the spreadsheet. You can open and print it out, or save onto your computer hard disk drive or removable medium to print it out later.</p>
</div> </div>
</body> </body>

View file

@ -12,11 +12,13 @@
<p>To access the detailed information about the currently edited spreadsheet, click the <b>File</b> <img alt="File icon" src="../images/file.png" /> icon at the left sidebar and select the <b>Spreadsheet Info</b> option.</p> <p>To access the detailed information about the currently edited spreadsheet, click the <b>File</b> <img alt="File icon" src="../images/file.png" /> icon at the left sidebar and select the <b>Spreadsheet Info</b> option.</p>
<h3>General Information</h3> <h3>General Information</h3>
<p>The file information includes spreadsheet title, author, location and creation date.</p> <p>The file information includes spreadsheet title, author, location and creation date.</p>
<h3>Permission Information</h3> <div class="onlineDocumentFeatures">
<p class="note"><b>Note</b>: this option is not available for users with the <b>Read Only</b> permissions.</p> <h3>Permission Information</h3>
<p>To find out, who have rights to view or edit the spreadsheet, select the <b>Access Rights...</b> option at the left sidebar.</p> <p class="note"><b>Note</b>: this option is not available for users with the <b>Read Only</b> permissions.</p>
<p>You can also change currently selected access rights clicking the <b>Change access rights</b> button in the <b>Persons who have rights</b> section.</p> <p>To find out, who have rights to view or edit the spreadsheet, select the <b>Access Rights...</b> option at the left sidebar.</p>
<p>To close the <b>File</b> pane and return to your spreadsheet, select the <b>Back to Spreadsheet</b> option.</p> <p>You can also change currently selected access rights clicking the <b>Change access rights</b> button in the <b>Persons who have rights</b> section.</p>
</div> </div>
<p>To close the <b>File</b> pane and return to your spreadsheet, select the <b>Back to Spreadsheet</b> option.</p>
</div>
</body> </body>
</html> </html>

View file

@ -1,35 +1,3 @@
/*
*
* (c) Copyright Ascensio System Limited 2010-2016
*
* This program is a free software product. You can redistribute it and/or
* modify it under the terms of the GNU Affero General Public License (AGPL)
* version 3 as published by the Free Software Foundation. In accordance with
* Section 7(a) of the GNU AGPL its Section 15 shall be amended to the effect
* that Ascensio System SIA expressly excludes the warranty of non-infringement
* of any third-party rights.
*
* This program is distributed WITHOUT ANY WARRANTY; without even the implied
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For
* details, see the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html
*
* You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia,
* EU, LV-1021.
*
* The interactive user interfaces in modified source and object code versions
* of the Program must display Appropriate Legal Notices, as required under
* Section 5 of the GNU AGPL version 3.
*
* Pursuant to Section 7(b) of the License you must retain the original Product
* logo when distributing the program. Pursuant to Section 7(e) we decline to
* grant you any rights under trademark law for use of our trademarks.
*
* All the Product's GUI elements, including illustrations and icon sets, as
* well as technical writing content are licensed under the terms of the
* Creative Commons Attribution-ShareAlike 4.0 International. See the License
* terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode
*
*/
function onhyperlinkclick(element) { function onhyperlinkclick(element) {
function _postMessage(msg) { function _postMessage(msg) {
if (window.parent && window.JSON) { if (window.parent && window.JSON) {

Binary file not shown.

Before

Width:  |  Height:  |  Size: 15 KiB

After

Width:  |  Height:  |  Size: 48 KiB

View file

@ -9,8 +9,8 @@
<body> <body>
<div class="mainpart"> <div class="mainpart">
<h1>О редакторе электронных таблиц</h1> <h1>О редакторе электронных таблиц</h1>
<p><b>Онлайн-редактор электронных таблиц</b> - это онлайн-приложение, которое позволяет редактировать электронные таблицы непосредственно в браузере.</p> <p><b>Онлайн-редактор электронных таблиц</b> - это <span class="onlineDocumentFeatures">онлайн-</span>приложение, которое позволяет редактировать электронные таблицы<span class="onlineDocumentFeatures"> непосредственно в браузере</span>.</p>
<p>С помощью онлайн-редактора электронных таблиц можно выполнять различные операции редактирования, как в любом десктопном редакторе, распечатывать отредактированные электронные таблицы, сохраняя все детали форматирования, или сохранять таблицы на жесткий диск компьютера как файлы в формате XLSX, ODS, CSV или PDF.</p> <p>С помощью <span class="onlineDocumentFeatures">онлайн-</span>редактора электронных таблиц можно выполнять различные операции редактирования, как в любом десктопном редакторе, распечатывать отредактированные электронные таблицы, сохраняя все детали форматирования, или сохранять таблицы на жесткий диск компьютера как файлы в формате XLSX, ODS, CSV или PDF.</p>
<p>Для просмотра текущей версии программы и информации о владельце лицензии щелкните по значку <img alt="Значок О программе" src="../images/about.png" /> на левой боковой панели инструментов.</p> <p>Для просмотра текущей версии программы и информации о владельце лицензии щелкните по значку <img alt="Значок О программе" src="../images/about.png" /> на левой боковой панели инструментов.</p>
</div> </div>
</body> </body>

View file

@ -12,9 +12,9 @@
<p>Вы можете изменить дополнительные параметры онлайн-редактора электронных таблиц. Для перехода к ним щелкните по значку <b>Файл</b> <img alt="Значок Файл" src="../images/file.png" /> на левой боковой панели и выберите опцию <b>Дополнительные параметры...</b>. Можно также использовать значок <img alt="Значок Дополнительные параметры" src="../images/advanced_settings_icon.png" />, расположенный в правом верхнем углу верхней панели инструментов.</p> <p>Вы можете изменить дополнительные параметры онлайн-редактора электронных таблиц. Для перехода к ним щелкните по значку <b>Файл</b> <img alt="Значок Файл" src="../images/file.png" /> на левой боковой панели и выберите опцию <b>Дополнительные параметры...</b>. Можно также использовать значок <img alt="Значок Дополнительные параметры" src="../images/advanced_settings_icon.png" />, расположенный в правом верхнем углу верхней панели инструментов.</p>
<p>В разделе <b>Общие</b> доступны следующие дополнительные параметры:</p> <p>В разделе <b>Общие</b> доступны следующие дополнительные параметры:</p>
<ul> <ul>
<li><b>Отображение комментариев</b><sup>*</sup> - используется для включения/отключения опции комментирования в реальном времени. Если отключить эту функцию, прокомментированные фрагменты будут подсвечиваться, только когда вы нажмете на значок <b>Комментарии</b> <img alt="Значок Комментарии" src="../images/commentsicon.png" />.</li> <li><b>Отображение комментариев</b><sup class="oOfficeFeatures">*</sup> - используется для включения/отключения опции комментирования в реальном времени. Если отключить эту функцию, прокомментированные фрагменты будут подсвечиваться, только когда вы нажмете на значок <b>Комментарии</b> <img alt="Значок Комментарии" src="../images/commentsicon.png" />.</li>
<li><b>Автосохранение</b> - используется для включения/отключения опции автоматического сохранения изменений, внесенных при редактировании.</li> <li class="onlineDocumentFeatures"><b>Автосохранение</b> - используется для включения/отключения опции автоматического сохранения изменений, внесенных при редактировании.</li>
<li> <li class="onlineDocumentFeatures">
<b>Режим совместного редактирования</b> - используется для выбора способа отображения изменений, вносимых в ходе совместного редактирования: <b>Режим совместного редактирования</b> - используется для выбора способа отображения изменений, вносимых в ходе совместного редактирования:
<ul> <ul>
<li>По умолчанию выбран <b>Быстрый</b> режим, при котором пользователи, участвующие в совместном редактировании документа, будут видеть изменения в реальном времени, как только они внесены другими пользователями.</li> <li>По умолчанию выбран <b>Быстрый</b> режим, при котором пользователи, участвующие в совместном редактировании документа, будут видеть изменения в реальном времени, как только они внесены другими пользователями.</li>
@ -34,7 +34,7 @@
<li><b>Региональные параметры</b> - используется для выбора формата отображения денежных единиц и даты и времени по умолчанию.</li> <li><b>Региональные параметры</b> - используется для выбора формата отображения денежных единиц и даты и времени по умолчанию.</li>
</ul> </ul>
<p>Чтобы сохранить внесенные изменения, нажмите кнопку <b>Применить</b>.</p> <p>Чтобы сохранить внесенные изменения, нажмите кнопку <b>Применить</b>.</p>
<p><sup>*</sup>доступно только для платных версий</p> <p class="oOfficeFeatures"><sup>*</sup>доступно только для платных версий</p>
</div> </div>
</body> </body>
</html> </html>

View file

@ -12,50 +12,53 @@
<h1>Совместное редактирование электронных таблиц</h1> <h1>Совместное редактирование электронных таблиц</h1>
<p>В <b>онлайн-редакторе электронных таблиц</b> вы можете работать над электронной таблицей совместно с другими пользователями. Эта возможность включает в себя следующее:</p> <p>В <b>онлайн-редакторе электронных таблиц</b> вы можете работать над электронной таблицей совместно с другими пользователями. Эта возможность включает в себя следующее:</p>
<ul> <ul>
<li>одновременный многопользовательский доступ к редактируемой электронной таблице</li> <li class="onlineDocumentFeatures">одновременный многопользовательский доступ к редактируемой электронной таблице</li>
<li>визуальная индикация ячеек, которые редактируются другими пользователями</li> <li class="onlineDocumentFeatures">визуальная индикация ячеек, которые редактируются другими пользователями</li>
<li>синхронизация изменений одним нажатием кнопки</li> <li class="onlineDocumentFeatures">синхронизация изменений одним нажатием кнопки</li>
<li>чат для обмена идеями по поводу отдельных частей электронной таблицы</li> <li class="onlineDocumentFeatures">чат для обмена идеями по поводу отдельных частей электронной таблицы</li>
<li>комментарии, содержащие описание задачи или проблемы, которую необходимо решить</li> <li>комментарии, содержащие описание задачи или проблемы, которую необходимо решить</li>
</ul> </ul>
<h3>Совместное редактирование</h3> <div class="onlineDocumentFeatures">
<p>В редакторе электронных таблиц можно выбрать один из двух доступных режимов совместного редактирования. <b>Быстрый</b> используется по умолчанию, в нем изменения, вносимые другими пользователями, отображаются в реальном времени. <b>Строгий</b> режим позволяет скрывать изменения, внесенные другими пользователями, до тех пор, пока вы не нажмете значок <b>Сохранить</b> <img alt="Значок Сохранить" src="../images/saveupdate.png" />, чтобы сохранить ваши изменения и принять изменения, внесенные другими. Режим можно выбрать в <a href="../HelpfulHints/AdvancedSettings.htm" onclick="onhyperlinkclick(this)">Дополнительных настройках</a>.</p> <h3>Совместное редактирование</h3>
<p>Когда электронную таблицу редактируют одновременно несколько пользователей в <b>Строгом</b> режиме, редактируемые ячейки, а также ярлычок листа, на котором находятся эти ячейки, помечаются пунктирными линиями разных цветов. При наведении курсора мыши на одну из редактируемых ячеек отображается имя того пользователя, который в данный момент ее редактирует. В <b>Быстром</b> режиме действия и имена участников совместного редактирования отображаются непосредственно в процессе редактирования.</p> <p>В редакторе электронных таблиц можно выбрать один из двух доступных режимов совместного редактирования. <b>Быстрый</b> используется по умолчанию, в нем изменения, вносимые другими пользователями, отображаются в реальном времени. <b>Строгий</b> режим позволяет скрывать изменения, внесенные другими пользователями, до тех пор, пока вы не нажмете значок <b>Сохранить</b> <img alt="Значок Сохранить" src="../images/saveupdate.png" />, чтобы сохранить ваши изменения и принять изменения, внесенные другими. Режим можно выбрать в <a href="../HelpfulHints/AdvancedSettings.htm" onclick="onhyperlinkclick(this)">Дополнительных настройках</a>.</p>
<p>Количество пользователей, которые в данный момент работают над текущей электронной таблицей, отображается в правом нижнем углу в строке состояния - <img alt="Значок Количество пользователей" src="../images/usersnumber.png" />. Чтобы увидеть, кто именно редактирует файл в настоящий момент, можно открыть панель <b>Чата</b> с полным списком пользователей.</p> <p>Когда электронную таблицу редактируют одновременно несколько пользователей в <b>Строгом</b> режиме, редактируемые ячейки, а также ярлычок листа, на котором находятся эти ячейки, помечаются пунктирными линиями разных цветов. При наведении курсора мыши на одну из редактируемых ячеек отображается имя того пользователя, который в данный момент ее редактирует. В <b>Быстром</b> режиме действия и имена участников совместного редактирования отображаются непосредственно в процессе редактирования.</p>
<p>Если файл не просматривают или не редактируют другие пользователи, значок в строке состояния будет выглядеть следующим образом: <img alt="Значок Управление правами доступа к документу" src="../images/access_rights.png" />, с его помощью можно непосредственно из документа управлять пользователями, имеющими доступ к файлу: приглашать новых пользователей, предоставляя им полный доступ или доступ только для чтения, или запрещать доступ к файлу для некоторых пользователей. Нажмите на этот значок для управления доступом к файлу; это можно сделать и в отсутствие других пользователей, которые просматривают или совместно редактируют документ в настоящий момент, и при наличии других пользователей, когда значок выглядит так: <img alt="Значок Количество пользователей" src="../images/usersnumber.png" />.</p> <p>Количество пользователей, которые в данный момент работают над текущей электронной таблицей, отображается в правом нижнем углу в строке состояния - <img alt="Значок Количество пользователей" src="../images/usersnumber.png" />. Чтобы увидеть, кто именно редактирует файл в настоящий момент, можно открыть панель <b>Чата</b> с полным списком пользователей.</p>
<p>Как только один из пользователей сохранит свои изменения, нажав на значок <img alt="Значок Сохранить" src="../images/savewhilecoediting.png" />, все остальные увидят в левом верхнем углу примечание, которое сообщает о наличии обновлений. Чтобы сохранить внесенные вами изменения и сделать их доступными для других пользователей, а также получить обновления, сохраненные другими пользователями, нажмите на значок <img alt="Значок Сохранить и получить обновления" src="../images/saveupdate.png" /> в левом верхнем углу верхней панели инструментов.</p> <p>Если файл не просматривают или не редактируют другие пользователи, значок в строке состояния будет выглядеть следующим образом: <img alt="Значок Управление правами доступа к документу" src="../images/access_rights.png" />, с его помощью можно непосредственно из документа управлять пользователями, имеющими доступ к файлу: приглашать новых пользователей, предоставляя им полный доступ или доступ только для чтения, или запрещать доступ к файлу для некоторых пользователей. Нажмите на этот значок для управления доступом к файлу; это можно сделать и в отсутствие других пользователей, которые просматривают или совместно редактируют документ в настоящий момент, и при наличии других пользователей, когда значок выглядит так: <img alt="Значок Количество пользователей" src="../images/usersnumber.png" />.</p>
<h3>Чат<a class="sup_link" href="../HelpfulHints/CollaborativeEditing.htm#footnote" onclick="onhyperlinkclick(this)"><sup>*</sup></a></h3> <p>Как только один из пользователей сохранит свои изменения, нажав на значок <img alt="Значок Сохранить" src="../images/savewhilecoediting.png" />, все остальные увидят в левом верхнем углу примечание, которое сообщает о наличии обновлений. Чтобы сохранить внесенные вами изменения и сделать их доступными для других пользователей, а также получить обновления, сохраненные другими пользователями, нажмите на значок <img alt="Значок Сохранить и получить обновления" src="../images/saveupdate.png" /> в левом верхнем углу верхней панели инструментов.</p>
<p>Этот инструмент можно использовать для оперативного согласования процесса совместного редактирования, например, для того, чтобы договориться с другими участниками, кто и что должен делать, какой абзац вы собираетесь сейчас отредактировать и т.д.</p> <h3>Чат<a class="sup_link" href="../HelpfulHints/CollaborativeEditing.htm#footnote" onclick="onhyperlinkclick(this)"><sup>*</sup></a></h3>
<p>Сообщения в чате хранятся только в течение одной сессии. Для обсуждения содержания документа лучше использовать комментарии, которые хранятся до тех пор, пока вы не решите их удалить.</p> <p>Этот инструмент можно использовать для оперативного согласования процесса совместного редактирования, например, для того, чтобы договориться с другими участниками, кто и что должен делать, какой абзац вы собираетесь сейчас отредактировать и т.д.</p>
<p>Чтобы войти в чат и оставить сообщение для других пользователей:</p> <p>Сообщения в чате хранятся только в течение одной сессии. Для обсуждения содержания документа лучше использовать комментарии, которые хранятся до тех пор, пока вы не решите их удалить.</p>
<ol> <p>Чтобы войти в чат и оставить сообщение для других пользователей:</p>
<li>нажмите на значок <img alt="Значок Чат" src="../images/chaticon.png" /> на левой боковой панели,</li> <ol>
<li>введите текст в соответствующем поле ниже,</li> <li>нажмите на значок <img alt="Значок Чат" src="../images/chaticon.png" /> на левой боковой панели,</li>
<li>нажмите кнопку <b>Отправить</b>.</li> <li>введите текст в соответствующем поле ниже,</li>
</ol> <li>нажмите кнопку <b>Отправить</b>.</li>
<p>Все сообщения, оставленные пользователями, будут отображаться на панели слева. Если есть новые сообщения, которые Вы еще не прочитали, значок чата будет выглядеть так - <img alt="Значок Чат" src="../images/chaticon_new.png" />.</p> </ol>
<p>Чтобы закрыть панель с сообщениями чата, нажмите на значок <img alt="Значок Чат" src="../images/chaticon.png" /> еще раз.</p> <p>Все сообщения, оставленные пользователями, будут отображаться на панели слева. Если есть новые сообщения, которые Вы еще не прочитали, значок чата будет выглядеть так - <img alt="Значок Чат" src="../images/chaticon_new.png" />.</p>
<h3>Комментарии<a class="sup_link" href="../HelpfulHints/CollaborativeEditing.htm#footnote" onclick="onhyperlinkclick(this)"><sup>*</sup></a></h3> <p>Чтобы закрыть панель с сообщениями чата, нажмите на значок <img alt="Значок Чат" src="../images/chaticon.png" /> еще раз.</p>
<p>Чтобы оставить комментарий:</p> </div>
<ol> <h3>Комментарии<a class="sup_link oOfficeFeatures" href="../HelpfulHints/CollaborativeEditing.htm#footnote" onclick="onhyperlinkclick(this)"><sup>*</sup></a></h3>
<li>выделите ячейку, в которой, по Вашему мнению, содержится какая-то ошибка или проблема,</li> <p>Чтобы оставить комментарий:</p>
<li>используйте значок <img alt="Значок Комментарии" src="../images/commentsicon.png" /> на левой боковой панели, чтобы открыть панель <b>Комментарии</b>, и нажмите на ссылку <b>Добавить комментарий к документу</b> или<br /> <ol>
щелкните правой кнопкой мыши внутри выделенной ячейки и выберите в меню команду <b>Добавить комментарий</b>, <li>выделите ячейку, в которой, по Вашему мнению, содержится какая-то ошибка или проблема,</li>
</li> <li>
<li>введите нужный текст,</li> используйте значок <img alt="Значок Комментарии" src="../images/commentsicon.png" /> на левой боковой панели, чтобы открыть панель <b>Комментарии</b>, и нажмите на ссылку <b>Добавить комментарий к документу</b> или<br />
<li>нажмите кнопку <b>Добавить</b>.</li> щелкните правой кнопкой мыши внутри выделенной ячейки и выберите в меню команду <b>Добавить комментарий</b>,
</ol> </li>
<p>Комментарий появится на панели слева. В правом верхнем углу ячейки, к которой Вы добавили комментарий, появится оранжевый треугольник. Если требуется отключить эту функцию, нажмите на значок <img alt="Значок Файл" src="../images/file.png" />, выберите опцию <b>Дополнительные параметры...</b> и снимите флажок <b>Включить опцию комментирования в реальном времени</b>. В этом случае прокомментированные ячейки будут помечаться, только если Вы нажмете на значок <img alt="Значок Комментарии" src="../images/commentsicon.png" />.</p> <li>введите нужный текст,</li>
<p>Для просмотра комментария щелкните по ячейке. Вы или любой другой пользователь можете ответить на добавленный комментарий, чтобы дать ответ на вопросы или отчитаться о проделанной работе. Для этого надо нажать на ссылку <b>Добавить ответ</b>.</p> <li>нажмите кнопку <b>Добавить</b>.</li>
<p>Вы можете управлять добавленными комментариями следующим образом:</p> </ol>
<ul> <p>Комментарий появится на панели слева. В правом верхнем углу ячейки, к которой Вы добавили комментарий, появится оранжевый треугольник. Если требуется отключить эту функцию, нажмите на значок <img alt="Значок Файл" src="../images/file.png" />, выберите опцию <b>Дополнительные параметры...</b> и снимите флажок <b>Включить опцию комментирования в реальном времени</b>. В этом случае прокомментированные ячейки будут помечаться, только если Вы нажмете на значок <img alt="Значок Комментарии" src="../images/commentsicon.png" />.</p>
<li>отредактировать их, нажав значок <img alt="Значок Редактировать" src="../images/editcommenticon.png" />,</li> <p>Для просмотра комментария щелкните по ячейке. Вы или любой другой пользователь можете ответить на добавленный комментарий, чтобы дать ответ на вопросы или отчитаться о проделанной работе. Для этого надо нажать на ссылку <b>Добавить ответ</b>.</p>
<li>удалить их, нажав значок <img alt="Значок Удалить" src="../images/deletecommenticon.png" />,</li> <p>Вы можете управлять добавленными комментариями следующим образом:</p>
<li>закрыть обсуждение, нажав на значок <img alt="Значок Решить" src="../images/resolveicon.png" />, если задача или проблема, обозначенная в комментарии, решена; после этого обсуждение, которое Вы открыли своим комментарием, приобретет статус решенного. Чтобы вновь его открыть, нажмите на значок <img alt="Значок Открыть снова" src="../images/resolvedicon.png" />.</li> <ul>
</ul> <li>отредактировать их, нажав значок <img alt="Значок Редактировать" src="../images/editcommenticon.png" />,</li>
<p>Новые комментарии, добавленные другими пользователями, станут видимыми только после того, как Вы нажмете на значок <img alt="Значок Сохранить" src="../images/saveupdate.png" /> в левом верхнем углу верхней панели инструментов.</p> <li>удалить их, нажав значок <img alt="Значок Удалить" src="../images/deletecommenticon.png" />,</li>
<p>Чтобы закрыть панель с комментариями, нажмите на значок <img alt="Значок Комментарии" src="../images/commentsicon.png" /> еще раз.</p> <li>закрыть обсуждение, нажав на значок <img alt="Значок Решить" src="../images/resolveicon.png" />, если задача или проблема, обозначенная в комментарии, решена; после этого обсуждение, которое Вы открыли своим комментарием, приобретет статус решенного. Чтобы вновь его открыть, нажмите на значок <img alt="Значок Открыть снова" src="../images/resolvedicon.png" />.</li>
<p><sup id="footnote">*</sup>доступно только для платных версий</p> </ul>
</div> <p>Новые комментарии, добавленные другими пользователями, станут видимыми только после того, как Вы нажмете на значок <img alt="Значок Сохранить" src="../images/saveupdate.png" /> в левом верхнем углу верхней панели инструментов.</p>
<p>Чтобы закрыть панель с комментариями, нажмите на значок <img alt="Значок Комментарии" src="../images/commentsicon.png" /> еще раз.</p>
<p class="oOfficeFeatures"><sup id="footnote">*</sup>доступно только для платных версий</p>
</div>
</body> </body>
</html> </html>

View file

@ -25,17 +25,17 @@
<td>Открыть панель <b>Поиск</b>, чтобы начать поиск ячейки, содержащей требуемые символы.</td> <td>Открыть панель <b>Поиск</b>, чтобы начать поиск ячейки, содержащей требуемые символы.</td>
</tr> </tr>
<tr> <tr>
<td>Открыть панель 'Комментарии'<a class="sup_link" href="../HelpfulHints/KeyboardShortcuts.htm#footnote" onclick="onhyperlinkclick(this)"><sup>*</sup></a></td> <td>Открыть панель 'Комментарии'<a class="sup_link oOfficeFeatures" href="../HelpfulHints/KeyboardShortcuts.htm#footnote" onclick="onhyperlinkclick(this)"><sup>*</sup></a></td>
<td>Ctrl+Shift+H</td> <td>Ctrl+Shift+H</td>
<td>Открыть панель <b>Комментарии</b>, чтобы добавить свой комментарий или ответить на комментарии других пользователей.</td> <td>Открыть панель <b>Комментарии</b>, чтобы добавить свой комментарий или ответить на комментарии других пользователей.</td>
</tr> </tr>
<tr> <tr>
<td>Открыть поле комментария<a class="sup_link" href="../HelpfulHints/KeyboardShortcuts.htm#footnote" onclick="onhyperlinkclick(this)"><sup>*</sup></a></td> <td>Открыть поле комментария<a class="sup_link oOfficeFeatures" href="../HelpfulHints/KeyboardShortcuts.htm#footnote" onclick="onhyperlinkclick(this)"><sup>*</sup></a></td>
<td>Alt+H</td> <td>Alt+H</td>
<td>Открыть поле ввода данных, в котором можно добавить текст комментария.</td> <td>Открыть поле ввода данных, в котором можно добавить текст комментария.</td>
</tr> </tr>
<tr> <tr class="onlineDocumentFeatures">
<td>Открыть панель 'Чат'<a class="sup_link" href="../HelpfulHints/KeyboardShortcuts.htm#footnote" onclick="onhyperlinkclick(this)"><sup>*</sup></a></td> <td>Открыть панель 'Чат'<a class="sup_link oOfficeFeatures" href="../HelpfulHints/KeyboardShortcuts.htm#footnote" onclick="onhyperlinkclick(this)"><sup>*</sup></a></td>
<td>Alt+Q</td> <td>Alt+Q</td>
<td>Открыть панель <b>Чат</b> и отправить сообщение.</td> <td>Открыть панель <b>Чат</b> и отправить сообщение.</td>
</tr> </tr>
@ -49,7 +49,7 @@
<td>Ctrl+P</td> <td>Ctrl+P</td>
<td>Распечатать электронную таблицу на одном из доступных принтеров или сохранить в файл.</td> <td>Распечатать электронную таблицу на одном из доступных принтеров или сохранить в файл.</td>
</tr> </tr>
<tr> <tr class="onlineDocumentFeatures">
<td>Загрузить как</td> <td>Загрузить как</td>
<td>Ctrl+Shift+S</td> <td>Ctrl+Shift+S</td>
<td>Открыть панель <b>Загрузить как</b>, чтобы сохранить просматриваемую в данный момент электронную таблицу на жестком диске компьютера в одном из поддерживаемых форматов: XLSX, ODS, CSV, HTML.</td> <td>Открыть панель <b>Загрузить как</b>, чтобы сохранить просматриваемую в данный момент электронную таблицу на жестком диске компьютера в одном из поддерживаемых форматов: XLSX, ODS, CSV, HTML.</td>
@ -85,7 +85,7 @@
<tr> <tr>
<td>Перейти в конец электронной таблицы</td> <td>Перейти в конец электронной таблицы</td>
<td>Ctrl+End</td> <td>Ctrl+End</td>
<td>Выделить правую нижнюю ячейку электронной таблицы.</td> <td>Выделить последнюю ячейку на листе, расположенную в самой нижней используемой строке крайнего правого используемого столбца. Если курсор находится в строке формул, курсор будет перемещен в конец текста.</td>
</tr> </tr>
<!--<tr> <!--<tr>
<td>Scroll down</td> <td>Scroll down</td>
@ -296,7 +296,7 @@
<td>Вставить функцию <b>SUM</b> в выделенную ячейку.</td> <td>Вставить функцию <b>SUM</b> в выделенную ячейку.</td>
</tr> </tr>
</table> </table>
<p><sup id="footnote">*</sup>доступно только для платных версий</p> <p class="oOfficeFeatures"><sup id="footnote">*</sup>доступно только для платных версий</p>
</div> </div>
</body> </body>
</html> </html>

View file

@ -9,20 +9,22 @@
</head> </head>
<body> <body>
<div class="mainpart"> <div class="mainpart">
<h1>Сохранение / печать / загрузка таблицы</h1> <h1>Сохранение / печать<span class="onlineDocumentFeatures"> / загрузка</span> таблицы</h1>
<p>По умолчанию онлайн-редактор электронных таблиц автоматически сохраняет файл каждые 2 секунды, когда вы работаете над ним, чтобы не допустить потери данных в случае непредвиденного закрытия программы. Если вы совместно редактируете файл в <b>Быстром</b> режиме, таймер запрашивает наличие изменений 25 раз в секунду и сохраняет их, если они были внесены. При совместном редактировании файла в <b>Строгом</b> режиме изменения автоматически сохраняются каждые 10 минут. При необходимости можно легко выбрать предпочтительный режим совместного редактирования или отключить функцию автоматического сохранения на странице <a href="../HelpfulHints/AdvancedSettings.htm" onclick="onhyperlinkclick(this)">Дополнительные параметры</a>.</p> <p>По умолчанию онлайн-редактор электронных таблиц автоматически сохраняет файл каждые 2 секунды, когда вы работаете над ним, чтобы не допустить потери данных в случае непредвиденного закрытия программы. <span class="onlineDocumentFeatures">Если вы совместно редактируете файл в <b>Быстром</b> режиме, таймер запрашивает наличие изменений 25 раз в секунду и сохраняет их, если они были внесены. При совместном редактировании файла в <b>Строгом</b> режиме изменения автоматически сохраняются каждые 10 минут. При необходимости можно легко выбрать предпочтительный режим совместного редактирования или отключить функцию автоматического сохранения на странице <a href="../HelpfulHints/AdvancedSettings.htm" onclick="onhyperlinkclick(this)">Дополнительные параметры</a>.</span></p>
<p>Чтобы сохранить текущую электронную таблицу вручную:</p> <p>Чтобы сохранить текущую электронную таблицу вручную:</p>
<ul> <ul>
<li>щелкните по значку <b>Сохранить</b> <img alt="Значок Сохранить" src="../images/save.png" /> на верхней панели инструментов, или</li> <li>щелкните по значку <b>Сохранить</b> <img alt="Значок Сохранить" src="../images/save.png" /> на верхней панели инструментов, или</li>
<li>используйте сочетание клавиш <b>Ctrl+S</b>, или</li> <li>используйте сочетание клавиш <b>Ctrl+S</b>, или</li>
<li>щелкните по значку <b>Файл</b> <img alt="Значок Файл" src="../images/file.png" /> на левой боковой панели и выберите опцию <b>Сохранить</b>.</li> <li>щелкните по значку <b>Файл</b> <img alt="Значок Файл" src="../images/file.png" /> на левой боковой панели и выберите опцию <b>Сохранить</b>.</li>
</ul> </ul>
<div class="onlineDocumentFeatures">
<p>Чтобы скачать готовую электронную таблицу и сохранить ее на жестком диске компьютера,</p> <p>Чтобы скачать готовую электронную таблицу и сохранить ее на жестком диске компьютера,</p>
<ol> <ol>
<li>щелкните по значку <b>Файл</b> <img alt="Значок Файл" src="../images/file.png" /> на левой боковой панели,</li> <li>щелкните по значку <b>Файл</b> <img alt="Значок Файл" src="../images/file.png" /> на левой боковой панели,</li>
<li>выберите опцию <b>Скачать как...</b>,</li> <li>выберите опцию <b>Скачать как...</b>,</li>
<li>выберите один из доступных форматов в зависимости от того, что вам нужно: XLSX, PDF, ODS, CSV.</li> <li>выберите один из доступных форматов в зависимости от того, что вам нужно: XLSX, PDF, ODS, CSV.</li>
</ol> </ol>
</div>
<p>Чтобы распечатать текущую электронную таблицу:</p> <p>Чтобы распечатать текущую электронную таблицу:</p>
<ul> <ul>
<li>щелкните по значку <b>Печать</b> <img alt="Значок Печать" src="../images/print.png" /> на верхней панели инструментов, или</li> <li>щелкните по значку <b>Печать</b> <img alt="Значок Печать" src="../images/print.png" /> на верхней панели инструментов, или</li>
@ -42,7 +44,7 @@
<li><b>Поля</b> - укажите расстояние между данными рабочего листа и краями печатной страницы, изменив размеры по умолчанию в полях <b>Сверху</b>, <b>Снизу</b>, <b>Слева</b> и <b>Справа</b>,</li> <li><b>Поля</b> - укажите расстояние между данными рабочего листа и краями печатной страницы, изменив размеры по умолчанию в полях <b>Сверху</b>, <b>Снизу</b>, <b>Слева</b> и <b>Справа</b>,</li>
<li><b>Печать</b> - укажите элементы рабочего листа, которые необходимо выводить на печать, установив соответствующие флажки: <b>Печать сетки</b> и <b>Печать заголовков строк и столбцов</b>.</li> <li><b>Печать</b> - укажите элементы рабочего листа, которые необходимо выводить на печать, установив соответствующие флажки: <b>Печать сетки</b> и <b>Печать заголовков строк и столбцов</b>.</li>
</ul> </ul>
<p>Когда параметры будут заданы, нажмите кнопку <b>Сохранение и печать</b>, чтобы применить изменения и закрыть это окно. После этого на основе данной таблицы будет сгенерирован файл PDF. Его можно открыть и распечатать или сохранить на жестком диске компьютера или съемном носителе, чтобы распечатать позже.</p> <p class="onlineDocumentFeatures">Когда параметры будут заданы, нажмите кнопку <b>Сохранение и печать</b>, чтобы применить изменения и закрыть это окно. После этого на основе данной таблицы будет сгенерирован файл PDF. Его можно открыть и распечатать или сохранить на жестком диске компьютера или съемном носителе, чтобы распечатать позже.</p>
</div> </div>
</body> </body>

View file

@ -12,10 +12,12 @@
<p>Чтобы получить доступ к подробным сведениям о редактируемой электронной таблице, щелкните по значку <b>Файл</b> <img alt="Значок Файл" src="../images/file.png" /> на левой боковой панели и выберите опцию <b>Сведения о таблице</b>.</p> <p>Чтобы получить доступ к подробным сведениям о редактируемой электронной таблице, щелкните по значку <b>Файл</b> <img alt="Значок Файл" src="../images/file.png" /> на левой боковой панели и выберите опцию <b>Сведения о таблице</b>.</p>
<h3>Общие сведения</h3> <h3>Общие сведения</h3>
<p>Сведения о файле включают название электронной таблицы, автора, размещение и дату создания.</p> <p>Сведения о файле включают название электронной таблицы, автора, размещение и дату создания.</p>
<div class="onlineDocumentFeatures">
<h3>Сведения о правах доступа</h3> <h3>Сведения о правах доступа</h3>
<p class="note"><b>Примечание</b>: эта опция недоступна для пользователей с правами доступа <b>Только чтение</b>.</p> <p class="note"><b>Примечание</b>: эта опция недоступна для пользователей с правами доступа <b>Только чтение</b>.</p>
<p>Чтобы узнать, у кого есть права на просмотр и редактирование этой электронной таблицы, выберите опцию <b>Права доступа...</b> на левой боковой панели.</p> <p>Чтобы узнать, у кого есть права на просмотр и редактирование этой электронной таблицы, выберите опцию <b>Права доступа...</b> на левой боковой панели.</p>
<p>Вы можете также изменить выбранные в настоящий момент права доступа, нажав на кнопку <b>Изменить права доступа</b> в разделе <b>Люди, имеющие права</b>.</p> <p>Вы можете также изменить выбранные в настоящий момент права доступа, нажав на кнопку <b>Изменить права доступа</b> в разделе <b>Люди, имеющие права</b>.</p>
</div>
<p>Чтобы закрыть панель <b>Файл</b> и вернуться к электронной таблице, выберите опцию <b>Вернуться к таблице</b>.</p> <p>Чтобы закрыть панель <b>Файл</b> и вернуться к электронной таблице, выберите опцию <b>Вернуться к таблице</b>.</p>
</div> </div>
</body> </body>

View file

@ -1,35 +1,3 @@
/*
*
* (c) Copyright Ascensio System Limited 2010-2016
*
* This program is a free software product. You can redistribute it and/or
* modify it under the terms of the GNU Affero General Public License (AGPL)
* version 3 as published by the Free Software Foundation. In accordance with
* Section 7(a) of the GNU AGPL its Section 15 shall be amended to the effect
* that Ascensio System SIA expressly excludes the warranty of non-infringement
* of any third-party rights.
*
* This program is distributed WITHOUT ANY WARRANTY; without even the implied
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For
* details, see the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html
*
* You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia,
* EU, LV-1021.
*
* The interactive user interfaces in modified source and object code versions
* of the Program must display Appropriate Legal Notices, as required under
* Section 5 of the GNU AGPL version 3.
*
* Pursuant to Section 7(b) of the License you must retain the original Product
* logo when distributing the program. Pursuant to Section 7(e) we decline to
* grant you any rights under trademark law for use of our trademarks.
*
* All the Product's GUI elements, including illustrations and icon sets, as
* well as technical writing content are licensed under the terms of the
* Creative Commons Attribution-ShareAlike 4.0 International. See the License
* terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode
*
*/
function onhyperlinkclick(element) { function onhyperlinkclick(element) {
function _postMessage(msg) { function _postMessage(msg) {
if (window.parent && window.JSON) { if (window.parent && window.JSON) {

Binary file not shown.

Before

Width:  |  Height:  |  Size: 15 KiB

After

Width:  |  Height:  |  Size: 49 KiB

View file

@ -66,7 +66,7 @@
background-position: 0px -1304px; background-position: 0px -1304px;
} }
&:hover { &:active:not(.disabled) {
span.btn-icon { span.btn-icon {
background-position: -20px -1304px; background-position: -20px -1304px;
} }