Merge branch 'feature/new-toolbar' into feature/new-toolbar-pivot-table
This commit is contained in:
commit
0ca3e9fc41
|
@ -262,11 +262,13 @@ define([
|
|||
var _left_bound_ = Math.round($boxTabs.offset().left),
|
||||
_right_bound_ = Math.round(_left_bound_ + $boxTabs.width());
|
||||
|
||||
var tab = this.$tabs.first().get(0);
|
||||
var tab = this.$tabs.filter(':first:visible').get(0);
|
||||
if ( !tab ) return false;
|
||||
|
||||
var rect = tab.getBoundingClientRect();
|
||||
|
||||
if ( !(Math.round(rect.left) < _left_bound_) ) {
|
||||
tab = this.$tabs.last().get(0);
|
||||
tab = this.$tabs.filter(':last:visible').get(0);
|
||||
rect = tab.getBoundingClientRect();
|
||||
|
||||
if (!(Math.round(rect.right) > _right_bound_))
|
||||
|
|
|
@ -73,6 +73,7 @@ define([
|
|||
'<label id="rib-doc-name" class="status-label"></label>' +
|
||||
'<a id="rib-save-status" class="status-label locked"><%= textSaveEnd %></a>' +
|
||||
'<div class="hedset">' +
|
||||
'<div class="btn-slot" id="slot-hbtn-edit"></div>' +
|
||||
'<div class="btn-slot" id="slot-hbtn-print"></div>' +
|
||||
'<div class="btn-slot" id="slot-hbtn-download"></div>' +
|
||||
'</div>' +
|
||||
|
@ -255,18 +256,25 @@ define([
|
|||
|
||||
if ( !mode.isEdit ) {
|
||||
if ( me.btnDownload ) {
|
||||
me.btnDownload.updateHint('Download document');
|
||||
me.btnDownload.updateHint(me.tipDowload);
|
||||
me.btnDownload.on('click', function (e) {
|
||||
me.fireEvent('downloadas', ['original']);
|
||||
});
|
||||
}
|
||||
|
||||
if ( me.btnPrint ) {
|
||||
me.btnDownload.updateHint('Print');
|
||||
me.btnPrint.updateHint(me.tipPrint);
|
||||
me.btnPrint.on('click', function (e) {
|
||||
me.fireEvent('print', me);
|
||||
});
|
||||
}
|
||||
|
||||
if ( me.btnEdit ) {
|
||||
me.btnEdit.updateHint(me.tipGoEdit);
|
||||
me.btnEdit.on('click', function (e) {
|
||||
me.fireEvent('go:editor', me);
|
||||
});
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -358,7 +366,6 @@ define([
|
|||
if ( !config.isEdit ) {
|
||||
if ( (config.canDownload || config.canDownloadOrigin) && !config.isOffline ) {
|
||||
this.btnDownload = new Common.UI.Button({
|
||||
id: 'btn-download',
|
||||
cls: 'btn-header',
|
||||
iconCls: 'svgicon svg-btn-download'
|
||||
});
|
||||
|
@ -368,13 +375,19 @@ define([
|
|||
|
||||
if ( config.canPrint ) {
|
||||
this.btnPrint = new Common.UI.Button({
|
||||
id: 'btn-goback',
|
||||
cls: 'btn-header',
|
||||
iconCls: 'svgicon svg-btn-print'
|
||||
});
|
||||
|
||||
this.btnPrint.render($html.find('#slot-hbtn-print'));
|
||||
}
|
||||
|
||||
if ( config.canEdit && config.canRequestEditRights ) {
|
||||
(this.btnEdit = new Common.UI.Button({
|
||||
cls: 'btn-header',
|
||||
iconCls: 'svgicon svg-btn-edit'
|
||||
})).render($html.find('#slot-hbtn-edit'));
|
||||
}
|
||||
}
|
||||
|
||||
if ( this.documentCaption ) {
|
||||
|
@ -508,7 +521,10 @@ define([
|
|||
txtAccessRights: 'Change access rights',
|
||||
tipAccessRights: 'Manage document access rights',
|
||||
labelCoUsersDescr: 'Document is currently being edited by several users.',
|
||||
tipViewUsers: 'View users and manage document access rights'
|
||||
tipViewUsers: 'View users and manage document access rights',
|
||||
tipDownload: 'Download file',
|
||||
tipPrint: 'Print file',
|
||||
tipGoEdit: 'Edit current file'
|
||||
}
|
||||
}(), Common.Views.Header || {}))
|
||||
});
|
||||
|
|
Binary file not shown.
Before Width: | Height: | Size: 8.3 KiB After Width: | Height: | Size: 8.3 KiB |
Binary file not shown.
Before Width: | Height: | Size: 15 KiB After Width: | Height: | Size: 18 KiB |
|
@ -132,6 +132,7 @@
|
|||
|
||||
.background-ximage(@image, @image2x, @w: auto, @h: auto) {
|
||||
background-image: data-uri(%("%s",@image));
|
||||
background-repeat: no-repeat;
|
||||
|
||||
@media
|
||||
only screen and (-webkit-min-device-pixel-ratio: 2),
|
||||
|
|
|
@ -113,6 +113,14 @@
|
|||
.inner-box-caption {
|
||||
line-height: 18px;
|
||||
padding: 0 4px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
|
||||
.caption {
|
||||
max-width: 107px;
|
||||
text-overflow: ellipsis;
|
||||
overflow: hidden;
|
||||
}
|
||||
}
|
||||
|
||||
.icon {
|
||||
|
@ -120,6 +128,12 @@
|
|||
height: @icon-size;
|
||||
min-width: 0;
|
||||
}
|
||||
|
||||
&.dropdown-toggle {
|
||||
.caption {
|
||||
max-width: 100px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.inner-box-icon {
|
||||
|
@ -202,7 +216,7 @@
|
|||
|
||||
&.x-huge, .btn-group.x-huge > & {
|
||||
:not(svg).icon {
|
||||
.background-ximage('@{common-image-path}/controls/toolbarbig.png', '@{common-image-path}/controls/toolbarbig@2x.png', 96px);
|
||||
.background-ximage('@{common-image-path}/controls/toolbarbig.png', '@{common-image-path}/controls/toolbarbig@2x.png', 78px);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -327,7 +341,7 @@
|
|||
|
||||
&:not(.split) {
|
||||
.btn-toolbar {
|
||||
&.dropdown-toggle {
|
||||
&.dropdown-toggle:not(.x-huge) {
|
||||
width: 100%;
|
||||
min-width: 28px;
|
||||
}
|
||||
|
|
|
@ -119,7 +119,7 @@
|
|||
width: 86px;
|
||||
height: 20px;
|
||||
display: block;
|
||||
.background-ximage('@{common-image-path}/header/header-logo.png', '@{common-image-path}/header/header-logo@2x.png', 100px);
|
||||
.background-ximage('@{common-image-path}/header/header-logo.png', '@{common-image-path}/header/header-logo@2x.png', 86px);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -127,16 +127,17 @@
|
|||
text-align: center;
|
||||
z-index: 1;
|
||||
cursor: pointer;
|
||||
color: #fff;
|
||||
|
||||
&:hover {
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
&.left{
|
||||
box-shadow: 5px 0 20px 5px rgba(255, 255, 255, .8)
|
||||
box-shadow: 5px 0 20px 5px @tabs-bg-color
|
||||
}
|
||||
&.right{
|
||||
box-shadow: -5px 0 20px 5px rgba(255, 255, 255, .8)
|
||||
box-shadow: -5px 0 20px 5px @tabs-bg-color
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -223,10 +224,6 @@
|
|||
height: 22px;
|
||||
}
|
||||
|
||||
&.adding {
|
||||
margin-right: 5px;
|
||||
}
|
||||
|
||||
.checkbox-indeterminate {
|
||||
margin-top: 3px;
|
||||
}
|
||||
|
@ -286,7 +283,7 @@
|
|||
.button-normal-icon(review-prev, 17, @toolbar-big-icon-size);
|
||||
.button-normal-icon(btn-dropcap, 18, @toolbar-big-icon-size);
|
||||
.button-normal-icon(~'x-huge .btn-pagebreak', 19, @toolbar-big-icon-size);
|
||||
|
||||
.button-normal-icon(btn-editheader, 20, @toolbar-big-icon-size);
|
||||
.button-normal-icon(btn-pageorient, 21, @toolbar-big-icon-size);
|
||||
.button-normal-icon(btn-pagemargins, 22, @toolbar-big-icon-size);
|
||||
.button-normal-icon(btn-pagesize, 23, @toolbar-big-icon-size);
|
||||
|
|
|
@ -116,8 +116,34 @@ define([
|
|||
'Common.Views.Header': {
|
||||
'print': this.onPrint.bind(this),
|
||||
'downloadas': function (opts) {
|
||||
this.api.asc_DownloadOrigin();
|
||||
}.bind(this)
|
||||
var _main = this.getApplication().getController('Main');
|
||||
var _file_type = _main.document.fileType,
|
||||
_format;
|
||||
if ( !!_file_type ) {
|
||||
if ( /^pdf|xps|djvu/i.test(_file_type) ) {
|
||||
this.api.asc_DownloadOrigin();
|
||||
return;
|
||||
} else {
|
||||
_format = Asc.c_oAscFileType[ _file_type.toUpperCase() ];
|
||||
}
|
||||
}
|
||||
|
||||
var _supported = [
|
||||
Asc.c_oAscFileType.TXT,
|
||||
Asc.c_oAscFileType.RTF,
|
||||
Asc.c_oAscFileType.ODT,
|
||||
Asc.c_oAscFileType.DOCX,
|
||||
Asc.c_oAscFileType.HTML
|
||||
];
|
||||
|
||||
if ( !_format || _supported.indexOf(_format) < 0 )
|
||||
_format = Asc.c_oAscFileType.PDF;
|
||||
|
||||
_main.api.asc_DownloadAs(_format);
|
||||
},
|
||||
'go:editor': function() {
|
||||
Common.Gateway.requestEditRights();
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
|
|
|
@ -33,11 +33,11 @@
|
|||
<div class="separator long"></div>
|
||||
<div class="group">
|
||||
<div class="elset">
|
||||
<span class="btn-slot adding" id="slot-btn-copy"></span>
|
||||
<span class="btn-slot split" id="slot-btn-copy"></span>
|
||||
<span class="btn-slot" id="slot-btn-paste"></span>
|
||||
</div>
|
||||
<div class="elset">
|
||||
<span class="btn-slot adding" id="slot-btn-undo"></span>
|
||||
<span class="btn-slot split" id="slot-btn-undo"></span>
|
||||
<span class="btn-slot" id="slot-btn-redo"></span>
|
||||
</div>
|
||||
</div>
|
||||
|
@ -85,11 +85,11 @@
|
|||
<div class="separator long" style="margin-left: 5px;"></div>
|
||||
<div class="group">
|
||||
<div class="elset">
|
||||
<span class="btn-slot adding" id="slot-btn-clearstyle"></span>
|
||||
<span class="btn-slot split" id="slot-btn-clearstyle"></span>
|
||||
<span class="btn-slot split" id="slot-btn-colorschemas"></span>
|
||||
</div>
|
||||
<div class="elset">
|
||||
<span class="btn-slot adding" id="slot-btn-copystyle"></span>
|
||||
<span class="btn-slot split" id="slot-btn-copystyle"></span>
|
||||
<span class="btn-slot" id="slot-btn-mailrecepients"></span>
|
||||
</div>
|
||||
</div>
|
||||
|
@ -106,12 +106,8 @@
|
|||
</section>
|
||||
<section class="panel" data-tab="ins">
|
||||
<div class="group">
|
||||
<div class="elset">
|
||||
<span class="btn-slot text btn-pagebreak"></span>
|
||||
</div>
|
||||
<div class="elset">
|
||||
<span class="btn-slot text" id="slot-btn-editheader"></span>
|
||||
</div>
|
||||
<span class="btn-slot text x-huge btn-pagebreak"></span>
|
||||
<span class="btn-slot text x-huge" id="slot-btn-editheader"></span>
|
||||
</div>
|
||||
<div class="separator long"></div>
|
||||
<div class="group">
|
||||
|
|
|
@ -52,7 +52,7 @@ define([ 'text!documenteditor/main/app/template/ParagraphSettingsAdvanced.tem
|
|||
|
||||
DE.Views.ParagraphSettingsAdvanced = Common.Views.AdvancedSettingsWindow.extend(_.extend({
|
||||
options: {
|
||||
contentWidth: 325,
|
||||
contentWidth: 335,
|
||||
height: 394,
|
||||
toggleGroup: 'paragraph-adv-settings-group',
|
||||
storageName: 'de-para-settings-adv-category'
|
||||
|
|
|
@ -528,7 +528,7 @@ define([
|
|||
|
||||
this.btnEditHeader = new Common.UI.Button({
|
||||
id: 'id-toolbar-btn-editheader',
|
||||
cls: 'btn-toolbar',
|
||||
cls: 'btn-toolbar x-huge icon-top',
|
||||
iconCls: 'btn-editheader',
|
||||
caption: me.capBtnInsHeader,
|
||||
menu: true
|
||||
|
|
|
@ -81,13 +81,13 @@
|
|||
"Common.UI.SearchDialog.textTitle": "Najít a nahradit",
|
||||
"Common.UI.SearchDialog.textTitle2": "Najít",
|
||||
"Common.UI.SearchDialog.textWholeWords": "Pouze celá slova",
|
||||
"Common.UI.SearchDialog.txtBtnHideReplace": "Hide Replace",
|
||||
"Common.UI.SearchDialog.txtBtnHideReplace": "Skrýt náhradu",
|
||||
"Common.UI.SearchDialog.txtBtnReplace": "Nahradit",
|
||||
"Common.UI.SearchDialog.txtBtnReplaceAll": "Nahradit vše",
|
||||
"Common.UI.SynchronizeTip.textDontShow": "Nezobrazovat znovu tuto zprávu",
|
||||
"Common.UI.SynchronizeTip.textSynchronize": "Dokument byl pozměněn jiným uživatelem.<br/>Kliněte prosím pro uložení vašich změn a načtení úprav.",
|
||||
"Common.UI.ThemeColorPalette.textStandartColors": "Standard Colors",
|
||||
"Common.UI.ThemeColorPalette.textThemeColors": "Theme Colors",
|
||||
"Common.UI.ThemeColorPalette.textStandartColors": "Standardní barvy",
|
||||
"Common.UI.ThemeColorPalette.textThemeColors": "Barvy tématu",
|
||||
"Common.UI.Window.cancelButtonText": "Zrušit",
|
||||
"Common.UI.Window.closeButtonText": "Zavřít",
|
||||
"Common.UI.Window.noButtonText": "Ne",
|
||||
|
@ -141,13 +141,13 @@
|
|||
"Common.Views.ExternalMergeEditor.textTitle": "Příjemci korespondence",
|
||||
"Common.Views.Header.openNewTabText": "Otevřít v nové záložce",
|
||||
"Common.Views.Header.textBack": "Jít do dokumentů",
|
||||
"Common.Views.Header.txtRename": "Rename",
|
||||
"Common.Views.History.textCloseHistory": "Close History",
|
||||
"Common.Views.History.textHide": "Collapse",
|
||||
"Common.Views.History.textHideAll": "Hide detailed changes",
|
||||
"Common.Views.History.textRestore": "Restore",
|
||||
"Common.Views.History.textShow": "Expand",
|
||||
"Common.Views.History.textShowAll": "Show detailed changes",
|
||||
"Common.Views.Header.txtRename": "Přejmenovat",
|
||||
"Common.Views.History.textCloseHistory": "Zavřít historii",
|
||||
"Common.Views.History.textHide": "Kolaps",
|
||||
"Common.Views.History.textHideAll": "Skrýt podrobné změny",
|
||||
"Common.Views.History.textRestore": "Obnovit",
|
||||
"Common.Views.History.textShow": "Rozšířit",
|
||||
"Common.Views.History.textShowAll": "Zobrazit detailní změny",
|
||||
"Common.Views.ImageFromUrlDialog.cancelButtonText": "Zrušit",
|
||||
"Common.Views.ImageFromUrlDialog.okButtonText": "OK",
|
||||
"Common.Views.ImageFromUrlDialog.textUrl": "Vložit URL obrázku:",
|
||||
|
@ -161,23 +161,23 @@
|
|||
"Common.Views.InsertTableDialog.txtMinText": "Minimální hodnota tohoto pole je {0}.",
|
||||
"Common.Views.InsertTableDialog.txtRows": "Počet řádků",
|
||||
"Common.Views.InsertTableDialog.txtTitle": "Velikost tabulky",
|
||||
"Common.Views.LanguageDialog.btnCancel": "Cancel",
|
||||
"Common.Views.LanguageDialog.btnOk": "Ok",
|
||||
"Common.Views.LanguageDialog.labelSelect": "Select document language",
|
||||
"Common.Views.LanguageDialog.btnCancel": "Zrušit",
|
||||
"Common.Views.LanguageDialog.btnOk": "OK",
|
||||
"Common.Views.LanguageDialog.labelSelect": "Vybrat jazyk dokumentu",
|
||||
"Common.Views.OpenDialog.cancelButtonText": "Zrušit",
|
||||
"Common.Views.OpenDialog.okButtonText": "OK",
|
||||
"Common.Views.OpenDialog.txtEncoding": "Kódování",
|
||||
"Common.Views.OpenDialog.txtPassword": "Password",
|
||||
"Common.Views.OpenDialog.txtPassword": "Heslo",
|
||||
"Common.Views.OpenDialog.txtTitle": "Vyberte %1 možností",
|
||||
"Common.Views.OpenDialog.txtTitleProtected": "Protected File",
|
||||
"Common.Views.PluginDlg.textLoading": "Loading",
|
||||
"Common.Views.Plugins.strPlugins": "Plugins",
|
||||
"Common.Views.Plugins.textLoading": "Loading",
|
||||
"Common.Views.Plugins.textStart": "Start",
|
||||
"Common.Views.RenameDialog.cancelButtonText": "Cancel",
|
||||
"Common.Views.RenameDialog.okButtonText": "Ok",
|
||||
"Common.Views.RenameDialog.textName": "File name",
|
||||
"Common.Views.RenameDialog.txtInvalidName": "The file name cannot contain any of the following characters: ",
|
||||
"Common.Views.OpenDialog.txtTitleProtected": "Chráněný soubor",
|
||||
"Common.Views.PluginDlg.textLoading": "Nahrávám ...",
|
||||
"Common.Views.Plugins.strPlugins": "Pluginy",
|
||||
"Common.Views.Plugins.textLoading": "Nahrávám ...",
|
||||
"Common.Views.Plugins.textStart": "Začátek",
|
||||
"Common.Views.RenameDialog.cancelButtonText": "Zrušit",
|
||||
"Common.Views.RenameDialog.okButtonText": "OK",
|
||||
"Common.Views.RenameDialog.textName": "Název souboru",
|
||||
"Common.Views.RenameDialog.txtInvalidName": "Název souboru nesmí obsahovat žádný z následujících znaků:",
|
||||
"Common.Views.ReviewChanges.txtAccept": "Accept",
|
||||
"Common.Views.ReviewChanges.txtAcceptAll": "Accept All Changes",
|
||||
"Common.Views.ReviewChanges.txtAcceptCurrent": "Accept Current Changes",
|
||||
|
@ -207,8 +207,8 @@
|
|||
"DE.Controllers.Main.downloadMergeTitle": "Stahuji",
|
||||
"DE.Controllers.Main.downloadTextText": "Stahování dokumentu...",
|
||||
"DE.Controllers.Main.downloadTitleText": "Stahování dokumentu",
|
||||
"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.errorBadImageUrl": "Image URL is incorrect",
|
||||
"DE.Controllers.Main.errorAccessDeny": "Pokoušíte se provést akci, na kterou nemáte oprávnění.<br>Prosím, kontaktujte administrátora vašeho Dokumentového serveru.",
|
||||
"DE.Controllers.Main.errorBadImageUrl": "Adresa URL obrázku je nesprávná",
|
||||
"DE.Controllers.Main.errorCoAuthoringDisconnect": "Spojení se serverem ztraceno. Dokument nyní nelze upravovat.",
|
||||
"DE.Controllers.Main.errorConnectToServer": "The document could not be saved. Please check connection settings or contact your administrator.<br>When you click the 'OK' button, you will be prompted to download the document.<br><br>Find more information about connecting Document Server <a href=\"https://api.onlyoffice.com/editors/callback\" target=\"_blank\">here</a>",
|
||||
"DE.Controllers.Main.errorDatabaseConnection": "Externí chyba.<br>Chyba spojení s databází. Prosím kontaktujte podporu, pokud chyba přetrvává.",
|
||||
|
@ -220,17 +220,17 @@
|
|||
"DE.Controllers.Main.errorMailMergeLoadFile": "Načítání selhalo",
|
||||
"DE.Controllers.Main.errorMailMergeSaveFile": "Spojování selhalo.",
|
||||
"DE.Controllers.Main.errorProcessSaveResult": "Ukládání selhalo.",
|
||||
"DE.Controllers.Main.errorServerVersion": "The editor version has been updated. The page will be reloaded to apply the changes.",
|
||||
"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.errorServerVersion": "Verze editoru byla aktualizována. Stránka bude znovu načtena, aby se provedly změny.",
|
||||
"DE.Controllers.Main.errorSessionAbsolute": "Úprava editace dokumentu vypršela. Prosím, znovu načtěte stránku.",
|
||||
"DE.Controllers.Main.errorSessionIdle": "Dokument nebyl po dlouhou dobu upravován. Prosím, znovu načtěte stránku.",
|
||||
"DE.Controllers.Main.errorSessionToken": "Připojení k serveru bylo přerušeno. Prosím, znovu načtěte stránku.",
|
||||
"DE.Controllers.Main.errorStockChart": "Nespravné pořadí řádků. Chcete-li vytvořit burzovní graf umístěte data na list v následujícím pořadí:<br> otevírací cena, maximální cena, minimální cena, uzavírací cena.",
|
||||
"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.errorToken": "Dokument zabezpečení tokenu má chybný formát.<br> Prosím, kontaktujte administrátora vašeho Dokumentového serveru.",
|
||||
"DE.Controllers.Main.errorTokenExpire": "Dokument bezpečnostního tokenu vypršel.<br>Prosím, kontaktujte administrátora vašeho dokumentového serveru.",
|
||||
"DE.Controllers.Main.errorUpdateVersion": "Verze souboru byla změněna. Stránka bude znovu načtena.",
|
||||
"DE.Controllers.Main.errorUserDrop": "Tento soubor není nyní přístupný.",
|
||||
"DE.Controllers.Main.errorUsersExceed": "Počet uživatelů povolených cenovým plánem byl překročen",
|
||||
"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": "Spojení je ztraceno. Stále můžete zobrazit dokument,<br>ale nebudete moct stahovat ani tisknout, dokud nebude obnoveno připojení.",
|
||||
"DE.Controllers.Main.leavePageText": "Máte neuložené změny v tomto dokumentu. Klikněte na \"Zůstat na této stránce\", poté na \"Uložit\" pro uložení. Klikněte na \"Opustit tuto stránku\" pro zahození všech neuložených změn.",
|
||||
"DE.Controllers.Main.loadFontsTextText": "Načítání dat...",
|
||||
"DE.Controllers.Main.loadFontsTitleText": "Načítání dat",
|
||||
|
@ -245,7 +245,7 @@
|
|||
"DE.Controllers.Main.mailMergeLoadFileText": "Načítání datového zdroje...",
|
||||
"DE.Controllers.Main.mailMergeLoadFileTitle": "Načítání datového zdroje",
|
||||
"DE.Controllers.Main.notcriticalErrorTitle": "Varování",
|
||||
"DE.Controllers.Main.openErrorText": "An error has occurred while opening the file",
|
||||
"DE.Controllers.Main.openErrorText": "Při otevírání souboru došlo k chybě",
|
||||
"DE.Controllers.Main.openTextText": "Otevírání dokumentu...",
|
||||
"DE.Controllers.Main.openTitleText": "Otevírání dokumentu",
|
||||
"DE.Controllers.Main.printTextText": "Tisknutí dokumentu...",
|
||||
|
@ -253,7 +253,7 @@
|
|||
"DE.Controllers.Main.reloadButtonText": "Znovu načíst stránku",
|
||||
"DE.Controllers.Main.requestEditFailedMessageText": "Někdo právě upravuje tento dokument. Prosím zkuste to znovu později.",
|
||||
"DE.Controllers.Main.requestEditFailedTitleText": "Přístup zamítnut",
|
||||
"DE.Controllers.Main.saveErrorText": "An error has occurred while saving the file",
|
||||
"DE.Controllers.Main.saveErrorText": "Během ukládání souboru došlo k chybě",
|
||||
"DE.Controllers.Main.savePreparingText": "Příprava na ukládání",
|
||||
"DE.Controllers.Main.savePreparingTitle": "Příprava ukládání. Prosím čekejte...",
|
||||
"DE.Controllers.Main.saveTextText": "Ukládání dokumentu...",
|
||||
|
@ -264,17 +264,17 @@
|
|||
"DE.Controllers.Main.splitMaxColsErrorText": "Počet sloupců musí být menší než %1.",
|
||||
"DE.Controllers.Main.splitMaxRowsErrorText": "Počet řádků musí být menší než %1.",
|
||||
"DE.Controllers.Main.textAnonymous": "Anonymní",
|
||||
"DE.Controllers.Main.textBuyNow": "Visit website",
|
||||
"DE.Controllers.Main.textBuyNow": "Navštívit webovou stránku",
|
||||
"DE.Controllers.Main.textChangesSaved": "Všechny změny uloženy",
|
||||
"DE.Controllers.Main.textCloseTip": "Zavřete tento tip kliknutím",
|
||||
"DE.Controllers.Main.textContactUs": "Contact sales",
|
||||
"DE.Controllers.Main.textContactUs": "Kontaktujte prodejce",
|
||||
"DE.Controllers.Main.textLoadingDocument": "Načítání dokumentu",
|
||||
"DE.Controllers.Main.textNoLicenseTitle": "ONLYOFFICE open source version",
|
||||
"DE.Controllers.Main.textShape": "Shape",
|
||||
"DE.Controllers.Main.textNoLicenseTitle": "ONLYOFFICE open source verze",
|
||||
"DE.Controllers.Main.textShape": "Tvar",
|
||||
"DE.Controllers.Main.textStrict": "Strict mode",
|
||||
"DE.Controllers.Main.textTryUndoRedo": "The Undo/Redo functions are disabled for the Fast co-editing mode.<br>Click the 'Strict mode' button to switch to the Strict co-editing mode to edit the file without other users interference and send your changes only after you save them. You can switch between the co-editing modes using the editor Advanced settings.",
|
||||
"DE.Controllers.Main.titleLicenseExp": "License expired",
|
||||
"DE.Controllers.Main.titleServerVersion": "Editor updated",
|
||||
"DE.Controllers.Main.titleLicenseExp": "Platnost licence vypršela",
|
||||
"DE.Controllers.Main.titleServerVersion": "Editor byl aktualizován",
|
||||
"DE.Controllers.Main.titleUpdateVersion": "Verze změněna",
|
||||
"DE.Controllers.Main.txtArt": "Zde napište text",
|
||||
"DE.Controllers.Main.txtBasicShapes": "Základní tvary",
|
||||
|
@ -291,22 +291,22 @@
|
|||
"DE.Controllers.Main.txtRectangles": "Obdelníky",
|
||||
"DE.Controllers.Main.txtSeries": "Řady",
|
||||
"DE.Controllers.Main.txtStarsRibbons": "Hvězdy a stuhy",
|
||||
"DE.Controllers.Main.txtStyle_Heading_1": "Heading 1",
|
||||
"DE.Controllers.Main.txtStyle_Heading_2": "Heading 2",
|
||||
"DE.Controllers.Main.txtStyle_Heading_3": "Heading 3",
|
||||
"DE.Controllers.Main.txtStyle_Heading_4": "Heading 4",
|
||||
"DE.Controllers.Main.txtStyle_Heading_5": "Heading 5",
|
||||
"DE.Controllers.Main.txtStyle_Heading_6": "Heading 6",
|
||||
"DE.Controllers.Main.txtStyle_Heading_7": "Heading 7",
|
||||
"DE.Controllers.Main.txtStyle_Heading_8": "Heading 8",
|
||||
"DE.Controllers.Main.txtStyle_Heading_9": "Heading 9",
|
||||
"DE.Controllers.Main.txtStyle_Intense_Quote": "Intense Quote",
|
||||
"DE.Controllers.Main.txtStyle_List_Paragraph": "List Paragraph",
|
||||
"DE.Controllers.Main.txtStyle_No_Spacing": "No Spacing",
|
||||
"DE.Controllers.Main.txtStyle_Normal": "Normal",
|
||||
"DE.Controllers.Main.txtStyle_Quote": "Quote",
|
||||
"DE.Controllers.Main.txtStyle_Subtitle": "Subtitle",
|
||||
"DE.Controllers.Main.txtStyle_Title": "Title",
|
||||
"DE.Controllers.Main.txtStyle_Heading_1": "Nadpis 1",
|
||||
"DE.Controllers.Main.txtStyle_Heading_2": "Nadpis 2",
|
||||
"DE.Controllers.Main.txtStyle_Heading_3": "Nadpis 3",
|
||||
"DE.Controllers.Main.txtStyle_Heading_4": "Nadpis 4",
|
||||
"DE.Controllers.Main.txtStyle_Heading_5": "Nadpis 5",
|
||||
"DE.Controllers.Main.txtStyle_Heading_6": "Nadpis 6",
|
||||
"DE.Controllers.Main.txtStyle_Heading_7": "Nadpis 7",
|
||||
"DE.Controllers.Main.txtStyle_Heading_8": "Nadpis 8",
|
||||
"DE.Controllers.Main.txtStyle_Heading_9": "Nadpis 9",
|
||||
"DE.Controllers.Main.txtStyle_Intense_Quote": "Výrazný citát",
|
||||
"DE.Controllers.Main.txtStyle_List_Paragraph": "Seznam odstavce",
|
||||
"DE.Controllers.Main.txtStyle_No_Spacing": "Žádné mezery",
|
||||
"DE.Controllers.Main.txtStyle_Normal": "Normální",
|
||||
"DE.Controllers.Main.txtStyle_Quote": "Citát",
|
||||
"DE.Controllers.Main.txtStyle_Subtitle": "Podtitul",
|
||||
"DE.Controllers.Main.txtStyle_Title": "Název",
|
||||
"DE.Controllers.Main.txtXAxis": "Osa X",
|
||||
"DE.Controllers.Main.txtYAxis": "Osa Y",
|
||||
"DE.Controllers.Main.unknownErrorText": "Neznámá chyba.",
|
||||
|
@ -318,14 +318,14 @@
|
|||
"DE.Controllers.Main.uploadImageTitleText": "Nahrávání obrázku",
|
||||
"DE.Controllers.Main.warnBrowserIE9": "Aplikace má slabou podporu v IE9. Použíjte IE10 nebo vyšší",
|
||||
"DE.Controllers.Main.warnBrowserZoom": "Aktuální přiblížení prohlížeče není plně podporováno. Obnovte prosím původní přiblížení stiknem CTRL+0.",
|
||||
"DE.Controllers.Main.warnLicenseExp": "Your license has expired.<br>Please update your license and refresh the page.",
|
||||
"DE.Controllers.Main.warnNoLicense": "You are using an open source version of ONLYOFFICE. The version has limitations for concurrent connections to the document server (20 connections at a time).<br>If you need more please consider purchasing a commercial license.",
|
||||
"DE.Controllers.Main.warnLicenseExp": "Platnost vaší licence vypršela.<br>Prosím, aktualizujte vaší licenci a obnovte stránku.",
|
||||
"DE.Controllers.Main.warnNoLicense": "Používáte verzi open source ONLYOFFICE. Verze má omezení pro souběžné připojení k dokumentovému serveru (20 připojení najednou).<br>Pokud budete potřebovat více, tak prosím zvažte koupi komerční licence.",
|
||||
"DE.Controllers.Main.warnProcessRightsChange": "Bylo Vám odebráno právo upravovat tento soubor",
|
||||
"DE.Controllers.Statusbar.textHasChanges": "New changes have been tracked",
|
||||
"DE.Controllers.Statusbar.textTrackChanges": "The document is opened with the Track Changes mode enabled",
|
||||
"DE.Controllers.Statusbar.zoomText": "Přiblížení {0}%",
|
||||
"DE.Controllers.Toolbar.confirmAddFontName": "Písmo, které se chystáte uložit není dostupné na stávajícím zařízení.<br>Text bude zobrazen s jedním ze systémových písem, uložené písmo bude použito, jakmile bude dostupné.<br>Chcete pokračovat?",
|
||||
"DE.Controllers.Toolbar.confirmDeleteFootnotes": "Do you want to delete all footnotes?",
|
||||
"DE.Controllers.Toolbar.confirmDeleteFootnotes": "Chcete odstranit všechny poznámky pod čarou?",
|
||||
"DE.Controllers.Toolbar.notcriticalErrorTitle": "Warning",
|
||||
"DE.Controllers.Toolbar.textAccent": "Akcenty",
|
||||
"DE.Controllers.Toolbar.textBracket": "Závorky",
|
||||
|
@ -674,7 +674,7 @@
|
|||
"DE.Views.ChartSettings.textSize": "Velikost",
|
||||
"DE.Views.ChartSettings.textStock": "Burzovní graf",
|
||||
"DE.Views.ChartSettings.textStyle": "Styl",
|
||||
"DE.Views.ChartSettings.textSurface": "Surface",
|
||||
"DE.Views.ChartSettings.textSurface": "Povrch",
|
||||
"DE.Views.ChartSettings.textUndock": "Odepnout od panelu",
|
||||
"DE.Views.ChartSettings.textWidth": "Šířka",
|
||||
"DE.Views.ChartSettings.textWrap": "Obtékání textu",
|
||||
|
@ -686,12 +686,12 @@
|
|||
"DE.Views.ChartSettings.txtTight": "Těsný",
|
||||
"DE.Views.ChartSettings.txtTitle": "Graf",
|
||||
"DE.Views.ChartSettings.txtTopAndBottom": "Nahoře a dole",
|
||||
"DE.Views.CustomColumnsDialog.cancelButtonText": "Cancel",
|
||||
"DE.Views.CustomColumnsDialog.okButtonText": "Ok",
|
||||
"DE.Views.CustomColumnsDialog.textColumns": "Number of columns",
|
||||
"DE.Views.CustomColumnsDialog.textSeparator": "Column divider",
|
||||
"DE.Views.CustomColumnsDialog.textSpacing": "Spacing between columns",
|
||||
"DE.Views.CustomColumnsDialog.textTitle": "Columns",
|
||||
"DE.Views.CustomColumnsDialog.cancelButtonText": "Zrušit",
|
||||
"DE.Views.CustomColumnsDialog.okButtonText": "OK",
|
||||
"DE.Views.CustomColumnsDialog.textColumns": "Počet sloupců",
|
||||
"DE.Views.CustomColumnsDialog.textSeparator": "Rozdělovač sloupců",
|
||||
"DE.Views.CustomColumnsDialog.textSpacing": "Vzdálenost mezi sloupci",
|
||||
"DE.Views.CustomColumnsDialog.textTitle": "Sloupce",
|
||||
"DE.Views.DocumentHolder.aboveText": "Nad",
|
||||
"DE.Views.DocumentHolder.addCommentText": "Přidat komentář",
|
||||
"DE.Views.DocumentHolder.advancedFrameText": "Pokročilé nastavení rámečku",
|
||||
|
@ -774,7 +774,7 @@
|
|||
"DE.Views.DocumentHolder.textShapeAlignMiddle": "Zarovnat uprostřed",
|
||||
"DE.Views.DocumentHolder.textShapeAlignRight": "Zarovnat vpravo",
|
||||
"DE.Views.DocumentHolder.textShapeAlignTop": "Zarovnat nahoru",
|
||||
"DE.Views.DocumentHolder.textUndo": "Undo",
|
||||
"DE.Views.DocumentHolder.textUndo": "Vrátit zpět",
|
||||
"DE.Views.DocumentHolder.textWrap": "Obtékání textu",
|
||||
"DE.Views.DocumentHolder.tipIsLocked": "Tento element je upravován jiným uživatelem.",
|
||||
"DE.Views.DocumentHolder.txtAddBottom": "Add bottom border",
|
||||
|
@ -793,7 +793,7 @@
|
|||
"DE.Views.DocumentHolder.txtColumnAlign": "Column alignment",
|
||||
"DE.Views.DocumentHolder.txtDecreaseArg": "Decrease argument size",
|
||||
"DE.Views.DocumentHolder.txtDeleteArg": "Delete argument",
|
||||
"DE.Views.DocumentHolder.txtDeleteBreak": "Delete manual break",
|
||||
"DE.Views.DocumentHolder.txtDeleteBreak": "Odstranit manuální rozdělovač",
|
||||
"DE.Views.DocumentHolder.txtDeleteChars": "Delete enclosing characters",
|
||||
"DE.Views.DocumentHolder.txtDeleteCharsAndSeparators": "Delete enclosing characters and separators",
|
||||
"DE.Views.DocumentHolder.txtDeleteEq": "Delete equation",
|
||||
|
@ -803,8 +803,8 @@
|
|||
"DE.Views.DocumentHolder.txtFractionSkewed": "Change to skewed fraction",
|
||||
"DE.Views.DocumentHolder.txtFractionStacked": "Change to stacked fraction",
|
||||
"DE.Views.DocumentHolder.txtGroup": "Skupina",
|
||||
"DE.Views.DocumentHolder.txtGroupCharOver": "Char over text",
|
||||
"DE.Views.DocumentHolder.txtGroupCharUnder": "Char under text",
|
||||
"DE.Views.DocumentHolder.txtGroupCharOver": "Znak nad textem",
|
||||
"DE.Views.DocumentHolder.txtGroupCharUnder": "Znak pod textem",
|
||||
"DE.Views.DocumentHolder.txtHideBottom": "Hide bottom border",
|
||||
"DE.Views.DocumentHolder.txtHideBottomLimit": "Hide bottom limit",
|
||||
"DE.Views.DocumentHolder.txtHideCloseBracket": "Hide closing bracket",
|
||||
|
@ -824,16 +824,16 @@
|
|||
"DE.Views.DocumentHolder.txtInline": "Rovnoběžně s textem",
|
||||
"DE.Views.DocumentHolder.txtInsertArgAfter": "Insert argument after",
|
||||
"DE.Views.DocumentHolder.txtInsertArgBefore": "Insert argument before",
|
||||
"DE.Views.DocumentHolder.txtInsertBreak": "Insert manual break",
|
||||
"DE.Views.DocumentHolder.txtInsertBreak": "Vložit manuální rozdělovač",
|
||||
"DE.Views.DocumentHolder.txtInsertEqAfter": "Insert equation after",
|
||||
"DE.Views.DocumentHolder.txtInsertEqBefore": "Insert equation before",
|
||||
"DE.Views.DocumentHolder.txtKeepTextOnly": "Keep text only",
|
||||
"DE.Views.DocumentHolder.txtKeepTextOnly": "Ponechat pouze text",
|
||||
"DE.Views.DocumentHolder.txtLimitChange": "Change limits location",
|
||||
"DE.Views.DocumentHolder.txtLimitOver": "Limit over text",
|
||||
"DE.Views.DocumentHolder.txtLimitOver": "Limit nad textem",
|
||||
"DE.Views.DocumentHolder.txtLimitUnder": "Limit under text",
|
||||
"DE.Views.DocumentHolder.txtMatchBrackets": "Match brackets to argument height",
|
||||
"DE.Views.DocumentHolder.txtMatrixAlign": "Matrix alignment",
|
||||
"DE.Views.DocumentHolder.txtOverbar": "Bar over text",
|
||||
"DE.Views.DocumentHolder.txtOverbar": "Čárka nad textem",
|
||||
"DE.Views.DocumentHolder.txtPressLink": "Stikněte CTRL a klikněte na odkaz",
|
||||
"DE.Views.DocumentHolder.txtRemFractionBar": "Remove fraction bar",
|
||||
"DE.Views.DocumentHolder.txtRemLimit": "Remove limit",
|
||||
|
@ -905,7 +905,7 @@
|
|||
"DE.Views.DropcapSettingsAdvanced.tipFontName": "Název písma",
|
||||
"DE.Views.DropcapSettingsAdvanced.txtNoBorders": "Bez ohraničení",
|
||||
"DE.Views.FileMenu.btnBackCaption": "Jít do dokumentů",
|
||||
"DE.Views.FileMenu.btnCloseMenuCaption": "Close Menu",
|
||||
"DE.Views.FileMenu.btnCloseMenuCaption": "Zavřít menu",
|
||||
"DE.Views.FileMenu.btnCreateNewCaption": "Vytvořit nový",
|
||||
"DE.Views.FileMenu.btnDownloadCaption": "Stáhnout jako...",
|
||||
"DE.Views.FileMenu.btnHelpCaption": "Pomoc...",
|
||||
|
@ -913,7 +913,7 @@
|
|||
"DE.Views.FileMenu.btnInfoCaption": "Informace dokumentu...",
|
||||
"DE.Views.FileMenu.btnPrintCaption": "Tisk",
|
||||
"DE.Views.FileMenu.btnRecentFilesCaption": "Otevřít nedávné...",
|
||||
"DE.Views.FileMenu.btnRenameCaption": "Rename...",
|
||||
"DE.Views.FileMenu.btnRenameCaption": "Přejmenovat...",
|
||||
"DE.Views.FileMenu.btnReturnCaption": "Zpátky k dokumentu",
|
||||
"DE.Views.FileMenu.btnRightsCaption": "Přístupové práva...",
|
||||
"DE.Views.FileMenu.btnSaveAsCaption": "Save as",
|
||||
|
@ -943,17 +943,17 @@
|
|||
"DE.Views.FileMenuPanels.DocumentRights.txtRights": "Osoby, které mají práva",
|
||||
"DE.Views.FileMenuPanels.Settings.okButtonText": "Použít",
|
||||
"DE.Views.FileMenuPanels.Settings.strAlignGuides": "Zapnout tipy pro zarovnání",
|
||||
"DE.Views.FileMenuPanels.Settings.strAutoRecover": "Turn on autorecover",
|
||||
"DE.Views.FileMenuPanels.Settings.strAutoRecover": "Zapnout automatickou obnovu",
|
||||
"DE.Views.FileMenuPanels.Settings.strAutosave": "Zapnout automatické ukládání",
|
||||
"DE.Views.FileMenuPanels.Settings.strCoAuthMode": "Co-editing mode",
|
||||
"DE.Views.FileMenuPanels.Settings.strCoAuthModeDescFast": "Other users will see your changes at once",
|
||||
"DE.Views.FileMenuPanels.Settings.strCoAuthModeDescStrict": "You will need to accept changes before you can see them",
|
||||
"DE.Views.FileMenuPanels.Settings.strFast": "Fast",
|
||||
"DE.Views.FileMenuPanels.Settings.strFontRender": "Hinting",
|
||||
"DE.Views.FileMenuPanels.Settings.strForcesave": "Always save to server (otherwise save to server on document close)",
|
||||
"DE.Views.FileMenuPanels.Settings.strForcesave": "Vždy uložit na server (jinak uložit na server při zavření dokumentu)",
|
||||
"DE.Views.FileMenuPanels.Settings.strInputMode": "Zapnout hieroglyfy",
|
||||
"DE.Views.FileMenuPanels.Settings.strLiveComment": "Zapnout zobrazování komentářů.",
|
||||
"DE.Views.FileMenuPanels.Settings.strResolvedComment": "Turn on display of the resolved comments",
|
||||
"DE.Views.FileMenuPanels.Settings.strResolvedComment": "Zapnout zobrazení vyřešených komentářů",
|
||||
"DE.Views.FileMenuPanels.Settings.strShowChanges": "Změny spolupráce v reálném čase",
|
||||
"DE.Views.FileMenuPanels.Settings.strSpellCheckMode": "Zapnout kontrolu pravopisu",
|
||||
"DE.Views.FileMenuPanels.Settings.strStrict": "Strict",
|
||||
|
@ -964,16 +964,16 @@
|
|||
"DE.Views.FileMenuPanels.Settings.text5Minutes": "Každých 5 minut",
|
||||
"DE.Views.FileMenuPanels.Settings.text60Minutes": "Každou hodinu",
|
||||
"DE.Views.FileMenuPanels.Settings.textAlignGuides": "Nápověda zarovnání",
|
||||
"DE.Views.FileMenuPanels.Settings.textAutoRecover": "Autorecover",
|
||||
"DE.Views.FileMenuPanels.Settings.textAutoRecover": "Automatická obnova",
|
||||
"DE.Views.FileMenuPanels.Settings.textAutoSave": "Automatické ukládání",
|
||||
"DE.Views.FileMenuPanels.Settings.textDisabled": "Zakázáno",
|
||||
"DE.Views.FileMenuPanels.Settings.textForceSave": "Save to Server",
|
||||
"DE.Views.FileMenuPanels.Settings.textForceSave": "Uložit na server",
|
||||
"DE.Views.FileMenuPanels.Settings.textMinute": "Každou minutu",
|
||||
"DE.Views.FileMenuPanels.Settings.txtAll": "Zobrazit všechny",
|
||||
"DE.Views.FileMenuPanels.Settings.txtCm": "Centimetr",
|
||||
"DE.Views.FileMenuPanels.Settings.txtFitPage": "Fit to Page",
|
||||
"DE.Views.FileMenuPanels.Settings.txtFitWidth": "Fit to Width",
|
||||
"DE.Views.FileMenuPanels.Settings.txtInch": "Inch",
|
||||
"DE.Views.FileMenuPanels.Settings.txtFitPage": "Přízpůsobit stránce",
|
||||
"DE.Views.FileMenuPanels.Settings.txtFitWidth": "Přizpůsobit šířce",
|
||||
"DE.Views.FileMenuPanels.Settings.txtInch": "Palec (míra 2,54 cm)\n",
|
||||
"DE.Views.FileMenuPanels.Settings.txtInput": "Náhradní vstup",
|
||||
"DE.Views.FileMenuPanels.Settings.txtLast": "Zobraz poslední",
|
||||
"DE.Views.FileMenuPanels.Settings.txtLiveComment": "Zobrazení komentářů",
|
||||
|
@ -1007,8 +1007,8 @@
|
|||
"DE.Views.HyperlinkSettingsDialog.txtEmpty": "Toto pole je povinné",
|
||||
"DE.Views.HyperlinkSettingsDialog.txtNotUrl": "Toto pole musí být URL adresa ve formátu \"http://www.example.com\"",
|
||||
"DE.Views.ImageSettings.textAdvanced": "Zobrazit pokročilé nastavení",
|
||||
"DE.Views.ImageSettings.textEdit": "Edit",
|
||||
"DE.Views.ImageSettings.textEditObject": "Edit Object",
|
||||
"DE.Views.ImageSettings.textEdit": "Upravit",
|
||||
"DE.Views.ImageSettings.textEditObject": "Upravit objekt",
|
||||
"DE.Views.ImageSettings.textFromFile": "Ze souboru",
|
||||
"DE.Views.ImageSettings.textFromUrl": "Z adresy URL",
|
||||
"DE.Views.ImageSettings.textHeight": "Výška",
|
||||
|
@ -1029,12 +1029,12 @@
|
|||
"DE.Views.ImageSettingsAdvanced.strMargins": "Vnitřní odsazení textu",
|
||||
"DE.Views.ImageSettingsAdvanced.textAbsoluteWH": "Absolutně",
|
||||
"DE.Views.ImageSettingsAdvanced.textAlignment": "Zarovnání",
|
||||
"DE.Views.ImageSettingsAdvanced.textAlt": "Alternative Text",
|
||||
"DE.Views.ImageSettingsAdvanced.textAltDescription": "Description",
|
||||
"DE.Views.ImageSettingsAdvanced.textAltTip": "The alternative text-based representation of the visual object information, which will be read to the people with vision or cognitive impairments to help them better understand what information there is in the image, autoshape, chart or table.",
|
||||
"DE.Views.ImageSettingsAdvanced.textAltTitle": "Title",
|
||||
"DE.Views.ImageSettingsAdvanced.textAlt": "Alternativní text",
|
||||
"DE.Views.ImageSettingsAdvanced.textAltDescription": "Popis",
|
||||
"DE.Views.ImageSettingsAdvanced.textAltTip": "Alternativní textová reprezentace informací vizuálního objektu, která bude čtena lidem se zrakovým nebo kognitivním postižením, aby jim pomohla lépe porozumět informacím, které se nacházejí v obrázku, automatickém tvarování, grafu nebo v tabulce.",
|
||||
"DE.Views.ImageSettingsAdvanced.textAltTitle": "Název",
|
||||
"DE.Views.ImageSettingsAdvanced.textArrows": "Šipky",
|
||||
"DE.Views.ImageSettingsAdvanced.textAspectRatio": "Lock aspect ratio",
|
||||
"DE.Views.ImageSettingsAdvanced.textAspectRatio": "Zachovat poměr stran",
|
||||
"DE.Views.ImageSettingsAdvanced.textBeginSize": "Velikost začátku",
|
||||
"DE.Views.ImageSettingsAdvanced.textBeginStyle": "Styl začátku",
|
||||
"DE.Views.ImageSettingsAdvanced.textBelow": "pod",
|
||||
|
@ -1067,9 +1067,9 @@
|
|||
"DE.Views.ImageSettingsAdvanced.textPage": "Stránka",
|
||||
"DE.Views.ImageSettingsAdvanced.textParagraph": "Odstavec",
|
||||
"DE.Views.ImageSettingsAdvanced.textPosition": "Pozice",
|
||||
"DE.Views.ImageSettingsAdvanced.textPositionPc": "Relative position",
|
||||
"DE.Views.ImageSettingsAdvanced.textPositionPc": "Relativní pozice",
|
||||
"DE.Views.ImageSettingsAdvanced.textRelative": "relativně k",
|
||||
"DE.Views.ImageSettingsAdvanced.textRelativeWH": "Relative",
|
||||
"DE.Views.ImageSettingsAdvanced.textRelativeWH": "Relativní",
|
||||
"DE.Views.ImageSettingsAdvanced.textRight": "Vpravo",
|
||||
"DE.Views.ImageSettingsAdvanced.textRightMargin": "Pravý okraj",
|
||||
"DE.Views.ImageSettingsAdvanced.textRightOf": "vpravo od",
|
||||
|
@ -1096,11 +1096,11 @@
|
|||
"DE.Views.LeftMenu.tipChat": "Chat",
|
||||
"DE.Views.LeftMenu.tipComments": "Komentáře",
|
||||
"DE.Views.LeftMenu.tipFile": "Soubor",
|
||||
"DE.Views.LeftMenu.tipPlugins": "Plugins",
|
||||
"DE.Views.LeftMenu.tipPlugins": "Pluginy",
|
||||
"DE.Views.LeftMenu.tipSearch": "Hledat",
|
||||
"DE.Views.LeftMenu.tipSupport": "Podpora a zpětná vazba",
|
||||
"DE.Views.LeftMenu.tipTitles": "Nadpisy",
|
||||
"DE.Views.LeftMenu.txtDeveloper": "DEVELOPER MODE",
|
||||
"DE.Views.LeftMenu.txtDeveloper": "VÝVOJÁŘSKÝ REŽIM",
|
||||
"DE.Views.MailMergeEmailDlg.cancelButtonText": "Zrušit",
|
||||
"DE.Views.MailMergeEmailDlg.filePlaceholder": "PDF",
|
||||
"DE.Views.MailMergeEmailDlg.okButtonText": "Poslat",
|
||||
|
@ -1153,25 +1153,25 @@
|
|||
"DE.Views.MailMergeSettings.txtPrev": "K předchozímu záznamu",
|
||||
"DE.Views.MailMergeSettings.txtUntitled": "Bez názvu",
|
||||
"DE.Views.MailMergeSettings.warnProcessMailMerge": "Spuštění hromadné korespondence se nezdařilo",
|
||||
"DE.Views.NoteSettingsDialog.textApply": "Apply",
|
||||
"DE.Views.NoteSettingsDialog.textApplyTo": "Apply changes to",
|
||||
"DE.Views.NoteSettingsDialog.textCancel": "Cancel",
|
||||
"DE.Views.NoteSettingsDialog.textContinue": "Continuous",
|
||||
"DE.Views.NoteSettingsDialog.textCustom": "Custom Mark",
|
||||
"DE.Views.NoteSettingsDialog.textDocument": "Whole document",
|
||||
"DE.Views.NoteSettingsDialog.textEachPage": "Restart each page",
|
||||
"DE.Views.NoteSettingsDialog.textEachSection": "Restart each section",
|
||||
"DE.Views.NoteSettingsDialog.textFootnote": "Footnote",
|
||||
"DE.Views.NoteSettingsDialog.textFormat": "Format",
|
||||
"DE.Views.NoteSettingsDialog.textInsert": "Insert",
|
||||
"DE.Views.NoteSettingsDialog.textLocation": "Location",
|
||||
"DE.Views.NoteSettingsDialog.textNumbering": "Numbering",
|
||||
"DE.Views.NoteSettingsDialog.textNumFormat": "Number Format",
|
||||
"DE.Views.NoteSettingsDialog.textPageBottom": "Bottom of page",
|
||||
"DE.Views.NoteSettingsDialog.textSection": "Current section",
|
||||
"DE.Views.NoteSettingsDialog.textStart": "Start at",
|
||||
"DE.Views.NoteSettingsDialog.textTextBottom": "Below text",
|
||||
"DE.Views.NoteSettingsDialog.textTitle": "Notes Settings",
|
||||
"DE.Views.NoteSettingsDialog.textApply": "Použít",
|
||||
"DE.Views.NoteSettingsDialog.textApplyTo": "Použít změny do",
|
||||
"DE.Views.NoteSettingsDialog.textCancel": "Zrušit",
|
||||
"DE.Views.NoteSettingsDialog.textContinue": "Nepřetržitý",
|
||||
"DE.Views.NoteSettingsDialog.textCustom": "Vlastní značka",
|
||||
"DE.Views.NoteSettingsDialog.textDocument": "Celý dokument",
|
||||
"DE.Views.NoteSettingsDialog.textEachPage": "Restartovat každou stránku",
|
||||
"DE.Views.NoteSettingsDialog.textEachSection": "Restartovat každou sekci",
|
||||
"DE.Views.NoteSettingsDialog.textFootnote": "Poznámka pod čarou",
|
||||
"DE.Views.NoteSettingsDialog.textFormat": "Formát",
|
||||
"DE.Views.NoteSettingsDialog.textInsert": "Vložit",
|
||||
"DE.Views.NoteSettingsDialog.textLocation": "Umístění",
|
||||
"DE.Views.NoteSettingsDialog.textNumbering": "Číslování",
|
||||
"DE.Views.NoteSettingsDialog.textNumFormat": "Formát čísla",
|
||||
"DE.Views.NoteSettingsDialog.textPageBottom": "Spodní část stránky",
|
||||
"DE.Views.NoteSettingsDialog.textSection": "Aktuální sekce",
|
||||
"DE.Views.NoteSettingsDialog.textStart": "Začít na",
|
||||
"DE.Views.NoteSettingsDialog.textTextBottom": "Pod textem",
|
||||
"DE.Views.NoteSettingsDialog.textTitle": "Nastavení poznámek",
|
||||
"DE.Views.PageMarginsDialog.cancelButtonText": "Cancel",
|
||||
"DE.Views.PageMarginsDialog.notcriticalErrorTitle": "Warning",
|
||||
"DE.Views.PageMarginsDialog.okButtonText": "Ok",
|
||||
|
@ -1271,7 +1271,7 @@
|
|||
"DE.Views.ShapeSettings.strSize": "Velikost",
|
||||
"DE.Views.ShapeSettings.strStroke": "Tloušťka",
|
||||
"DE.Views.ShapeSettings.strTransparency": "Průhlednost",
|
||||
"DE.Views.ShapeSettings.strType": "Type",
|
||||
"DE.Views.ShapeSettings.strType": "Typ",
|
||||
"DE.Views.ShapeSettings.textAdvanced": "Zobrazit pokročilé nastavení",
|
||||
"DE.Views.ShapeSettings.textBorderSizeErr": "Zadaná hodnota není správná.<br>Zadejte prosím hodnotu mezi 0 a 1584.",
|
||||
"DE.Views.ShapeSettings.textColor": "Vyplnit barvou",
|
||||
|
@ -1389,10 +1389,10 @@
|
|||
"DE.Views.TableSettingsAdvanced.textAlign": "Zarovnání",
|
||||
"DE.Views.TableSettingsAdvanced.textAlignment": "Zarovnání",
|
||||
"DE.Views.TableSettingsAdvanced.textAllowSpacing": "Povolit odsazení mezi buňkami",
|
||||
"DE.Views.TableSettingsAdvanced.textAlt": "Alternative Text",
|
||||
"DE.Views.TableSettingsAdvanced.textAltDescription": "Description",
|
||||
"DE.Views.TableSettingsAdvanced.textAltTip": "The alternative text-based representation of the visual object information, which will be read to the people with vision or cognitive impairments to help them better understand what information there is in the image, autoshape, chart or table.",
|
||||
"DE.Views.TableSettingsAdvanced.textAltTitle": "Title",
|
||||
"DE.Views.TableSettingsAdvanced.textAlt": "Alternativní text",
|
||||
"DE.Views.TableSettingsAdvanced.textAltDescription": "Popis",
|
||||
"DE.Views.TableSettingsAdvanced.textAltTip": "Alternativní textová reprezentace informací vizuálního objektu, která bude čtena lidem se zrakovým nebo kognitivním postižením, aby jim pomohla lépe porozumět informacím, které se nacházejí v obrázku, automatickém tvarování, grafu nebo v tabulce.",
|
||||
"DE.Views.TableSettingsAdvanced.textAltTitle": "Název",
|
||||
"DE.Views.TableSettingsAdvanced.textAnchorText": "Text",
|
||||
"DE.Views.TableSettingsAdvanced.textAutofit": "Automaticky upravit velikost podle obsahu",
|
||||
"DE.Views.TableSettingsAdvanced.textBackColor": "Pozadí buňky",
|
||||
|
@ -1402,9 +1402,9 @@
|
|||
"DE.Views.TableSettingsAdvanced.textBordersBackgroung": "Ohraničení a pozadí",
|
||||
"DE.Views.TableSettingsAdvanced.textBorderWidth": "Šířka ohraničení",
|
||||
"DE.Views.TableSettingsAdvanced.textBottom": "Dole",
|
||||
"DE.Views.TableSettingsAdvanced.textCellOptions": "Cell Options",
|
||||
"DE.Views.TableSettingsAdvanced.textCellOptions": "Možnosti buňky",
|
||||
"DE.Views.TableSettingsAdvanced.textCellProps": "Vlastnosti buňky",
|
||||
"DE.Views.TableSettingsAdvanced.textCellSize": "Cell Size",
|
||||
"DE.Views.TableSettingsAdvanced.textCellSize": "Velikost buňky",
|
||||
"DE.Views.TableSettingsAdvanced.textCenter": "Střed",
|
||||
"DE.Views.TableSettingsAdvanced.textCenterTooltip": "Střed",
|
||||
"DE.Views.TableSettingsAdvanced.textCheckMargins": "Použít původní okraje",
|
||||
|
@ -1416,7 +1416,7 @@
|
|||
"DE.Views.TableSettingsAdvanced.textLeftTooltip": "Vlevo",
|
||||
"DE.Views.TableSettingsAdvanced.textMargin": "Okraj",
|
||||
"DE.Views.TableSettingsAdvanced.textMargins": "Okraje buňky",
|
||||
"DE.Views.TableSettingsAdvanced.textMeasure": "Measure in",
|
||||
"DE.Views.TableSettingsAdvanced.textMeasure": "Měřit v",
|
||||
"DE.Views.TableSettingsAdvanced.textMove": "Přemístit objekt s textem",
|
||||
"DE.Views.TableSettingsAdvanced.textNewColor": "Přidat novou vlastní barvu",
|
||||
"DE.Views.TableSettingsAdvanced.textOnlyCells": "Pouze pro vybrané buňky",
|
||||
|
@ -1424,16 +1424,16 @@
|
|||
"DE.Views.TableSettingsAdvanced.textOverlap": "Povolit překrytí",
|
||||
"DE.Views.TableSettingsAdvanced.textPage": "Stránka",
|
||||
"DE.Views.TableSettingsAdvanced.textPosition": "Pozice",
|
||||
"DE.Views.TableSettingsAdvanced.textPrefWidth": "Preferred width",
|
||||
"DE.Views.TableSettingsAdvanced.textPrefWidth": "Preferovaná šířka",
|
||||
"DE.Views.TableSettingsAdvanced.textPreview": "Náhled",
|
||||
"DE.Views.TableSettingsAdvanced.textRelative": "relativně k",
|
||||
"DE.Views.TableSettingsAdvanced.textRight": "Vpravo",
|
||||
"DE.Views.TableSettingsAdvanced.textRightOf": "vpravo od",
|
||||
"DE.Views.TableSettingsAdvanced.textRightTooltip": "Vpravo",
|
||||
"DE.Views.TableSettingsAdvanced.textTable": "Table",
|
||||
"DE.Views.TableSettingsAdvanced.textTable": "Tabulka",
|
||||
"DE.Views.TableSettingsAdvanced.textTableBackColor": "Pozadí tabulky",
|
||||
"DE.Views.TableSettingsAdvanced.textTablePosition": "Table Position",
|
||||
"DE.Views.TableSettingsAdvanced.textTableSize": "Table Size",
|
||||
"DE.Views.TableSettingsAdvanced.textTablePosition": "Pozice tabulky",
|
||||
"DE.Views.TableSettingsAdvanced.textTableSize": "Velikost tabulky",
|
||||
"DE.Views.TableSettingsAdvanced.textTitle": "Tabulka - Pokročilé nastavení",
|
||||
"DE.Views.TableSettingsAdvanced.textTop": "Nahoře",
|
||||
"DE.Views.TableSettingsAdvanced.textVertical": "Svislé",
|
||||
|
@ -1442,8 +1442,8 @@
|
|||
"DE.Views.TableSettingsAdvanced.textWrap": "Obtékaní textu",
|
||||
"DE.Views.TableSettingsAdvanced.textWrapNoneTooltip": "Tabulka rovnoběžne s textem",
|
||||
"DE.Views.TableSettingsAdvanced.textWrapParallelTooltip": "Obtékat tabulku",
|
||||
"DE.Views.TableSettingsAdvanced.textWrappingStyle": "Wrapping Style",
|
||||
"DE.Views.TableSettingsAdvanced.textWrapText": "Wrap text",
|
||||
"DE.Views.TableSettingsAdvanced.textWrappingStyle": "Obtékání textu",
|
||||
"DE.Views.TableSettingsAdvanced.textWrapText": "Zalamovat text",
|
||||
"DE.Views.TableSettingsAdvanced.tipAll": "Nastavit vnejší ohraničení a všechny vnitřní čáry",
|
||||
"DE.Views.TableSettingsAdvanced.tipCellAll": "Nastavit ohraničení pouze pro vnitřní buňky",
|
||||
"DE.Views.TableSettingsAdvanced.tipCellInner": "Nastavit pouze svislé a vodorovné čáry pro vnitřní buňky",
|
||||
|
@ -1454,17 +1454,17 @@
|
|||
"DE.Views.TableSettingsAdvanced.tipTableOuterCellAll": "Nastavit vnější ohraničení a ohraničení všech vnitřních buňek",
|
||||
"DE.Views.TableSettingsAdvanced.tipTableOuterCellInner": "Nastavit vnější ohraničení a svislé a vodorovné čáry pro vnitřní buňky",
|
||||
"DE.Views.TableSettingsAdvanced.tipTableOuterCellOuter": "Nastavit vnější ohraničení tabulky a vnější ohraničení vnitřních buňek",
|
||||
"DE.Views.TableSettingsAdvanced.txtCm": "Centimeter",
|
||||
"DE.Views.TableSettingsAdvanced.txtInch": "Inch",
|
||||
"DE.Views.TableSettingsAdvanced.txtCm": "Centimetr",
|
||||
"DE.Views.TableSettingsAdvanced.txtInch": "Palec (míra 2,54 cm)\n",
|
||||
"DE.Views.TableSettingsAdvanced.txtNoBorders": "Bez ohraničení",
|
||||
"DE.Views.TableSettingsAdvanced.txtPercent": "Percent",
|
||||
"DE.Views.TableSettingsAdvanced.txtPt": "Point",
|
||||
"DE.Views.TableSettingsAdvanced.txtPercent": "Procento",
|
||||
"DE.Views.TableSettingsAdvanced.txtPt": "Bod",
|
||||
"DE.Views.TextArtSettings.strColor": "Barva",
|
||||
"DE.Views.TextArtSettings.strFill": "Výplň",
|
||||
"DE.Views.TextArtSettings.strSize": "Velikost",
|
||||
"DE.Views.TextArtSettings.strStroke": "Tloušťka",
|
||||
"DE.Views.TextArtSettings.strTransparency": "Průhlednost",
|
||||
"DE.Views.TextArtSettings.strType": "Type",
|
||||
"DE.Views.TextArtSettings.strType": "Typ",
|
||||
"DE.Views.TextArtSettings.textBorderSizeErr": "Zadaná hodnota není správná.<br>Zadejte prosím hodnotu mezi 0 a 1584.",
|
||||
"DE.Views.TextArtSettings.textColor": "Vyplnit barvou",
|
||||
"DE.Views.TextArtSettings.textDirection": "Směr",
|
||||
|
@ -1480,7 +1480,7 @@
|
|||
"DE.Views.TextArtSettings.textTransform": "Transformovat",
|
||||
"DE.Views.TextArtSettings.txtNoBorders": "Bez čáry",
|
||||
"DE.Views.Toolbar.mniCustomTable": "Vložit vlastní tabulku",
|
||||
"DE.Views.Toolbar.mniDelFootnote": "Delete All Footnotes",
|
||||
"DE.Views.Toolbar.mniDelFootnote": "Odstranit všechny poznámky pod čarou",
|
||||
"DE.Views.Toolbar.mniEditDropCap": "Nastavení Iniciály",
|
||||
"DE.Views.Toolbar.mniEditFooter": "Upravit zápatí",
|
||||
"DE.Views.Toolbar.mniEditHeader": "Upravit záhlaví",
|
||||
|
@ -1488,17 +1488,17 @@
|
|||
"DE.Views.Toolbar.mniHiddenChars": "Netisknutelné znaky",
|
||||
"DE.Views.Toolbar.mniImageFromFile": "Obrázek ze souboru",
|
||||
"DE.Views.Toolbar.mniImageFromUrl": "Obrázek z adresy URL",
|
||||
"DE.Views.Toolbar.mniInsFootnote": "Insert Footnote",
|
||||
"DE.Views.Toolbar.mniNoteSettings": "Notes Settings",
|
||||
"DE.Views.Toolbar.mniInsFootnote": "Vložit poznámku pod čarou",
|
||||
"DE.Views.Toolbar.mniNoteSettings": "Nastavení poznámek",
|
||||
"DE.Views.Toolbar.strMenuNoFill": "Bez výplně",
|
||||
"DE.Views.Toolbar.textArea": "Plošný graf",
|
||||
"DE.Views.Toolbar.textAutoColor": "Automaticky",
|
||||
"DE.Views.Toolbar.textBar": "Pruhový graf",
|
||||
"DE.Views.Toolbar.textBold": "Tučně",
|
||||
"DE.Views.Toolbar.textBottom": "Bottom: ",
|
||||
"DE.Views.Toolbar.textCharts": "Charts",
|
||||
"DE.Views.Toolbar.textCharts": "Grafy",
|
||||
"DE.Views.Toolbar.textColumn": "Sloupcový graf",
|
||||
"DE.Views.Toolbar.textColumnsCustom": "Custom Columns",
|
||||
"DE.Views.Toolbar.textColumnsCustom": "Vlastní sloupce",
|
||||
"DE.Views.Toolbar.textColumnsLeft": "Left",
|
||||
"DE.Views.Toolbar.textColumnsOne": "One",
|
||||
"DE.Views.Toolbar.textColumnsRight": "Right",
|
||||
|
@ -1509,13 +1509,13 @@
|
|||
"DE.Views.Toolbar.textEvenPage": "Sudá stránka",
|
||||
"DE.Views.Toolbar.textFitPage": "Přízpůsobit stránce",
|
||||
"DE.Views.Toolbar.textFitWidth": "Přizpůsobit šířce",
|
||||
"DE.Views.Toolbar.textGotoFootnote": "Go to Footnotes",
|
||||
"DE.Views.Toolbar.textGotoFootnote": "Přejít na Poznámky pod čarou",
|
||||
"DE.Views.Toolbar.textHideLines": "Schovat pravítka",
|
||||
"DE.Views.Toolbar.textHideStatusBar": "Schovat stavový řádek",
|
||||
"DE.Views.Toolbar.textHideTitleBar": "Schovat lištu nadpisu",
|
||||
"DE.Views.Toolbar.textInMargin": "V okraji",
|
||||
"DE.Views.Toolbar.textInsColumnBreak": "Insert Column Break",
|
||||
"DE.Views.Toolbar.textInsertPageCount": "Insert number of pages",
|
||||
"DE.Views.Toolbar.textInsColumnBreak": "Vložit sloupcový rozdělovač",
|
||||
"DE.Views.Toolbar.textInsertPageCount": "Vložit počet stran",
|
||||
"DE.Views.Toolbar.textInsertPageNumber": "Vložit číslo stránky",
|
||||
"DE.Views.Toolbar.textInsPageBreak": "Vložit rozdělovač stránky",
|
||||
"DE.Views.Toolbar.textInsSectionBreak": "Vložit rozdělovač sekce",
|
||||
|
@ -1523,14 +1523,14 @@
|
|||
"DE.Views.Toolbar.textInsTextArt": "Vložit Text art",
|
||||
"DE.Views.Toolbar.textInText": "V textu",
|
||||
"DE.Views.Toolbar.textItalic": "Kurzíva",
|
||||
"DE.Views.Toolbar.textLandscape": "Landscape",
|
||||
"DE.Views.Toolbar.textLandscape": "Na šířku",
|
||||
"DE.Views.Toolbar.textLeft": "Left: ",
|
||||
"DE.Views.Toolbar.textLine": "Liniový graf",
|
||||
"DE.Views.Toolbar.textMarginsLast": "Last Custom",
|
||||
"DE.Views.Toolbar.textMarginsModerate": "Moderate",
|
||||
"DE.Views.Toolbar.textMarginsNarrow": "Narrow",
|
||||
"DE.Views.Toolbar.textMarginsNormal": "Normal",
|
||||
"DE.Views.Toolbar.textMarginsUsNormal": "US Normal",
|
||||
"DE.Views.Toolbar.textMarginsUsNormal": "Americký standart (US Normal)",
|
||||
"DE.Views.Toolbar.textMarginsWide": "Wide",
|
||||
"DE.Views.Toolbar.textNewColor": "Přidat novou vlastní barvu",
|
||||
"DE.Views.Toolbar.textNextPage": "Další stránka",
|
||||
|
@ -1540,7 +1540,7 @@
|
|||
"DE.Views.Toolbar.textPageSizeCustom": "Custom Page Size",
|
||||
"DE.Views.Toolbar.textPie": "Kruhový diagram",
|
||||
"DE.Views.Toolbar.textPoint": "Bodový graf",
|
||||
"DE.Views.Toolbar.textPortrait": "Portrait",
|
||||
"DE.Views.Toolbar.textPortrait": "Na výšku",
|
||||
"DE.Views.Toolbar.textRight": "Right: ",
|
||||
"DE.Views.Toolbar.textStock": "Burzovní graf",
|
||||
"DE.Views.Toolbar.textStrikeout": "Přeškrtnout",
|
||||
|
@ -1552,7 +1552,7 @@
|
|||
"DE.Views.Toolbar.textStyleMenuUpdate": "Aktualizovat z výběru",
|
||||
"DE.Views.Toolbar.textSubscript": "Dolní index",
|
||||
"DE.Views.Toolbar.textSuperscript": "Horní index",
|
||||
"DE.Views.Toolbar.textSurface": "Surface",
|
||||
"DE.Views.Toolbar.textSurface": "Povrch",
|
||||
"DE.Views.Toolbar.textTitleError": "Chyba",
|
||||
"DE.Views.Toolbar.textToCurrent": "Na součásnou pozici",
|
||||
"DE.Views.Toolbar.textTop": "Top: ",
|
||||
|
@ -1564,7 +1564,7 @@
|
|||
"DE.Views.Toolbar.tipAlignLeft": "Zarovnat vlevo",
|
||||
"DE.Views.Toolbar.tipAlignRight": "Zarovnat vpravo",
|
||||
"DE.Views.Toolbar.tipBack": "Zpět",
|
||||
"DE.Views.Toolbar.tipChangeChart": "Change Chart Type",
|
||||
"DE.Views.Toolbar.tipChangeChart": "Změnit typ grafu",
|
||||
"DE.Views.Toolbar.tipClearStyle": "Vymazat styl",
|
||||
"DE.Views.Toolbar.tipColorSchemas": "Změnit barevné schéma",
|
||||
"DE.Views.Toolbar.tipColumns": "Insert columns",
|
||||
|
@ -1594,7 +1594,7 @@
|
|||
"DE.Views.Toolbar.tipMarkers": "Odrážky",
|
||||
"DE.Views.Toolbar.tipMultilevels": "Obrys",
|
||||
"DE.Views.Toolbar.tipNewDocument": "Nový dokument",
|
||||
"DE.Views.Toolbar.tipNotes": "Footnotes",
|
||||
"DE.Views.Toolbar.tipNotes": "Poznámky pod čarou",
|
||||
"DE.Views.Toolbar.tipNumbers": "Číslování",
|
||||
"DE.Views.Toolbar.tipOpenDocument": "Otevřít dokument",
|
||||
"DE.Views.Toolbar.tipPageBreak": "Vložit rozdělovač stránky nebo sekce",
|
||||
|
|
|
@ -151,6 +151,9 @@
|
|||
"Common.Views.Header.tipAccessRights": "Manage document access rights",
|
||||
"Common.Views.Header.labelCoUsersDescr": "Document is currently being edited by several users.",
|
||||
"Common.Views.Header.tipViewUsers": "View users and manage document access rights",
|
||||
"Common.Views.Header.tipDownload": "Download file",
|
||||
"Common.Views.Header.tipPrint": "Print file",
|
||||
"Common.Views.Header.tipGoEdit": "Edit current file",
|
||||
"Common.Views.History.textCloseHistory": "Close History",
|
||||
"Common.Views.History.textHide": "Collapse",
|
||||
"Common.Views.History.textHideAll": "Hide detailed changes",
|
||||
|
|
|
@ -119,7 +119,7 @@
|
|||
"Common.Views.Comments.textCancel": "Annuler",
|
||||
"Common.Views.Comments.textClose": "Fermer",
|
||||
"Common.Views.Comments.textComments": "Commentaires",
|
||||
"Common.Views.Comments.textEdit": "OK",
|
||||
"Common.Views.Comments.textEdit": "Modifier",
|
||||
"Common.Views.Comments.textEnterCommentHint": "Entrez votre commentaire ici",
|
||||
"Common.Views.Comments.textOpenAgain": "Ouvrir à nouveau",
|
||||
"Common.Views.Comments.textReply": "Répondre",
|
||||
|
@ -291,6 +291,22 @@
|
|||
"DE.Controllers.Main.txtRectangles": "Rectangles",
|
||||
"DE.Controllers.Main.txtSeries": "Série",
|
||||
"DE.Controllers.Main.txtStarsRibbons": "Étoiles et rubans",
|
||||
"DE.Controllers.Main.txtStyle_Heading_1": "Heading 1",
|
||||
"DE.Controllers.Main.txtStyle_Heading_2": "Heading 2",
|
||||
"DE.Controllers.Main.txtStyle_Heading_3": "Heading 3",
|
||||
"DE.Controllers.Main.txtStyle_Heading_4": "Heading 4",
|
||||
"DE.Controllers.Main.txtStyle_Heading_5": "Heading 5",
|
||||
"DE.Controllers.Main.txtStyle_Heading_6": "Heading 6",
|
||||
"DE.Controllers.Main.txtStyle_Heading_7": "Heading 7",
|
||||
"DE.Controllers.Main.txtStyle_Heading_8": "Heading 8",
|
||||
"DE.Controllers.Main.txtStyle_Heading_9": "Heading 9",
|
||||
"DE.Controllers.Main.txtStyle_Intense_Quote": "Intense Quote",
|
||||
"DE.Controllers.Main.txtStyle_List_Paragraph": "List Paragraph",
|
||||
"DE.Controllers.Main.txtStyle_No_Spacing": "No Spacing",
|
||||
"DE.Controllers.Main.txtStyle_Normal": "Normal",
|
||||
"DE.Controllers.Main.txtStyle_Quote": "Quote",
|
||||
"DE.Controllers.Main.txtStyle_Subtitle": "Subtitle",
|
||||
"DE.Controllers.Main.txtStyle_Title": "Title",
|
||||
"DE.Controllers.Main.txtXAxis": "Axe X",
|
||||
"DE.Controllers.Main.txtYAxis": "Axe Y",
|
||||
"DE.Controllers.Main.unknownErrorText": "Erreur inconnue.",
|
||||
|
@ -658,6 +674,7 @@
|
|||
"DE.Views.ChartSettings.textSize": "Taille",
|
||||
"DE.Views.ChartSettings.textStock": "Boursier",
|
||||
"DE.Views.ChartSettings.textStyle": "Style",
|
||||
"DE.Views.ChartSettings.textSurface": "Surface",
|
||||
"DE.Views.ChartSettings.textUndock": "Détacher du panneau",
|
||||
"DE.Views.ChartSettings.textWidth": "Largeur",
|
||||
"DE.Views.ChartSettings.textWrap": "Style d'habillage",
|
||||
|
@ -669,6 +686,12 @@
|
|||
"DE.Views.ChartSettings.txtTight": "Rapproché",
|
||||
"DE.Views.ChartSettings.txtTitle": "Graphique",
|
||||
"DE.Views.ChartSettings.txtTopAndBottom": "Haut et bas",
|
||||
"DE.Views.CustomColumnsDialog.cancelButtonText": "Cancel",
|
||||
"DE.Views.CustomColumnsDialog.okButtonText": "Ok",
|
||||
"DE.Views.CustomColumnsDialog.textColumns": "Number of columns",
|
||||
"DE.Views.CustomColumnsDialog.textSeparator": "Column divider",
|
||||
"DE.Views.CustomColumnsDialog.textSpacing": "Spacing between columns",
|
||||
"DE.Views.CustomColumnsDialog.textTitle": "Columns",
|
||||
"DE.Views.DocumentHolder.aboveText": "Au-dessus",
|
||||
"DE.Views.DocumentHolder.addCommentText": "Ajouter un commentaire",
|
||||
"DE.Views.DocumentHolder.advancedFrameText": "Paramètres avancés du cadre",
|
||||
|
@ -1475,6 +1498,7 @@
|
|||
"DE.Views.Toolbar.textBottom": "En bas: ",
|
||||
"DE.Views.Toolbar.textCharts": "Graphiques",
|
||||
"DE.Views.Toolbar.textColumn": "Colonne",
|
||||
"DE.Views.Toolbar.textColumnsCustom": "Custom Columns",
|
||||
"DE.Views.Toolbar.textColumnsLeft": "A gauche",
|
||||
"DE.Views.Toolbar.textColumnsOne": "Un",
|
||||
"DE.Views.Toolbar.textColumnsRight": "A droite",
|
||||
|
@ -1528,6 +1552,7 @@
|
|||
"DE.Views.Toolbar.textStyleMenuUpdate": "Mettre à jour selon la sélection",
|
||||
"DE.Views.Toolbar.textSubscript": "Indice",
|
||||
"DE.Views.Toolbar.textSuperscript": "Exposant",
|
||||
"DE.Views.Toolbar.textSurface": "Surface",
|
||||
"DE.Views.Toolbar.textTitleError": "Erreur",
|
||||
"DE.Views.Toolbar.textToCurrent": "À la position actuelle",
|
||||
"DE.Views.Toolbar.textTop": "En haut: ",
|
||||
|
|
|
@ -1498,7 +1498,7 @@
|
|||
"DE.Views.Toolbar.textBottom": "Нижнее: ",
|
||||
"DE.Views.Toolbar.textCharts": "Диаграммы",
|
||||
"DE.Views.Toolbar.textColumn": "Гистограмма",
|
||||
"DE.Views.Toolbar.textColumnsCustom": "Custom Columns",
|
||||
"DE.Views.Toolbar.textColumnsCustom": "Настраиваемые колонки",
|
||||
"DE.Views.Toolbar.textColumnsLeft": "Слева",
|
||||
"DE.Views.Toolbar.textColumnsOne": "Одна",
|
||||
"DE.Views.Toolbar.textColumnsRight": "Справа",
|
||||
|
|
1636
apps/documenteditor/main/locale/sk.json
Normal file
1636
apps/documenteditor/main/locale/sk.json
Normal file
File diff suppressed because it is too large
Load diff
|
@ -279,7 +279,7 @@
|
|||
.button-normal-icon(btn-underline, 35, @toolbar-icon-size);
|
||||
.button-normal-icon(btn-undo, 36, @toolbar-icon-size);
|
||||
.button-normal-icon(btn-hidenchars, 37, @toolbar-icon-size);
|
||||
.button-normal-icon(btn-editheader, 39, @toolbar-icon-size);
|
||||
//.button-normal-icon(btn-editheader, 39, @toolbar-icon-size);
|
||||
.button-normal-icon(btn-mailrecepients, 40, @toolbar-icon-size);
|
||||
.button-normal-icon(btn-synch, 42, @toolbar-icon-size);
|
||||
.button-normal-icon(btn-save-coauth, 41, @toolbar-icon-size);
|
||||
|
|
378
apps/documenteditor/mobile/locale/cs.json
Normal file
378
apps/documenteditor/mobile/locale/cs.json
Normal file
|
@ -0,0 +1,378 @@
|
|||
{
|
||||
"Common.UI.ThemeColorPalette.textStandartColors": "Standardní barvy",
|
||||
"Common.UI.ThemeColorPalette.textThemeColors": "Barvy tématu",
|
||||
"Common.Utils.Metric.txtCm": "cm",
|
||||
"Common.Utils.Metric.txtPt": "pt",
|
||||
"DE.Controllers.AddContainer.textImage": "Obrázek",
|
||||
"DE.Controllers.AddContainer.textOther": "Ostatní",
|
||||
"DE.Controllers.AddContainer.textShape": "Tvar",
|
||||
"DE.Controllers.AddContainer.textTable": "Tabulka",
|
||||
"DE.Controllers.AddImage.textEmptyImgUrl": "Musíte upřesnit URL obrázku.",
|
||||
"DE.Controllers.AddImage.txtNotUrl": "Toto pole by mělo obsahovat adresu URL ve formátu \"http://www.example.com\"",
|
||||
"DE.Controllers.AddOther.txtNotUrl": "Toto pole by mělo obsahovat adresu URL ve formátu \"http://www.example.com\"",
|
||||
"DE.Controllers.AddTable.textCancel": "Zrušit",
|
||||
"DE.Controllers.AddTable.textColumns": "Sloupce",
|
||||
"DE.Controllers.AddTable.textRows": "Řádky",
|
||||
"DE.Controllers.AddTable.textTableSize": "Velikost tabulky",
|
||||
"DE.Controllers.DocumentHolder.menuAddLink": "Přidat odkaz",
|
||||
"DE.Controllers.DocumentHolder.menuCopy": "Kopírovat",
|
||||
"DE.Controllers.DocumentHolder.menuCut": "Vyjmout",
|
||||
"DE.Controllers.DocumentHolder.menuDelete": "Odstranit",
|
||||
"DE.Controllers.DocumentHolder.menuEdit": "Upravit",
|
||||
"DE.Controllers.DocumentHolder.menuMore": "Více",
|
||||
"DE.Controllers.DocumentHolder.menuOpenLink": "Otevřít odkaz",
|
||||
"DE.Controllers.DocumentHolder.menuPaste": "Vložit",
|
||||
"DE.Controllers.DocumentHolder.sheetCancel": "Zrušit",
|
||||
"DE.Controllers.DocumentHolder.textGuest": "Návštěvník",
|
||||
"DE.Controllers.EditContainer.textChart": "Graf",
|
||||
"DE.Controllers.EditContainer.textHyperlink": "Hypertextový odkaz",
|
||||
"DE.Controllers.EditContainer.textImage": "Obrázek",
|
||||
"DE.Controllers.EditContainer.textParagraph": "Odstavec",
|
||||
"DE.Controllers.EditContainer.textSettings": "Nastavení",
|
||||
"DE.Controllers.EditContainer.textShape": "Tvar",
|
||||
"DE.Controllers.EditContainer.textTable": "Tabulka",
|
||||
"DE.Controllers.EditContainer.textText": "Text",
|
||||
"DE.Controllers.EditImage.textEmptyImgUrl": "Musíte upřesnit URL obrázku.",
|
||||
"DE.Controllers.EditImage.txtNotUrl": "Toto pole by mělo obsahovat adresu URL ve formátu \"http://www.example.com\"",
|
||||
"DE.Controllers.EditText.textAuto": "Automaticky",
|
||||
"DE.Controllers.EditText.textFonts": "Fonty",
|
||||
"DE.Controllers.EditText.textPt": "pt",
|
||||
"DE.Controllers.Main.advDRMEnterPassword": "Zadejte vaše heslo:",
|
||||
"DE.Controllers.Main.advDRMOptions": "Chráněný soubor",
|
||||
"DE.Controllers.Main.advDRMPassword": "Heslo",
|
||||
"DE.Controllers.Main.advTxtOptions": "Zvolte TXT možnosti",
|
||||
"DE.Controllers.Main.applyChangesTextText": "Načítání dat...",
|
||||
"DE.Controllers.Main.applyChangesTitleText": "Načítání dat",
|
||||
"DE.Controllers.Main.convertationTimeoutText": "Vypršel čas konverze.",
|
||||
"DE.Controllers.Main.criticalErrorExtText": "Stisknutím tlačítka \"OK\" se vrátíte do seznamu dokumentů.",
|
||||
"DE.Controllers.Main.criticalErrorTitle": "Chyba",
|
||||
"DE.Controllers.Main.defaultTitleText": "ONLYOFFICE Editor dokumentů",
|
||||
"DE.Controllers.Main.downloadErrorText": "Stahování selhalo.",
|
||||
"DE.Controllers.Main.downloadMergeText": "Stahování...",
|
||||
"DE.Controllers.Main.downloadMergeTitle": "Stahuji",
|
||||
"DE.Controllers.Main.downloadTextText": "Stahování dokumentu...",
|
||||
"DE.Controllers.Main.downloadTitleText": "Stahování dokumentu",
|
||||
"DE.Controllers.Main.errorBadImageUrl": "Adresa URL obrázku je nesprávná",
|
||||
"DE.Controllers.Main.errorCoAuthoringDisconnect": "Serverové připojení bylo ztraceno. Nadále nemůžete editovat.",
|
||||
"DE.Controllers.Main.errorConnectToServer": "Dokument nelze uložit. Prosím, zkontrolujte nastavení vašeho připojení nebo kontaktujte vašeho administrátora.<br> Při kliknutí na tlačítko \"OK\" budete vyzváni ke stažení dokumentu.<br><br> Více informací o připojení najdete v Dokumentovém serveru <a href=\"https://api.onlyoffice.com/editors/callback\" target=\"_blank\">here</a>",
|
||||
"DE.Controllers.Main.errorDatabaseConnection": "Externí chyba.<br>Chyba připojení k databázi. Prosím, kontaktujte podporu.",
|
||||
"DE.Controllers.Main.errorDataRange": "Nesprávný datový rozsah.",
|
||||
"DE.Controllers.Main.errorDefaultMessage": "Kód chyby: %1",
|
||||
"DE.Controllers.Main.errorFilePassProtect": "Dokument je chráněn heslem.",
|
||||
"DE.Controllers.Main.errorKeyEncrypt": "Neznámý klíč deskriptoru",
|
||||
"DE.Controllers.Main.errorKeyExpire": "Klíč deskriptoru vypršel",
|
||||
"DE.Controllers.Main.errorMailMergeLoadFile": "Načítání selhalo",
|
||||
"DE.Controllers.Main.errorMailMergeSaveFile": "Spojování selhalo.",
|
||||
"DE.Controllers.Main.errorProcessSaveResult": "Ukládání selhalo.",
|
||||
"DE.Controllers.Main.errorServerVersion": "Verze editoru byla aktualizována. Stránka bude znovu načtena, aby se provedly změny.",
|
||||
"DE.Controllers.Main.errorStockChart": "Nespravné pořadí řádků. Chcete-li vytvořit burzovní graf umístěte data na list v následujícím pořadí:<br> otevírací cena, maximální cena, minimální cena, uzavírací cena.",
|
||||
"DE.Controllers.Main.errorUpdateVersion": "Verze souboru byla změněna. Stránka bude znovu načtena.",
|
||||
"DE.Controllers.Main.errorUserDrop": "Tento soubor není nyní přístupný.",
|
||||
"DE.Controllers.Main.errorUsersExceed": "Počet uživatelů byl překročen",
|
||||
"DE.Controllers.Main.errorViewerDisconnect": "Spojení je přerušeno. Stále můžete zobrazit dokument,<br>ale nebudete moci stahovat, dokud neobnovíte připojení.",
|
||||
"DE.Controllers.Main.leavePageText": "V tomto dokumentu máte neuložené změny. Klikněte na tlačítko \"Zůstat na této stránce\" a počkejte na automatické ukládání dokumentu.Klikněte na tlačítko \"Opustit tuto stránku\", abyste zrušili všechny neuložené změny.",
|
||||
"DE.Controllers.Main.loadFontsTextText": "Načítání dat...",
|
||||
"DE.Controllers.Main.loadFontsTitleText": "Načítání dat",
|
||||
"DE.Controllers.Main.loadFontTextText": "Načítání dat...",
|
||||
"DE.Controllers.Main.loadFontTitleText": "Načítání dat",
|
||||
"DE.Controllers.Main.loadImagesTextText": "Načítání obrázků...",
|
||||
"DE.Controllers.Main.loadImagesTitleText": "Načítání obrázků",
|
||||
"DE.Controllers.Main.loadImageTextText": "Načítání obrázku...",
|
||||
"DE.Controllers.Main.loadImageTitleText": "Načítání obrázku",
|
||||
"DE.Controllers.Main.loadingDocumentTextText": "Načítám dokument...",
|
||||
"DE.Controllers.Main.loadingDocumentTitleText": "Načítání dokumentu",
|
||||
"DE.Controllers.Main.mailMergeLoadFileText": "Načítání datového zdroje...",
|
||||
"DE.Controllers.Main.mailMergeLoadFileTitle": "Načítání datového zdroje",
|
||||
"DE.Controllers.Main.notcriticalErrorTitle": "Varování",
|
||||
"DE.Controllers.Main.openErrorText": "Při otevírání souboru došlo k chybě",
|
||||
"DE.Controllers.Main.openTextText": "Otevírání dokumentu...",
|
||||
"DE.Controllers.Main.openTitleText": "Otevírání dokumentu",
|
||||
"DE.Controllers.Main.printTextText": "Tisknutí dokumentu...",
|
||||
"DE.Controllers.Main.printTitleText": "Tisknutí dokumentu",
|
||||
"DE.Controllers.Main.saveErrorText": "Během ukládání souboru došlo k chybě",
|
||||
"DE.Controllers.Main.savePreparingText": "Příprava na ukládání",
|
||||
"DE.Controllers.Main.savePreparingTitle": "Příprava ukládání. Prosím čekejte...",
|
||||
"DE.Controllers.Main.saveTextText": "Ukládání dokumentu...",
|
||||
"DE.Controllers.Main.saveTitleText": "Ukládání dokumentu",
|
||||
"DE.Controllers.Main.sendMergeText": "Odesílaní hromadné zprávy...",
|
||||
"DE.Controllers.Main.sendMergeTitle": "Odesílaní hromadné zprávy",
|
||||
"DE.Controllers.Main.splitDividerErrorText": "Počet řádků musí být dělitelem 1%",
|
||||
"DE.Controllers.Main.splitMaxColsErrorText": "Počet sloupců musí být menší než 1%",
|
||||
"DE.Controllers.Main.splitMaxRowsErrorText": "Počet řádků musí být menší než 1%",
|
||||
"DE.Controllers.Main.textAnonymous": "Anonymní",
|
||||
"DE.Controllers.Main.textBack": "Zpět",
|
||||
"DE.Controllers.Main.textBuyNow": "Navštívit webovou stránku",
|
||||
"DE.Controllers.Main.textCancel": "Zrušit",
|
||||
"DE.Controllers.Main.textClose": "Zavřít",
|
||||
"DE.Controllers.Main.textContactUs": "Kontaktujte prodejce",
|
||||
"DE.Controllers.Main.textDone": "Hotovo",
|
||||
"DE.Controllers.Main.textLoadingDocument": "Načítání dokumentu",
|
||||
"DE.Controllers.Main.textNoLicenseTitle": "ONLYOFFICE open source verze",
|
||||
"DE.Controllers.Main.textOK": "OK",
|
||||
"DE.Controllers.Main.textPassword": "Heslo",
|
||||
"DE.Controllers.Main.textPreloader": "Nahrávám ...",
|
||||
"DE.Controllers.Main.textTryUndoRedo": "Funkce zpět/zopakovat jsou vypnuty pro rychlý co-editační režim.",
|
||||
"DE.Controllers.Main.textUsername": "Uživatelské jméno ",
|
||||
"DE.Controllers.Main.titleLicenseExp": "Platnost licence vypršela",
|
||||
"DE.Controllers.Main.titleServerVersion": "Editor byl aktualizován",
|
||||
"DE.Controllers.Main.titleUpdateVersion": "Verze změněna",
|
||||
"DE.Controllers.Main.txtArt": "Zde napište text",
|
||||
"DE.Controllers.Main.txtDiagramTitle": "Nadpis grafu",
|
||||
"DE.Controllers.Main.txtEditingMode": "Nastavit editační režim...",
|
||||
"DE.Controllers.Main.txtSeries": "Řady",
|
||||
"DE.Controllers.Main.txtStyle_Heading_1": "Nadpis 1",
|
||||
"DE.Controllers.Main.txtStyle_Heading_2": "Nadpis 2",
|
||||
"DE.Controllers.Main.txtStyle_Heading_3": "Nadpis 3",
|
||||
"DE.Controllers.Main.txtStyle_Heading_4": "Nadpis 4",
|
||||
"DE.Controllers.Main.txtStyle_Heading_5": "Nadpis 5",
|
||||
"DE.Controllers.Main.txtStyle_Heading_6": "Nadpis 6",
|
||||
"DE.Controllers.Main.txtStyle_Heading_7": "Nadpis 7",
|
||||
"DE.Controllers.Main.txtStyle_Heading_8": "Nadpis 8",
|
||||
"DE.Controllers.Main.txtStyle_Heading_9": "Nadpis 9",
|
||||
"DE.Controllers.Main.txtStyle_Intense_Quote": "Výrazný citát",
|
||||
"DE.Controllers.Main.txtStyle_List_Paragraph": "Seznam odstavce",
|
||||
"DE.Controllers.Main.txtStyle_No_Spacing": "Žádné mezery",
|
||||
"DE.Controllers.Main.txtStyle_Normal": "Normální",
|
||||
"DE.Controllers.Main.txtStyle_Quote": "Citát",
|
||||
"DE.Controllers.Main.txtStyle_Subtitle": "Podtitul",
|
||||
"DE.Controllers.Main.txtStyle_Title": "Název",
|
||||
"DE.Controllers.Main.txtXAxis": "Osa X",
|
||||
"DE.Controllers.Main.txtYAxis": "Osa Y",
|
||||
"DE.Controllers.Main.unknownErrorText": "Neznámá chyba.",
|
||||
"DE.Controllers.Main.unsupportedBrowserErrorText": "Váš prohlížeč není podporován.",
|
||||
"DE.Controllers.Main.uploadImageExtMessage": "Neznámý formát obrázku.",
|
||||
"DE.Controllers.Main.uploadImageFileCountMessage": "Žádné obrázky nenahrány.",
|
||||
"DE.Controllers.Main.uploadImageSizeMessage": "Překročen maximální limit velikosti obrázku.",
|
||||
"DE.Controllers.Main.uploadImageTextText": "Nahrávání obrázku...",
|
||||
"DE.Controllers.Main.uploadImageTitleText": "Nahrávání obrázku",
|
||||
"DE.Controllers.Main.warnLicenseExp": "Platnost vaší licence vypršela.<br>Prosím, aktualizujte vaší licenci a obnovte stránku.",
|
||||
"DE.Controllers.Main.warnNoLicense": "Používáte verzi open source ONLYOFFICE. Verze má omezení pro souběžné připojení k dokumentovému serveru (20 připojení najednou).<br>Pokud budete potřebovat více, tak prosím zvažte koupi komerční licence.",
|
||||
"DE.Controllers.Main.warnProcessRightsChange": "Bylo Vám odebráno právo upravovat tento soubor.",
|
||||
"DE.Controllers.Search.textNoTextFound": "Text nebyl nalezen",
|
||||
"DE.Controllers.Search.textReplaceAll": "Nahradit vše",
|
||||
"DE.Controllers.Settings.notcriticalErrorTitle": "Varování",
|
||||
"DE.Controllers.Settings.txtLoading": "Nahrávám ...",
|
||||
"DE.Controllers.Settings.unknownText": "Neznámý",
|
||||
"DE.Controllers.Settings.warnDownloadAs": "Pokud budete pokračovat v ukládání v tomto formátu, vše kromě textu bude ztraceno.<br>Opravdu chcete pokračovat?",
|
||||
"DE.Controllers.Toolbar.dlgLeaveMsgText": "V tomto dokumentu máte neuložené změny. Klikněte na tlačítko \"Zůstat na této stránce\" a počkejte na automatické ukládání dokumentu.Klikněte na tlačítko \"Opustit tuto stránku\", abyste zrušili všechny neuložené změny.",
|
||||
"DE.Controllers.Toolbar.dlgLeaveTitleText": "Opouštíte aplikaci",
|
||||
"DE.Controllers.Toolbar.leaveButtonText": "Opustit tuto stránku",
|
||||
"DE.Controllers.Toolbar.stayButtonText": "Zůstat na této stránce",
|
||||
"DE.Views.AddImage.textAddress": "Adresa",
|
||||
"DE.Views.AddImage.textBack": "Zpět",
|
||||
"DE.Views.AddImage.textFromLibrary": "Obrázek z knihovny",
|
||||
"DE.Views.AddImage.textFromURL": "Obrázek z adresy URL",
|
||||
"DE.Views.AddImage.textImageURL": "URL obrázku",
|
||||
"DE.Views.AddImage.textInsertImage": "Vložit obrázek",
|
||||
"DE.Views.AddImage.textLinkSettings": "Nastavení odkazů",
|
||||
"DE.Views.AddOther.textAddLink": "Přidat odkaz",
|
||||
"DE.Views.AddOther.textBack": "Zpět",
|
||||
"DE.Views.AddOther.textCenterBottom": "Uprostřed",
|
||||
"DE.Views.AddOther.textCenterTop": "Nahoře uprostřed",
|
||||
"DE.Views.AddOther.textColumnBreak": "Zalomení sloupce",
|
||||
"DE.Views.AddOther.textContPage": "Souvislá stránka",
|
||||
"DE.Views.AddOther.textCurrentPos": "Aktuální pozice",
|
||||
"DE.Views.AddOther.textDisplay": "Zobrazit",
|
||||
"DE.Views.AddOther.textEvenPage": "Sudá stránka",
|
||||
"DE.Views.AddOther.textInsert": "Vložit",
|
||||
"DE.Views.AddOther.textLeftBottom": "Vlevo dole",
|
||||
"DE.Views.AddOther.textLeftTop": "Vlevo nahoře",
|
||||
"DE.Views.AddOther.textLink": "Odkaz",
|
||||
"DE.Views.AddOther.textNextPage": "Další stránka",
|
||||
"DE.Views.AddOther.textOddPage": "Lichá stránka",
|
||||
"DE.Views.AddOther.textPageBreak": "Rozdělení stránky",
|
||||
"DE.Views.AddOther.textPageNumber": "Číslo stránky",
|
||||
"DE.Views.AddOther.textPosition": "Pozice",
|
||||
"DE.Views.AddOther.textRightBottom": "Vpravo dole",
|
||||
"DE.Views.AddOther.textRightTop": "Vpravo nahoře",
|
||||
"DE.Views.AddOther.textSectionBreak": "Konec oddílu",
|
||||
"DE.Views.AddOther.textTip": "Nápověda",
|
||||
"DE.Views.EditChart.textAlign": "Zarovnat",
|
||||
"DE.Views.EditChart.textBack": "Zpět",
|
||||
"DE.Views.EditChart.textBackward": "Posunout zpět",
|
||||
"DE.Views.EditChart.textBehind": "Za",
|
||||
"DE.Views.EditChart.textBorder": "Ohraničení",
|
||||
"DE.Views.EditChart.textColor": "Barva",
|
||||
"DE.Views.EditChart.textDistanceText": "Vzdálenost od textu",
|
||||
"DE.Views.EditChart.textFill": "Výplň",
|
||||
"DE.Views.EditChart.textForward": "Posunout vpřed",
|
||||
"DE.Views.EditChart.textInFront": "Vpředu",
|
||||
"DE.Views.EditChart.textInline": "Rovnoběžně s textem",
|
||||
"DE.Views.EditChart.textMoveText": "Přemístit s textem",
|
||||
"DE.Views.EditChart.textOverlap": "Povolit překrytí",
|
||||
"DE.Views.EditChart.textRemoveChart": "Odstranit graf",
|
||||
"DE.Views.EditChart.textReorder": "Přerovnat",
|
||||
"DE.Views.EditChart.textSize": "Velikost",
|
||||
"DE.Views.EditChart.textSquare": "Čtverec",
|
||||
"DE.Views.EditChart.textStyle": "Styl",
|
||||
"DE.Views.EditChart.textThrough": "Přes",
|
||||
"DE.Views.EditChart.textTight": "Těsný",
|
||||
"DE.Views.EditChart.textToBackground": "Přesunout do pozadí",
|
||||
"DE.Views.EditChart.textToForeground": "Přenést do popředí",
|
||||
"DE.Views.EditChart.textTopBottom": "Nahoře a dole",
|
||||
"DE.Views.EditChart.textType": "Typ",
|
||||
"DE.Views.EditChart.textWrap": "Zabalit",
|
||||
"DE.Views.EditHyperlink.textDisplay": "Zobrazit",
|
||||
"DE.Views.EditHyperlink.textEdit": "Upravit odkaz",
|
||||
"DE.Views.EditHyperlink.textLink": "Odkaz",
|
||||
"DE.Views.EditHyperlink.textRemove": "Odstranit odkaz",
|
||||
"DE.Views.EditHyperlink.textTip": "Nápověda",
|
||||
"DE.Views.EditImage.textAddress": "Adresa",
|
||||
"DE.Views.EditImage.textAlign": "Zarovnat",
|
||||
"DE.Views.EditImage.textBack": "Zpět",
|
||||
"DE.Views.EditImage.textBackward": "Posunout zpět",
|
||||
"DE.Views.EditImage.textBehind": "Za",
|
||||
"DE.Views.EditImage.textDefault": "Výchozí velikost",
|
||||
"DE.Views.EditImage.textDistanceText": "Vzdálenost od textu",
|
||||
"DE.Views.EditImage.textForward": "Posunout vpřed",
|
||||
"DE.Views.EditImage.textFromLibrary": "Obrázek z knihovny",
|
||||
"DE.Views.EditImage.textFromURL": "Obrázek z adresy URL",
|
||||
"DE.Views.EditImage.textImageURL": "URL obrázku",
|
||||
"DE.Views.EditImage.textInFront": "Vpředu",
|
||||
"DE.Views.EditImage.textInline": "Rovnoběžně s textem",
|
||||
"DE.Views.EditImage.textLinkSettings": "Nastavení odkazů",
|
||||
"DE.Views.EditImage.textMoveText": "Přemístit s textem",
|
||||
"DE.Views.EditImage.textOverlap": "Povolit překrytí",
|
||||
"DE.Views.EditImage.textRemove": "Odstranit obrázek",
|
||||
"DE.Views.EditImage.textReorder": "Přerovnat",
|
||||
"DE.Views.EditImage.textReplace": "Nahradit",
|
||||
"DE.Views.EditImage.textReplaceImg": "Nahradit obrázek",
|
||||
"DE.Views.EditImage.textSquare": "Čtverec",
|
||||
"DE.Views.EditImage.textThrough": "Přes",
|
||||
"DE.Views.EditImage.textTight": "Těsný",
|
||||
"DE.Views.EditImage.textToBackground": "Přesunout do pozadí",
|
||||
"DE.Views.EditImage.textToForeground": "Přenést do popředí",
|
||||
"DE.Views.EditImage.textTopBottom": "Nahoře a dole",
|
||||
"DE.Views.EditImage.textWrap": "Zabalit",
|
||||
"DE.Views.EditParagraph.textAdvanced": "Pokročilý",
|
||||
"DE.Views.EditParagraph.textAdvSettings": "Pokročilé nastavení",
|
||||
"DE.Views.EditParagraph.textAfter": "za",
|
||||
"DE.Views.EditParagraph.textAuto": "Automaticky",
|
||||
"DE.Views.EditParagraph.textBack": "Zpět",
|
||||
"DE.Views.EditParagraph.textBackground": "Pozadí",
|
||||
"DE.Views.EditParagraph.textBefore": "Před",
|
||||
"DE.Views.EditParagraph.textFromText": "Vzdálenost od textu",
|
||||
"DE.Views.EditParagraph.textKeepLines": "Ponechat řádky pohromadě",
|
||||
"DE.Views.EditParagraph.textKeepNext": "Zachovat s dalším",
|
||||
"DE.Views.EditParagraph.textOrphan": "Kontrola osamocených řádků",
|
||||
"DE.Views.EditParagraph.textPageBreak": "Rozdělit stránku před",
|
||||
"DE.Views.EditParagraph.textPrgStyles": "Styly odstavce",
|
||||
"DE.Views.EditParagraph.textSpaceBetween": "Mezera mezi odstavci",
|
||||
"DE.Views.EditShape.textAlign": "Zarovnat",
|
||||
"DE.Views.EditShape.textBack": "Zpět",
|
||||
"DE.Views.EditShape.textBackward": "Posunout zpět",
|
||||
"DE.Views.EditShape.textBehind": "Za",
|
||||
"DE.Views.EditShape.textBorder": "Ohraničení",
|
||||
"DE.Views.EditShape.textColor": "Barva",
|
||||
"DE.Views.EditShape.textEffects": "Efekty",
|
||||
"DE.Views.EditShape.textFill": "Výplň",
|
||||
"DE.Views.EditShape.textForward": "Posunout vpřed",
|
||||
"DE.Views.EditShape.textFromText": "Vzdálenost od textu",
|
||||
"DE.Views.EditShape.textInFront": "Vpředu",
|
||||
"DE.Views.EditShape.textInline": "Rovnoběžně s textem",
|
||||
"DE.Views.EditShape.textOpacity": "Průhlednost",
|
||||
"DE.Views.EditShape.textOverlap": "Povolit překrytí",
|
||||
"DE.Views.EditShape.textRemoveShape": "Odstranit formu",
|
||||
"DE.Views.EditShape.textReorder": "Přerovnat",
|
||||
"DE.Views.EditShape.textReplace": "Nahradit",
|
||||
"DE.Views.EditShape.textSize": "Velikost",
|
||||
"DE.Views.EditShape.textSquare": "Čtverec",
|
||||
"DE.Views.EditShape.textStyle": "Styl",
|
||||
"DE.Views.EditShape.textThrough": "Přes",
|
||||
"DE.Views.EditShape.textTight": "Těsný",
|
||||
"DE.Views.EditShape.textToBackground": "Přesunout do pozadí",
|
||||
"DE.Views.EditShape.textToForeground": "Přenést do popředí",
|
||||
"DE.Views.EditShape.textTopAndBottom": "Nahoře a dole",
|
||||
"DE.Views.EditShape.textWithText": "Přemístit s textem",
|
||||
"DE.Views.EditShape.textWrap": "Zabalit",
|
||||
"DE.Views.EditTable.textAlign": "Zarovnat",
|
||||
"DE.Views.EditTable.textBack": "Zpět",
|
||||
"DE.Views.EditTable.textBandedColumn": "Pruhovaný sloupec",
|
||||
"DE.Views.EditTable.textBandedRow": "Pruhovaný řádek",
|
||||
"DE.Views.EditTable.textBorder": "Ohraničení",
|
||||
"DE.Views.EditTable.textCellMargins": "Okraje buňky",
|
||||
"DE.Views.EditTable.textColor": "Barva",
|
||||
"DE.Views.EditTable.textFill": "Výplň",
|
||||
"DE.Views.EditTable.textFirstColumn": "První sloupec",
|
||||
"DE.Views.EditTable.textFlow": "Flow",
|
||||
"DE.Views.EditTable.textFromText": "Vzdálenost od textu",
|
||||
"DE.Views.EditTable.textHeaderRow": "Řádek záhlaví",
|
||||
"DE.Views.EditTable.textInline": "Rovnoběžně s textem",
|
||||
"DE.Views.EditTable.textLastColumn": "Poslední sloupec",
|
||||
"DE.Views.EditTable.textOptions": "Možnosti",
|
||||
"DE.Views.EditTable.textRemoveTable": "Odstranit tabulku",
|
||||
"DE.Views.EditTable.textRepeatHeader": "Opakujte jako řádek záhlaví",
|
||||
"DE.Views.EditTable.textResizeFit": "Změnit velikost pro přizpůsobení obsahu",
|
||||
"DE.Views.EditTable.textSize": "Velikost",
|
||||
"DE.Views.EditTable.textStyle": "Styl",
|
||||
"DE.Views.EditTable.textStyleOptions": "Možnosti stylu",
|
||||
"DE.Views.EditTable.textTableOptions": "Možnosti tabulky",
|
||||
"DE.Views.EditTable.textTotalRow": "Řádek souhrnů",
|
||||
"DE.Views.EditTable.textWithText": "Přemístit s textem",
|
||||
"DE.Views.EditTable.textWrap": "Zabalit",
|
||||
"DE.Views.EditText.textAdditional": "Další",
|
||||
"DE.Views.EditText.textAdditionalFormat": "Další formátování",
|
||||
"DE.Views.EditText.textAllCaps": "Všechno velkým",
|
||||
"DE.Views.EditText.textAutomatic": "Automaticky",
|
||||
"DE.Views.EditText.textBack": "Zpět",
|
||||
"DE.Views.EditText.textBullets": "Odrážky",
|
||||
"DE.Views.EditText.textDblStrikethrough": "Dvojité přeškrtnutí",
|
||||
"DE.Views.EditText.textDblSuperscript": "Horní index",
|
||||
"DE.Views.EditText.textFontColor": "Barva písma",
|
||||
"DE.Views.EditText.textFontColors": "Barvy písma",
|
||||
"DE.Views.EditText.textFonts": "Fonty",
|
||||
"DE.Views.EditText.textHighlightColor": "Barva zvýraznění",
|
||||
"DE.Views.EditText.textHighlightColors": "Barvy zvíraznění",
|
||||
"DE.Views.EditText.textLetterSpacing": "Rozestup mezi písmeny",
|
||||
"DE.Views.EditText.textLineSpacing": "Řádkování",
|
||||
"DE.Views.EditText.textNone": "žádný",
|
||||
"DE.Views.EditText.textNumbers": "Čísla",
|
||||
"DE.Views.EditText.textSize": "Velikost",
|
||||
"DE.Views.EditText.textSmallCaps": "Malá písmena",
|
||||
"DE.Views.EditText.textStrikethrough": "Přeškrtnutí",
|
||||
"DE.Views.EditText.textSubscript": "Dolní index",
|
||||
"DE.Views.Search.textCase": "Rozlišovat malá a velká písmena",
|
||||
"DE.Views.Search.textDone": "Hotovo",
|
||||
"DE.Views.Search.textFind": "Najít",
|
||||
"DE.Views.Search.textFindAndReplace": "Najít a nahradit",
|
||||
"DE.Views.Search.textHighlight": "Zvýraznit výsledky",
|
||||
"DE.Views.Search.textReplace": "Nahradit",
|
||||
"DE.Views.Search.textSearch": "Hledat",
|
||||
"DE.Views.Settings.textAbout": "O",
|
||||
"DE.Views.Settings.textAddress": "Adresa",
|
||||
"DE.Views.Settings.textAuthor": "Autor",
|
||||
"DE.Views.Settings.textBack": "Zpět",
|
||||
"DE.Views.Settings.textCreateDate": "Datum vytvoření",
|
||||
"DE.Views.Settings.textCustom": "Vlastní",
|
||||
"DE.Views.Settings.textCustomSize": "Vlastní velikost",
|
||||
"DE.Views.Settings.textDocInfo": "Informace dokumentu",
|
||||
"DE.Views.Settings.textDocTitle": "Titulek dokumentu",
|
||||
"DE.Views.Settings.textDocumentFormats": "Formáty dokumentu",
|
||||
"DE.Views.Settings.textDocumentSettings": "Nastavení dokumentu",
|
||||
"DE.Views.Settings.textDone": "Hotovo",
|
||||
"DE.Views.Settings.textDownload": "Stáhnout",
|
||||
"DE.Views.Settings.textDownloadAs": "Stáhnout jako...",
|
||||
"DE.Views.Settings.textEditDoc": "Upravit dokument",
|
||||
"DE.Views.Settings.textEmail": "E-mail",
|
||||
"DE.Views.Settings.textFind": "Najít",
|
||||
"DE.Views.Settings.textFindAndReplace": "Najít a nahradit",
|
||||
"DE.Views.Settings.textFormat": "Formát",
|
||||
"DE.Views.Settings.textHelp": "Nápověda",
|
||||
"DE.Views.Settings.textLandscape": "Na šířku",
|
||||
"DE.Views.Settings.textLoading": "Nahrávám ...",
|
||||
"DE.Views.Settings.textOrientation": "Orientace",
|
||||
"DE.Views.Settings.textPages": "Stránky",
|
||||
"DE.Views.Settings.textParagraphs": "Odstavce",
|
||||
"DE.Views.Settings.textPortrait": "Na výšku",
|
||||
"DE.Views.Settings.textPoweredBy": "Poháněno",
|
||||
"DE.Views.Settings.textReader": "Čtecí režim",
|
||||
"DE.Views.Settings.textSettings": "Nastavení",
|
||||
"DE.Views.Settings.textSpaces": "Mezery",
|
||||
"DE.Views.Settings.textStatistic": "Statistika",
|
||||
"DE.Views.Settings.textSymbols": "Symboly",
|
||||
"DE.Views.Settings.textTel": "Sdělit",
|
||||
"DE.Views.Settings.textVersion": "Verze",
|
||||
"DE.Views.Settings.textWords": "Slova",
|
||||
"DE.Views.Settings.unknownText": "Neznámý",
|
||||
"DE.Views.Toolbar.textBack": "Zpět"
|
||||
}
|
|
@ -120,6 +120,22 @@
|
|||
"DE.Controllers.Main.txtDiagramTitle": "Diagrammtitel",
|
||||
"DE.Controllers.Main.txtEditingMode": "Bearbeitungsmodus einschalten...",
|
||||
"DE.Controllers.Main.txtSeries": "Reihen",
|
||||
"DE.Controllers.Main.txtStyle_Heading_1": "Heading 1",
|
||||
"DE.Controllers.Main.txtStyle_Heading_2": "Heading 2",
|
||||
"DE.Controllers.Main.txtStyle_Heading_3": "Heading 3",
|
||||
"DE.Controllers.Main.txtStyle_Heading_4": "Heading 4",
|
||||
"DE.Controllers.Main.txtStyle_Heading_5": "Heading 5",
|
||||
"DE.Controllers.Main.txtStyle_Heading_6": "Heading 6",
|
||||
"DE.Controllers.Main.txtStyle_Heading_7": "Heading 7",
|
||||
"DE.Controllers.Main.txtStyle_Heading_8": "Heading 8",
|
||||
"DE.Controllers.Main.txtStyle_Heading_9": "Heading 9",
|
||||
"DE.Controllers.Main.txtStyle_Intense_Quote": "Intensives Zitat",
|
||||
"DE.Controllers.Main.txtStyle_List_Paragraph": "Listenabsatz",
|
||||
"DE.Controllers.Main.txtStyle_No_Spacing": "Kein Abstand",
|
||||
"DE.Controllers.Main.txtStyle_Normal": "Normal",
|
||||
"DE.Controllers.Main.txtStyle_Quote": "Zitat",
|
||||
"DE.Controllers.Main.txtStyle_Subtitle": "Untertitel",
|
||||
"DE.Controllers.Main.txtStyle_Title": "Titel",
|
||||
"DE.Controllers.Main.txtXAxis": "x-Achse",
|
||||
"DE.Controllers.Main.txtYAxis": "y-Achse",
|
||||
"DE.Controllers.Main.unknownErrorText": "Unbekannter Fehler.",
|
||||
|
@ -348,6 +364,7 @@
|
|||
"DE.Views.Settings.textPages": "Seiten",
|
||||
"DE.Views.Settings.textParagraphs": "Absätze",
|
||||
"DE.Views.Settings.textPortrait": "Hochformat",
|
||||
"DE.Views.Settings.textPoweredBy": "Betrieben von",
|
||||
"DE.Views.Settings.textReader": "Lesemodus",
|
||||
"DE.Views.Settings.textSettings": "Einstellungen",
|
||||
"DE.Views.Settings.textSpaces": "Abstände",
|
||||
|
|
|
@ -120,6 +120,22 @@
|
|||
"DE.Controllers.Main.txtDiagramTitle": "Chart Title",
|
||||
"DE.Controllers.Main.txtEditingMode": "Set editing mode...",
|
||||
"DE.Controllers.Main.txtSeries": "Series",
|
||||
"DE.Controllers.Main.txtStyle_Heading_1": "Heading 1",
|
||||
"DE.Controllers.Main.txtStyle_Heading_2": "Heading 2",
|
||||
"DE.Controllers.Main.txtStyle_Heading_3": "Heading 3",
|
||||
"DE.Controllers.Main.txtStyle_Heading_4": "Heading 4",
|
||||
"DE.Controllers.Main.txtStyle_Heading_5": "Heading 5",
|
||||
"DE.Controllers.Main.txtStyle_Heading_6": "Heading 6",
|
||||
"DE.Controllers.Main.txtStyle_Heading_7": "Heading 7",
|
||||
"DE.Controllers.Main.txtStyle_Heading_8": "Heading 8",
|
||||
"DE.Controllers.Main.txtStyle_Heading_9": "Heading 9",
|
||||
"DE.Controllers.Main.txtStyle_Intense_Quote": "Intense Quote",
|
||||
"DE.Controllers.Main.txtStyle_List_Paragraph": "List Paragraph",
|
||||
"DE.Controllers.Main.txtStyle_No_Spacing": "No Spacing",
|
||||
"DE.Controllers.Main.txtStyle_Normal": "Normal",
|
||||
"DE.Controllers.Main.txtStyle_Quote": "Quote",
|
||||
"DE.Controllers.Main.txtStyle_Subtitle": "Subtitle",
|
||||
"DE.Controllers.Main.txtStyle_Title": "Title",
|
||||
"DE.Controllers.Main.txtXAxis": "X Axis",
|
||||
"DE.Controllers.Main.txtYAxis": "Y Axis",
|
||||
"DE.Controllers.Main.unknownErrorText": "Unknown error.",
|
||||
|
@ -132,22 +148,6 @@
|
|||
"DE.Controllers.Main.warnLicenseExp": "Your license has expired.<br>Please update your license and refresh the page.",
|
||||
"DE.Controllers.Main.warnNoLicense": "You are using an open source version of ONLYOFFICE. The version has limitations for concurrent connections to the document server (20 connections at a time).<br>If you need more please consider purchasing a commercial license.",
|
||||
"DE.Controllers.Main.warnProcessRightsChange": "You have been denied the right to edit the file.",
|
||||
"DE.Controllers.Main.txtStyle_Normal": "Normal",
|
||||
"DE.Controllers.Main.txtStyle_No_Spacing": "No Spacing",
|
||||
"DE.Controllers.Main.txtStyle_Heading_1": "Heading 1",
|
||||
"DE.Controllers.Main.txtStyle_Heading_2": "Heading 2",
|
||||
"DE.Controllers.Main.txtStyle_Heading_3": "Heading 3",
|
||||
"DE.Controllers.Main.txtStyle_Heading_4": "Heading 4",
|
||||
"DE.Controllers.Main.txtStyle_Heading_5": "Heading 5",
|
||||
"DE.Controllers.Main.txtStyle_Heading_6": "Heading 6",
|
||||
"DE.Controllers.Main.txtStyle_Heading_7": "Heading 7",
|
||||
"DE.Controllers.Main.txtStyle_Heading_8": "Heading 8",
|
||||
"DE.Controllers.Main.txtStyle_Heading_9": "Heading 9",
|
||||
"DE.Controllers.Main.txtStyle_Title": "Title",
|
||||
"DE.Controllers.Main.txtStyle_Subtitle": "Subtitle",
|
||||
"DE.Controllers.Main.txtStyle_Quote": "Quote",
|
||||
"DE.Controllers.Main.txtStyle_Intense_Quote": "Intense Quote",
|
||||
"DE.Controllers.Main.txtStyle_List_Paragraph": "List Paragraph",
|
||||
"DE.Controllers.Search.textNoTextFound": "Text not Found",
|
||||
"DE.Controllers.Search.textReplaceAll": "Replace All",
|
||||
"DE.Controllers.Settings.notcriticalErrorTitle": "Warning",
|
||||
|
|
|
@ -1,358 +1,378 @@
|
|||
{
|
||||
"Common.UI.ThemeColorPalette.textStandartColors": "Standard Colors",
|
||||
"Common.UI.ThemeColorPalette.textThemeColors": "Theme Colors",
|
||||
"Common.UI.ThemeColorPalette.textStandartColors": "Colores estándar",
|
||||
"Common.UI.ThemeColorPalette.textThemeColors": "Colores de tema",
|
||||
"Common.Utils.Metric.txtCm": "cm",
|
||||
"Common.Utils.Metric.txtPt": "pt",
|
||||
"DE.Controllers.AddContainer.textImage": "Image",
|
||||
"DE.Controllers.AddContainer.textOther": "Other",
|
||||
"DE.Controllers.AddContainer.textShape": "Shape",
|
||||
"DE.Controllers.AddContainer.textTable": "Table",
|
||||
"DE.Controllers.AddImage.textEmptyImgUrl": "You need to specify image URL.",
|
||||
"DE.Controllers.AddImage.txtNotUrl": "This field should be a URL in the 'http://www.example.com' format",
|
||||
"DE.Controllers.AddOther.txtNotUrl": "This field should be a URL in the 'http://www.example.com' format",
|
||||
"DE.Controllers.AddTable.textCancel": "Cancel",
|
||||
"DE.Controllers.AddTable.textColumns": "Columns",
|
||||
"DE.Controllers.AddTable.textRows": "Rows",
|
||||
"DE.Controllers.AddTable.textTableSize": "Table Size",
|
||||
"DE.Controllers.DocumentHolder.menuAddLink": "Add Link",
|
||||
"DE.Controllers.DocumentHolder.menuCopy": "Copy",
|
||||
"DE.Controllers.DocumentHolder.menuCut": "Cut",
|
||||
"DE.Controllers.DocumentHolder.menuDelete": "Delete",
|
||||
"DE.Controllers.DocumentHolder.menuEdit": "Edit",
|
||||
"DE.Controllers.DocumentHolder.menuOpenLink": "Open Link",
|
||||
"DE.Controllers.DocumentHolder.menuMore": "More",
|
||||
"DE.Controllers.DocumentHolder.sheetCancel": "Cancel",
|
||||
"DE.Controllers.DocumentHolder.menuPaste": "Paste",
|
||||
"DE.Controllers.DocumentHolder.textGuest": "Guest",
|
||||
"DE.Controllers.EditContainer.textChart": "Chart",
|
||||
"DE.Controllers.EditContainer.textHyperlink": "Hyperlink",
|
||||
"DE.Controllers.EditContainer.textImage": "Image",
|
||||
"DE.Controllers.EditContainer.textParagraph": "Paragraph",
|
||||
"DE.Controllers.EditContainer.textSettings": "Settings",
|
||||
"DE.Controllers.EditContainer.textShape": "Shape",
|
||||
"DE.Controllers.EditContainer.textTable": "Table",
|
||||
"DE.Controllers.EditContainer.textText": "Text",
|
||||
"DE.Controllers.EditImage.textEmptyImgUrl": "You need to specify image URL.",
|
||||
"DE.Controllers.EditImage.txtNotUrl": "This field should be a URL in the 'http://www.example.com' format",
|
||||
"DE.Controllers.AddContainer.textImage": "Imagen",
|
||||
"DE.Controllers.AddContainer.textOther": "Otro",
|
||||
"DE.Controllers.AddContainer.textShape": "Forma",
|
||||
"DE.Controllers.AddContainer.textTable": "Tabla",
|
||||
"DE.Controllers.AddImage.textEmptyImgUrl": "Hay que especificar URL de imagen.",
|
||||
"DE.Controllers.AddImage.txtNotUrl": "Este campo debe ser URL-dirección en el formato 'http://www.example.com'",
|
||||
"DE.Controllers.AddOther.txtNotUrl": "Este campo debe ser URL-dirección en el formato 'http://www.example.com'",
|
||||
"DE.Controllers.AddTable.textCancel": "Cancelar",
|
||||
"DE.Controllers.AddTable.textColumns": "Columnas",
|
||||
"DE.Controllers.AddTable.textRows": "Filas",
|
||||
"DE.Controllers.AddTable.textTableSize": "Tamaño de tabla",
|
||||
"DE.Controllers.DocumentHolder.menuAddLink": "Añadir enlace ",
|
||||
"DE.Controllers.DocumentHolder.menuCopy": "Copiar ",
|
||||
"DE.Controllers.DocumentHolder.menuCut": "Cortar",
|
||||
"DE.Controllers.DocumentHolder.menuDelete": "Eliminar",
|
||||
"DE.Controllers.DocumentHolder.menuEdit": "Editar",
|
||||
"DE.Controllers.DocumentHolder.menuMore": "Más",
|
||||
"DE.Controllers.DocumentHolder.menuOpenLink": "Abrir enlace",
|
||||
"DE.Controllers.DocumentHolder.menuPaste": "Pegar",
|
||||
"DE.Controllers.DocumentHolder.sheetCancel": "Cancelar",
|
||||
"DE.Controllers.DocumentHolder.textGuest": "Visitante",
|
||||
"DE.Controllers.EditContainer.textChart": "Gráfico",
|
||||
"DE.Controllers.EditContainer.textHyperlink": "Hiperenlace",
|
||||
"DE.Controllers.EditContainer.textImage": "Imagen",
|
||||
"DE.Controllers.EditContainer.textParagraph": "Párrafo",
|
||||
"DE.Controllers.EditContainer.textSettings": "Ajustes",
|
||||
"DE.Controllers.EditContainer.textShape": "Forma",
|
||||
"DE.Controllers.EditContainer.textTable": "Tabla",
|
||||
"DE.Controllers.EditContainer.textText": "Texto",
|
||||
"DE.Controllers.EditImage.textEmptyImgUrl": "Hay que especificar URL de imagen.",
|
||||
"DE.Controllers.EditImage.txtNotUrl": "Este campo debe ser URL-dirección en el formato 'http://www.example.com'",
|
||||
"DE.Controllers.EditText.textAuto": "Auto",
|
||||
"DE.Controllers.EditText.textFonts": "Fonts",
|
||||
"DE.Controllers.EditText.textFonts": "Fuentes",
|
||||
"DE.Controllers.EditText.textPt": "pt",
|
||||
"DE.Controllers.Main.advDRMEnterPassword": "Enter your password:",
|
||||
"DE.Controllers.Main.advDRMOptions": "Protected File",
|
||||
"DE.Controllers.Main.advDRMPassword": "Password",
|
||||
"DE.Controllers.Main.advTxtOptions": "Choose TXT Options",
|
||||
"DE.Controllers.Main.applyChangesTextText": "Loading data...",
|
||||
"DE.Controllers.Main.applyChangesTitleText": "Loading Data",
|
||||
"DE.Controllers.Main.convertationTimeoutText": "Conversion timeout exceeded.",
|
||||
"DE.Controllers.Main.criticalErrorExtText": "Press 'OK' to return to document list.",
|
||||
"DE.Controllers.Main.advDRMEnterPassword": "Introduzca su contraseña:",
|
||||
"DE.Controllers.Main.advDRMOptions": "Archivo protegido",
|
||||
"DE.Controllers.Main.advDRMPassword": "Contraseña",
|
||||
"DE.Controllers.Main.advTxtOptions": "Elegir opciones de archivo TXT",
|
||||
"DE.Controllers.Main.applyChangesTextText": "Cargando datos...",
|
||||
"DE.Controllers.Main.applyChangesTitleText": "Cargando datos",
|
||||
"DE.Controllers.Main.convertationTimeoutText": "Tiempo de conversión está superado.",
|
||||
"DE.Controllers.Main.criticalErrorExtText": "Pulse 'OK' para volver a la lista de documentos.",
|
||||
"DE.Controllers.Main.criticalErrorTitle": "Error",
|
||||
"DE.Controllers.Main.defaultTitleText": "ONLYOFFICE Document Editor",
|
||||
"DE.Controllers.Main.downloadErrorText": "Download failed.",
|
||||
"DE.Controllers.Main.downloadMergeText": "Downloading...",
|
||||
"DE.Controllers.Main.downloadMergeTitle": "Downloading",
|
||||
"DE.Controllers.Main.downloadTextText": "Downloading document...",
|
||||
"DE.Controllers.Main.downloadTitleText": "Downloading Document",
|
||||
"DE.Controllers.Main.errorCoAuthoringDisconnect": "Server connection lost. You can't edit anymore.",
|
||||
"DE.Controllers.Main.errorConnectToServer": " The document could not be saved. Please check connection settings or contact your administrator.<br>When you click the 'OK' button, you will be prompted to download the document.<br><br>Find more information about connecting Document Server <a href=\"https://api.onlyoffice.com/editors/callback\" target=\"_blank\">here</a>",
|
||||
"DE.Controllers.Main.errorDatabaseConnection": "External error.<br>Database connection error. Please, contact support.",
|
||||
"DE.Controllers.Main.errorDataRange": "Incorrect data range.",
|
||||
"DE.Controllers.Main.errorDefaultMessage": "Error code: %1",
|
||||
"DE.Controllers.Main.errorFilePassProtect": "The document is password protected.",
|
||||
"DE.Controllers.Main.errorKeyEncrypt": "Unknown key descriptor",
|
||||
"DE.Controllers.Main.errorKeyExpire": "Key descriptor expired",
|
||||
"DE.Controllers.Main.errorMailMergeLoadFile": "Loading failed",
|
||||
"DE.Controllers.Main.errorMailMergeSaveFile": "Merge failed.",
|
||||
"DE.Controllers.Main.errorProcessSaveResult": "Saving is failed.",
|
||||
"DE.Controllers.Main.errorStockChart": "Incorrect row order. To build a stock chart place the data on the sheet in the following order:<br> opening price, max price, min price, closing price.",
|
||||
"DE.Controllers.Main.errorUpdateVersion": "The file version has been changed. The page will be reloaded.",
|
||||
"DE.Controllers.Main.errorUserDrop": "The file cannot be accessed right now.",
|
||||
"DE.Controllers.Main.errorUsersExceed": "The number of users was exceeded",
|
||||
"DE.Controllers.Main.errorViewerDisconnect": "Connection is lost. You can still view the document,<br>but will not be able to download until the connection is restored.",
|
||||
"DE.Controllers.Main.leavePageText": "You have unsaved changes in this document. Click 'Stay on this Page' to await the autosave of the document. Click 'Leave this Page' to discard all the unsaved changes.",
|
||||
"DE.Controllers.Main.loadFontsTextText": "Loading data...",
|
||||
"DE.Controllers.Main.loadFontsTitleText": "Loading Data",
|
||||
"DE.Controllers.Main.loadFontTextText": "Loading data...",
|
||||
"DE.Controllers.Main.loadFontTitleText": "Loading Data",
|
||||
"DE.Controllers.Main.loadImagesTextText": "Loading images...",
|
||||
"DE.Controllers.Main.loadImagesTitleText": "Loading Images",
|
||||
"DE.Controllers.Main.loadImageTextText": "Loading image...",
|
||||
"DE.Controllers.Main.loadImageTitleText": "Loading Image",
|
||||
"DE.Controllers.Main.loadingDocumentTextText": "Loading document...",
|
||||
"DE.Controllers.Main.loadingDocumentTitleText": "Loading document",
|
||||
"DE.Controllers.Main.mailMergeLoadFileText": "Loading Data Source...",
|
||||
"DE.Controllers.Main.mailMergeLoadFileTitle": "Loading Data Source",
|
||||
"DE.Controllers.Main.notcriticalErrorTitle": "Warning",
|
||||
"DE.Controllers.Main.openErrorText": "An error has occurred while opening the file",
|
||||
"DE.Controllers.Main.openTextText": "Opening document...",
|
||||
"DE.Controllers.Main.openTitleText": "Opening Document",
|
||||
"DE.Controllers.Main.printTextText": "Printing document...",
|
||||
"DE.Controllers.Main.printTitleText": "Printing Document",
|
||||
"DE.Controllers.Main.saveErrorText": "An error has occurred while saving the file",
|
||||
"DE.Controllers.Main.savePreparingText": "Preparing to save",
|
||||
"DE.Controllers.Main.savePreparingTitle": "Preparing to save. Please wait...",
|
||||
"DE.Controllers.Main.saveTextText": "Saving document...",
|
||||
"DE.Controllers.Main.saveTitleText": "Saving Document",
|
||||
"DE.Controllers.Main.sendMergeText": "Sending Merge...",
|
||||
"DE.Controllers.Main.sendMergeTitle": "Sending Merge",
|
||||
"DE.Controllers.Main.splitDividerErrorText": "The number of rows must be a divisor of %1",
|
||||
"DE.Controllers.Main.splitMaxColsErrorText": "The number of columns must be less than %1",
|
||||
"DE.Controllers.Main.splitMaxRowsErrorText": "The number of rows must be less than %1",
|
||||
"DE.Controllers.Main.textAnonymous": "Anonymous",
|
||||
"DE.Controllers.Main.textBack": "Back",
|
||||
"DE.Controllers.Main.textBuyNow": "Visit website",
|
||||
"DE.Controllers.Main.textCancel": "Cancel",
|
||||
"DE.Controllers.Main.textClose": "Close",
|
||||
"DE.Controllers.Main.textContactUs": "Contact sales",
|
||||
"DE.Controllers.Main.textDone": "Done",
|
||||
"DE.Controllers.Main.textLoadingDocument": "Loading document",
|
||||
"DE.Controllers.Main.textNoLicenseTitle": "ONLYOFFICE open source version",
|
||||
"DE.Controllers.Main.downloadErrorText": "Fallo en descarga ",
|
||||
"DE.Controllers.Main.downloadMergeText": "Descargando...",
|
||||
"DE.Controllers.Main.downloadMergeTitle": "Descargando",
|
||||
"DE.Controllers.Main.downloadTextText": "Cargando documento...",
|
||||
"DE.Controllers.Main.downloadTitleText": "Cargando documento",
|
||||
"DE.Controllers.Main.errorBadImageUrl": "URL de imagen es incorrecto",
|
||||
"DE.Controllers.Main.errorCoAuthoringDisconnect": "La conexión al servidor se ha perdido. Usted ya no puede editar.",
|
||||
"DE.Controllers.Main.errorConnectToServer": "No se consiguió guardar el documento. Por favor, verifique los ajustes de conexión o contacte con su administrador.<br>Cuando Usted pulse el botón 'OK', se le solicitará que descargue el documento.<br><br>Encuentre más información acerca de conexión de Servidor de Documentos <a href=\"https://api.onlyoffice.com/editors/callback\" target=\"_blank\">aquí</a>",
|
||||
"DE.Controllers.Main.errorDatabaseConnection": "Error externo.<br>Error de conexión a la base de datos. Por favor, contacte con el equipo de soporte técnico.",
|
||||
"DE.Controllers.Main.errorDataRange": "Rango de datos incorrecto.",
|
||||
"DE.Controllers.Main.errorDefaultMessage": "Código de error: %1",
|
||||
"DE.Controllers.Main.errorFilePassProtect": "El documento es protegido por contraseña.",
|
||||
"DE.Controllers.Main.errorKeyEncrypt": "Descriptor de clave desconocido",
|
||||
"DE.Controllers.Main.errorKeyExpire": "Descriptor de clave ha expirado",
|
||||
"DE.Controllers.Main.errorMailMergeLoadFile": "Error de carga",
|
||||
"DE.Controllers.Main.errorMailMergeSaveFile": "Error de fusión.",
|
||||
"DE.Controllers.Main.errorProcessSaveResult": "Fallo en guardar",
|
||||
"DE.Controllers.Main.errorServerVersion": "La versión del editor ha sido actualizada. La página será recargada para aplicar los cambios.",
|
||||
"DE.Controllers.Main.errorStockChart": "Orden de las filas incorrecto. Para crear un gráfico de cotizaciones introduzca los datos en la hoja en el orden siguiente:<br> precio de apertura, precio máximo, precio mínimo, precio de cierre.",
|
||||
"DE.Controllers.Main.errorUpdateVersion": "Se ha cambiado la versión del archivo. La página será actualizada.",
|
||||
"DE.Controllers.Main.errorUserDrop": "No se puede acceder al archivo ahora.",
|
||||
"DE.Controllers.Main.errorUsersExceed": "El número de usuarios fue superado",
|
||||
"DE.Controllers.Main.errorViewerDisconnect": "Se pierde la conexión. Usted todavía puede visualizar el documento,<br> pero no puede descargarlo antes de que conexión sea restaurada.",
|
||||
"DE.Controllers.Main.leavePageText": "Hay cambios no guardados en este documento. Haga clic en \"Permanecer en esta página\" para esperar la función de guardar automáticamente del documento. Haga clic en \"Abandonar esta página\" para descartar todos los cambios no guardados.",
|
||||
"DE.Controllers.Main.loadFontsTextText": "Cargando datos...",
|
||||
"DE.Controllers.Main.loadFontsTitleText": "Cargando datos",
|
||||
"DE.Controllers.Main.loadFontTextText": "Cargando datos...",
|
||||
"DE.Controllers.Main.loadFontTitleText": "Cargando datos",
|
||||
"DE.Controllers.Main.loadImagesTextText": "Cargando imágenes...",
|
||||
"DE.Controllers.Main.loadImagesTitleText": "Cargando imágenes",
|
||||
"DE.Controllers.Main.loadImageTextText": "Cargando imagen...",
|
||||
"DE.Controllers.Main.loadImageTitleText": "Cargando imagen",
|
||||
"DE.Controllers.Main.loadingDocumentTextText": "Cargando documento...",
|
||||
"DE.Controllers.Main.loadingDocumentTitleText": "Cargando documento",
|
||||
"DE.Controllers.Main.mailMergeLoadFileText": "Cargando fuente de datos...",
|
||||
"DE.Controllers.Main.mailMergeLoadFileTitle": "Cargando fuente de datos",
|
||||
"DE.Controllers.Main.notcriticalErrorTitle": "Aviso",
|
||||
"DE.Controllers.Main.openErrorText": "Se ha producido un error al abrir el archivo ",
|
||||
"DE.Controllers.Main.openTextText": "Abriendo documento...",
|
||||
"DE.Controllers.Main.openTitleText": "Abriendo documento",
|
||||
"DE.Controllers.Main.printTextText": "Imprimiendo documento...",
|
||||
"DE.Controllers.Main.printTitleText": "Imprimiendo documento",
|
||||
"DE.Controllers.Main.saveErrorText": "Se ha producido un error al guardar el archivo ",
|
||||
"DE.Controllers.Main.savePreparingText": "Preparando para guardar",
|
||||
"DE.Controllers.Main.savePreparingTitle": "Preparando para guardar. Espere por favor...",
|
||||
"DE.Controllers.Main.saveTextText": "Guardando documento...",
|
||||
"DE.Controllers.Main.saveTitleText": "Guardando documento",
|
||||
"DE.Controllers.Main.sendMergeText": "Envío de los resultados de fusión...",
|
||||
"DE.Controllers.Main.sendMergeTitle": "Envío de los resultados de fusión",
|
||||
"DE.Controllers.Main.splitDividerErrorText": "El número de filas debe ser un divisor de %1",
|
||||
"DE.Controllers.Main.splitMaxColsErrorText": "El número de columnas debe ser menos que %1",
|
||||
"DE.Controllers.Main.splitMaxRowsErrorText": "El número de filas debe ser menos que %1",
|
||||
"DE.Controllers.Main.textAnonymous": "Anónimo",
|
||||
"DE.Controllers.Main.textBack": "Atrás",
|
||||
"DE.Controllers.Main.textBuyNow": "Visitar sitio web",
|
||||
"DE.Controllers.Main.textCancel": "Cancelar",
|
||||
"DE.Controllers.Main.textClose": "Cerrar",
|
||||
"DE.Controllers.Main.textContactUs": "Contactar con equipo de ventas",
|
||||
"DE.Controllers.Main.textDone": "Listo",
|
||||
"DE.Controllers.Main.textLoadingDocument": "Cargando documento",
|
||||
"DE.Controllers.Main.textNoLicenseTitle": "Versión de código abierto de ONLYOFFICE",
|
||||
"DE.Controllers.Main.textOK": "OK",
|
||||
"DE.Controllers.Main.textPassword": "Password",
|
||||
"DE.Controllers.Main.textPreloader": "Loading... ",
|
||||
"DE.Controllers.Main.textTryUndoRedo": "The Undo/Redo functions are disabled for the Fast co-editing mode.",
|
||||
"DE.Controllers.Main.textUsername": "Username",
|
||||
"DE.Controllers.Main.titleLicenseExp": "License expired",
|
||||
"DE.Controllers.Main.titleUpdateVersion": "Version changed",
|
||||
"DE.Controllers.Main.txtArt": "Your text here",
|
||||
"DE.Controllers.Main.txtDiagramTitle": "Chart Title",
|
||||
"DE.Controllers.Main.txtEditingMode": "Set editing mode...",
|
||||
"DE.Controllers.Main.txtSeries": "Series",
|
||||
"DE.Controllers.Main.txtXAxis": "X Axis",
|
||||
"DE.Controllers.Main.txtYAxis": "Y Axis",
|
||||
"DE.Controllers.Main.unknownErrorText": "Unknown error.",
|
||||
"DE.Controllers.Main.unsupportedBrowserErrorText": "Your browser is not supported.",
|
||||
"DE.Controllers.Main.uploadImageExtMessage": "Unknown image format.",
|
||||
"DE.Controllers.Main.uploadImageFileCountMessage": "No images uploaded.",
|
||||
"DE.Controllers.Main.uploadImageSizeMessage": "Maximium image size limit exceeded.",
|
||||
"DE.Controllers.Main.uploadImageTextText": "Uploading image...",
|
||||
"DE.Controllers.Main.uploadImageTitleText": "Uploading Image",
|
||||
"DE.Controllers.Main.warnLicenseExp": "Your license has expired.<br>Please update your license and refresh the page.",
|
||||
"DE.Controllers.Main.warnNoLicense": "You are using an open source version of ONLYOFFICE. The version has limitations for concurrent connections to the document server (20 connections at a time).<br>If you need more please consider purchasing a commercial license.",
|
||||
"DE.Controllers.Main.warnProcessRightsChange": "You have been denied the right to edit the file.",
|
||||
"DE.Controllers.Search.textNoTextFound": "Text not Found",
|
||||
"DE.Controllers.Search.textReplaceAll": "Replace All",
|
||||
"DE.Controllers.Settings.notcriticalErrorTitle": "Warning",
|
||||
"DE.Controllers.Settings.txtLoading": "Loading...",
|
||||
"DE.Controllers.Settings.unknownText": "Unknown",
|
||||
"DE.Controllers.Settings.warnDownloadAs": "If you continue saving in this format all features except the text will be lost.<br>Are you sure you want to continue?",
|
||||
"DE.Controllers.Toolbar.dlgLeaveMsgText": "You have unsaved changes in this document. Click 'Stay on this Page' to await the autosave of the document. Click 'Leave this Page' to discard all the unsaved changes.",
|
||||
"DE.Controllers.Toolbar.dlgLeaveTitleText": "You leave the application",
|
||||
"DE.Controllers.Toolbar.leaveButtonText": "Leave this Page",
|
||||
"DE.Controllers.Toolbar.stayButtonText": "Stay on this Page",
|
||||
"DE.Views.AddImage.textAddress": "Address",
|
||||
"DE.Views.AddImage.textBack": "Back",
|
||||
"DE.Views.AddImage.textFromLibrary": "Picture from Library",
|
||||
"DE.Views.AddImage.textFromURL": "Picture from URL",
|
||||
"DE.Views.AddImage.textImageURL": "Image URL",
|
||||
"DE.Views.AddImage.textInsertImage": "Insert Image",
|
||||
"DE.Views.AddImage.textLinkSettings": "Link Settings",
|
||||
"DE.Views.AddOther.textAddLink": "Add Link",
|
||||
"DE.Views.AddOther.textBack": "Back",
|
||||
"DE.Views.AddOther.textCenterBottom": "Center Bottom",
|
||||
"DE.Views.AddOther.textCenterTop": "Center Top",
|
||||
"DE.Views.AddOther.textColumnBreak": "Column Break",
|
||||
"DE.Views.AddOther.textContPage": "Continuous Page",
|
||||
"DE.Views.AddOther.textCurrentPos": "Current Position",
|
||||
"DE.Views.AddOther.textDisplay": "Display",
|
||||
"DE.Views.AddOther.textEvenPage": "Even Page",
|
||||
"DE.Views.AddOther.textInsert": "Insert",
|
||||
"DE.Views.AddOther.textLeftBottom": "Left Bottom",
|
||||
"DE.Views.AddOther.textLeftTop": "Left Top",
|
||||
"DE.Views.AddOther.textLink": "Link",
|
||||
"DE.Views.AddOther.textNextPage": "Next Page",
|
||||
"DE.Views.AddOther.textOddPage": "Odd Page",
|
||||
"DE.Views.AddOther.textPageBreak": "Page Break",
|
||||
"DE.Views.AddOther.textPageNumber": "Page Number",
|
||||
"DE.Views.AddOther.textPosition": "Position",
|
||||
"DE.Views.AddOther.textRightBottom": "Right Bottom",
|
||||
"DE.Views.AddOther.textRightTop": "Right Top",
|
||||
"DE.Views.AddOther.textSectionBreak": "Section Break",
|
||||
"DE.Views.AddOther.textTip": "Screen Tip",
|
||||
"DE.Views.EditChart.textAlign": "Align",
|
||||
"DE.Views.EditChart.textBack": "Back",
|
||||
"DE.Views.EditChart.textBackward": "Move Backward",
|
||||
"DE.Views.EditChart.textBehind": "Behind",
|
||||
"DE.Views.EditChart.textBorder": "Border",
|
||||
"DE.Controllers.Main.textPassword": "Contraseña",
|
||||
"DE.Controllers.Main.textPreloader": "Cargando...",
|
||||
"DE.Controllers.Main.textTryUndoRedo": "Las funciones Deshacer/Rehacer son desactivados en el modo de co-edición rápido.",
|
||||
"DE.Controllers.Main.textUsername": "Nombre de usuario",
|
||||
"DE.Controllers.Main.titleLicenseExp": "Licencia ha expirado",
|
||||
"DE.Controllers.Main.titleServerVersion": "Editor ha sido actualizado",
|
||||
"DE.Controllers.Main.titleUpdateVersion": "Versión se ha cambiado",
|
||||
"DE.Controllers.Main.txtArt": "Introduzca su texto aquí",
|
||||
"DE.Controllers.Main.txtDiagramTitle": "Título del gráfico",
|
||||
"DE.Controllers.Main.txtEditingMode": "Establecer el modo de edición...",
|
||||
"DE.Controllers.Main.txtSeries": "Serie",
|
||||
"DE.Controllers.Main.txtStyle_Heading_1": "Título 1",
|
||||
"DE.Controllers.Main.txtStyle_Heading_2": "Título 2",
|
||||
"DE.Controllers.Main.txtStyle_Heading_3": "Título 3",
|
||||
"DE.Controllers.Main.txtStyle_Heading_4": "Título 4",
|
||||
"DE.Controllers.Main.txtStyle_Heading_5": "Título 5",
|
||||
"DE.Controllers.Main.txtStyle_Heading_6": "Título 6",
|
||||
"DE.Controllers.Main.txtStyle_Heading_7": "Título 7",
|
||||
"DE.Controllers.Main.txtStyle_Heading_8": "Título 8",
|
||||
"DE.Controllers.Main.txtStyle_Heading_9": "Título 9",
|
||||
"DE.Controllers.Main.txtStyle_Intense_Quote": "Cita seleccionada",
|
||||
"DE.Controllers.Main.txtStyle_List_Paragraph": "Párrafo de la lista",
|
||||
"DE.Controllers.Main.txtStyle_No_Spacing": "Sin espacio",
|
||||
"DE.Controllers.Main.txtStyle_Normal": "Normal",
|
||||
"DE.Controllers.Main.txtStyle_Quote": "Cita",
|
||||
"DE.Controllers.Main.txtStyle_Subtitle": "Subtítulo",
|
||||
"DE.Controllers.Main.txtStyle_Title": "Título",
|
||||
"DE.Controllers.Main.txtXAxis": "Eje X",
|
||||
"DE.Controllers.Main.txtYAxis": "Eje Y",
|
||||
"DE.Controllers.Main.unknownErrorText": "Error desconocido.",
|
||||
"DE.Controllers.Main.unsupportedBrowserErrorText": "Su navegador no está soportado.",
|
||||
"DE.Controllers.Main.uploadImageExtMessage": "Formato de imagen desconocido.",
|
||||
"DE.Controllers.Main.uploadImageFileCountMessage": "No hay imágenes subidas.",
|
||||
"DE.Controllers.Main.uploadImageSizeMessage": "Tamaño de imagen máximo está superado.",
|
||||
"DE.Controllers.Main.uploadImageTextText": "Subiendo imagen...",
|
||||
"DE.Controllers.Main.uploadImageTitleText": "Subiendo imagen",
|
||||
"DE.Controllers.Main.warnLicenseExp": "Su licencia ha expirado.<br>Por favor, actualice su licencia y después recargue la página.",
|
||||
"DE.Controllers.Main.warnNoLicense": "Usted está usando la versión de código abierto de ONLYOFFICE. Esta versión tiene limitaciones respecto a la cantidad de conexiones concurrentes al servidor de documentos (20 conexiones simultáneamente).<br>Si se requiere más, considere la posibilidad de adquirir la licencia comercial.",
|
||||
"DE.Controllers.Main.warnProcessRightsChange": "El derecho de edición del archivo es denegado.",
|
||||
"DE.Controllers.Search.textNoTextFound": "Texto no es encontrado",
|
||||
"DE.Controllers.Search.textReplaceAll": "Reemplazar todo",
|
||||
"DE.Controllers.Settings.notcriticalErrorTitle": "Aviso",
|
||||
"DE.Controllers.Settings.txtLoading": "Cargando...",
|
||||
"DE.Controllers.Settings.unknownText": "Desconocido",
|
||||
"DE.Controllers.Settings.warnDownloadAs": "Si sigue guardando en este formato todas las características a excepción del texto se perderán.<br> ¿Está seguro de que quiere continuar?",
|
||||
"DE.Controllers.Toolbar.dlgLeaveMsgText": "Hay cambios no guardados en este documento. Haga clic en \"Permanecer en esta página\" para esperar la función de guardar automáticamente del documento. Haga clic en \"Abandonar esta página\" para descartar todos los cambios no guardados.",
|
||||
"DE.Controllers.Toolbar.dlgLeaveTitleText": "Usted abandona la aplicación",
|
||||
"DE.Controllers.Toolbar.leaveButtonText": "Salir de esta página",
|
||||
"DE.Controllers.Toolbar.stayButtonText": "Quedarse en esta página",
|
||||
"DE.Views.AddImage.textAddress": "Dirección",
|
||||
"DE.Views.AddImage.textBack": "Atrás",
|
||||
"DE.Views.AddImage.textFromLibrary": "Imagen de biblioteca",
|
||||
"DE.Views.AddImage.textFromURL": "Imagen de URL",
|
||||
"DE.Views.AddImage.textImageURL": "URL de imagen",
|
||||
"DE.Views.AddImage.textInsertImage": "Insertar imagen",
|
||||
"DE.Views.AddImage.textLinkSettings": "Ajustes de enlace",
|
||||
"DE.Views.AddOther.textAddLink": "Añadir enlace ",
|
||||
"DE.Views.AddOther.textBack": "Atrás",
|
||||
"DE.Views.AddOther.textCenterBottom": "Abajo en centro",
|
||||
"DE.Views.AddOther.textCenterTop": "Arriba en el centro",
|
||||
"DE.Views.AddOther.textColumnBreak": "Salto de columna",
|
||||
"DE.Views.AddOther.textContPage": "Página continua",
|
||||
"DE.Views.AddOther.textCurrentPos": "Posición actual",
|
||||
"DE.Views.AddOther.textDisplay": "Mostrar",
|
||||
"DE.Views.AddOther.textEvenPage": "Página par",
|
||||
"DE.Views.AddOther.textInsert": "Insertar",
|
||||
"DE.Views.AddOther.textLeftBottom": "Abajo a la izquierda",
|
||||
"DE.Views.AddOther.textLeftTop": "Arriba a la izquierda",
|
||||
"DE.Views.AddOther.textLink": "Enlace",
|
||||
"DE.Views.AddOther.textNextPage": "Página siguiente",
|
||||
"DE.Views.AddOther.textOddPage": "Página impar",
|
||||
"DE.Views.AddOther.textPageBreak": "Salto de página ",
|
||||
"DE.Views.AddOther.textPageNumber": "Número de página",
|
||||
"DE.Views.AddOther.textPosition": "Posición",
|
||||
"DE.Views.AddOther.textRightBottom": "Abajo a la derecha",
|
||||
"DE.Views.AddOther.textRightTop": "Arriba a la derecha",
|
||||
"DE.Views.AddOther.textSectionBreak": "Salto de sección",
|
||||
"DE.Views.AddOther.textTip": "Consejos de pantalla",
|
||||
"DE.Views.EditChart.textAlign": "Alineación",
|
||||
"DE.Views.EditChart.textBack": "Atrás",
|
||||
"DE.Views.EditChart.textBackward": "Mover atrás",
|
||||
"DE.Views.EditChart.textBehind": "Detrás",
|
||||
"DE.Views.EditChart.textBorder": "Borde",
|
||||
"DE.Views.EditChart.textColor": "Color",
|
||||
"DE.Views.EditChart.textDistanceText": "Distance from Text",
|
||||
"DE.Views.EditChart.textFill": "Fill",
|
||||
"DE.Views.EditChart.textForward": "Move Forward",
|
||||
"DE.Views.EditChart.textInFront": "In Front",
|
||||
"DE.Views.EditChart.textInline": "Inline",
|
||||
"DE.Views.EditChart.textMoveText": "Move with Text",
|
||||
"DE.Views.EditChart.textOverlap": "Allow Overlap",
|
||||
"DE.Views.EditChart.textRemoveChart": "Remove Chart",
|
||||
"DE.Views.EditChart.textReorder": "Reorder",
|
||||
"DE.Views.EditChart.textSize": "Size",
|
||||
"DE.Views.EditChart.textSquare": "Square",
|
||||
"DE.Views.EditChart.textStyle": "Style",
|
||||
"DE.Views.EditChart.textThrough": "Through",
|
||||
"DE.Views.EditChart.textTight": "Tight",
|
||||
"DE.Views.EditChart.textToBackground": "Send to Background",
|
||||
"DE.Views.EditChart.textToForeground": "Bring to Foreground",
|
||||
"DE.Views.EditChart.textTopBottom": "Top and Bottom",
|
||||
"DE.Views.EditChart.textType": "Type",
|
||||
"DE.Views.EditChart.textWrap": "Wrap",
|
||||
"DE.Views.EditHyperlink.textDisplay": "Display",
|
||||
"DE.Views.EditHyperlink.textEdit": "Edit Link",
|
||||
"DE.Views.EditHyperlink.textLink": "Link",
|
||||
"DE.Views.EditHyperlink.textRemove": "Remove Link",
|
||||
"DE.Views.EditHyperlink.textTip": "Screen Tip",
|
||||
"DE.Views.EditImage.textAddress": "Address",
|
||||
"DE.Views.EditImage.textAlign": "Align",
|
||||
"DE.Views.EditImage.textBack": "Back",
|
||||
"DE.Views.EditImage.textBackward": "Move Backward",
|
||||
"DE.Views.EditImage.textBehind": "Behind",
|
||||
"DE.Views.EditImage.textDefault": "Default Size",
|
||||
"DE.Views.EditImage.textDistanceText": "Distance from Text",
|
||||
"DE.Views.EditImage.textForward": "Move Forward",
|
||||
"DE.Views.EditImage.textFromLibrary": "Picture from Library",
|
||||
"DE.Views.EditImage.textFromURL": "Picture from URL",
|
||||
"DE.Views.EditImage.textImageURL": "Image URL",
|
||||
"DE.Views.EditImage.textInFront": "In Front",
|
||||
"DE.Views.EditImage.textInline": "Inline",
|
||||
"DE.Views.EditImage.textLinkSettings": "Link Settings",
|
||||
"DE.Views.EditImage.textMoveText": "Move with Text",
|
||||
"DE.Views.EditImage.textOverlap": "Allow Overlap",
|
||||
"DE.Views.EditImage.textRemove": "Remove Image",
|
||||
"DE.Views.EditImage.textReorder": "Reorder",
|
||||
"DE.Views.EditImage.textReplace": "Replace",
|
||||
"DE.Views.EditImage.textReplaceImg": "Replace Image",
|
||||
"DE.Views.EditImage.textSquare": "Square",
|
||||
"DE.Views.EditImage.textThrough": "Through",
|
||||
"DE.Views.EditImage.textTight": "Tight",
|
||||
"DE.Views.EditImage.textToBackground": "Send to Background",
|
||||
"DE.Views.EditImage.textToForeground": "Bring to Foreground",
|
||||
"DE.Views.EditImage.textTopBottom": "Top and Bottom",
|
||||
"DE.Views.EditImage.textWrap": "Wrap",
|
||||
"DE.Views.EditParagraph.textAdvanced": "Advanced",
|
||||
"DE.Views.EditParagraph.textAdvSettings": "Advanced settings",
|
||||
"DE.Views.EditParagraph.textAfter": "After",
|
||||
"DE.Views.EditChart.textDistanceText": "Distancia del texto",
|
||||
"DE.Views.EditChart.textFill": "Relleno",
|
||||
"DE.Views.EditChart.textForward": "Mover adelante",
|
||||
"DE.Views.EditChart.textInFront": "Adelante",
|
||||
"DE.Views.EditChart.textInline": "Alineado",
|
||||
"DE.Views.EditChart.textMoveText": "Desplazar con texto",
|
||||
"DE.Views.EditChart.textOverlap": "Permitir Superposición",
|
||||
"DE.Views.EditChart.textRemoveChart": "Eliminar gráfico",
|
||||
"DE.Views.EditChart.textReorder": "Reorganizar",
|
||||
"DE.Views.EditChart.textSize": "Tamaño",
|
||||
"DE.Views.EditChart.textSquare": "Cuadrado",
|
||||
"DE.Views.EditChart.textStyle": "Estilo",
|
||||
"DE.Views.EditChart.textThrough": "A través",
|
||||
"DE.Views.EditChart.textTight": "Estrecho",
|
||||
"DE.Views.EditChart.textToBackground": "Enviar al fondo",
|
||||
"DE.Views.EditChart.textToForeground": "Traer al frente",
|
||||
"DE.Views.EditChart.textTopBottom": "Superior e inferior",
|
||||
"DE.Views.EditChart.textType": "Tipo",
|
||||
"DE.Views.EditChart.textWrap": "Envoltura",
|
||||
"DE.Views.EditHyperlink.textDisplay": "Mostrar",
|
||||
"DE.Views.EditHyperlink.textEdit": "Editar enlace",
|
||||
"DE.Views.EditHyperlink.textLink": "Enlace",
|
||||
"DE.Views.EditHyperlink.textRemove": "Eliminar enlace",
|
||||
"DE.Views.EditHyperlink.textTip": "Consejos de pantalla",
|
||||
"DE.Views.EditImage.textAddress": "Dirección",
|
||||
"DE.Views.EditImage.textAlign": "Alineación",
|
||||
"DE.Views.EditImage.textBack": "Atrás",
|
||||
"DE.Views.EditImage.textBackward": "Mover atrás",
|
||||
"DE.Views.EditImage.textBehind": "Detrás",
|
||||
"DE.Views.EditImage.textDefault": "Tamaño Predeterminado",
|
||||
"DE.Views.EditImage.textDistanceText": "Distancia del texto",
|
||||
"DE.Views.EditImage.textForward": "Mover adelante",
|
||||
"DE.Views.EditImage.textFromLibrary": "Imagen de biblioteca",
|
||||
"DE.Views.EditImage.textFromURL": "Imagen de URL",
|
||||
"DE.Views.EditImage.textImageURL": "URL de imagen",
|
||||
"DE.Views.EditImage.textInFront": "Adelante",
|
||||
"DE.Views.EditImage.textInline": "Alineado",
|
||||
"DE.Views.EditImage.textLinkSettings": "Ajustes de enlace",
|
||||
"DE.Views.EditImage.textMoveText": "Desplazar con texto",
|
||||
"DE.Views.EditImage.textOverlap": "Permitir Superposición",
|
||||
"DE.Views.EditImage.textRemove": "Eliminar imagen",
|
||||
"DE.Views.EditImage.textReorder": "Reorganizar",
|
||||
"DE.Views.EditImage.textReplace": "Reemplazar",
|
||||
"DE.Views.EditImage.textReplaceImg": "Reemplazar imagen",
|
||||
"DE.Views.EditImage.textSquare": "Cuadrado",
|
||||
"DE.Views.EditImage.textThrough": "A través",
|
||||
"DE.Views.EditImage.textTight": "Estrecho",
|
||||
"DE.Views.EditImage.textToBackground": "Enviar al fondo",
|
||||
"DE.Views.EditImage.textToForeground": "Traer al frente",
|
||||
"DE.Views.EditImage.textTopBottom": "Superior e inferior",
|
||||
"DE.Views.EditImage.textWrap": "Envoltura",
|
||||
"DE.Views.EditParagraph.textAdvanced": "Avanzado",
|
||||
"DE.Views.EditParagraph.textAdvSettings": "Ajustes avanzados",
|
||||
"DE.Views.EditParagraph.textAfter": "Después",
|
||||
"DE.Views.EditParagraph.textAuto": "Auto",
|
||||
"DE.Views.EditParagraph.textBack": "Back",
|
||||
"DE.Views.EditParagraph.textBackground": "Background",
|
||||
"DE.Views.EditParagraph.textBefore": "Before",
|
||||
"DE.Views.EditParagraph.textFromText": "Distance from Text",
|
||||
"DE.Views.EditParagraph.textKeepLines": "Keep Lines Together",
|
||||
"DE.Views.EditParagraph.textKeepNext": "Keep with Next",
|
||||
"DE.Views.EditParagraph.textOrphan": "Orphan Control",
|
||||
"DE.Views.EditParagraph.textPageBreak": "Page Break Before",
|
||||
"DE.Views.EditParagraph.textPrgStyles": "Paragraph styles",
|
||||
"DE.Views.EditParagraph.textSpaceBetween": "Space Between Paragraphs",
|
||||
"DE.Views.EditShape.textAlign": "Align",
|
||||
"DE.Views.EditShape.textBack": "Back",
|
||||
"DE.Views.EditShape.textBackward": "Move Backward",
|
||||
"DE.Views.EditShape.textBehind": "Behind",
|
||||
"DE.Views.EditShape.textBorder": "Border",
|
||||
"DE.Views.EditParagraph.textBack": "Atrás",
|
||||
"DE.Views.EditParagraph.textBackground": "Fondo",
|
||||
"DE.Views.EditParagraph.textBefore": "Antes",
|
||||
"DE.Views.EditParagraph.textFromText": "Distancia del texto",
|
||||
"DE.Views.EditParagraph.textKeepLines": "Mantener líneas juntas",
|
||||
"DE.Views.EditParagraph.textKeepNext": "Conservar con el siguiente",
|
||||
"DE.Views.EditParagraph.textOrphan": "Control de líneas huérfanas",
|
||||
"DE.Views.EditParagraph.textPageBreak": "Salto de página antes",
|
||||
"DE.Views.EditParagraph.textPrgStyles": "Estilos de párrafo",
|
||||
"DE.Views.EditParagraph.textSpaceBetween": "Espacio entre párrafos",
|
||||
"DE.Views.EditShape.textAlign": "Alineación",
|
||||
"DE.Views.EditShape.textBack": "Atrás",
|
||||
"DE.Views.EditShape.textBackward": "Mover atrás",
|
||||
"DE.Views.EditShape.textBehind": "Detrás",
|
||||
"DE.Views.EditShape.textBorder": "Borde",
|
||||
"DE.Views.EditShape.textColor": "Color",
|
||||
"DE.Views.EditShape.textEffects": "Effects",
|
||||
"DE.Views.EditShape.textFill": "Fill",
|
||||
"DE.Views.EditShape.textForward": "Move Forward",
|
||||
"DE.Views.EditShape.textFromText": "Distance from Text",
|
||||
"DE.Views.EditShape.textInFront": "In Front",
|
||||
"DE.Views.EditShape.textInline": "Inline",
|
||||
"DE.Views.EditShape.textOpacity": "Opacity",
|
||||
"DE.Views.EditShape.textOverlap": "Allow Overlap",
|
||||
"DE.Views.EditShape.textRemoveShape": "Remove Shape",
|
||||
"DE.Views.EditShape.textReorder": "Reorder",
|
||||
"DE.Views.EditShape.textReplace": "Replace",
|
||||
"DE.Views.EditShape.textSize": "Size",
|
||||
"DE.Views.EditShape.textSquare": "Square",
|
||||
"DE.Views.EditShape.textStyle": "Style",
|
||||
"DE.Views.EditShape.textThrough": "Through",
|
||||
"DE.Views.EditShape.textTight": "Tight",
|
||||
"DE.Views.EditShape.textToBackground": "Send to Background",
|
||||
"DE.Views.EditShape.textToForeground": "Bring to Foreground",
|
||||
"DE.Views.EditShape.textTopAndBottom": "Top and Bottom",
|
||||
"DE.Views.EditShape.textWithText": "Move with Text",
|
||||
"DE.Views.EditShape.textWrap": "Wrap",
|
||||
"DE.Views.EditTable.textAlign": "Align",
|
||||
"DE.Views.EditTable.textBack": "Back",
|
||||
"DE.Views.EditTable.textBandedColumn": "Banded Column",
|
||||
"DE.Views.EditTable.textBandedRow": "Banded Row",
|
||||
"DE.Views.EditTable.textBorder": "Border",
|
||||
"DE.Views.EditTable.textCellMargins": "Cell Margins",
|
||||
"DE.Views.EditShape.textEffects": "Efectos",
|
||||
"DE.Views.EditShape.textFill": "Relleno",
|
||||
"DE.Views.EditShape.textForward": "Mover adelante",
|
||||
"DE.Views.EditShape.textFromText": "Distancia del texto",
|
||||
"DE.Views.EditShape.textInFront": "Adelante",
|
||||
"DE.Views.EditShape.textInline": "Alineado",
|
||||
"DE.Views.EditShape.textOpacity": "Opacidad ",
|
||||
"DE.Views.EditShape.textOverlap": "Permitir Superposición",
|
||||
"DE.Views.EditShape.textRemoveShape": "Eliminar forma",
|
||||
"DE.Views.EditShape.textReorder": "Reorganizar",
|
||||
"DE.Views.EditShape.textReplace": "Reemplazar",
|
||||
"DE.Views.EditShape.textSize": "Tamaño",
|
||||
"DE.Views.EditShape.textSquare": "Cuadrado",
|
||||
"DE.Views.EditShape.textStyle": "Estilo",
|
||||
"DE.Views.EditShape.textThrough": "A través",
|
||||
"DE.Views.EditShape.textTight": "Estrecho",
|
||||
"DE.Views.EditShape.textToBackground": "Enviar al fondo",
|
||||
"DE.Views.EditShape.textToForeground": "Traer al frente",
|
||||
"DE.Views.EditShape.textTopAndBottom": "Superior e inferior",
|
||||
"DE.Views.EditShape.textWithText": "Desplazar con texto",
|
||||
"DE.Views.EditShape.textWrap": "Envoltura",
|
||||
"DE.Views.EditTable.textAlign": "Alineación",
|
||||
"DE.Views.EditTable.textBack": "Atrás",
|
||||
"DE.Views.EditTable.textBandedColumn": "Columna de bandas",
|
||||
"DE.Views.EditTable.textBandedRow": "Fila de bandas",
|
||||
"DE.Views.EditTable.textBorder": "Borde",
|
||||
"DE.Views.EditTable.textCellMargins": "Márgenes de celda",
|
||||
"DE.Views.EditTable.textColor": "Color",
|
||||
"DE.Views.EditTable.textFill": "Fill",
|
||||
"DE.Views.EditTable.textFirstColumn": "First Column",
|
||||
"DE.Views.EditTable.textFlow": "Flow",
|
||||
"DE.Views.EditTable.textFromText": "Distance from Text",
|
||||
"DE.Views.EditTable.textHeaderRow": "Header Row",
|
||||
"DE.Views.EditTable.textInline": "Inline",
|
||||
"DE.Views.EditTable.textLastColumn": "Last Column",
|
||||
"DE.Views.EditTable.textOptions": "Options",
|
||||
"DE.Views.EditTable.textRemoveTable": "Remove Table",
|
||||
"DE.Views.EditTable.textRepeatHeader": "Repeat as Header Row",
|
||||
"DE.Views.EditTable.textResizeFit": "Resize to Fit Content",
|
||||
"DE.Views.EditTable.textSize": "Size",
|
||||
"DE.Views.EditTable.textStyle": "Style",
|
||||
"DE.Views.EditTable.textStyleOptions": "Style Options",
|
||||
"DE.Views.EditTable.textTableOptions": "Table Options",
|
||||
"DE.Views.EditTable.textTotalRow": "Total Row",
|
||||
"DE.Views.EditTable.textWithText": "Move with Text",
|
||||
"DE.Views.EditTable.textWrap": "Wrap",
|
||||
"DE.Views.EditText.textAdditional": "Additional",
|
||||
"DE.Views.EditText.textAdditionalFormat": "Additional Formatting",
|
||||
"DE.Views.EditText.textAllCaps": "All Caps",
|
||||
"DE.Views.EditText.textAutomatic": "Automatic",
|
||||
"DE.Views.EditText.textBack": "Back",
|
||||
"DE.Views.EditText.textBullets": "Bullets",
|
||||
"DE.Views.EditText.textDblStrikethrough": "Double Strikethrough",
|
||||
"DE.Views.EditText.textDblSuperscript": "Superscript",
|
||||
"DE.Views.EditText.textFontColor": "Font Color",
|
||||
"DE.Views.EditText.textFontColors": "Font Colors",
|
||||
"DE.Views.EditText.textFonts": "Fonts",
|
||||
"DE.Views.EditText.textHighlightColor": "Highlight Color",
|
||||
"DE.Views.EditText.textHighlightColors": "Highlight Colors",
|
||||
"DE.Views.EditText.textLetterSpacing": "Letter Spacing",
|
||||
"DE.Views.EditText.textLineSpacing": "Line Spacing",
|
||||
"DE.Views.EditText.textNone": "None",
|
||||
"DE.Views.EditText.textNumbers": "Numbers",
|
||||
"DE.Views.EditText.textSize": "Size",
|
||||
"DE.Views.EditText.textSmallCaps": "Small Caps",
|
||||
"DE.Views.EditText.textStrikethrough": "Strikethrough",
|
||||
"DE.Views.EditText.textSubscript": "Subscript",
|
||||
"DE.Views.Search.textCase": "Case sensitive",
|
||||
"DE.Views.Search.textDone": "Done",
|
||||
"DE.Views.Search.textFind": "Find",
|
||||
"DE.Views.Search.textFindAndReplace": "Find and Replace",
|
||||
"DE.Views.Search.textHighlight": "Highlight results",
|
||||
"DE.Views.Search.textReplace": "Replace",
|
||||
"DE.Views.Search.textSearch": "Search",
|
||||
"DE.Views.Settings.textAbout": "About",
|
||||
"DE.Views.Settings.textAddress": "address",
|
||||
"DE.Views.Settings.textAuthor": "Author",
|
||||
"DE.Views.Settings.textBack": "Back",
|
||||
"DE.Views.Settings.textCreateDate": "Creation date",
|
||||
"DE.Views.Settings.textCustom": "Custom",
|
||||
"DE.Views.Settings.textCustomSize": "Custom Size",
|
||||
"DE.Views.Settings.textDocInfo": "Document Info",
|
||||
"DE.Views.Settings.textDocTitle": "Document title",
|
||||
"DE.Views.Settings.textDocumentFormats": "Document Formats",
|
||||
"DE.Views.Settings.textDocumentSettings": "Document Settings",
|
||||
"DE.Views.Settings.textDone": "Done",
|
||||
"DE.Views.Settings.textDownload": "Download",
|
||||
"DE.Views.Settings.textDownloadAs": "Download As...",
|
||||
"DE.Views.Settings.textEditDoc": "Edit Document",
|
||||
"DE.Views.Settings.textEmail": "email",
|
||||
"DE.Views.Settings.textFind": "Find",
|
||||
"DE.Views.Settings.textFindAndReplace": "Find and Replace",
|
||||
"DE.Views.Settings.textFormat": "Format",
|
||||
"DE.Views.Settings.textHelp": "Help",
|
||||
"DE.Views.Settings.textLandscape": "Landscape",
|
||||
"DE.Views.Settings.textLoading": "Loading...",
|
||||
"DE.Views.Settings.textOrientation": "Orientation",
|
||||
"DE.Views.Settings.textPages": "Pages",
|
||||
"DE.Views.Settings.textParagraphs": "Paragraphs",
|
||||
"DE.Views.Settings.textPortrait": "Portrait",
|
||||
"DE.Views.Settings.textReader": "Reader Mode",
|
||||
"DE.Views.Settings.textSettings": "Settings",
|
||||
"DE.Views.Settings.textSpaces": "Spaces",
|
||||
"DE.Views.Settings.textStatistic": "Statistic",
|
||||
"DE.Views.Settings.textSymbols": "Symbols",
|
||||
"DE.Views.Settings.textTel": "tel",
|
||||
"DE.Views.Settings.textVersion": "Version",
|
||||
"DE.Views.Settings.textWords": "Words",
|
||||
"DE.Views.Settings.unknownText": "Unknown",
|
||||
"DE.Views.Toolbar.textBack": "Back"
|
||||
"DE.Views.EditTable.textFill": "Relleno",
|
||||
"DE.Views.EditTable.textFirstColumn": "Primera columna",
|
||||
"DE.Views.EditTable.textFlow": "Flujo",
|
||||
"DE.Views.EditTable.textFromText": "Distancia del texto",
|
||||
"DE.Views.EditTable.textHeaderRow": "Fila de encabezado",
|
||||
"DE.Views.EditTable.textInline": "Alineado",
|
||||
"DE.Views.EditTable.textLastColumn": "Columna última",
|
||||
"DE.Views.EditTable.textOptions": "Opciones",
|
||||
"DE.Views.EditTable.textRemoveTable": "Eliminar tabla",
|
||||
"DE.Views.EditTable.textRepeatHeader": "Repetir como fila de encabezado",
|
||||
"DE.Views.EditTable.textResizeFit": "Redimensionar para adaptar al contenido",
|
||||
"DE.Views.EditTable.textSize": "Tamaño",
|
||||
"DE.Views.EditTable.textStyle": "Estilo",
|
||||
"DE.Views.EditTable.textStyleOptions": "Opciones de estilo",
|
||||
"DE.Views.EditTable.textTableOptions": "Opciones de tabla",
|
||||
"DE.Views.EditTable.textTotalRow": "Fila de total",
|
||||
"DE.Views.EditTable.textWithText": "Desplazar con texto",
|
||||
"DE.Views.EditTable.textWrap": "Envoltura",
|
||||
"DE.Views.EditText.textAdditional": "Adicional",
|
||||
"DE.Views.EditText.textAdditionalFormat": "Formateo adicional",
|
||||
"DE.Views.EditText.textAllCaps": "Mayúsculas",
|
||||
"DE.Views.EditText.textAutomatic": "Automático",
|
||||
"DE.Views.EditText.textBack": "Atrás",
|
||||
"DE.Views.EditText.textBullets": "Viñetas",
|
||||
"DE.Views.EditText.textDblStrikethrough": "Doble tachado",
|
||||
"DE.Views.EditText.textDblSuperscript": "Sobreíndice",
|
||||
"DE.Views.EditText.textFontColor": "Color de fuente",
|
||||
"DE.Views.EditText.textFontColors": "Color de fuente",
|
||||
"DE.Views.EditText.textFonts": "Fuentes",
|
||||
"DE.Views.EditText.textHighlightColor": "Color de resaltado",
|
||||
"DE.Views.EditText.textHighlightColors": "Color de resaltado",
|
||||
"DE.Views.EditText.textLetterSpacing": "Espaciado de letras",
|
||||
"DE.Views.EditText.textLineSpacing": "Espaciado de línea",
|
||||
"DE.Views.EditText.textNone": "Ninguno",
|
||||
"DE.Views.EditText.textNumbers": "Números",
|
||||
"DE.Views.EditText.textSize": "Tamaño",
|
||||
"DE.Views.EditText.textSmallCaps": "Mayúsculas pequeñas",
|
||||
"DE.Views.EditText.textStrikethrough": "Tachado",
|
||||
"DE.Views.EditText.textSubscript": "Subíndice",
|
||||
"DE.Views.Search.textCase": "Sensible a mayúsculas y minúsculas",
|
||||
"DE.Views.Search.textDone": "Listo",
|
||||
"DE.Views.Search.textFind": "Encontrar",
|
||||
"DE.Views.Search.textFindAndReplace": "Encontrar y reemplazar",
|
||||
"DE.Views.Search.textHighlight": "Resaltar resultados",
|
||||
"DE.Views.Search.textReplace": "Reemplazar",
|
||||
"DE.Views.Search.textSearch": "Buscar",
|
||||
"DE.Views.Settings.textAbout": "Acerca de producto",
|
||||
"DE.Views.Settings.textAddress": "dirección",
|
||||
"DE.Views.Settings.textAuthor": "Autor",
|
||||
"DE.Views.Settings.textBack": "Atrás",
|
||||
"DE.Views.Settings.textCreateDate": "Fecha de creación",
|
||||
"DE.Views.Settings.textCustom": "Personalizado",
|
||||
"DE.Views.Settings.textCustomSize": "Tamaño personalizado",
|
||||
"DE.Views.Settings.textDocInfo": "Información de documento",
|
||||
"DE.Views.Settings.textDocTitle": "Título de documento",
|
||||
"DE.Views.Settings.textDocumentFormats": "Formatos de documento",
|
||||
"DE.Views.Settings.textDocumentSettings": "Ajustes de documento",
|
||||
"DE.Views.Settings.textDone": "Listo",
|
||||
"DE.Views.Settings.textDownload": "Descargar",
|
||||
"DE.Views.Settings.textDownloadAs": "Descargar como...",
|
||||
"DE.Views.Settings.textEditDoc": "Editar documento",
|
||||
"DE.Views.Settings.textEmail": "E-mail",
|
||||
"DE.Views.Settings.textFind": "Encontrar",
|
||||
"DE.Views.Settings.textFindAndReplace": "Encontrar y reemplazar",
|
||||
"DE.Views.Settings.textFormat": "Formato",
|
||||
"DE.Views.Settings.textHelp": "Ayuda",
|
||||
"DE.Views.Settings.textLandscape": "Horizontal",
|
||||
"DE.Views.Settings.textLoading": "Cargando...",
|
||||
"DE.Views.Settings.textOrientation": "Orientación ",
|
||||
"DE.Views.Settings.textPages": "Páginas",
|
||||
"DE.Views.Settings.textParagraphs": "Párrafos",
|
||||
"DE.Views.Settings.textPortrait": "Vertical",
|
||||
"DE.Views.Settings.textPoweredBy": "Desarrollado por",
|
||||
"DE.Views.Settings.textReader": "Modo de lectura",
|
||||
"DE.Views.Settings.textSettings": "Ajustes",
|
||||
"DE.Views.Settings.textSpaces": "Espacios",
|
||||
"DE.Views.Settings.textStatistic": "Estadística",
|
||||
"DE.Views.Settings.textSymbols": "Símbolos",
|
||||
"DE.Views.Settings.textTel": "Tel.",
|
||||
"DE.Views.Settings.textVersion": "Versión ",
|
||||
"DE.Views.Settings.textWords": "Palabras",
|
||||
"DE.Views.Settings.unknownText": "Desconocido",
|
||||
"DE.Views.Toolbar.textBack": "Atrás"
|
||||
}
|
|
@ -43,7 +43,7 @@
|
|||
"DE.Controllers.Main.advTxtOptions": "Choisir les options TXT",
|
||||
"DE.Controllers.Main.applyChangesTextText": "Chargement des données...",
|
||||
"DE.Controllers.Main.applyChangesTitleText": "Chargement des données",
|
||||
"DE.Controllers.Main.convertationTimeoutText": "Expiration du délai de conversion.",
|
||||
"DE.Controllers.Main.convertationTimeoutText": "Délai de conversion expiré.",
|
||||
"DE.Controllers.Main.criticalErrorExtText": "Appuyez sur OK pour revenir à la liste des documents.",
|
||||
"DE.Controllers.Main.criticalErrorTitle": "Erreur",
|
||||
"DE.Controllers.Main.defaultTitleText": "ONLYOFFICE Document Editor",
|
||||
|
@ -120,6 +120,22 @@
|
|||
"DE.Controllers.Main.txtDiagramTitle": "Titre du graphique",
|
||||
"DE.Controllers.Main.txtEditingMode": "Définition du mode d'édition...",
|
||||
"DE.Controllers.Main.txtSeries": "Séries",
|
||||
"DE.Controllers.Main.txtStyle_Heading_1": "Heading 1",
|
||||
"DE.Controllers.Main.txtStyle_Heading_2": "Heading 2",
|
||||
"DE.Controllers.Main.txtStyle_Heading_3": "Heading 3",
|
||||
"DE.Controllers.Main.txtStyle_Heading_4": "Heading 4",
|
||||
"DE.Controllers.Main.txtStyle_Heading_5": "Heading 5",
|
||||
"DE.Controllers.Main.txtStyle_Heading_6": "Heading 6",
|
||||
"DE.Controllers.Main.txtStyle_Heading_7": "Heading 7",
|
||||
"DE.Controllers.Main.txtStyle_Heading_8": "Heading 8",
|
||||
"DE.Controllers.Main.txtStyle_Heading_9": "Heading 9",
|
||||
"DE.Controllers.Main.txtStyle_Intense_Quote": "Intense Quote",
|
||||
"DE.Controllers.Main.txtStyle_List_Paragraph": "List Paragraph",
|
||||
"DE.Controllers.Main.txtStyle_No_Spacing": "No Spacing",
|
||||
"DE.Controllers.Main.txtStyle_Normal": "Normal",
|
||||
"DE.Controllers.Main.txtStyle_Quote": "Quote",
|
||||
"DE.Controllers.Main.txtStyle_Subtitle": "Subtitle",
|
||||
"DE.Controllers.Main.txtStyle_Title": "Title",
|
||||
"DE.Controllers.Main.txtXAxis": "Axe X",
|
||||
"DE.Controllers.Main.txtYAxis": "Axe Y",
|
||||
"DE.Controllers.Main.unknownErrorText": "Erreur inconnue.",
|
||||
|
@ -348,6 +364,7 @@
|
|||
"DE.Views.Settings.textPages": "Pages",
|
||||
"DE.Views.Settings.textParagraphs": "Paragraphes",
|
||||
"DE.Views.Settings.textPortrait": "Portrait",
|
||||
"DE.Views.Settings.textPoweredBy": "Powered by",
|
||||
"DE.Views.Settings.textReader": "Mode de lecture",
|
||||
"DE.Views.Settings.textSettings": "Paramètres",
|
||||
"DE.Views.Settings.textSpaces": "Espaces",
|
||||
|
|
|
@ -120,6 +120,22 @@
|
|||
"DE.Controllers.Main.txtDiagramTitle": "Заголовок диаграммы",
|
||||
"DE.Controllers.Main.txtEditingMode": "Установка режима редактирования...",
|
||||
"DE.Controllers.Main.txtSeries": "Ряд",
|
||||
"DE.Controllers.Main.txtStyle_Heading_1": "Заголовок 1",
|
||||
"DE.Controllers.Main.txtStyle_Heading_2": "Заголовок 2",
|
||||
"DE.Controllers.Main.txtStyle_Heading_3": "Заголовок 3",
|
||||
"DE.Controllers.Main.txtStyle_Heading_4": "Заголовок 4",
|
||||
"DE.Controllers.Main.txtStyle_Heading_5": "Заголовок 5",
|
||||
"DE.Controllers.Main.txtStyle_Heading_6": "Заголовок 6",
|
||||
"DE.Controllers.Main.txtStyle_Heading_7": "Заголовок 7",
|
||||
"DE.Controllers.Main.txtStyle_Heading_8": "Заголовок 8",
|
||||
"DE.Controllers.Main.txtStyle_Heading_9": "Заголовок 9",
|
||||
"DE.Controllers.Main.txtStyle_Intense_Quote": "Выделенная цитата",
|
||||
"DE.Controllers.Main.txtStyle_List_Paragraph": "Абзац списка",
|
||||
"DE.Controllers.Main.txtStyle_No_Spacing": "Без интервала",
|
||||
"DE.Controllers.Main.txtStyle_Normal": "Обычный",
|
||||
"DE.Controllers.Main.txtStyle_Quote": "Цитата",
|
||||
"DE.Controllers.Main.txtStyle_Subtitle": "Подзаголовок",
|
||||
"DE.Controllers.Main.txtStyle_Title": "Название",
|
||||
"DE.Controllers.Main.txtXAxis": "Ось X",
|
||||
"DE.Controllers.Main.txtYAxis": "Ось Y",
|
||||
"DE.Controllers.Main.unknownErrorText": "Неизвестная ошибка.",
|
||||
|
@ -132,22 +148,6 @@
|
|||
"DE.Controllers.Main.warnLicenseExp": "Истек срок действия лицензии.<br>Обновите лицензию, а затем обновите страницу.",
|
||||
"DE.Controllers.Main.warnNoLicense": "Вы используете open source версию ONLYOFFICE. Эта версия имеет ограничения по количеству одновременных подключений к серверу документов (20 подключений одновременно).<br>Если требуется больше, рассмотрите вопрос о покупке коммерческой лицензии.",
|
||||
"DE.Controllers.Main.warnProcessRightsChange": "Вам было отказано в праве на редактирование этого файла.",
|
||||
"DE.Controllers.Main.txtStyle_Normal": "Обычный",
|
||||
"DE.Controllers.Main.txtStyle_No_Spacing": "Без интервала",
|
||||
"DE.Controllers.Main.txtStyle_Heading_1": "Заголовок 1",
|
||||
"DE.Controllers.Main.txtStyle_Heading_2": "Заголовок 2",
|
||||
"DE.Controllers.Main.txtStyle_Heading_3": "Заголовок 3",
|
||||
"DE.Controllers.Main.txtStyle_Heading_4": "Заголовок 4",
|
||||
"DE.Controllers.Main.txtStyle_Heading_5": "Заголовок 5",
|
||||
"DE.Controllers.Main.txtStyle_Heading_6": "Заголовок 6",
|
||||
"DE.Controllers.Main.txtStyle_Heading_7": "Заголовок 7",
|
||||
"DE.Controllers.Main.txtStyle_Heading_8": "Заголовок 8",
|
||||
"DE.Controllers.Main.txtStyle_Heading_9": "Заголовок 9",
|
||||
"DE.Controllers.Main.txtStyle_Title": "Название",
|
||||
"DE.Controllers.Main.txtStyle_Subtitle": "Подзаголовок",
|
||||
"DE.Controllers.Main.txtStyle_Quote": "Цитата",
|
||||
"DE.Controllers.Main.txtStyle_Intense_Quote": "Выделенная цитата",
|
||||
"DE.Controllers.Main.txtStyle_List_Paragraph": "Абзац списка",
|
||||
"DE.Controllers.Search.textNoTextFound": "Текст не найден",
|
||||
"DE.Controllers.Search.textReplaceAll": "Заменить все",
|
||||
"DE.Controllers.Settings.notcriticalErrorTitle": "Внимание",
|
||||
|
@ -364,6 +364,7 @@
|
|||
"DE.Views.Settings.textPages": "Страницы",
|
||||
"DE.Views.Settings.textParagraphs": "Абзацы",
|
||||
"DE.Views.Settings.textPortrait": "Книжная",
|
||||
"DE.Views.Settings.textPoweredBy": "Powered by",
|
||||
"DE.Views.Settings.textReader": "Режим чтения",
|
||||
"DE.Views.Settings.textSettings": "Настройки",
|
||||
"DE.Views.Settings.textSpaces": "Пробелы",
|
||||
|
|
378
apps/documenteditor/mobile/locale/sk.json
Normal file
378
apps/documenteditor/mobile/locale/sk.json
Normal file
|
@ -0,0 +1,378 @@
|
|||
{
|
||||
"Common.UI.ThemeColorPalette.textStandartColors": "Štandardné farby",
|
||||
"Common.UI.ThemeColorPalette.textThemeColors": "Farebné témy",
|
||||
"Common.Utils.Metric.txtCm": "cm",
|
||||
"Common.Utils.Metric.txtPt": "pt",
|
||||
"DE.Controllers.AddContainer.textImage": "Obrázok",
|
||||
"DE.Controllers.AddContainer.textOther": "Ostatné",
|
||||
"DE.Controllers.AddContainer.textShape": "Tvar",
|
||||
"DE.Controllers.AddContainer.textTable": "Tabuľka",
|
||||
"DE.Controllers.AddImage.textEmptyImgUrl": "Musíte upresniť URL obrázka.",
|
||||
"DE.Controllers.AddImage.txtNotUrl": "Toto pole by malo byť vo formáte 'http://www.example.com'",
|
||||
"DE.Controllers.AddOther.txtNotUrl": "Toto pole by malo byť vo formáte 'http://www.example.com'",
|
||||
"DE.Controllers.AddTable.textCancel": "Zrušiť",
|
||||
"DE.Controllers.AddTable.textColumns": "Stĺpce",
|
||||
"DE.Controllers.AddTable.textRows": "Riadky",
|
||||
"DE.Controllers.AddTable.textTableSize": "Veľkosť tabuľky",
|
||||
"DE.Controllers.DocumentHolder.menuAddLink": "Pridať odkaz",
|
||||
"DE.Controllers.DocumentHolder.menuCopy": "Kopírovať",
|
||||
"DE.Controllers.DocumentHolder.menuCut": "Vystrihnúť",
|
||||
"DE.Controllers.DocumentHolder.menuDelete": "Vymazať",
|
||||
"DE.Controllers.DocumentHolder.menuEdit": "Upraviť",
|
||||
"DE.Controllers.DocumentHolder.menuMore": "Viac",
|
||||
"DE.Controllers.DocumentHolder.menuOpenLink": "Otvoriť odkaz\n\n",
|
||||
"DE.Controllers.DocumentHolder.menuPaste": "Vložiť",
|
||||
"DE.Controllers.DocumentHolder.sheetCancel": "Zrušiť",
|
||||
"DE.Controllers.DocumentHolder.textGuest": "Návštevník",
|
||||
"DE.Controllers.EditContainer.textChart": "Graf",
|
||||
"DE.Controllers.EditContainer.textHyperlink": "Hypertextový odkaz",
|
||||
"DE.Controllers.EditContainer.textImage": "Obrázok",
|
||||
"DE.Controllers.EditContainer.textParagraph": "Odsek",
|
||||
"DE.Controllers.EditContainer.textSettings": "Nastavenia",
|
||||
"DE.Controllers.EditContainer.textShape": "Tvar",
|
||||
"DE.Controllers.EditContainer.textTable": "Tabuľka",
|
||||
"DE.Controllers.EditContainer.textText": "Text",
|
||||
"DE.Controllers.EditImage.textEmptyImgUrl": "Musíte upresniť URL obrázka.",
|
||||
"DE.Controllers.EditImage.txtNotUrl": "Toto pole by malo byť vo formáte 'http://www.example.com'",
|
||||
"DE.Controllers.EditText.textAuto": "Automaticky",
|
||||
"DE.Controllers.EditText.textFonts": "Písma",
|
||||
"DE.Controllers.EditText.textPt": "pt",
|
||||
"DE.Controllers.Main.advDRMEnterPassword": "Zadajte svoje heslo:",
|
||||
"DE.Controllers.Main.advDRMOptions": "Chránený súbor",
|
||||
"DE.Controllers.Main.advDRMPassword": "Heslo",
|
||||
"DE.Controllers.Main.advTxtOptions": "Vybrať možnosti TXT\n\n",
|
||||
"DE.Controllers.Main.applyChangesTextText": "Načítavanie dát...",
|
||||
"DE.Controllers.Main.applyChangesTitleText": "Načítavanie dát",
|
||||
"DE.Controllers.Main.convertationTimeoutText": "Prekročený čas konverzie.\n\n",
|
||||
"DE.Controllers.Main.criticalErrorExtText": "Stlačením tlačidla 'OK' sa vrátite do zoznamu dokumentov.\n\n",
|
||||
"DE.Controllers.Main.criticalErrorTitle": "Chyba",
|
||||
"DE.Controllers.Main.defaultTitleText": "Dokumentový editor ONLYOFFICE ",
|
||||
"DE.Controllers.Main.downloadErrorText": "Sťahovanie zlyhalo.",
|
||||
"DE.Controllers.Main.downloadMergeText": "Sťahovanie...",
|
||||
"DE.Controllers.Main.downloadMergeTitle": "Sťahovanie",
|
||||
"DE.Controllers.Main.downloadTextText": "Sťahovanie dokumentu...",
|
||||
"DE.Controllers.Main.downloadTitleText": "Sťahovanie dokumentu",
|
||||
"DE.Controllers.Main.errorBadImageUrl": "Adresa URL obrázku je nesprávna",
|
||||
"DE.Controllers.Main.errorCoAuthoringDisconnect": "Spojenie so serverom sa stratilo. Už nemôžete upravovať.\n\n",
|
||||
"DE.Controllers.Main.errorConnectToServer": "Dokument sa nepodarilo uložiť. Skontrolujte nastavenia pripojenia alebo sa obráťte na správcu. <br> Po kliknutí na tlačidlo 'OK' sa zobrazí výzva na stiahnutie dokumentu.<br><br>Viac informácií o pripojení dokumentového servera <a href=\"https://api.onlyoffice.com/editors/callback\" target=\"_ blank\">tu</a>",
|
||||
"DE.Controllers.Main.errorDatabaseConnection": "Externá chyba.<br>Chyba spojenia databázy. Obráťte sa prosím na podporu.",
|
||||
"DE.Controllers.Main.errorDataRange": "Nesprávny rozsah údajov.\n\n",
|
||||
"DE.Controllers.Main.errorDefaultMessage": "Kód chyby: %1",
|
||||
"DE.Controllers.Main.errorFilePassProtect": "Dokument je chránený heslom.\n\n",
|
||||
"DE.Controllers.Main.errorKeyEncrypt": "Neznámy kľúč deskriptoru\n\n",
|
||||
"DE.Controllers.Main.errorKeyExpire": "Kľúč deskriptora vypršal\n\n",
|
||||
"DE.Controllers.Main.errorMailMergeLoadFile": "Načítavanie zlyhalo",
|
||||
"DE.Controllers.Main.errorMailMergeSaveFile": "Zlúčenie zlyhalo.",
|
||||
"DE.Controllers.Main.errorProcessSaveResult": "Uloženie zlyhalo.",
|
||||
"DE.Controllers.Main.errorServerVersion": "Verzia editora bola aktualizovaná. Stránka sa opätovne načíta, aby sa vykonali zmeny.\n\n",
|
||||
"DE.Controllers.Main.errorStockChart": "Nesprávne poradie riadkov. Ak chcete vytvoriť burzový graf, umiestnite údaje na hárok v nasledujúcom poradí:<br> začiatočná cena, max cena, min cena, konečná cena.\n\n\n\n",
|
||||
"DE.Controllers.Main.errorUpdateVersion": "Verzia súboru bola zmenená. Stránka sa znova načíta.\n\n",
|
||||
"DE.Controllers.Main.errorUserDrop": "K súboru nie je možné práve teraz získať prístup.\n",
|
||||
"DE.Controllers.Main.errorUsersExceed": "Počet používateľov bol prekročený\n\n",
|
||||
"DE.Controllers.Main.errorViewerDisconnect": "Spojenie sa stratilo. Dokument môžete zobraziť,<br>ale nebude možné ho prevziať, kým sa obnoví spojenie.\n\n",
|
||||
"DE.Controllers.Main.leavePageText": "V tomto dokumente máte neuložené zmeny. Kliknutím na položku 'Zostať na tejto stránke' čakáte na automatické uloženie dokumentu. Kliknutím na položku 'Odísť z tejto stránky' odstránite všetky neuložené zmeny.\n\n",
|
||||
"DE.Controllers.Main.loadFontsTextText": "Načítavanie dát...",
|
||||
"DE.Controllers.Main.loadFontsTitleText": "Načítavanie dát",
|
||||
"DE.Controllers.Main.loadFontTextText": "Načítavanie dát...",
|
||||
"DE.Controllers.Main.loadFontTitleText": "Načítavanie dát",
|
||||
"DE.Controllers.Main.loadImagesTextText": "Načítavanie obrázkov...",
|
||||
"DE.Controllers.Main.loadImagesTitleText": "Načítanie obrázkov",
|
||||
"DE.Controllers.Main.loadImageTextText": "Načítanie obrázku ..",
|
||||
"DE.Controllers.Main.loadImageTitleText": "Načítavanie obrázku\n\n",
|
||||
"DE.Controllers.Main.loadingDocumentTextText": "Načítavanie dokumentu ...",
|
||||
"DE.Controllers.Main.loadingDocumentTitleText": "Načítavanie dokumentu",
|
||||
"DE.Controllers.Main.mailMergeLoadFileText": "Načítavanie zdroja údajov...\n\n",
|
||||
"DE.Controllers.Main.mailMergeLoadFileTitle": "Načítavanie zdroja údajov\n\n",
|
||||
"DE.Controllers.Main.notcriticalErrorTitle": "Upozornenie",
|
||||
"DE.Controllers.Main.openErrorText": "Pri otváraní súboru sa vyskytla chyba",
|
||||
"DE.Controllers.Main.openTextText": "Otváranie dokumentu...",
|
||||
"DE.Controllers.Main.openTitleText": "Otváranie dokumentu",
|
||||
"DE.Controllers.Main.printTextText": "Tlač dokumentu...",
|
||||
"DE.Controllers.Main.printTitleText": "Tlač dokumentu",
|
||||
"DE.Controllers.Main.saveErrorText": "Pri ukladaní súboru sa vyskytla chyba",
|
||||
"DE.Controllers.Main.savePreparingText": "Príprava na uloženie\n\n",
|
||||
"DE.Controllers.Main.savePreparingTitle": "Príprava na uloženie. Prosím čakajte...\n\n",
|
||||
"DE.Controllers.Main.saveTextText": "Ukladanie dokumentu...",
|
||||
"DE.Controllers.Main.saveTitleText": "Ukladanie dokumentu",
|
||||
"DE.Controllers.Main.sendMergeText": "Odoslanie zlúčenia...\n\n",
|
||||
"DE.Controllers.Main.sendMergeTitle": "Odoslanie zlúčenia\n\n",
|
||||
"DE.Controllers.Main.splitDividerErrorText": "Počet riadkov musí byť deliteľom 1%\n\n",
|
||||
"DE.Controllers.Main.splitMaxColsErrorText": "Počet stĺpcov musí byť menší ako 1%\n\n",
|
||||
"DE.Controllers.Main.splitMaxRowsErrorText": "Počet riadkov musí byť menší ako 1%\n\n\n\n",
|
||||
"DE.Controllers.Main.textAnonymous": "Anonymný",
|
||||
"DE.Controllers.Main.textBack": "Späť",
|
||||
"DE.Controllers.Main.textBuyNow": "Navštíviť webovú stránku",
|
||||
"DE.Controllers.Main.textCancel": "Zrušiť",
|
||||
"DE.Controllers.Main.textClose": "Zatvoriť",
|
||||
"DE.Controllers.Main.textContactUs": "Kontaktujte predajcu\n\n",
|
||||
"DE.Controllers.Main.textDone": "Hotovo",
|
||||
"DE.Controllers.Main.textLoadingDocument": "Načítavanie dokumentu",
|
||||
"DE.Controllers.Main.textNoLicenseTitle": "ONLYOFFICE verzia s otvoreným zdrojom\n\n",
|
||||
"DE.Controllers.Main.textOK": "OK",
|
||||
"DE.Controllers.Main.textPassword": "Heslo",
|
||||
"DE.Controllers.Main.textPreloader": "Nahrávanie...",
|
||||
"DE.Controllers.Main.textTryUndoRedo": "Funkcie späť/opakovať sú pre rýchly spolu-editačný režim vypnuté.",
|
||||
"DE.Controllers.Main.textUsername": "Užívateľské meno",
|
||||
"DE.Controllers.Main.titleLicenseExp": "Platnosť licencie uplynula\n\n",
|
||||
"DE.Controllers.Main.titleServerVersion": "Editor bol aktualizovaný\n\n",
|
||||
"DE.Controllers.Main.titleUpdateVersion": "Verzia bola zmenená\n\n",
|
||||
"DE.Controllers.Main.txtArt": "Váš text tu",
|
||||
"DE.Controllers.Main.txtDiagramTitle": "Názov grafu",
|
||||
"DE.Controllers.Main.txtEditingMode": "Nastaviť režim úprav ...\n\n",
|
||||
"DE.Controllers.Main.txtSeries": "Rady",
|
||||
"DE.Controllers.Main.txtStyle_Heading_1": "Nadpis 1",
|
||||
"DE.Controllers.Main.txtStyle_Heading_2": "Nadpis 2",
|
||||
"DE.Controllers.Main.txtStyle_Heading_3": "Nadpis 3",
|
||||
"DE.Controllers.Main.txtStyle_Heading_4": "Nadpis 4",
|
||||
"DE.Controllers.Main.txtStyle_Heading_5": "Nadpis 5",
|
||||
"DE.Controllers.Main.txtStyle_Heading_6": "Nadpis 6",
|
||||
"DE.Controllers.Main.txtStyle_Heading_7": "Nadpis 7",
|
||||
"DE.Controllers.Main.txtStyle_Heading_8": "Nadpis 8",
|
||||
"DE.Controllers.Main.txtStyle_Heading_9": "Nadpis 9",
|
||||
"DE.Controllers.Main.txtStyle_Intense_Quote": "Zvýraznená citácia",
|
||||
"DE.Controllers.Main.txtStyle_List_Paragraph": "Odsek zoznamu\n\n",
|
||||
"DE.Controllers.Main.txtStyle_No_Spacing": "Bez riadkovania",
|
||||
"DE.Controllers.Main.txtStyle_Normal": "Normálny",
|
||||
"DE.Controllers.Main.txtStyle_Quote": "Citácia\n",
|
||||
"DE.Controllers.Main.txtStyle_Subtitle": "Podtitul",
|
||||
"DE.Controllers.Main.txtStyle_Title": "Názov",
|
||||
"DE.Controllers.Main.txtXAxis": "Os X\n\n",
|
||||
"DE.Controllers.Main.txtYAxis": "Os Y\n\n",
|
||||
"DE.Controllers.Main.unknownErrorText": "Neznáma chyba.",
|
||||
"DE.Controllers.Main.unsupportedBrowserErrorText": "Váš prehliadač nie je podporovaný.\n\n",
|
||||
"DE.Controllers.Main.uploadImageExtMessage": "Neznámy formát obrázka.\n\n",
|
||||
"DE.Controllers.Main.uploadImageFileCountMessage": "Neboli načítané žiadne obrázky.\n\n",
|
||||
"DE.Controllers.Main.uploadImageSizeMessage": "Maximálny limit veľkosti obrázka bol prekročený.",
|
||||
"DE.Controllers.Main.uploadImageTextText": "Nahrávanie obrázku...",
|
||||
"DE.Controllers.Main.uploadImageTitleText": "Nahrávanie obrázku",
|
||||
"DE.Controllers.Main.warnLicenseExp": "Vaša licencia vypršala.<br>Prosím, aktualizujte si svoju licenciu a obnovte stránku.\n\n\n\n",
|
||||
"DE.Controllers.Main.warnNoLicense": "Používate verziu ONLYOFFICE s otvoreným zdrojom. Verzia má obmedzenia pre súbežné pripojenia k dokumentovému serveru (20 pripojení naraz).<br>Ak potrebujete viac, prosím zvážte nákup komerčnej licencie.\n\n\n",
|
||||
"DE.Controllers.Main.warnProcessRightsChange": "Bolo vám zamietnuté právo upravovať súbor.",
|
||||
"DE.Controllers.Search.textNoTextFound": "Text nebol nájdený",
|
||||
"DE.Controllers.Search.textReplaceAll": "Nahradiť všetko",
|
||||
"DE.Controllers.Settings.notcriticalErrorTitle": "Upozornenie",
|
||||
"DE.Controllers.Settings.txtLoading": "Nahrávanie...",
|
||||
"DE.Controllers.Settings.unknownText": "Neznámy",
|
||||
"DE.Controllers.Settings.warnDownloadAs": "Ak budete pokračovať v ukladaní v tomto formáte, všetky funkcie okrem textu sa stratia.<br>Ste si istý, že chcete pokračovať?\n\n",
|
||||
"DE.Controllers.Toolbar.dlgLeaveMsgText": "V tomto dokumente máte neuložené zmeny. Kliknutím na položku 'Zostať na tejto stránke' čakáte na automatické uloženie dokumentu. Kliknutím na položku 'Odísť z tejto stránky' odstránite všetky neuložené zmeny.\n\n",
|
||||
"DE.Controllers.Toolbar.dlgLeaveTitleText": "Opúšťate aplikáciu",
|
||||
"DE.Controllers.Toolbar.leaveButtonText": "Opustiť túto stránku",
|
||||
"DE.Controllers.Toolbar.stayButtonText": "Zostať na tejto stránke\n\n",
|
||||
"DE.Views.AddImage.textAddress": "Adresa",
|
||||
"DE.Views.AddImage.textBack": "Späť",
|
||||
"DE.Views.AddImage.textFromLibrary": "Obrázok z Knižnice",
|
||||
"DE.Views.AddImage.textFromURL": "Obrázok z URL adresy",
|
||||
"DE.Views.AddImage.textImageURL": "URL obrázka",
|
||||
"DE.Views.AddImage.textInsertImage": "Vložiť obrázok",
|
||||
"DE.Views.AddImage.textLinkSettings": "Nastavenia odkazu\n\n",
|
||||
"DE.Views.AddOther.textAddLink": "Pridať odkaz",
|
||||
"DE.Views.AddOther.textBack": "Späť",
|
||||
"DE.Views.AddOther.textCenterBottom": "Dole uprostred",
|
||||
"DE.Views.AddOther.textCenterTop": "Hore uprostred",
|
||||
"DE.Views.AddOther.textColumnBreak": "Príznak nového stĺpca\n",
|
||||
"DE.Views.AddOther.textContPage": "Súvislá/neprerušovaná strana",
|
||||
"DE.Views.AddOther.textCurrentPos": "Aktuálna pozícia",
|
||||
"DE.Views.AddOther.textDisplay": "Zobraziť",
|
||||
"DE.Views.AddOther.textEvenPage": "Párna stránka",
|
||||
"DE.Views.AddOther.textInsert": "Vložiť",
|
||||
"DE.Views.AddOther.textLeftBottom": "Vľavo dole",
|
||||
"DE.Views.AddOther.textLeftTop": "Vľavo hore",
|
||||
"DE.Views.AddOther.textLink": "Odkaz",
|
||||
"DE.Views.AddOther.textNextPage": "Ďalšia stránka",
|
||||
"DE.Views.AddOther.textOddPage": "Nepárna strana",
|
||||
"DE.Views.AddOther.textPageBreak": "Oddeľovač stránky/zlom strany\n\n\n",
|
||||
"DE.Views.AddOther.textPageNumber": "Číslo strany\n\n",
|
||||
"DE.Views.AddOther.textPosition": "Pozícia",
|
||||
"DE.Views.AddOther.textRightBottom": "Vpravo dole\n\n",
|
||||
"DE.Views.AddOther.textRightTop": "Vpravo hore\n\n",
|
||||
"DE.Views.AddOther.textSectionBreak": "Koniec odseku",
|
||||
"DE.Views.AddOther.textTip": "Nápoveda",
|
||||
"DE.Views.EditChart.textAlign": "Zarovnať",
|
||||
"DE.Views.EditChart.textBack": "Späť",
|
||||
"DE.Views.EditChart.textBackward": "Posunúť späť",
|
||||
"DE.Views.EditChart.textBehind": "Za",
|
||||
"DE.Views.EditChart.textBorder": "Orámovanie",
|
||||
"DE.Views.EditChart.textColor": "Farba",
|
||||
"DE.Views.EditChart.textDistanceText": "Vzdialenosť od textu",
|
||||
"DE.Views.EditChart.textFill": "Vyplniť",
|
||||
"DE.Views.EditChart.textForward": "Posunúť vpred",
|
||||
"DE.Views.EditChart.textInFront": "vpredu",
|
||||
"DE.Views.EditChart.textInline": "V rade za sebou/vnútri riadku\n",
|
||||
"DE.Views.EditChart.textMoveText": "Presunúť s textom\n\n",
|
||||
"DE.Views.EditChart.textOverlap": "Povoliť prekrývanie",
|
||||
"DE.Views.EditChart.textRemoveChart": "Odstrániť graf",
|
||||
"DE.Views.EditChart.textReorder": "Znovu usporiadať/zmena poradia\n\n\n",
|
||||
"DE.Views.EditChart.textSize": "Veľkosť",
|
||||
"DE.Views.EditChart.textSquare": "Štvorec/druhá mocnina",
|
||||
"DE.Views.EditChart.textStyle": "Štýl",
|
||||
"DE.Views.EditChart.textThrough": "Cez",
|
||||
"DE.Views.EditChart.textTight": "Tesný",
|
||||
"DE.Views.EditChart.textToBackground": "Presunúť do pozadia",
|
||||
"DE.Views.EditChart.textToForeground": "Premiestniť do popredia",
|
||||
"DE.Views.EditChart.textTopBottom": "Hore a dole",
|
||||
"DE.Views.EditChart.textType": "Typ",
|
||||
"DE.Views.EditChart.textWrap": "Zabaliť",
|
||||
"DE.Views.EditHyperlink.textDisplay": "Zobraziť",
|
||||
"DE.Views.EditHyperlink.textEdit": "Upraviť odkaz",
|
||||
"DE.Views.EditHyperlink.textLink": "Odkaz",
|
||||
"DE.Views.EditHyperlink.textRemove": "Odstrániť odkaz",
|
||||
"DE.Views.EditHyperlink.textTip": "Nápoveda",
|
||||
"DE.Views.EditImage.textAddress": "Adresa",
|
||||
"DE.Views.EditImage.textAlign": "Zarovnať",
|
||||
"DE.Views.EditImage.textBack": "Späť",
|
||||
"DE.Views.EditImage.textBackward": "Posunúť späť",
|
||||
"DE.Views.EditImage.textBehind": "Za",
|
||||
"DE.Views.EditImage.textDefault": "Predvolená veľkosť",
|
||||
"DE.Views.EditImage.textDistanceText": "Vzdialenosť od textu",
|
||||
"DE.Views.EditImage.textForward": "Posunúť vpred",
|
||||
"DE.Views.EditImage.textFromLibrary": "Obrázok z Knižnice",
|
||||
"DE.Views.EditImage.textFromURL": "Obrázok z URL adresy",
|
||||
"DE.Views.EditImage.textImageURL": "URL obrázka",
|
||||
"DE.Views.EditImage.textInFront": "vpredu",
|
||||
"DE.Views.EditImage.textInline": "V rade za sebou/vnútri riadku\n",
|
||||
"DE.Views.EditImage.textLinkSettings": "Nastavenia odkazu\n\n",
|
||||
"DE.Views.EditImage.textMoveText": "Presunúť s textom\n\n",
|
||||
"DE.Views.EditImage.textOverlap": "Povoliť prekrývanie",
|
||||
"DE.Views.EditImage.textRemove": "Odstrániť obrázok",
|
||||
"DE.Views.EditImage.textReorder": "Znovu usporiadať/zmena poradia\n\n\n",
|
||||
"DE.Views.EditImage.textReplace": "Nahradiť",
|
||||
"DE.Views.EditImage.textReplaceImg": "Nahradiť obrázok",
|
||||
"DE.Views.EditImage.textSquare": "Štvorec/druhá mocnina",
|
||||
"DE.Views.EditImage.textThrough": "Cez",
|
||||
"DE.Views.EditImage.textTight": "Tesný",
|
||||
"DE.Views.EditImage.textToBackground": "Presunúť do pozadia",
|
||||
"DE.Views.EditImage.textToForeground": "Premiestniť do popredia",
|
||||
"DE.Views.EditImage.textTopBottom": "Hore a dole",
|
||||
"DE.Views.EditImage.textWrap": "Zabaliť",
|
||||
"DE.Views.EditParagraph.textAdvanced": "Pokročilé",
|
||||
"DE.Views.EditParagraph.textAdvSettings": "Pokročilé nastavenia",
|
||||
"DE.Views.EditParagraph.textAfter": "Za",
|
||||
"DE.Views.EditParagraph.textAuto": "Automaticky",
|
||||
"DE.Views.EditParagraph.textBack": "Späť",
|
||||
"DE.Views.EditParagraph.textBackground": "Pozadie",
|
||||
"DE.Views.EditParagraph.textBefore": "Pred",
|
||||
"DE.Views.EditParagraph.textFromText": "Vzdialenosť od textu",
|
||||
"DE.Views.EditParagraph.textKeepLines": "Zviazať riadky dohromady",
|
||||
"DE.Views.EditParagraph.textKeepNext": "Zviazať s nasledujúcim",
|
||||
"DE.Views.EditParagraph.textOrphan": "Kontrola osamotených riadkov",
|
||||
"DE.Views.EditParagraph.textPageBreak": "Zlom strany pred",
|
||||
"DE.Views.EditParagraph.textPrgStyles": "Štýly odsekov\n\n",
|
||||
"DE.Views.EditParagraph.textSpaceBetween": "Medzera medzi odsekmi\n\n",
|
||||
"DE.Views.EditShape.textAlign": "Zarovnať",
|
||||
"DE.Views.EditShape.textBack": "Späť",
|
||||
"DE.Views.EditShape.textBackward": "Posunúť späť",
|
||||
"DE.Views.EditShape.textBehind": "Za",
|
||||
"DE.Views.EditShape.textBorder": "Orámovanie",
|
||||
"DE.Views.EditShape.textColor": "Farba",
|
||||
"DE.Views.EditShape.textEffects": "Efekty",
|
||||
"DE.Views.EditShape.textFill": "Vyplniť",
|
||||
"DE.Views.EditShape.textForward": "Posunúť vpred",
|
||||
"DE.Views.EditShape.textFromText": "Vzdialenosť od textu",
|
||||
"DE.Views.EditShape.textInFront": "vpredu",
|
||||
"DE.Views.EditShape.textInline": "V rade za sebou/vnútri riadku\n",
|
||||
"DE.Views.EditShape.textOpacity": "Priehľadnosť",
|
||||
"DE.Views.EditShape.textOverlap": "Povoliť prekrývanie",
|
||||
"DE.Views.EditShape.textRemoveShape": "Odstrániť tvar",
|
||||
"DE.Views.EditShape.textReorder": "Znovu usporiadať/zmena poradia\n\n\n",
|
||||
"DE.Views.EditShape.textReplace": "Nahradiť",
|
||||
"DE.Views.EditShape.textSize": "Veľkosť",
|
||||
"DE.Views.EditShape.textSquare": "Štvorec/druhá mocnina",
|
||||
"DE.Views.EditShape.textStyle": "Štýl",
|
||||
"DE.Views.EditShape.textThrough": "Cez",
|
||||
"DE.Views.EditShape.textTight": "Tesný",
|
||||
"DE.Views.EditShape.textToBackground": "Presunúť do pozadia",
|
||||
"DE.Views.EditShape.textToForeground": "Premiestniť do popredia",
|
||||
"DE.Views.EditShape.textTopAndBottom": "Hore a dole",
|
||||
"DE.Views.EditShape.textWithText": "Presunúť s textom\n\n",
|
||||
"DE.Views.EditShape.textWrap": "Zabaliť",
|
||||
"DE.Views.EditTable.textAlign": "Zarovnať",
|
||||
"DE.Views.EditTable.textBack": "Späť",
|
||||
"DE.Views.EditTable.textBandedColumn": "Pruhovaný stĺpec\n\n",
|
||||
"DE.Views.EditTable.textBandedRow": "Pruhovaný riadok",
|
||||
"DE.Views.EditTable.textBorder": "Orámovanie",
|
||||
"DE.Views.EditTable.textCellMargins": "Okraje bunky",
|
||||
"DE.Views.EditTable.textColor": "Farba",
|
||||
"DE.Views.EditTable.textFill": "Vyplniť",
|
||||
"DE.Views.EditTable.textFirstColumn": "Prvý stĺpec",
|
||||
"DE.Views.EditTable.textFlow": "Prietok",
|
||||
"DE.Views.EditTable.textFromText": "Vzdialenosť od textu",
|
||||
"DE.Views.EditTable.textHeaderRow": "Riadok hlavičky",
|
||||
"DE.Views.EditTable.textInline": "V rade za sebou/vnútri riadku\n",
|
||||
"DE.Views.EditTable.textLastColumn": "Posledný stĺpec\n\n",
|
||||
"DE.Views.EditTable.textOptions": "Možnosti",
|
||||
"DE.Views.EditTable.textRemoveTable": "Odstrániť tabuľku",
|
||||
"DE.Views.EditTable.textRepeatHeader": "Opakovať ako riadok záhlavia\n\n",
|
||||
"DE.Views.EditTable.textResizeFit": "Zmeniť veľkosť na prispôsobenie obsahu\n\n",
|
||||
"DE.Views.EditTable.textSize": "Veľkosť",
|
||||
"DE.Views.EditTable.textStyle": "Štýl",
|
||||
"DE.Views.EditTable.textStyleOptions": "Možnosti štýlu\n\n",
|
||||
"DE.Views.EditTable.textTableOptions": "Možnosti tabuľky",
|
||||
"DE.Views.EditTable.textTotalRow": "Celkový riadok\n\n",
|
||||
"DE.Views.EditTable.textWithText": "Presunúť s textom\n\n",
|
||||
"DE.Views.EditTable.textWrap": "Zabaliť",
|
||||
"DE.Views.EditText.textAdditional": "Ďalšie",
|
||||
"DE.Views.EditText.textAdditionalFormat": "Ďalšie formátovanie\n\n",
|
||||
"DE.Views.EditText.textAllCaps": "Všetko veľkým",
|
||||
"DE.Views.EditText.textAutomatic": "Automaticky",
|
||||
"DE.Views.EditText.textBack": "Späť",
|
||||
"DE.Views.EditText.textBullets": "Odrážky",
|
||||
"DE.Views.EditText.textDblStrikethrough": "Dvojité preškrtnutie\n\n",
|
||||
"DE.Views.EditText.textDblSuperscript": "Horný index",
|
||||
"DE.Views.EditText.textFontColor": "Farba písma",
|
||||
"DE.Views.EditText.textFontColors": "Farby písma",
|
||||
"DE.Views.EditText.textFonts": "Písma",
|
||||
"DE.Views.EditText.textHighlightColor": "Farba zvýraznenia",
|
||||
"DE.Views.EditText.textHighlightColors": "Farby zvýraznenia",
|
||||
"DE.Views.EditText.textLetterSpacing": "Rozstup medzi písmenami",
|
||||
"DE.Views.EditText.textLineSpacing": "Riadkovanie",
|
||||
"DE.Views.EditText.textNone": "žiadny",
|
||||
"DE.Views.EditText.textNumbers": "Čísla",
|
||||
"DE.Views.EditText.textSize": "Veľkosť",
|
||||
"DE.Views.EditText.textSmallCaps": "Malé písmená",
|
||||
"DE.Views.EditText.textStrikethrough": "Prečiarknuť",
|
||||
"DE.Views.EditText.textSubscript": "Dolný index",
|
||||
"DE.Views.Search.textCase": "Rozlišovať veľkosť písmen",
|
||||
"DE.Views.Search.textDone": "Hotovo",
|
||||
"DE.Views.Search.textFind": "Nájsť",
|
||||
"DE.Views.Search.textFindAndReplace": "Nájsť a nahradiť",
|
||||
"DE.Views.Search.textHighlight": "Zvýrazniť výsledky",
|
||||
"DE.Views.Search.textReplace": "Nahradiť",
|
||||
"DE.Views.Search.textSearch": "Hľadať",
|
||||
"DE.Views.Settings.textAbout": "O aplikácii",
|
||||
"DE.Views.Settings.textAddress": "adresa",
|
||||
"DE.Views.Settings.textAuthor": "Autor",
|
||||
"DE.Views.Settings.textBack": "Späť",
|
||||
"DE.Views.Settings.textCreateDate": "Dátum vytvorenia",
|
||||
"DE.Views.Settings.textCustom": "Vlastný",
|
||||
"DE.Views.Settings.textCustomSize": "Vlastná veľkosť",
|
||||
"DE.Views.Settings.textDocInfo": "Informácie o dokumente",
|
||||
"DE.Views.Settings.textDocTitle": "Názov dokumentu",
|
||||
"DE.Views.Settings.textDocumentFormats": "Formáty dokumentu",
|
||||
"DE.Views.Settings.textDocumentSettings": "Nastavenia dokumentu",
|
||||
"DE.Views.Settings.textDone": "Hotovo",
|
||||
"DE.Views.Settings.textDownload": "Stiahnuť",
|
||||
"DE.Views.Settings.textDownloadAs": "Stiahnuť ako...",
|
||||
"DE.Views.Settings.textEditDoc": "Upraviť dokument",
|
||||
"DE.Views.Settings.textEmail": "E-mail",
|
||||
"DE.Views.Settings.textFind": "Nájsť",
|
||||
"DE.Views.Settings.textFindAndReplace": "Nájsť a nahradiť",
|
||||
"DE.Views.Settings.textFormat": "Formát",
|
||||
"DE.Views.Settings.textHelp": "Pomoc",
|
||||
"DE.Views.Settings.textLandscape": "Na šírku",
|
||||
"DE.Views.Settings.textLoading": "Nahrávanie...",
|
||||
"DE.Views.Settings.textOrientation": "Orientácia",
|
||||
"DE.Views.Settings.textPages": "Strany",
|
||||
"DE.Views.Settings.textParagraphs": "Odseky",
|
||||
"DE.Views.Settings.textPortrait": "Na výšku",
|
||||
"DE.Views.Settings.textPoweredBy": "Poháňaný ",
|
||||
"DE.Views.Settings.textReader": "Režim Čitateľ",
|
||||
"DE.Views.Settings.textSettings": "Nastavenia",
|
||||
"DE.Views.Settings.textSpaces": "Medzery",
|
||||
"DE.Views.Settings.textStatistic": "Štatistický",
|
||||
"DE.Views.Settings.textSymbols": "Symboly",
|
||||
"DE.Views.Settings.textTel": "Tel",
|
||||
"DE.Views.Settings.textVersion": "Verzia",
|
||||
"DE.Views.Settings.textWords": "Slová",
|
||||
"DE.Views.Settings.unknownText": "Neznámy",
|
||||
"DE.Views.Toolbar.textBack": "Späť"
|
||||
}
|
|
@ -120,6 +120,22 @@
|
|||
"DE.Controllers.Main.txtDiagramTitle": "图表标题",
|
||||
"DE.Controllers.Main.txtEditingMode": "设置编辑模式..",
|
||||
"DE.Controllers.Main.txtSeries": "系列",
|
||||
"DE.Controllers.Main.txtStyle_Heading_1": "Heading 1",
|
||||
"DE.Controllers.Main.txtStyle_Heading_2": "Heading 2",
|
||||
"DE.Controllers.Main.txtStyle_Heading_3": "Heading 3",
|
||||
"DE.Controllers.Main.txtStyle_Heading_4": "Heading 4",
|
||||
"DE.Controllers.Main.txtStyle_Heading_5": "Heading 5",
|
||||
"DE.Controllers.Main.txtStyle_Heading_6": "Heading 6",
|
||||
"DE.Controllers.Main.txtStyle_Heading_7": "Heading 7",
|
||||
"DE.Controllers.Main.txtStyle_Heading_8": "Heading 8",
|
||||
"DE.Controllers.Main.txtStyle_Heading_9": "Heading 9",
|
||||
"DE.Controllers.Main.txtStyle_Intense_Quote": "Intense Quote",
|
||||
"DE.Controllers.Main.txtStyle_List_Paragraph": "List Paragraph",
|
||||
"DE.Controllers.Main.txtStyle_No_Spacing": "No Spacing",
|
||||
"DE.Controllers.Main.txtStyle_Normal": "Normal",
|
||||
"DE.Controllers.Main.txtStyle_Quote": "Quote",
|
||||
"DE.Controllers.Main.txtStyle_Subtitle": "Subtitle",
|
||||
"DE.Controllers.Main.txtStyle_Title": "Title",
|
||||
"DE.Controllers.Main.txtXAxis": "X轴",
|
||||
"DE.Controllers.Main.txtYAxis": "Y轴",
|
||||
"DE.Controllers.Main.unknownErrorText": "示知错误",
|
||||
|
@ -348,6 +364,7 @@
|
|||
"DE.Views.Settings.textPages": "页面",
|
||||
"DE.Views.Settings.textParagraphs": "段落",
|
||||
"DE.Views.Settings.textPortrait": "肖像",
|
||||
"DE.Views.Settings.textPoweredBy": "Powered by",
|
||||
"DE.Views.Settings.textReader": "阅读模式",
|
||||
"DE.Views.Settings.textSettings": "设置",
|
||||
"DE.Views.Settings.textSpaces": "间隔",
|
||||
|
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -351,28 +351,28 @@ i.icon {
|
|||
// Formats
|
||||
|
||||
&.icon-format-docx {
|
||||
width: 28px;
|
||||
height: 28px;
|
||||
.encoded-svg-background('<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 28 28"><defs><style>.cls-1{fill:#1c3563;}.cls-2{fill:#fff;fill-rule:evenodd;}.cls-3{fill:#182a4c;}</style></defs><path class="cls-1" d="M18,1H5A1,1,0,0,0,4,2V26a1,1,0,0,0,1,1H23a1,1,0,0,0,1-1V7Z"/><polygon class="cls-2" points="9.91 19.63 9.91 12.98 9.5 12.98 9.5 12.36 11.78 12.38 11.78 12.98 11.37 12.98 11.37 17.21 14.21 12.36 15.1 12.38 15.1 17.21 17.59 13.18 17.59 12.98 17.18 12.98 17.18 12.38 19.46 12.38 19.46 12.98 19.05 12.98 14.9 19.63 13.65 19.63 13.65 15.2 11.16 19.63 9.91 19.63 9.91 19.63"/><path class="cls-3" d="M18,1V6a1,1,0,0,0,1,1h5Z"/></svg>');
|
||||
width: 30px;
|
||||
height: 30px;
|
||||
.encoded-svg-background('<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="66px" height="66px" viewBox="22.015 20.75 66 66"><defs><style>.cls-1{fill:#4066D7;}.cls-2{fill:#fff;}.cls-3{fill:#4066D6;}</style></defs><g id="g3103" transform="translate(-21.015556,0)" display="none"><path class="cls-1" d="M78.521,0h7.475c0,3.337,0,6.663,0,10 c13.375,0.075,26.738-0.138,40.101,0.075c2.85-0.288,5.087,1.925,4.825,4.775c0.212,24.625-0.051,49.262,0.125,73.887 c-0.125,2.525,0.25,5.325-1.213,7.563c-1.825,1.3-4.188,1.138-6.313,1.237C111.008,97.475,98.508,97.5,85.996,97.5 c0,3.338,0,6.662,0,10h-7.813c-19.024-3.475-38.1-6.662-57.162-10c-0.013-29.162,0-58.325,0-87.475 C40.183,6.675,59.359,3.413,78.521,0z" /><path class="cls-2" d="M85.996,13.75c13.75,0,27.5,0,41.25,0 c0,26.663,0,53.338,0,80c-13.75,0-27.5,0-41.25,0c0-3.338,0-6.662,0-10c10.838,0,21.663,0,32.5,0c0-1.662,0-3.338,0-5 c-10.837,0-21.662,0-32.5,0c0-2.088,0-4.162,0-6.25c10.838,0,21.663,0,32.5,0c0-1.662,0-3.338,0-5c-10.837,0-21.662,0-32.5,0 c0-2.088,0-4.162,0-6.25c10.838,0,21.663,0,32.5,0c0-1.662,0-3.338,0-5c-10.837,0-21.662,0-32.5,0c0-2.087,0-4.163,0-6.25 c10.838,0,21.663,0,32.5,0c0-1.663,0-3.337,0-5c-10.837,0-21.662,0-32.5,0c0-2.087,0-4.163,0-6.25c10.838,0,21.663,0,32.5,0 c0-1.663,0-3.337,0-5c-10.837,0-21.662,0-32.5,0c0-2.087,0-4.163,0-6.25c10.838,0,21.663,0,32.5,0c0-1.663,0-3.337,0-5 c-10.837,0-21.662,0-32.5,0C85.996,19.587,85.996,16.663,85.996,13.75z" /><path class="cls-2" d="M46.846,35.837 c2.375-0.137,4.75-0.237,7.125-0.362c1.662,8.438,3.362,16.862,5.162,25.262c1.413-8.675,2.976-17.325,4.487-25.987 c2.5-0.087,5-0.225,7.488-0.375c-2.825,12.112-5.301,24.325-8.388,36.362c-2.088,1.088-5.213-0.05-7.688,0.125 c-1.663-8.274-3.601-16.5-5.088-24.813c-1.462,8.075-3.362,16.075-5.037,24.101c-2.4-0.125-4.813-0.275-7.226-0.438 c-2.074-11-4.512-21.925-6.449-32.95c2.137-0.1,4.287-0.188,6.425-0.263c1.287,7.962,2.75,15.888,3.875,23.862 C43.297,52.188,45.096,44.013,46.846,35.837z" /></g><path class="cls-3" d="M50.69,36.792c2.375-0.137,4.75-0.237,7.125-0.362 c1.662,8.438,3.362,16.862,5.162,25.262c1.413-8.675,2.976-17.325,4.487-25.987c2.5-0.087,5-0.225,7.488-0.375 c-2.825,12.112-5.301,24.325-8.388,36.362c-2.088,1.088-5.213-0.05-7.688,0.125c-1.663-8.274-3.601-16.5-5.088-24.813 c-1.462,8.075-3.362,16.075-5.037,24.101c-2.4-0.125-4.813-0.275-7.226-0.438c-2.074-11-4.512-21.925-6.449-32.95 c2.137-0.1,4.287-0.188,6.425-0.263c1.287,7.962,2.75,15.888,3.875,23.862C47.14,53.143,48.94,44.968,50.69,36.792z" /></svg>');
|
||||
}
|
||||
&.icon-format-txt {
|
||||
width: 28px;
|
||||
height: 28px;
|
||||
.encoded-svg-background('<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 28 28"><defs><style>.cls-1{fill:#666;}.cls-2{fill:#fff;}.cls-3{fill:#4e4e4f;}</style></defs><path class="cls-1" d="M18,1H5A1,1,0,0,0,4,2V26a1,1,0,0,0,1,1H23a1,1,0,0,0,1-1V7Z"/><rect class="cls-2" x="8" y="14" width="12" height="0.5"/><rect class="cls-2" x="8" y="12.5" width="12" height="0.5"/><rect class="cls-2" x="8" y="11" width="12" height="0.5"/><rect class="cls-2" x="8" y="9.5" width="12" height="0.5"/><rect class="cls-2" x="8" y="15.5" width="12" height="0.5"/><rect class="cls-2" x="8" y="17" width="12" height="0.5"/><rect class="cls-2" x="8" y="18.5" width="12" height="0.5"/><rect class="cls-2" x="8" y="20" width="12" height="0.5"/><rect class="cls-2" x="8" y="21.5" width="12" height="0.5"/><path class="cls-3" d="M18,1V6a1,1,0,0,0,1,1h5Z"/></svg>');
|
||||
width: 30px;
|
||||
height: 30px;
|
||||
.encoded-svg-background('<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="-14.47 -14.5 58 58" height="58px" width="58px" y="0px" x="0px"><defs><style>.cls-1{fill:#4066D6;}</style></defs><rect height="1" width="29.063" class="cls-1" y="28" /><rect height="1" width="29.063" class="cls-1" y="24" /><rect height="1" width="29.063" class="cls-1" y="20" /><rect height="1" width="29.063" class="cls-1" y="16" /><rect height="1" width="29.063" class="cls-1" y="12" /><rect height="1" width="29.063" class="cls-1" y="8" /><rect height="1" width="29.063" class="cls-1" y="4" /><rect class="cls-1" height="1" width="29.063" /></svg>');
|
||||
}
|
||||
&.icon-format-pdf {
|
||||
width: 28px;
|
||||
height: 28px;
|
||||
.encoded-svg-background('<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 28 28"><defs><style>.cls-1{fill:#a83a30;}.cls-2{fill:#f6f6f6;}.cls-3{fill:#7f2e27;}</style></defs><path class="cls-1" d="M18,1H5A1,1,0,0,0,4,2V26a1,1,0,0,0,1,1H23a1,1,0,0,0,1-1V7Z"/><path class="cls-2" d="M16.75,17a9,9,0,0,1-1.2-.79,7.18,7.18,0,0,1-2-3.25,17.46,17.46,0,0,0,.2-2.9c-0.09.44-.16,1.17-0.4,2.21a6,6,0,0,1-.19-2.91,0.81,0.81,0,0,1,.19-0.3,0.89,0.89,0,0,1,.44.76C14,9,13.54,9,13.43,9H13.17a0.39,0.39,0,0,0-.33.35A7.56,7.56,0,0,0,13.16,13a20.42,20.42,0,0,1-1.39,3.53c-1.69,3.4-3,5.12-3.86,5.12-0.06-.45.83-1.69,2.05-2.6-2.06,1.09-2.49,2.34-2.3,2.58L8,21.81c0.6,0.31,1.63-.51,3.24-3.29a23.72,23.72,0,0,1,5.32-1.13c1.73,0.93,3.72,1.25,3.82.65-0.45.21-1.73-.09-3-0.71,1.78-.11,3.12,0,3.09.58C20.84,17,19.11,16.75,16.75,17ZM11.24,18.5c0.28-.49.58-1,0.9-1.65a14.64,14.64,0,0,0,1.25-3.14,7,7,0,0,0,1.83,2.81,6.78,6.78,0,0,0,.83.6A19.7,19.7,0,0,0,11.24,18.5Z"/><path class="cls-3" d="M18,1V6a1,1,0,0,0,1,1h5Z"/></svg>');
|
||||
width: 30px;
|
||||
height: 30px;
|
||||
.encoded-svg-background('<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 33 33" height="33px" width="33px" y="0px" x="0px"><defs><style>.cls-1{fill:#4066D7;}</style></defs><path d="M11.875,18.648c0.8-1.567,1.709-3.334,2.437-5.107l0,0 l0.288-0.7c-0.95-3.616-1.52-6.519-1.011-8.396l0,0c0.137-0.489,0.704-0.786,1.31-0.786l0,0l0.369,0.005h0.068 c0.83-0.013,1.22,1.042,1.264,1.453l0,0c0.073,0.683-0.243,1.839-0.243,1.839l0,0c0-0.467,0.018-1.221-0.276-1.873l0,0 c-0.343-0.753-0.671-1.204-0.965-1.275l0,0c-0.148,0.099-0.292,0.304-0.342,0.699l0,0c-0.103,0.553-0.133,1.252-0.133,1.612l0,0 c0,1.272,0.25,2.952,0.743,4.683l0,0c0.093-0.268,0.174-0.526,0.24-0.767l0,0c0.101-0.38,0.743-2.901,0.743-2.901l0,0 c0,0-0.162,3.355-0.388,4.371l0,0c-0.048,0.215-0.102,0.427-0.158,0.644l0,0c0.812,2.268,2.121,4.292,3.68,5.75l0,0 c0.615,0.575,1.393,1.038,2.128,1.461l0,0c1.605-0.229,3.084-0.338,4.318-0.324l0,0c1.637,0.021,2.838,0.264,3.324,0.743l0,0 c0.238,0.232,0.335,0.514,0.365,0.83l0,0c0.007,0.122-0.053,0.41-0.07,0.482l0,0c0.018-0.088,0.018-0.518-1.297-0.938l0,0 c-1.034-0.33-2.971-0.32-5.295-0.073l0,0c2.688,1.315,5.307,1.968,6.137,1.577l0,0c0.203-0.1,0.449-0.437,0.449-0.437l0,0 c0,0-0.146,0.665-0.252,0.831l0,0c-0.134,0.18-0.396,0.376-0.646,0.441l0,0c-1.311,0.35-4.722-0.459-7.695-2.158l0,0 c-3.322,0.489-6.972,1.393-9.897,2.353l0,0c-2.874,5.037-5.035,7.351-6.793,6.471l0,0L3.63,28.833 c-0.263-0.15-0.303-0.516-0.242-0.813l0,0c0.205-1.003,1.462-2.513,3.988-4.021l0,0c0.272-0.165,1.483-0.805,1.483-0.805l0,0 c0,0-0.896,0.868-1.106,1.038l0,0c-2.016,1.652-3.504,3.73-3.467,4.536l0,0l0.007,0.069C6.005,28.594,8.573,25.109,11.875,18.648 M12.921,19.184c-0.551,1.038-1.09,2.001-1.588,2.886l0,0c2.752-1.153,5.715-1.892,8.535-2.416l0,0 c-0.379-0.262-0.746-0.539-1.093-0.832l0,0c-1.554-1.314-2.737-2.955-3.595-4.681l0,0C14.636,15.607,13.989,17.166,12.921,19.184" class="cls-1" /></svg>');
|
||||
}
|
||||
&.icon-format-odt {
|
||||
width: 28px;
|
||||
height: 28px;
|
||||
.encoded-svg-background('<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 28 28"><defs><style>.cls-1{fill:#2e5772;}.cls-2{fill:#fff;}.cls-3{fill:#254457;}</style></defs><path class="cls-1" d="M18,1H5A1,1,0,0,0,4,2V26a1,1,0,0,0,1,1H23a1,1,0,0,0,1-1V7Z"/><path class="cls-2" d="M16.25,17.21c-2,.9-2.34,2.17-2.34,2.17a4.33,4.33,0,0,0-2.52-1.7A6.21,6.21,0,0,0,8,18a5.6,5.6,0,0,1,2.73-1.13,5.09,5.09,0,0,1,3,.69,4.22,4.22,0,0,1,2.4-1.16,7.29,7.29,0,0,1,3.35.5,7.53,7.53,0,0,0-3.3.26h0ZM18,14.09a2,2,0,0,0-1.15,1,1.87,1.87,0,0,0-1.18-.91,4.48,4.48,0,0,0-1.94,0,3.09,3.09,0,0,1,1.51-.51,2.81,2.81,0,0,1,1.61.43,2.45,2.45,0,0,1,1.34-.51A4.06,4.06,0,0,1,20,14a5.76,5.76,0,0,0-2,.11h0Z"/><path class="cls-3" d="M18,1V6a1,1,0,0,0,1,1h5Z"/></svg>');
|
||||
width: 30px;
|
||||
height: 30px;
|
||||
.encoded-svg-background('<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 193.631 193.63" height="193.63px" width="193.631px" y="0px" x="0px"><defs><style>.cls-1{fill:#4066D7;}</style></defs><path d="M193.16,59.725v-0.006 c-0.334-0.173-0.671-0.334-1.004-0.497c-5.357-2.586-11.257-4.287-17.526-4.88c-11.083-1.049-21.673,1.496-30.622,6.678 c-6.13-3.477-13.072-5.741-20.542-6.448c-10.298-0.974-20.17,1.16-28.697,5.629c-0.084,0.044-0.17,0.095-0.251,0.135 c-0.207,0.162-0.347,0.414-0.347,0.697c0,0.492,0.392,0.89,0.889,0.89c0.046,0,0.091-0.007,0.139-0.017 c0.021-0.002,0.042-0.011,0.061-0.015c4.586-0.848,9.368-1.088,14.243-0.627c13.683,1.293,25.609,5.521,33.975,15.011 c0.436,0.455,0.822,0.427,1.265-0.024c10.524-12.2,26.663-17.021,44.006-15.382c0.968,0.094,1.921,0.213,2.871,0.355 c0.33,0.05,0.836,0.134,1.133,0.167c0.572,0.063,0.88-0.397,0.88-0.891C193.629,60.166,193.486,59.886,193.16,59.725L193.16,59.725z" class="cls-1" /><path d="M173.053,102.654c-0.056-0.029-0.106-0.046-0.154-0.066 c-10.517-4.349-22.02-6.758-34.093-6.758c-19.293,0-37.155,6.127-51.757,16.524c-11.146-4.993-23.497-7.776-36.496-7.776 c-18.485,0-35.648,5.617-49.895,15.237c-0.047,0.029-0.095,0.066-0.149,0.104C0.205,120.154,0,120.528,0,120.957 c0,0.729,0.592,1.324,1.323,1.324c0.086,0,0.174-0.013,0.259-0.03c0.058-0.015,0.107-0.028,0.161-0.048 c8.166-2.456,16.832-3.791,25.798-3.791c23.836,0,45.083,5.633,61.08,20.68c0.038,0.029,0.071,0.066,0.111,0.104 c0.232,0.205,0.53,0.325,0.863,0.325c0.412,0,0.774-0.189,1.018-0.486c0.006,0.004,0.515-0.72,0.773-1.07 c16.246-22.216,43.03-33.172,72.846-33.172c2.128,0,4.246,0.08,6.337,0.225c0.602,0.047,1.874,0.144,1.903,0.144 c0.726,0,1.322-0.591,1.322-1.324C173.796,103.313,173.492,102.862,173.053,102.654L173.053,102.654z" class="cls-1" /></svg>');
|
||||
}
|
||||
&.icon-format-html {
|
||||
width: 28px;
|
||||
height: 28px;
|
||||
.encoded-svg-background('<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 28 28"><defs><style>.cls-1{fill:#668429;}.cls-2{fill:#fff;}.cls-3{fill:#4e6522;}</style></defs><path class="cls-1" d="M18,1H5A1,1,0,0,0,4,2V26a1,1,0,0,0,1,1H23a1,1,0,0,0,1-1V7Z"/><path class="cls-2" d="M11.57,17.93L8,16.47V15.66l3.53-1.46v1l-2.46.9L11.57,17v0.95h0Zm1.73,0.59H12.17l2.67-4.9H16l-2.69,4.9h0Zm3.17-.59V17l2.47-.92-2.47-.91V14.2L20,15.65v0.8l-3.55,1.47h0Z"/><path class="cls-3" d="M18,1V6a1,1,0,0,0,1,1h5Z"/></svg>');
|
||||
width: 30px;
|
||||
height: 30px;
|
||||
.encoded-svg-background('<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="62px" height="62px" viewBox="0 0 62 62"><defs><style>.cls-1{fill:#4066D5;}</style></defs><g><path class="cls-1" d="M24.993,38.689L11.34,32.753v-3.288l13.653-5.91v3.872l-9.523,3.641l9.523,3.777V38.689z" /><path class="cls-1" d="M27.09,41.298l4.931-20.596h2.867l-4.986,20.596H27.09z" /><path class="cls-1" d="M36.986,38.703v-3.845l9.536-3.75L36.986,27.4v-3.817l13.666,5.91v3.261L36.986,38.703z" /></g></svg>');
|
||||
}
|
||||
}
|
|
@ -273,29 +273,29 @@ i.icon {
|
|||
// Formats
|
||||
|
||||
&.icon-format-docx {
|
||||
width: 28px;
|
||||
height: 28px;
|
||||
.encoded-svg-background('<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 28 28"><defs><style>.cls-1{fill:#1c3563;}.cls-2{fill:#fff;fill-rule:evenodd;}.cls-3{fill:#182a4c;}</style></defs><path class="cls-1" d="M18,1H5A1,1,0,0,0,4,2V26a1,1,0,0,0,1,1H23a1,1,0,0,0,1-1V7Z"/><polygon class="cls-2" points="9.91 19.63 9.91 12.98 9.5 12.98 9.5 12.36 11.78 12.38 11.78 12.98 11.37 12.98 11.37 17.21 14.21 12.36 15.1 12.38 15.1 17.21 17.59 13.18 17.59 12.98 17.18 12.98 17.18 12.38 19.46 12.38 19.46 12.98 19.05 12.98 14.9 19.63 13.65 19.63 13.65 15.2 11.16 19.63 9.91 19.63 9.91 19.63"/><path class="cls-3" d="M18,1V6a1,1,0,0,0,1,1h5Z"/></svg>');
|
||||
width: 30px;
|
||||
height: 30px;
|
||||
.encoded-svg-background('<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="66px" height="66px" viewBox="22.015 20.75 66 66"><defs><style>.cls-1{fill:#4066D7;}.cls-2{fill:#fff;}.cls-3{fill:#4066D6;}</style></defs><g id="g3103" transform="translate(-21.015556,0)" display="none"><path class="cls-1" d="M78.521,0h7.475c0,3.337,0,6.663,0,10 c13.375,0.075,26.738-0.138,40.101,0.075c2.85-0.288,5.087,1.925,4.825,4.775c0.212,24.625-0.051,49.262,0.125,73.887 c-0.125,2.525,0.25,5.325-1.213,7.563c-1.825,1.3-4.188,1.138-6.313,1.237C111.008,97.475,98.508,97.5,85.996,97.5 c0,3.338,0,6.662,0,10h-7.813c-19.024-3.475-38.1-6.662-57.162-10c-0.013-29.162,0-58.325,0-87.475 C40.183,6.675,59.359,3.413,78.521,0z" /><path class="cls-2" d="M85.996,13.75c13.75,0,27.5,0,41.25,0 c0,26.663,0,53.338,0,80c-13.75,0-27.5,0-41.25,0c0-3.338,0-6.662,0-10c10.838,0,21.663,0,32.5,0c0-1.662,0-3.338,0-5 c-10.837,0-21.662,0-32.5,0c0-2.088,0-4.162,0-6.25c10.838,0,21.663,0,32.5,0c0-1.662,0-3.338,0-5c-10.837,0-21.662,0-32.5,0 c0-2.088,0-4.162,0-6.25c10.838,0,21.663,0,32.5,0c0-1.662,0-3.338,0-5c-10.837,0-21.662,0-32.5,0c0-2.087,0-4.163,0-6.25 c10.838,0,21.663,0,32.5,0c0-1.663,0-3.337,0-5c-10.837,0-21.662,0-32.5,0c0-2.087,0-4.163,0-6.25c10.838,0,21.663,0,32.5,0 c0-1.663,0-3.337,0-5c-10.837,0-21.662,0-32.5,0c0-2.087,0-4.163,0-6.25c10.838,0,21.663,0,32.5,0c0-1.663,0-3.337,0-5 c-10.837,0-21.662,0-32.5,0C85.996,19.587,85.996,16.663,85.996,13.75z" /><path class="cls-2" d="M46.846,35.837 c2.375-0.137,4.75-0.237,7.125-0.362c1.662,8.438,3.362,16.862,5.162,25.262c1.413-8.675,2.976-17.325,4.487-25.987 c2.5-0.087,5-0.225,7.488-0.375c-2.825,12.112-5.301,24.325-8.388,36.362c-2.088,1.088-5.213-0.05-7.688,0.125 c-1.663-8.274-3.601-16.5-5.088-24.813c-1.462,8.075-3.362,16.075-5.037,24.101c-2.4-0.125-4.813-0.275-7.226-0.438 c-2.074-11-4.512-21.925-6.449-32.95c2.137-0.1,4.287-0.188,6.425-0.263c1.287,7.962,2.75,15.888,3.875,23.862 C43.297,52.188,45.096,44.013,46.846,35.837z" /></g><path class="cls-3" d="M50.69,36.792c2.375-0.137,4.75-0.237,7.125-0.362 c1.662,8.438,3.362,16.862,5.162,25.262c1.413-8.675,2.976-17.325,4.487-25.987c2.5-0.087,5-0.225,7.488-0.375 c-2.825,12.112-5.301,24.325-8.388,36.362c-2.088,1.088-5.213-0.05-7.688,0.125c-1.663-8.274-3.601-16.5-5.088-24.813 c-1.462,8.075-3.362,16.075-5.037,24.101c-2.4-0.125-4.813-0.275-7.226-0.438c-2.074-11-4.512-21.925-6.449-32.95 c2.137-0.1,4.287-0.188,6.425-0.263c1.287,7.962,2.75,15.888,3.875,23.862C47.14,53.143,48.94,44.968,50.69,36.792z" /></svg>');
|
||||
}
|
||||
&.icon-format-txt {
|
||||
width: 28px;
|
||||
height: 28px;
|
||||
.encoded-svg-background('<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 28 28"><defs><style>.cls-1{fill:#666;}.cls-2{fill:#fff;}.cls-3{fill:#4e4e4f;}</style></defs><path class="cls-1" d="M18,1H5A1,1,0,0,0,4,2V26a1,1,0,0,0,1,1H23a1,1,0,0,0,1-1V7Z"/><rect class="cls-2" x="8" y="14" width="12" height="0.5"/><rect class="cls-2" x="8" y="12.5" width="12" height="0.5"/><rect class="cls-2" x="8" y="11" width="12" height="0.5"/><rect class="cls-2" x="8" y="9.5" width="12" height="0.5"/><rect class="cls-2" x="8" y="15.5" width="12" height="0.5"/><rect class="cls-2" x="8" y="17" width="12" height="0.5"/><rect class="cls-2" x="8" y="18.5" width="12" height="0.5"/><rect class="cls-2" x="8" y="20" width="12" height="0.5"/><rect class="cls-2" x="8" y="21.5" width="12" height="0.5"/><path class="cls-3" d="M18,1V6a1,1,0,0,0,1,1h5Z"/></svg>');
|
||||
width: 30px;
|
||||
height: 30px;
|
||||
.encoded-svg-background('<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="-14.47 -14.5 58 58" height="58px" width="58px" y="0px" x="0px"><defs><style>.cls-1{fill:#4066D6;}</style></defs><rect height="1" width="29.063" class="cls-1" y="28" /><rect height="1" width="29.063" class="cls-1" y="24" /><rect height="1" width="29.063" class="cls-1" y="20" /><rect height="1" width="29.063" class="cls-1" y="16" /><rect height="1" width="29.063" class="cls-1" y="12" /><rect height="1" width="29.063" class="cls-1" y="8" /><rect height="1" width="29.063" class="cls-1" y="4" /><rect class="cls-1" height="1" width="29.063" /></svg>');
|
||||
}
|
||||
&.icon-format-pdf {
|
||||
width: 28px;
|
||||
height: 28px;
|
||||
.encoded-svg-background('<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 28 28"><defs><style>.cls-1{fill:#a83a30;}.cls-2{fill:#f6f6f6;}.cls-3{fill:#7f2e27;}</style></defs><path class="cls-1" d="M18,1H5A1,1,0,0,0,4,2V26a1,1,0,0,0,1,1H23a1,1,0,0,0,1-1V7Z"/><path class="cls-2" d="M16.75,17a9,9,0,0,1-1.2-.79,7.18,7.18,0,0,1-2-3.25,17.46,17.46,0,0,0,.2-2.9c-0.09.44-.16,1.17-0.4,2.21a6,6,0,0,1-.19-2.91,0.81,0.81,0,0,1,.19-0.3,0.89,0.89,0,0,1,.44.76C14,9,13.54,9,13.43,9H13.17a0.39,0.39,0,0,0-.33.35A7.56,7.56,0,0,0,13.16,13a20.42,20.42,0,0,1-1.39,3.53c-1.69,3.4-3,5.12-3.86,5.12-0.06-.45.83-1.69,2.05-2.6-2.06,1.09-2.49,2.34-2.3,2.58L8,21.81c0.6,0.31,1.63-.51,3.24-3.29a23.72,23.72,0,0,1,5.32-1.13c1.73,0.93,3.72,1.25,3.82.65-0.45.21-1.73-.09-3-0.71,1.78-.11,3.12,0,3.09.58C20.84,17,19.11,16.75,16.75,17ZM11.24,18.5c0.28-.49.58-1,0.9-1.65a14.64,14.64,0,0,0,1.25-3.14,7,7,0,0,0,1.83,2.81,6.78,6.78,0,0,0,.83.6A19.7,19.7,0,0,0,11.24,18.5Z"/><path class="cls-3" d="M18,1V6a1,1,0,0,0,1,1h5Z"/></svg>');
|
||||
width: 30px;
|
||||
height: 30px;
|
||||
.encoded-svg-background('<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 33 33" height="33px" width="33px" y="0px" x="0px"><defs><style>.cls-1{fill:#4066D7;}</style></defs><path d="M11.875,18.648c0.8-1.567,1.709-3.334,2.437-5.107l0,0 l0.288-0.7c-0.95-3.616-1.52-6.519-1.011-8.396l0,0c0.137-0.489,0.704-0.786,1.31-0.786l0,0l0.369,0.005h0.068 c0.83-0.013,1.22,1.042,1.264,1.453l0,0c0.073,0.683-0.243,1.839-0.243,1.839l0,0c0-0.467,0.018-1.221-0.276-1.873l0,0 c-0.343-0.753-0.671-1.204-0.965-1.275l0,0c-0.148,0.099-0.292,0.304-0.342,0.699l0,0c-0.103,0.553-0.133,1.252-0.133,1.612l0,0 c0,1.272,0.25,2.952,0.743,4.683l0,0c0.093-0.268,0.174-0.526,0.24-0.767l0,0c0.101-0.38,0.743-2.901,0.743-2.901l0,0 c0,0-0.162,3.355-0.388,4.371l0,0c-0.048,0.215-0.102,0.427-0.158,0.644l0,0c0.812,2.268,2.121,4.292,3.68,5.75l0,0 c0.615,0.575,1.393,1.038,2.128,1.461l0,0c1.605-0.229,3.084-0.338,4.318-0.324l0,0c1.637,0.021,2.838,0.264,3.324,0.743l0,0 c0.238,0.232,0.335,0.514,0.365,0.83l0,0c0.007,0.122-0.053,0.41-0.07,0.482l0,0c0.018-0.088,0.018-0.518-1.297-0.938l0,0 c-1.034-0.33-2.971-0.32-5.295-0.073l0,0c2.688,1.315,5.307,1.968,6.137,1.577l0,0c0.203-0.1,0.449-0.437,0.449-0.437l0,0 c0,0-0.146,0.665-0.252,0.831l0,0c-0.134,0.18-0.396,0.376-0.646,0.441l0,0c-1.311,0.35-4.722-0.459-7.695-2.158l0,0 c-3.322,0.489-6.972,1.393-9.897,2.353l0,0c-2.874,5.037-5.035,7.351-6.793,6.471l0,0L3.63,28.833 c-0.263-0.15-0.303-0.516-0.242-0.813l0,0c0.205-1.003,1.462-2.513,3.988-4.021l0,0c0.272-0.165,1.483-0.805,1.483-0.805l0,0 c0,0-0.896,0.868-1.106,1.038l0,0c-2.016,1.652-3.504,3.73-3.467,4.536l0,0l0.007,0.069C6.005,28.594,8.573,25.109,11.875,18.648 M12.921,19.184c-0.551,1.038-1.09,2.001-1.588,2.886l0,0c2.752-1.153,5.715-1.892,8.535-2.416l0,0 c-0.379-0.262-0.746-0.539-1.093-0.832l0,0c-1.554-1.314-2.737-2.955-3.595-4.681l0,0C14.636,15.607,13.989,17.166,12.921,19.184" class="cls-1" /></svg>');
|
||||
}
|
||||
&.icon-format-odt {
|
||||
width: 28px;
|
||||
height: 28px;
|
||||
.encoded-svg-background('<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 28 28"><defs><style>.cls-1{fill:#2e5772;}.cls-2{fill:#fff;}.cls-3{fill:#254457;}</style></defs><path class="cls-1" d="M18,1H5A1,1,0,0,0,4,2V26a1,1,0,0,0,1,1H23a1,1,0,0,0,1-1V7Z"/><path class="cls-2" d="M16.25,17.21c-2,.9-2.34,2.17-2.34,2.17a4.33,4.33,0,0,0-2.52-1.7A6.21,6.21,0,0,0,8,18a5.6,5.6,0,0,1,2.73-1.13,5.09,5.09,0,0,1,3,.69,4.22,4.22,0,0,1,2.4-1.16,7.29,7.29,0,0,1,3.35.5,7.53,7.53,0,0,0-3.3.26h0ZM18,14.09a2,2,0,0,0-1.15,1,1.87,1.87,0,0,0-1.18-.91,4.48,4.48,0,0,0-1.94,0,3.09,3.09,0,0,1,1.51-.51,2.81,2.81,0,0,1,1.61.43,2.45,2.45,0,0,1,1.34-.51A4.06,4.06,0,0,1,20,14a5.76,5.76,0,0,0-2,.11h0Z"/><path class="cls-3" d="M18,1V6a1,1,0,0,0,1,1h5Z"/></svg>');
|
||||
width: 30px;
|
||||
height: 30px;
|
||||
.encoded-svg-background('<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 193.631 193.63" height="193.63px" width="193.631px" y="0px" x="0px"><defs><style>.cls-1{fill:#4066D7;}</style></defs><path d="M193.16,59.725v-0.006 c-0.334-0.173-0.671-0.334-1.004-0.497c-5.357-2.586-11.257-4.287-17.526-4.88c-11.083-1.049-21.673,1.496-30.622,6.678 c-6.13-3.477-13.072-5.741-20.542-6.448c-10.298-0.974-20.17,1.16-28.697,5.629c-0.084,0.044-0.17,0.095-0.251,0.135 c-0.207,0.162-0.347,0.414-0.347,0.697c0,0.492,0.392,0.89,0.889,0.89c0.046,0,0.091-0.007,0.139-0.017 c0.021-0.002,0.042-0.011,0.061-0.015c4.586-0.848,9.368-1.088,14.243-0.627c13.683,1.293,25.609,5.521,33.975,15.011 c0.436,0.455,0.822,0.427,1.265-0.024c10.524-12.2,26.663-17.021,44.006-15.382c0.968,0.094,1.921,0.213,2.871,0.355 c0.33,0.05,0.836,0.134,1.133,0.167c0.572,0.063,0.88-0.397,0.88-0.891C193.629,60.166,193.486,59.886,193.16,59.725L193.16,59.725z " class="cls-1" /><path d="M173.053,102.654c-0.056-0.029-0.106-0.046-0.154-0.066 c-10.517-4.349-22.02-6.758-34.093-6.758c-19.293,0-37.155,6.127-51.757,16.524c-11.146-4.993-23.497-7.776-36.496-7.776 c-18.485,0-35.648,5.617-49.895,15.237c-0.047,0.029-0.095,0.066-0.149,0.104C0.205,120.154,0,120.528,0,120.957 c0,0.729,0.592,1.324,1.323,1.324c0.086,0,0.174-0.013,0.259-0.03c0.058-0.015,0.107-0.028,0.161-0.048 c8.166-2.456,16.832-3.791,25.798-3.791c23.836,0,45.083,5.633,61.08,20.68c0.038,0.029,0.071,0.066,0.111,0.104 c0.232,0.205,0.53,0.325,0.863,0.325c0.412,0,0.774-0.189,1.018-0.486c0.006,0.004,0.515-0.72,0.773-1.07 c16.246-22.216,43.03-33.172,72.846-33.172c2.128,0,4.246,0.08,6.337,0.225c0.602,0.047,1.874,0.144,1.903,0.144 c0.726,0,1.322-0.591,1.322-1.324C173.796,103.313,173.492,102.862,173.053,102.654L173.053,102.654z" class="cls-1" /></svg>');
|
||||
}
|
||||
&.icon-format-html {
|
||||
width: 28px;
|
||||
height: 28px;
|
||||
.encoded-svg-background('<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 28 28"><defs><style>.cls-1{fill:#668429;}.cls-2{fill:#fff;}.cls-3{fill:#4e6522;}</style></defs><path class="cls-1" d="M18,1H5A1,1,0,0,0,4,2V26a1,1,0,0,0,1,1H23a1,1,0,0,0,1-1V7Z"/><path class="cls-2" d="M11.57,17.93L8,16.47V15.66l3.53-1.46v1l-2.46.9L11.57,17v0.95h0Zm1.73,0.59H12.17l2.67-4.9H16l-2.69,4.9h0Zm3.17-.59V17l2.47-.92-2.47-.91V14.2L20,15.65v0.8l-3.55,1.47h0Z"/><path class="cls-3" d="M18,1V6a1,1,0,0,0,1,1h5Z"/></svg>');
|
||||
width: 30px;
|
||||
height: 30px;
|
||||
.encoded-svg-background('<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="62px" height="62px" viewBox="0 0 62 62"><defs><style>.cls-1{fill:#4066D5;}</style></defs><g><path class="cls-1" d="M24.993,38.689L11.34,32.753v-3.288l13.653-5.91v3.872l-9.523,3.641l9.523,3.777V38.689z" /><path class="cls-1" d="M27.09,41.298l4.931-20.596h2.867l-4.986,20.596H27.09z" /><path class="cls-1" d="M36.986,38.703v-3.845l9.536-3.75L36.986,27.4v-3.817l13.666,5.91v3.261L36.986,38.703z" /></g></svg>');
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -109,6 +109,7 @@ require([
|
|||
docInfo.put_Token(data.token);
|
||||
}
|
||||
|
||||
api.SetThemesPath("../../../../sdkjs/slide/themes/");
|
||||
api.asc_setDocInfo( docInfo );
|
||||
api.asc_getEditorPermissions();
|
||||
api.asc_setViewMode(true);
|
||||
|
|
|
@ -128,44 +128,8 @@ define([
|
|||
},
|
||||
|
||||
onPreview: function(btn, e) {
|
||||
var previewPanel = PE.getController('Viewport').getView('DocumentPreview'),
|
||||
me = this,
|
||||
isResized = false;
|
||||
if (previewPanel && me.api) {
|
||||
previewPanel.show();
|
||||
var onWindowResize = function() {
|
||||
if (isResized) return;
|
||||
isResized = true;
|
||||
Common.NotificationCenter.off('window:resize', onWindowResize);
|
||||
|
||||
var current = me.api.getCurrentPage();
|
||||
me.api.StartDemonstration('presentation-preview', _.isNumber(current) ? current : 0);
|
||||
|
||||
Common.component.Analytics.trackEvent('Status Bar', 'Preview');
|
||||
};
|
||||
if (!me.statusbar.mode.isDesktopApp && !Common.Utils.isIE11) {
|
||||
Common.NotificationCenter.on('window:resize', onWindowResize);
|
||||
me.fullScreen(document.documentElement);
|
||||
setTimeout(function(){
|
||||
onWindowResize();
|
||||
}, 100);
|
||||
} else
|
||||
onWindowResize();
|
||||
}
|
||||
},
|
||||
|
||||
fullScreen: function(element) {
|
||||
if (element) {
|
||||
if(element.requestFullscreen) {
|
||||
element.requestFullscreen();
|
||||
} else if(element.webkitRequestFullscreen) {
|
||||
element.webkitRequestFullscreen();
|
||||
} else if(element.mozRequestFullScreen) {
|
||||
element.mozRequestFullScreen();
|
||||
} else if(element.msRequestFullscreen) {
|
||||
element.msRequestFullscreen();
|
||||
}
|
||||
}
|
||||
var current = this.api.getCurrentPage();
|
||||
Common.NotificationCenter.trigger('preview:start', _.isNumber(current) ? current : 0);
|
||||
},
|
||||
|
||||
/*
|
||||
|
|
|
@ -123,6 +123,30 @@ define([
|
|||
'FileMenu': {
|
||||
'menu:hide': this.onFileMenu.bind(this, 'hide'),
|
||||
'menu:show': this.onFileMenu.bind(this, 'show')
|
||||
},
|
||||
'Common.Views.Header': {
|
||||
'print': this.onPrint.bind(this),
|
||||
'downloadas': function (opts) {
|
||||
var _main = this.getApplication().getController('Main');
|
||||
var _file_type = _main.document.fileType,
|
||||
_format;
|
||||
if ( !!_file_type ) {
|
||||
_format = Asc.c_oAscFileType[ _file_type.toUpperCase() ];
|
||||
}
|
||||
|
||||
var _supported = [
|
||||
Asc.c_oAscFileType.PPTX,
|
||||
Asc.c_oAscFileType.ODP
|
||||
];
|
||||
|
||||
if ( !_format || _supported.indexOf(_format) < 0 )
|
||||
_format = Asc.c_oAscFileType.PDF;
|
||||
|
||||
_main.api.asc_DownloadAs(_format);
|
||||
},
|
||||
'go:editor': function() {
|
||||
Common.Gateway.requestEditRights();
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
|
@ -800,41 +824,7 @@ define([
|
|||
},
|
||||
|
||||
onPreview: function(slidenum) {
|
||||
var previewPanel = PE.getController('Viewport').getView('DocumentPreview'),
|
||||
me = this,
|
||||
isResized = false;
|
||||
if (previewPanel && me.api) {
|
||||
previewPanel.show();
|
||||
var onWindowResize = function() {
|
||||
if (isResized) return;
|
||||
isResized = true;
|
||||
Common.NotificationCenter.off('window:resize', onWindowResize);
|
||||
me.api.StartDemonstration('presentation-preview', _.isNumber(slidenum) ? slidenum : 0, PE.getController('Main').document);
|
||||
Common.component.Analytics.trackEvent('ToolBar', 'Preview');
|
||||
};
|
||||
if (!me.toolbar.mode.isDesktopApp && !Common.Utils.isIE11) {
|
||||
Common.NotificationCenter.on('window:resize', onWindowResize);
|
||||
me.fullScreen(document.documentElement);
|
||||
setTimeout(function(){
|
||||
onWindowResize();
|
||||
}, 100);
|
||||
} else
|
||||
onWindowResize();
|
||||
}
|
||||
},
|
||||
|
||||
fullScreen: function(element) {
|
||||
if (element) {
|
||||
if(element.requestFullscreen) {
|
||||
element.requestFullscreen();
|
||||
} else if(element.webkitRequestFullscreen) {
|
||||
element.webkitRequestFullscreen();
|
||||
} else if(element.mozRequestFullScreen) {
|
||||
element.mozRequestFullScreen();
|
||||
} else if(element.msRequestFullscreen) {
|
||||
element.msRequestFullscreen();
|
||||
}
|
||||
}
|
||||
Common.NotificationCenter.trigger('preview:start', _.isNumber(slidenum) ? slidenum : 0);
|
||||
},
|
||||
|
||||
onPreviewBtnClick: function(btn, e) {
|
||||
|
|
|
@ -84,6 +84,7 @@ define([
|
|||
|
||||
}
|
||||
});
|
||||
Common.NotificationCenter.on('preview:start', this.onPreviewStart.bind(this));
|
||||
},
|
||||
|
||||
setApi: function(api) {
|
||||
|
@ -151,6 +152,45 @@ define([
|
|||
onWindowResize: function(e) {
|
||||
this.onLayoutChanged('window');
|
||||
Common.NotificationCenter.trigger('window:resize');
|
||||
},
|
||||
|
||||
onPreviewStart: function(slidenum) {
|
||||
this.previewPanel = this.previewPanel || PE.getController('Viewport').getView('DocumentPreview');
|
||||
var me = this,
|
||||
isResized = false;
|
||||
if (this.previewPanel && !this.previewPanel.isVisible() && this.api) {
|
||||
this.previewPanel.show();
|
||||
var _onWindowResize = function() {
|
||||
if (isResized) return;
|
||||
isResized = true;
|
||||
Common.NotificationCenter.off('window:resize', _onWindowResize);
|
||||
me.api.StartDemonstration('presentation-preview', _.isNumber(slidenum) ? slidenum : 0, PE.getController('Main').document);
|
||||
Common.component.Analytics.trackEvent('Viewport', 'Preview');
|
||||
};
|
||||
if (!me.viewport.mode.isDesktopApp && !Common.Utils.isIE11) {
|
||||
Common.NotificationCenter.on('window:resize', _onWindowResize);
|
||||
me.fullScreen(document.documentElement);
|
||||
setTimeout(function(){
|
||||
_onWindowResize();
|
||||
}, 100);
|
||||
} else
|
||||
_onWindowResize();
|
||||
}
|
||||
},
|
||||
|
||||
fullScreen: function(element) {
|
||||
if (element) {
|
||||
if(element.requestFullscreen) {
|
||||
element.requestFullscreen();
|
||||
} else if(element.webkitRequestFullscreen) {
|
||||
element.webkitRequestFullscreen();
|
||||
} else if(element.mozRequestFullScreen) {
|
||||
element.mozRequestFullScreen();
|
||||
} else if(element.msRequestFullscreen) {
|
||||
element.msRequestFullscreen();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
});
|
||||
});
|
||||
|
|
|
@ -1455,24 +1455,7 @@ define([
|
|||
e.preventDefault();
|
||||
e.stopPropagation();
|
||||
if (me.slidesCount>0) {
|
||||
var previewPanel = PE.getController('Viewport').getView('DocumentPreview');
|
||||
if (previewPanel && !previewPanel.isVisible() && me.api) {
|
||||
previewPanel.show();
|
||||
var onWindowResize = function() {
|
||||
if (isResized) return;
|
||||
isResized = true;
|
||||
Common.NotificationCenter.off('window:resize', onWindowResize);
|
||||
me.api.StartDemonstration('presentation-preview', 0);
|
||||
};
|
||||
if (!me.mode.isDesktopApp && !Common.Utils.isIE11) {
|
||||
Common.NotificationCenter.on('window:resize', onWindowResize);
|
||||
me.fullScreen(document.documentElement);
|
||||
setTimeout(function(){
|
||||
onWindowResize();
|
||||
}, 100);
|
||||
} else
|
||||
onWindowResize();
|
||||
}
|
||||
Common.NotificationCenter.trigger('preview:start', 0);
|
||||
}
|
||||
};
|
||||
Common.util.Shortcuts.delegateShortcuts({shortcuts:keymap});
|
||||
|
@ -1657,20 +1640,6 @@ define([
|
|||
me.fireEvent('editcomplete', me);
|
||||
},
|
||||
|
||||
fullScreen: function(element) {
|
||||
if (element) {
|
||||
if(element.requestFullscreen) {
|
||||
element.requestFullscreen();
|
||||
} else if(element.webkitRequestFullscreen) {
|
||||
element.webkitRequestFullscreen();
|
||||
} else if(element.mozRequestFullScreen) {
|
||||
element.mozRequestFullScreen();
|
||||
} else if(element.msRequestFullscreen) {
|
||||
element.msRequestFullscreen();
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
onSlidePickerShowAfter: function(picker) {
|
||||
if (!picker._needRecalcSlideLayout) return;
|
||||
|
||||
|
@ -1773,29 +1742,8 @@ define([
|
|||
var mnuPreview = new Common.UI.MenuItem({
|
||||
caption : me.txtPreview
|
||||
}).on('click', function(item) {
|
||||
var previewPanel = PE.getController('Viewport').getView('DocumentPreview'),
|
||||
isResized = false;
|
||||
if (previewPanel && me.api) {
|
||||
previewPanel.show();
|
||||
var onWindowResize = function() {
|
||||
if (isResized) return;
|
||||
isResized = true;
|
||||
Common.NotificationCenter.off('window:resize', onWindowResize);
|
||||
|
||||
var current = me.api.getCurrentPage();
|
||||
me.api.StartDemonstration('presentation-preview', _.isNumber(current) ? current : 0);
|
||||
|
||||
Common.component.Analytics.trackEvent('DocumentHolder', 'Preview');
|
||||
};
|
||||
if (!me.mode.isDesktopApp && !Common.Utils.isIE11) {
|
||||
Common.NotificationCenter.on('window:resize', onWindowResize);
|
||||
me.fullScreen(document.documentElement);
|
||||
setTimeout(function(){
|
||||
onWindowResize();
|
||||
}, 100);
|
||||
} else
|
||||
onWindowResize();
|
||||
}
|
||||
var current = this.api.getCurrentPage();
|
||||
Common.NotificationCenter.trigger('preview:start', _.isNumber(current) ? current : 0);
|
||||
});
|
||||
|
||||
var mnuSelectAll = new Common.UI.MenuItem({
|
||||
|
|
|
@ -138,9 +138,9 @@ define([
|
|||
Common.UI.Mixtbar.prototype.initialize.call(this, {
|
||||
template: _.template(template),
|
||||
tabs: [
|
||||
{ caption: 'File', action: 'file', extcls: 'canedit'},
|
||||
{ caption: 'Home', action: 'home', extcls: 'canedit'},
|
||||
{ caption: 'Insert', action: 'ins', extcls: 'canedit'}
|
||||
{ caption: me.textTabFile, action: 'file', extcls: 'canedit'},
|
||||
{ caption: me.textTabHome, action: 'home', extcls: 'canedit'},
|
||||
{ caption: me.textTabInsert, action: 'ins', extcls: 'canedit'}
|
||||
]}
|
||||
);
|
||||
|
||||
|
@ -933,7 +933,7 @@ define([
|
|||
});
|
||||
|
||||
if ( me.isCompactView )
|
||||
me.setFolded(true); else
|
||||
me.setFolded(true), me.collapse(); else
|
||||
me.setTab('home');
|
||||
|
||||
return this;
|
||||
|
@ -1829,6 +1829,9 @@ define([
|
|||
capTabHome: 'Home',
|
||||
capTabInsert: 'Insert',
|
||||
capBtnComment: 'Comment',
|
||||
textTabFile: 'File',
|
||||
textTabHome: 'Home',
|
||||
textTabInsert: 'Insert',
|
||||
textSurface: 'Surface'
|
||||
}
|
||||
}()), PE.Views.Toolbar || {}));
|
||||
|
|
145
apps/presentationeditor/main/app_dev.reporter.js
Normal file
145
apps/presentationeditor/main/app_dev.reporter.js
Normal file
|
@ -0,0 +1,145 @@
|
|||
/*
|
||||
*
|
||||
* (c) Copyright Ascensio System Limited 2010-2017
|
||||
*
|
||||
* 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
|
||||
*
|
||||
*/
|
||||
/**
|
||||
* app.js
|
||||
*
|
||||
* Created by Maxim.Kadushkin on 17 July 2017
|
||||
* Copyright (c) 2017 Ascensio System SIA. All rights reserved.
|
||||
*
|
||||
*/
|
||||
|
||||
'use strict';
|
||||
var reqerr;
|
||||
require.config({
|
||||
// The shim config allows us to configure dependencies for
|
||||
// scripts that do not call define() to register a module
|
||||
baseUrl: '../../',
|
||||
paths: {
|
||||
jquery : '../vendor/jquery/jquery',
|
||||
underscore : '../vendor/underscore/underscore',
|
||||
xregexp : '../vendor/xregexp/xregexp-all-min',
|
||||
sockjs : '../vendor/sockjs/sockjs.min',
|
||||
allfonts : '../../sdkjs/common/AllFonts'
|
||||
},
|
||||
shim: {
|
||||
underscore: {
|
||||
exports: '_'
|
||||
},
|
||||
sdk: {
|
||||
deps: [
|
||||
'jquery',
|
||||
'underscore',
|
||||
'allfonts',
|
||||
'xregexp',
|
||||
'sockjs'
|
||||
]
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
require([
|
||||
'sockjs',
|
||||
'xregexp',
|
||||
'underscore'
|
||||
], function () {
|
||||
|
||||
var _msg_func = function(msg) {
|
||||
var data = msg.data, cmd;
|
||||
|
||||
try {
|
||||
cmd = window.JSON.parse(data)
|
||||
} catch(e) {}
|
||||
|
||||
if ( cmd ) {
|
||||
if ( cmd.type == 'file:open' ) {
|
||||
load_document(cmd.data);
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
if ( window.attachEvent )
|
||||
window.attachEvent('onmessage', _msg_func); else
|
||||
window.addEventListener('message', _msg_func, false);
|
||||
|
||||
var api = new Asc.asc_docs_api({
|
||||
'id-view' : 'editor_sdk',
|
||||
using : 'reporter'
|
||||
});
|
||||
|
||||
function load_document(data) {
|
||||
var docInfo = {};
|
||||
|
||||
if ( data ) {
|
||||
docInfo = new Asc.asc_CDocInfo();
|
||||
docInfo.put_Id(data.key);
|
||||
docInfo.put_Url(data.url);
|
||||
docInfo.put_Title(data.title);
|
||||
docInfo.put_Format(data.fileType);
|
||||
docInfo.put_VKey(data.vkey);
|
||||
docInfo.put_Options(data.options);
|
||||
docInfo.put_Token(data.token);
|
||||
}
|
||||
|
||||
api.SetThemesPath("../../../../sdkjs/slide/themes/");
|
||||
api.asc_setDocInfo( docInfo );
|
||||
api.asc_getEditorPermissions();
|
||||
api.asc_setViewMode(true);
|
||||
}
|
||||
|
||||
var onDocumentContentReady = function() {
|
||||
api.SetDrawingFreeze(false);
|
||||
$('#loading-mask').hide().remove();
|
||||
};
|
||||
|
||||
var onOpenDocument = function(progress) {
|
||||
var proc = (progress.asc_getCurrentFont() + progress.asc_getCurrentImage())/(progress.asc_getFontsCount() + progress.asc_getImagesCount());
|
||||
console.log('progress: ' + proc);
|
||||
};
|
||||
|
||||
var onEditorPermissions = function(params) {
|
||||
api.asc_LoadDocument();
|
||||
};
|
||||
|
||||
api.asc_registerCallback('asc_onDocumentContentReady', onDocumentContentReady);
|
||||
// api.asc_registerCallback('asc_onOpenDocumentProgress', onOpenDocument);
|
||||
api.asc_registerCallback('asc_onGetEditorPermissions', onEditorPermissions);
|
||||
|
||||
window.postMessage('i:am:ready', '*');
|
||||
|
||||
}, function(err) {
|
||||
if (err.requireType == 'timeout' && !reqerr && window.requireTimeourError) {
|
||||
reqerr = window.requireTimeourError();
|
||||
window.alert(reqerr);
|
||||
window.location.reload();
|
||||
}
|
||||
});
|
|
@ -178,6 +178,10 @@
|
|||
</style>
|
||||
|
||||
<script>
|
||||
window.onbeforeunload = function() {
|
||||
window.postMessage("{ \"reporter_command\" : \"end\" }", "*");
|
||||
};
|
||||
|
||||
var userAgent = navigator.userAgent.toLowerCase(),
|
||||
check = function(regex){ return regex.test(userAgent); },
|
||||
stopLoading = false;
|
||||
|
@ -259,8 +263,15 @@
|
|||
</style>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<script type="text/javascript" src="../../../vendor/jquery/jquery.min.js"></script>
|
||||
<script type="text/javascript" src="../../../vendor/xregexp/xregexp-all-min.js"></script>
|
||||
|
||||
<script type="text/javascript" src="../sdk_dev_scripts.js"></script>
|
||||
<script>
|
||||
window.sdk_dev_scrpipts.forEach(function(item){
|
||||
document.write('<script type="text/javascript" src="' + item + '"><\/script>');
|
||||
});
|
||||
|
||||
window.requireTimeourError = function(){
|
||||
var reqerr;
|
||||
|
||||
|
@ -272,23 +283,11 @@
|
|||
|
||||
return reqerr;
|
||||
};
|
||||
|
||||
var requireTimeoutID = setTimeout(function(){
|
||||
window.alert(window.requireTimeourError());
|
||||
window.location.reload();
|
||||
}, 30000);
|
||||
|
||||
var require = {
|
||||
waitSeconds: 30,
|
||||
callback: function(){
|
||||
clearTimeout(requireTimeoutID);
|
||||
}
|
||||
};
|
||||
</script>
|
||||
|
||||
<div id="editor_sdk" style="position: absolute;width: 100%;height: 100%;"></div>
|
||||
|
||||
<script data-main="app.reporter" src="../../../vendor/requirejs/require.js"></script>
|
||||
<script data-main="app_dev.reporter" src="../../../vendor/requirejs/require.js"></script>
|
||||
|
||||
</body>
|
||||
</html>
|
294
apps/presentationeditor/main/index.reporter.html.deploy
Normal file
294
apps/presentationeditor/main/index.reporter.html.deploy
Normal file
|
@ -0,0 +1,294 @@
|
|||
<!DOCTYPE html>
|
||||
<html style="width:100%; height:100%;">
|
||||
<head>
|
||||
<title>ONLYOFFICE Presentation Editor</title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=IE8"/>
|
||||
<meta name="description" content="" />
|
||||
<meta name="keywords" content="" />
|
||||
<link rel="icon" href="resources/img/favicon.ico" type="image/x-icon" />
|
||||
|
||||
<!-- splash -->
|
||||
|
||||
<style>
|
||||
.loadmask {
|
||||
left: 0;
|
||||
top: 0;
|
||||
position: absolute;
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
overflow: hidden;
|
||||
border: none;
|
||||
background-color: #f4f4f4;
|
||||
z-index: 100;
|
||||
}
|
||||
|
||||
.loader-page {
|
||||
width: 100%;
|
||||
height: 170px;
|
||||
bottom: 42%;
|
||||
position: absolute;
|
||||
text-align: center;
|
||||
line-height: 10px;
|
||||
}
|
||||
|
||||
.loader-logo {
|
||||
max-height: 160px;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
.loader-page-romb {
|
||||
width: 40px;
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
.loader-page-text {
|
||||
width: 100%;
|
||||
bottom: 42%;
|
||||
position: absolute;
|
||||
text-align: center;
|
||||
color: #888;
|
||||
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
|
||||
line-height: 20px;
|
||||
}
|
||||
|
||||
.loader-page-text-loading {
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
.loader-page-text-customer {
|
||||
font-size: 16px;
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
|
||||
.romb {
|
||||
width: 40px;
|
||||
height: 40px;
|
||||
-webkit-transform: rotate(135deg) skew(20deg, 20deg);
|
||||
-moz-transform: rotate(135deg) skew(20deg, 20deg);
|
||||
-ms-transform: rotate(135deg) skew(20deg, 20deg);
|
||||
-o-transform: rotate(135deg) skew(20deg, 20deg);
|
||||
position: absolute;
|
||||
background: red;
|
||||
border-radius: 6px;
|
||||
-webkit-animation: movedown 3s infinite ease;
|
||||
-moz-animation: movedown 3s infinite ease;
|
||||
-ms-animation: movedown 3s infinite ease;
|
||||
-o-animation: movedown 3s infinite ease;
|
||||
animation: movedown 3s infinite ease;
|
||||
}
|
||||
|
||||
#blue {
|
||||
z-index: 3;
|
||||
background: #55bce6;
|
||||
-webkit-animation-name: blue;
|
||||
-moz-animation-name: blue;
|
||||
-ms-animation-name: blue;
|
||||
-o-animation-name: blue;
|
||||
animation-name: blue;
|
||||
}
|
||||
|
||||
#red {
|
||||
z-index:1;
|
||||
background: #de7a59;
|
||||
-webkit-animation-name: red;
|
||||
-moz-animation-name: red;
|
||||
-ms-animation-name: red;
|
||||
-o-animation-name: red;
|
||||
animation-name: red;
|
||||
}
|
||||
|
||||
#green {
|
||||
z-index: 2;
|
||||
background: #a1cb5c;
|
||||
-webkit-animation-name: green;
|
||||
-moz-animation-name: green;
|
||||
-ms-animation-name: green;
|
||||
-o-animation-name: green;
|
||||
animation-name: green;
|
||||
}
|
||||
|
||||
@-webkit-keyframes red {
|
||||
0% { top:120px; background: #de7a59; }
|
||||
10% { top:120px; background: #F2CBBF; }
|
||||
14% { background: #f4f4f4; top:120px; }
|
||||
15% { background: #f4f4f4; top:0;}
|
||||
20% { background: #E6E4E4; }
|
||||
30% { background: #D2D2D2; }
|
||||
40% { top:120px; }
|
||||
100% { top:120px; background: #de7a59; }
|
||||
}
|
||||
|
||||
@keyframes red {
|
||||
0% { top:120px; background: #de7a59; }
|
||||
10% { top:120px; background: #F2CBBF; }
|
||||
14% { background: #f4f4f4; top:120px; }
|
||||
15% { background: #f4f4f4; top:0; }
|
||||
20% { background: #E6E4E4; }
|
||||
30% { background: #D2D2D2; }
|
||||
40% { top:120px; }
|
||||
100% { top:120px; background: #de7a59; }
|
||||
}
|
||||
|
||||
@-webkit-keyframes green {
|
||||
0% { top:110px; background: #a1cb5c; opacity:1; }
|
||||
10% { top:110px; background: #CBE0AC; opacity:1; }
|
||||
14% { background: #f4f4f4; top:110px; opacity:1; }
|
||||
15% { background: #f4f4f4; top:0; opacity:1; }
|
||||
20% { background: #f4f4f4; top:0; opacity:0; }
|
||||
25% { background: #EFEFEF; top:0; opacity:1; }
|
||||
30% { background:#E6E4E4; }
|
||||
70% { top:110px; }
|
||||
100% { top:110px; background: #a1cb5c; }
|
||||
}
|
||||
|
||||
@keyframes green {
|
||||
0% { top:110px; background: #a1cb5c; opacity:1; }
|
||||
10% { top:110px; background: #CBE0AC; opacity:1; }
|
||||
14% { background: #f4f4f4; top:110px; opacity:1; }
|
||||
15% { background: #f4f4f4; top:0; opacity:1; }
|
||||
20% { background: #f4f4f4; top:0; opacity:0; }
|
||||
25% { background: #EFEFEF; top:0; opacity:1; }
|
||||
30% { background:#E6E4E4; }
|
||||
70% { top:110px; }
|
||||
100% { top:110px; background: #a1cb5c; }
|
||||
}
|
||||
|
||||
@-webkit-keyframes blue {
|
||||
0% { top:100px; background: #55bce6; opacity:1; }
|
||||
10% { top:100px; background: #BFE8F8; opacity:1; }
|
||||
14% { background: #f4f4f4; top:100px; opacity:1; }
|
||||
15% { background: #f4f4f4; top:0; opacity:1; }
|
||||
20% { background: #f4f4f4; top:0; opacity:0; }
|
||||
25% { background: #f4f4f4; top:0; opacity:0; }
|
||||
45% { background: #EFEFEF; top:0; opacity:0,2; }
|
||||
100% { top:100px; background: #55bce6; }
|
||||
}
|
||||
|
||||
@keyframes blue {
|
||||
0% { top:100px; background: #55bce6; opacity:1; }
|
||||
10% { top:100px; background: #BFE8F8; opacity:1; }
|
||||
14% { background: #f4f4f4; top:100px; opacity:1; }
|
||||
15% { background: #f4f4f4; top:0; opacity:1; }
|
||||
20% { background: #f4f4f4; top:0; opacity:0; }
|
||||
25% { background: #f4f4f4; top:0; opacity:0; }
|
||||
45% { background: #EFEFEF; top:0; opacity:0,2; }
|
||||
100% { top:100px; background: #55bce6; }
|
||||
}
|
||||
</style>
|
||||
|
||||
<script>
|
||||
var userAgent = navigator.userAgent.toLowerCase(),
|
||||
check = function(regex){ return regex.test(userAgent); },
|
||||
stopLoading = false;
|
||||
if (!check(/opera/) && (check(/msie/) || check(/trident/))) {
|
||||
var m = /msie (\d+\.\d+)/.exec(userAgent);
|
||||
if (m && parseFloat(m[1]) < 9.0) {
|
||||
document.write('<div class="app-error-panel">' +
|
||||
'<div class="message-block">' +
|
||||
'<div class="message-inner">' +
|
||||
'<div class="title">Your browser is not supported.</div>' +
|
||||
'<div class="text">Sorry, Presentation Editor is currently only supported in the latest versions of the Chrome, Firefox, Safari or Internet Explorer web browsers.</div>' +
|
||||
'</div>' +
|
||||
'</div></div>');
|
||||
stopLoading = true;
|
||||
}
|
||||
}
|
||||
|
||||
function getUrlParams() {
|
||||
var e,
|
||||
a = /\+/g, // Regex for replacing addition symbol with a space
|
||||
r = /([^&=]+)=?([^&]*)/g,
|
||||
d = function (s) { return decodeURIComponent(s.replace(a, " ")); },
|
||||
q = window.location.search.substring(1),
|
||||
urlParams = {};
|
||||
|
||||
while (e = r.exec(q))
|
||||
urlParams[d(e[1])] = d(e[2]);
|
||||
|
||||
return urlParams;
|
||||
}
|
||||
|
||||
function encodeUrlParam(str) {
|
||||
return str.replace(/&/g, '&')
|
||||
.replace(/"/g, '"')
|
||||
.replace(/'/g, ''')
|
||||
.replace(/</g, '<')
|
||||
.replace(/>/g, '>');
|
||||
}
|
||||
|
||||
var params = getUrlParams(),
|
||||
lang = (params["lang"] || 'en').split("-")[0],
|
||||
customer = params["customer"] ? ('<div class="loader-page-text-customer">' + encodeUrlParam(params["customer"]) + '</div>') : '',
|
||||
margin = (customer !== '') ? 50 : 20,
|
||||
loading = 'Loading...',
|
||||
logo = params["logo"] ? ((params["logo"] !== 'none') ? ('<img src="' + encodeUrlParam(params["logo"]) + '" class="loader-logo" />') : '') : null;
|
||||
|
||||
window.frameEditorId = params["frameEditorId"];
|
||||
|
||||
if ( lang == 'de') loading = 'Ladevorgang...';
|
||||
else if ( lang == 'es') loading = 'Cargando...';
|
||||
else if ( lang == 'fr') loading = 'Chargement en cours...';
|
||||
else if ( lang == 'it') loading = 'Caricamento in corso...';
|
||||
else if ( lang == 'pt') loading = 'Carregando...';
|
||||
else if ( lang == 'ru') loading = 'Загрузка...';
|
||||
else if ( lang == 'sl') loading = 'Nalaganje...';
|
||||
else if ( lang == 'tr') loading = 'Yükleniyor...';
|
||||
|
||||
if (!stopLoading)
|
||||
document.write(
|
||||
'<div id="loading-mask" class="loadmask">' +
|
||||
'<div class="loader-page" style="margin-bottom: ' + margin + 'px;' + ((logo!==null) ? 'height: auto;' : '') + '">' +
|
||||
((logo!==null) ? logo :
|
||||
'<div class="loader-page-romb">' +
|
||||
'<div class="romb" id="blue"></div>' +
|
||||
'<div class="romb" id="green"></div>' +
|
||||
'<div class="romb" id="red"></div>' +
|
||||
'</div>') +
|
||||
'</div>' +
|
||||
'<div class="loader-page-text">' + customer +
|
||||
'<div class="loader-page-text-loading">' + loading + '</div>' +
|
||||
'</div>' +
|
||||
'</div>');
|
||||
</script>
|
||||
|
||||
<style>
|
||||
body {
|
||||
margin: 0;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<script>
|
||||
window.requireTimeourError = function(){
|
||||
var reqerr;
|
||||
|
||||
if ( lang == 'de') reqerr = 'Die Verbindung ist zu langsam, einige Komponenten konnten nicht geladen werden. Aktualisieren Sie bitte die Seite.';
|
||||
else if ( lang == 'es') reqerr = 'La conexión es muy lenta, algunos de los componentes no han podido cargar. Por favor recargue la página.';
|
||||
else if ( lang == 'fr') reqerr = 'La connexion est trop lente, certains des composants n\'ons pas pu être chargé. Veuillez recharger la page.';
|
||||
else if ( lang == 'ru') reqerr = 'Слишком медленное соединение, не удается загрузить некоторые компоненты. Пожалуйста, обновите страницу.';
|
||||
else reqerr = 'The connection is too slow, some of the components could not be loaded. Please reload the page.';
|
||||
|
||||
return reqerr;
|
||||
};
|
||||
|
||||
var requireTimeoutID = setTimeout(function(){
|
||||
window.alert(window.requireTimeourError());
|
||||
window.location.reload();
|
||||
}, 30000);
|
||||
|
||||
var require = {
|
||||
waitSeconds: 30,
|
||||
callback: function(){
|
||||
clearTimeout(requireTimeoutID);
|
||||
}
|
||||
};
|
||||
</script>
|
||||
|
||||
<div id="editor_sdk" style="position: absolute;width: 100%;height: 100%;"></div>
|
||||
|
||||
<script data-main="app.reporter" src="../../../vendor/requirejs/require.js"></script>
|
||||
|
||||
</body>
|
||||
</html>
|
File diff suppressed because it is too large
Load diff
|
@ -92,6 +92,10 @@
|
|||
"Common.Views.Header.txtAccessRights": "Change access rights",
|
||||
"Common.Views.Header.tipAccessRights": "Manage document access rights",
|
||||
"Common.Views.Header.labelCoUsersDescr": "Document is currently being edited by several users.",
|
||||
"Common.Views.Header.tipViewUsers": "View users and manage document access rights",
|
||||
"Common.Views.Header.tipDownload": "Download file",
|
||||
"Common.Views.Header.tipPrint": "Print file",
|
||||
"Common.Views.Header.tipGoEdit": "Edit current file",
|
||||
"Common.Views.ImageFromUrlDialog.cancelButtonText": "Cancel",
|
||||
"Common.Views.ImageFromUrlDialog.okButtonText": "OK",
|
||||
"Common.Views.ImageFromUrlDialog.textUrl": "Paste an image URL:",
|
||||
|
@ -1295,6 +1299,9 @@
|
|||
"PE.Views.Toolbar.textStrikeout": "Strikeout",
|
||||
"PE.Views.Toolbar.textSubscript": "Subscript",
|
||||
"PE.Views.Toolbar.textSuperscript": "Superscript",
|
||||
"PE.Views.Toolbar.textTabFile": "File",
|
||||
"PE.Views.Toolbar.textTabHome": "Home",
|
||||
"PE.Views.Toolbar.textTabInsert": "Insert",
|
||||
"PE.Views.Toolbar.textSurface": "Surface",
|
||||
"PE.Views.Toolbar.textTitleError": "Error",
|
||||
"PE.Views.Toolbar.textUnderline": "Underline",
|
||||
|
|
|
@ -61,7 +61,7 @@
|
|||
"Common.Views.Comments.textCancel": "Annuler",
|
||||
"Common.Views.Comments.textClose": "Fermer",
|
||||
"Common.Views.Comments.textComments": "Commentaires",
|
||||
"Common.Views.Comments.textEdit": "OK",
|
||||
"Common.Views.Comments.textEdit": "Modifier",
|
||||
"Common.Views.Comments.textEnterCommentHint": "Entrez votre commentaire ici",
|
||||
"Common.Views.Comments.textOpenAgain": "Ouvrir à nouveau",
|
||||
"Common.Views.Comments.textReply": "Répondre",
|
||||
|
@ -192,12 +192,20 @@
|
|||
"PE.Controllers.Main.txtButtons": "Boutons",
|
||||
"PE.Controllers.Main.txtCallouts": "Légendes",
|
||||
"PE.Controllers.Main.txtCharts": "Graphiques",
|
||||
"PE.Controllers.Main.txtClipArt": "Clip Art",
|
||||
"PE.Controllers.Main.txtDateTime": "Date and time",
|
||||
"PE.Controllers.Main.txtDiagram": "SmartArt",
|
||||
"PE.Controllers.Main.txtDiagramTitle": "Titre du graphique",
|
||||
"PE.Controllers.Main.txtEditingMode": "Définissez le mode d'édition...",
|
||||
"PE.Controllers.Main.txtFiguredArrows": "Flèches figurées",
|
||||
"PE.Controllers.Main.txtFooter": "Footer",
|
||||
"PE.Controllers.Main.txtHeader": "Header",
|
||||
"PE.Controllers.Main.txtImage": "Image",
|
||||
"PE.Controllers.Main.txtLines": "Lignes",
|
||||
"PE.Controllers.Main.txtMath": "Maths",
|
||||
"PE.Controllers.Main.txtMedia": "Media",
|
||||
"PE.Controllers.Main.txtNeedSynchronize": "Vous avez des mises à jour",
|
||||
"PE.Controllers.Main.txtPicture": "Picture",
|
||||
"PE.Controllers.Main.txtRectangles": "Rectangles",
|
||||
"PE.Controllers.Main.txtSeries": "Série",
|
||||
"PE.Controllers.Main.txtSldLtTBlank": "Vide",
|
||||
|
@ -236,6 +244,10 @@
|
|||
"PE.Controllers.Main.txtSldLtTVertTitleAndTx": "Titre vertical et texte",
|
||||
"PE.Controllers.Main.txtSldLtTVertTitleAndTxOverChart": "Titre vertical et texte sur graphique",
|
||||
"PE.Controllers.Main.txtSldLtTVertTx": "Texte vertical",
|
||||
"PE.Controllers.Main.txtSlideNumber": "Slide number",
|
||||
"PE.Controllers.Main.txtSlideSubtitle": "Slide subtitle",
|
||||
"PE.Controllers.Main.txtSlideText": "Slide text",
|
||||
"PE.Controllers.Main.txtSlideTitle": "Slide title",
|
||||
"PE.Controllers.Main.txtStarsRibbons": "Étoiles et rubans",
|
||||
"PE.Controllers.Main.txtXAxis": "Axe X",
|
||||
"PE.Controllers.Main.txtYAxis": "Axe Y",
|
||||
|
@ -598,6 +610,7 @@
|
|||
"PE.Views.ChartSettings.textSize": "Taille",
|
||||
"PE.Views.ChartSettings.textStock": "Boursier",
|
||||
"PE.Views.ChartSettings.textStyle": "Style",
|
||||
"PE.Views.ChartSettings.textSurface": "Surface",
|
||||
"PE.Views.ChartSettings.textWidth": "Largeur",
|
||||
"PE.Views.ChartSettingsAdvanced.cancelButtonText": "Annuler",
|
||||
"PE.Views.ChartSettingsAdvanced.okButtonText": "OK",
|
||||
|
@ -1270,6 +1283,7 @@
|
|||
"PE.Views.Toolbar.textStrikeout": "Barré",
|
||||
"PE.Views.Toolbar.textSubscript": "Indice",
|
||||
"PE.Views.Toolbar.textSuperscript": "Exposant",
|
||||
"PE.Views.Toolbar.textSurface": "Surface",
|
||||
"PE.Views.Toolbar.textTitleError": "Erreur",
|
||||
"PE.Views.Toolbar.textUnderline": "Souligné",
|
||||
"PE.Views.Toolbar.textZoom": "Zoom",
|
||||
|
|
1356
apps/presentationeditor/main/locale/sk.json
Normal file
1356
apps/presentationeditor/main/locale/sk.json
Normal file
File diff suppressed because it is too large
Load diff
445
apps/presentationeditor/mobile/locale/cs.json
Normal file
445
apps/presentationeditor/mobile/locale/cs.json
Normal file
|
@ -0,0 +1,445 @@
|
|||
{
|
||||
"Common.UI.ThemeColorPalette.textStandartColors": "Standardní barvy",
|
||||
"Common.UI.ThemeColorPalette.textThemeColors": "Barvy tématu",
|
||||
"Common.Utils.Metric.txtCm": "cm",
|
||||
"Common.Utils.Metric.txtPt": "pt",
|
||||
"PE.Controllers.AddContainer.textImage": "Obrázek",
|
||||
"PE.Controllers.AddContainer.textLink": "Odkaz",
|
||||
"PE.Controllers.AddContainer.textShape": "Tvar",
|
||||
"PE.Controllers.AddContainer.textSlide": "Snímek",
|
||||
"PE.Controllers.AddContainer.textTable": "Tabulka",
|
||||
"PE.Controllers.AddImage.textEmptyImgUrl": "Musíte upřesnit URL obrázku.",
|
||||
"PE.Controllers.AddImage.txtNotUrl": "Toto pole by mělo obsahovat adresu URL ve formátu 'http://www.example.com'",
|
||||
"PE.Controllers.AddLink.textDefault": "Vybraný text",
|
||||
"PE.Controllers.AddLink.textExternalLink": "Externí odkaz",
|
||||
"PE.Controllers.AddLink.textFirst": "První snímek",
|
||||
"PE.Controllers.AddLink.textInternalLink": "Snímek v této prezentaci",
|
||||
"PE.Controllers.AddLink.textLast": "Poslední snímek",
|
||||
"PE.Controllers.AddLink.textNext": "Další snímek",
|
||||
"PE.Controllers.AddLink.textPrev": "Předchozí snímek",
|
||||
"PE.Controllers.AddLink.textSlide": "Snímek",
|
||||
"PE.Controllers.AddLink.txtNotUrl": "Toto pole by mělo obsahovat adresu URL ve formátu 'http://www.example.com'",
|
||||
"PE.Controllers.AddTable.textCancel": "Zrušit",
|
||||
"PE.Controllers.AddTable.textColumns": "Sloupce",
|
||||
"PE.Controllers.AddTable.textRows": "Řádky",
|
||||
"PE.Controllers.AddTable.textTableSize": "Velikost tabulky",
|
||||
"PE.Controllers.DocumentHolder.menuAddLink": "Přidat odkaz",
|
||||
"PE.Controllers.DocumentHolder.menuCopy": "Kopírovat",
|
||||
"PE.Controllers.DocumentHolder.menuCut": "Vyjmout",
|
||||
"PE.Controllers.DocumentHolder.menuDelete": "Odstranit",
|
||||
"PE.Controllers.DocumentHolder.menuEdit": "Upravit",
|
||||
"PE.Controllers.DocumentHolder.menuMore": "Více",
|
||||
"PE.Controllers.DocumentHolder.menuOpenLink": "Otevřít odkaz",
|
||||
"PE.Controllers.DocumentHolder.menuPaste": "Vložit",
|
||||
"PE.Controllers.DocumentHolder.sheetCancel": "Zrušit",
|
||||
"PE.Controllers.EditContainer.textChart": "Graf",
|
||||
"PE.Controllers.EditContainer.textHyperlink": "Hypertextový odkaz",
|
||||
"PE.Controllers.EditContainer.textImage": "Obrázek",
|
||||
"PE.Controllers.EditContainer.textSettings": "Nastavení",
|
||||
"PE.Controllers.EditContainer.textShape": "Tvar",
|
||||
"PE.Controllers.EditContainer.textSlide": "Snímek",
|
||||
"PE.Controllers.EditContainer.textTable": "Tabulka",
|
||||
"PE.Controllers.EditContainer.textText": "Text",
|
||||
"PE.Controllers.EditImage.textEmptyImgUrl": "Musíte upřesnit URL obrázku.",
|
||||
"PE.Controllers.EditImage.txtNotUrl": "Toto pole by mělo obsahovat adresu URL ve formátu 'http://www.example.com'",
|
||||
"PE.Controllers.EditLink.textDefault": "Vybraný text",
|
||||
"PE.Controllers.EditLink.textExternalLink": "Externí odkaz",
|
||||
"PE.Controllers.EditLink.textFirst": "První snímek",
|
||||
"PE.Controllers.EditLink.textInternalLink": "Snímek v této prezentaci",
|
||||
"PE.Controllers.EditLink.textLast": "Poslední snímek",
|
||||
"PE.Controllers.EditLink.textNext": "Další snímek",
|
||||
"PE.Controllers.EditLink.textPrev": "Předchozí snímek",
|
||||
"PE.Controllers.EditLink.textSlide": "Snímek",
|
||||
"PE.Controllers.EditLink.txtNotUrl": "Toto pole by mělo obsahovat adresu URL ve formátu 'http://www.example.com'",
|
||||
"PE.Controllers.EditSlide.textSec": "s",
|
||||
"PE.Controllers.EditText.textAuto": "Automaticky",
|
||||
"PE.Controllers.EditText.textFonts": "Fonty",
|
||||
"PE.Controllers.EditText.textPt": "pt",
|
||||
"PE.Controllers.Main.advDRMEnterPassword": "Zadejte vaše heslo:",
|
||||
"PE.Controllers.Main.advDRMOptions": "Chráněný soubor",
|
||||
"PE.Controllers.Main.advDRMPassword": "Heslo",
|
||||
"PE.Controllers.Main.applyChangesTextText": "Načítání dat...",
|
||||
"PE.Controllers.Main.applyChangesTitleText": "Načítání dat",
|
||||
"PE.Controllers.Main.convertationTimeoutText": "Vypršel čas konverze.",
|
||||
"PE.Controllers.Main.criticalErrorExtText": "Stisknutím tlačítka \"OK\" se vrátíte do seznamu dokumentů.",
|
||||
"PE.Controllers.Main.criticalErrorTitle": "Chyba",
|
||||
"PE.Controllers.Main.defaultTitleText": "ONLYOFFICE Presentation Editor",
|
||||
"PE.Controllers.Main.downloadErrorText": "Stahování selhalo.",
|
||||
"PE.Controllers.Main.downloadTextText": "Stahování dokumentu...",
|
||||
"PE.Controllers.Main.downloadTitleText": "Stahování dokumentu",
|
||||
"PE.Controllers.Main.errorBadImageUrl": "Adresa URL obrázku je nesprávná",
|
||||
"PE.Controllers.Main.errorCoAuthoringDisconnect": "Serverové připojení bylo ztraceno. Nadále nemůžete editovat.",
|
||||
"PE.Controllers.Main.errorConnectToServer": "Dokument nelze uložit. Prosím, zkontrolujte nastavení vašeho připojení nebo kontaktujte vašeho administrátora.<br> Při kliknutí na tlačítko \"OK\" budete vyzváni ke stažení dokumentu.<br><br> Více informací o připojení najdete v Dokumentovém serveru <a href=\"https://api.onlyoffice.com/editors/callback\" target=\"_blank\">here</a>",
|
||||
"PE.Controllers.Main.errorDatabaseConnection": "Externí chyba.<br>Chyba připojení k databázi. Prosím, kontaktujte podporu.",
|
||||
"PE.Controllers.Main.errorDataRange": "Nesprávný datový rozsah.",
|
||||
"PE.Controllers.Main.errorDefaultMessage": "Kód chyby: %1",
|
||||
"PE.Controllers.Main.errorFilePassProtect": "Dokument je chráněn heslem.",
|
||||
"PE.Controllers.Main.errorKeyEncrypt": "Neznámý klíč deskriptoru",
|
||||
"PE.Controllers.Main.errorKeyExpire": "Klíč deskriptoru vypršel",
|
||||
"PE.Controllers.Main.errorProcessSaveResult": "Ukládání selhalo.",
|
||||
"PE.Controllers.Main.errorServerVersion": "Verze editoru byla aktualizována. Stránka bude znovu načtena, aby se provedly změny.",
|
||||
"PE.Controllers.Main.errorStockChart": "Nespravné pořadí řádků. Chcete-li vytvořit burzovní graf umístěte data na list v následujícím pořadí:<br> otevírací cena, maximální cena, minimální cena, uzavírací cena.",
|
||||
"PE.Controllers.Main.errorUpdateVersion": "Verze souboru byla změněna. Stránka bude znovu načtena.",
|
||||
"PE.Controllers.Main.errorUserDrop": "Tento soubor není nyní přístupný.",
|
||||
"PE.Controllers.Main.errorUsersExceed": "Počet uživatelů byl překročen",
|
||||
"PE.Controllers.Main.errorViewerDisconnect": "Spojení je ztraceno. Stále můžete zobrazit dokument,<br>ale nebudete moct stahovat ani tisknout, dokud nebude obnoveno připojení.",
|
||||
"PE.Controllers.Main.leavePageText": "V tomto dokumentu máte neuložené změny. Klikněte na tlačítko \"Zůstat na této stránce\" a počkejte na automatické ukládání dokumentu.Klikněte na tlačítko \"Opustit tuto stránku\", abyste zrušili všechny neuložené změny.",
|
||||
"PE.Controllers.Main.loadFontsTextText": "Načítání dat...",
|
||||
"PE.Controllers.Main.loadFontsTitleText": "Načítání dat",
|
||||
"PE.Controllers.Main.loadFontTextText": "Načítání dat...",
|
||||
"PE.Controllers.Main.loadFontTitleText": "Načítání dat",
|
||||
"PE.Controllers.Main.loadImagesTextText": "Načítání obrázků...",
|
||||
"PE.Controllers.Main.loadImagesTitleText": "Načítání obrázků",
|
||||
"PE.Controllers.Main.loadImageTextText": "Načítání obrázku...",
|
||||
"PE.Controllers.Main.loadImageTitleText": "Načítání obrázku",
|
||||
"PE.Controllers.Main.loadingDocumentTextText": "Načítám prezentace...",
|
||||
"PE.Controllers.Main.loadingDocumentTitleText": "Načítání prezentace",
|
||||
"PE.Controllers.Main.loadThemeTextText": "Načítání tématu...",
|
||||
"PE.Controllers.Main.loadThemeTitleText": "Načítání tématu",
|
||||
"PE.Controllers.Main.notcriticalErrorTitle": "Varování",
|
||||
"PE.Controllers.Main.openErrorText": "Při otevírání souboru došlo k chybě",
|
||||
"PE.Controllers.Main.openTextText": "Otevírání dokumentu...",
|
||||
"PE.Controllers.Main.openTitleText": "Otevírání dokumentu",
|
||||
"PE.Controllers.Main.printTextText": "Tisknutí dokumentu...",
|
||||
"PE.Controllers.Main.printTitleText": "Tisknutí dokumentu",
|
||||
"PE.Controllers.Main.reloadButtonText": "Znovu načíst stránku",
|
||||
"PE.Controllers.Main.requestEditFailedMessageText": "Někdo právě upravuje tento dokument. Prosím zkuste to znovu později.",
|
||||
"PE.Controllers.Main.requestEditFailedTitleText": "Přístup zamítnut",
|
||||
"PE.Controllers.Main.saveErrorText": "Během ukládání souboru došlo k chybě",
|
||||
"PE.Controllers.Main.savePreparingText": "Příprava na ukládání",
|
||||
"PE.Controllers.Main.savePreparingTitle": "Příprava ukládání. Prosím čekejte...",
|
||||
"PE.Controllers.Main.saveTextText": "Ukládání dokumentu...",
|
||||
"PE.Controllers.Main.saveTitleText": "Ukládání dokumentu",
|
||||
"PE.Controllers.Main.splitDividerErrorText": "Počet řádků musí být dělitelem 1%",
|
||||
"PE.Controllers.Main.splitMaxColsErrorText": "Počet sloupců musí být menší než 1%",
|
||||
"PE.Controllers.Main.splitMaxRowsErrorText": "Počet řádků musí být menší než 1%",
|
||||
"PE.Controllers.Main.textAnonymous": "Anonymní",
|
||||
"PE.Controllers.Main.textBack": "Zpět",
|
||||
"PE.Controllers.Main.textBuyNow": "Navštívit webovou stránku",
|
||||
"PE.Controllers.Main.textCancel": "Zrušit",
|
||||
"PE.Controllers.Main.textClose": "Zavřít",
|
||||
"PE.Controllers.Main.textCloseTip": "Klepnutím zavřete nápovědu.",
|
||||
"PE.Controllers.Main.textContactUs": "Kontaktujte prodejce",
|
||||
"PE.Controllers.Main.textDone": "Hotovo",
|
||||
"PE.Controllers.Main.textLoadingDocument": "Načítání prezentace",
|
||||
"PE.Controllers.Main.textNoLicenseTitle": "ONLYOFFICE open source verze",
|
||||
"PE.Controllers.Main.textOK": "OK",
|
||||
"PE.Controllers.Main.textPassword": "Heslo",
|
||||
"PE.Controllers.Main.textPreloader": "Nahrávám...",
|
||||
"PE.Controllers.Main.textShape": "Tvar",
|
||||
"PE.Controllers.Main.textTryUndoRedo": "Funkce zpět/zopakovat jsou vypnuty pro rychlý co-editační režim.",
|
||||
"PE.Controllers.Main.textUsername": "Uživatelské jméno ",
|
||||
"PE.Controllers.Main.titleLicenseExp": "Platnost licence vypršela",
|
||||
"PE.Controllers.Main.titleServerVersion": "Editor byl aktualizován",
|
||||
"PE.Controllers.Main.txtArt": "Zde napište text",
|
||||
"PE.Controllers.Main.txtBasicShapes": "Základní tvary",
|
||||
"PE.Controllers.Main.txtButtons": "Tlačítka",
|
||||
"PE.Controllers.Main.txtCallouts": "Bubliny",
|
||||
"PE.Controllers.Main.txtCharts": "Grafy",
|
||||
"PE.Controllers.Main.txtClipArt": "Klipart",
|
||||
"PE.Controllers.Main.txtDateTime": "Datum a čas",
|
||||
"PE.Controllers.Main.txtDiagram": "SmartArt",
|
||||
"PE.Controllers.Main.txtDiagramTitle": "Nadpis grafu",
|
||||
"PE.Controllers.Main.txtEditingMode": "Nastavit editační režim...",
|
||||
"PE.Controllers.Main.txtFiguredArrows": "Šipky",
|
||||
"PE.Controllers.Main.txtFooter": "Zápatí",
|
||||
"PE.Controllers.Main.txtHeader": "Záhlaví",
|
||||
"PE.Controllers.Main.txtImage": "Obrázek",
|
||||
"PE.Controllers.Main.txtLines": "Čáry",
|
||||
"PE.Controllers.Main.txtMath": "Matematika",
|
||||
"PE.Controllers.Main.txtMedia": "Média",
|
||||
"PE.Controllers.Main.txtNeedSynchronize": "Máte nové aktualizace",
|
||||
"PE.Controllers.Main.txtPicture": "Obrázek",
|
||||
"PE.Controllers.Main.txtRectangles": "Obdelníky",
|
||||
"PE.Controllers.Main.txtSeries": "Řady",
|
||||
"PE.Controllers.Main.txtSldLtTBlank": "Prázdný",
|
||||
"PE.Controllers.Main.txtSldLtTChart": "Graf",
|
||||
"PE.Controllers.Main.txtSldLtTChartAndTx": "Graf a text",
|
||||
"PE.Controllers.Main.txtSldLtTClipArtAndTx": "Klipart a text",
|
||||
"PE.Controllers.Main.txtSldLtTClipArtAndVertTx": "Klipart a svislý text",
|
||||
"PE.Controllers.Main.txtSldLtTCust": "Vlastní",
|
||||
"PE.Controllers.Main.txtSldLtTDgm": "Diagram",
|
||||
"PE.Controllers.Main.txtSldLtTFourObj": "Čtyři objekty",
|
||||
"PE.Controllers.Main.txtSldLtTMediaAndTx": "Média a text",
|
||||
"PE.Controllers.Main.txtSldLtTObj": "Název a objekt",
|
||||
"PE.Controllers.Main.txtSldLtTObjAndTwoObj": "Objekt a dva objekty",
|
||||
"PE.Controllers.Main.txtSldLtTObjAndTx": "Objekt a text",
|
||||
"PE.Controllers.Main.txtSldLtTObjOnly": "Objekt",
|
||||
"PE.Controllers.Main.txtSldLtTObjOverTx": "Objekt nad textem",
|
||||
"PE.Controllers.Main.txtSldLtTObjTx": "Název, objekt a popisek",
|
||||
"PE.Controllers.Main.txtSldLtTPicTx": "Obrázek a popisek",
|
||||
"PE.Controllers.Main.txtSldLtTSecHead": "Záhlaví sekce",
|
||||
"PE.Controllers.Main.txtSldLtTTbl": "Tabulka",
|
||||
"PE.Controllers.Main.txtSldLtTTitle": "Název",
|
||||
"PE.Controllers.Main.txtSldLtTTitleOnly": "Jen název",
|
||||
"PE.Controllers.Main.txtSldLtTTwoColTx": "Text ve dvou sloupcích",
|
||||
"PE.Controllers.Main.txtSldLtTTwoObj": "Dva objekty",
|
||||
"PE.Controllers.Main.txtSldLtTTwoObjAndObj": "Dva objekty a objekt",
|
||||
"PE.Controllers.Main.txtSldLtTTwoObjAndTx": "Dva objekty a text",
|
||||
"PE.Controllers.Main.txtSldLtTTwoObjOverTx": "Dva objekty nad textem",
|
||||
"PE.Controllers.Main.txtSldLtTTwoTxTwoObj": "Dva texty a dva objekty",
|
||||
"PE.Controllers.Main.txtSldLtTTx": "Text",
|
||||
"PE.Controllers.Main.txtSldLtTTxAndChart": "Text a graf",
|
||||
"PE.Controllers.Main.txtSldLtTTxAndClipArt": "Text a Clip Art",
|
||||
"PE.Controllers.Main.txtSldLtTTxAndMedia": "Text a média",
|
||||
"PE.Controllers.Main.txtSldLtTTxAndObj": "Text a objekt",
|
||||
"PE.Controllers.Main.txtSldLtTTxAndTwoObj": "Text a dva objekty",
|
||||
"PE.Controllers.Main.txtSldLtTTxOverObj": "Text nad objektem",
|
||||
"PE.Controllers.Main.txtSldLtTVertTitleAndTx": "Svislý název a text",
|
||||
"PE.Controllers.Main.txtSldLtTVertTitleAndTxOverChart": "Svislý název a text nad grafem",
|
||||
"PE.Controllers.Main.txtSldLtTVertTx": "Svislý text",
|
||||
"PE.Controllers.Main.txtSlideNumber": "Číslo snímku",
|
||||
"PE.Controllers.Main.txtSlideSubtitle": "Podtitulek snímku",
|
||||
"PE.Controllers.Main.txtSlideText": "Text snímku",
|
||||
"PE.Controllers.Main.txtSlideTitle": "Název snímku",
|
||||
"PE.Controllers.Main.txtStarsRibbons": "Hvězdy a stuhy",
|
||||
"PE.Controllers.Main.txtXAxis": "Osa X",
|
||||
"PE.Controllers.Main.txtYAxis": "Osa Y",
|
||||
"PE.Controllers.Main.unknownErrorText": "Neznámá chyba.",
|
||||
"PE.Controllers.Main.unsupportedBrowserErrorText ": "Váš prohlížeč není podporován.",
|
||||
"PE.Controllers.Main.uploadImageExtMessage": "Neznámý formát obrázku.",
|
||||
"PE.Controllers.Main.uploadImageFileCountMessage": "Žádné obrázky nenahrány.",
|
||||
"PE.Controllers.Main.uploadImageSizeMessage": "Překročen maximální limit velikosti obrázku.",
|
||||
"PE.Controllers.Main.uploadImageTextText": "Nahrávání obrázku...",
|
||||
"PE.Controllers.Main.uploadImageTitleText": "Nahrávání obrázku",
|
||||
"PE.Controllers.Main.warnLicenseExp": "Platnost vaší licence vypršela.<br>Prosím, aktualizujte vaší licenci a obnovte stránku.",
|
||||
"PE.Controllers.Main.warnNoLicense": "Používáte verzi open source ONLYOFFICE. Verze má omezení pro souběžné připojení k dokumentovému serveru (20 připojení najednou).<br>Pokud budete potřebovat více, tak prosím zvažte koupi komerční licence.",
|
||||
"PE.Controllers.Main.warnProcessRightsChange": "Bylo Vám odebráno právo upravovat tento soubor.",
|
||||
"PE.Controllers.Search.textNoTextFound": "Text nebyl nalezen",
|
||||
"PE.Controllers.Settings.notcriticalErrorTitle": "Varování",
|
||||
"PE.Controllers.Settings.txtLoading": "Nahrávám...",
|
||||
"PE.Controllers.Toolbar.dlgLeaveMsgText": "V tomto dokumentu máte neuložené změny. Klikněte na tlačítko \"Zůstat na této stránce\" a počkejte na automatické ukládání dokumentu.Klikněte na tlačítko \"Opustit tuto stránku\", abyste zrušili všechny neuložené změny.",
|
||||
"PE.Controllers.Toolbar.dlgLeaveTitleText": "Opouštíte aplikaci",
|
||||
"PE.Controllers.Toolbar.leaveButtonText": "Opustit tuto stránku",
|
||||
"PE.Controllers.Toolbar.stayButtonText": "Zůstat na této stránce",
|
||||
"PE.Views.AddImage.textAddress": "Adresa",
|
||||
"PE.Views.AddImage.textBack": "Zpět",
|
||||
"PE.Views.AddImage.textFromLibrary": "Obrázek z knihovny",
|
||||
"PE.Views.AddImage.textFromURL": "Obrázek z adresy URL",
|
||||
"PE.Views.AddImage.textImageURL": "URL obrázku",
|
||||
"PE.Views.AddImage.textInsertImage": "Vložit obrázek",
|
||||
"PE.Views.AddImage.textLinkSettings": "Nastavení odkazů",
|
||||
"PE.Views.AddLink.textBack": "Zpět",
|
||||
"PE.Views.AddLink.textDisplay": "Zobrazit",
|
||||
"PE.Views.AddLink.textExternalLink": "Externí odkaz",
|
||||
"PE.Views.AddLink.textFirst": "První snímek",
|
||||
"PE.Views.AddLink.textInsert": "Vložit",
|
||||
"PE.Views.AddLink.textInternalLink": "Snímek v této prezentaci",
|
||||
"PE.Views.AddLink.textLast": "Poslední snímek",
|
||||
"PE.Views.AddLink.textLink": "Odkaz",
|
||||
"PE.Views.AddLink.textLinkSlide": "Odkaz na",
|
||||
"PE.Views.AddLink.textLinkType": "Typ odkazu",
|
||||
"PE.Views.AddLink.textNext": "Další snímek",
|
||||
"PE.Views.AddLink.textNumber": "Číslo snímku",
|
||||
"PE.Views.AddLink.textPrev": "Předchozí snímek",
|
||||
"PE.Views.AddLink.textTip": "Nápověda",
|
||||
"PE.Views.EditChart.textAlign": "Zarovnat",
|
||||
"PE.Views.EditChart.textAlignBottom": "Zarovnat dolů",
|
||||
"PE.Views.EditChart.textAlignCenter": "Zarovnat na střed",
|
||||
"PE.Views.EditChart.textAlignLeft": "Zarovnat vlevo",
|
||||
"PE.Views.EditChart.textAlignMiddle": "Zarovnat na střed",
|
||||
"PE.Views.EditChart.textAlignRight": "Zarovnat vpravo",
|
||||
"PE.Views.EditChart.textAlignTop": "Zarovnat nahoru",
|
||||
"PE.Views.EditChart.textBack": "Zpět",
|
||||
"PE.Views.EditChart.textBackward": "Posunout zpět",
|
||||
"PE.Views.EditChart.textBorder": "Ohraničení",
|
||||
"PE.Views.EditChart.textColor": "Barva",
|
||||
"PE.Views.EditChart.textFill": "Výplň",
|
||||
"PE.Views.EditChart.textForward": "Posunout vpřed",
|
||||
"PE.Views.EditChart.textRemoveChart": "Odstranit graf",
|
||||
"PE.Views.EditChart.textReorder": "Přerovnat",
|
||||
"PE.Views.EditChart.textSize": "Velikost",
|
||||
"PE.Views.EditChart.textStyle": "Styl",
|
||||
"PE.Views.EditChart.textToBackground": "Přesunout do pozadí",
|
||||
"PE.Views.EditChart.textToForeground": "Přenést do popředí",
|
||||
"PE.Views.EditChart.textType": "Typ",
|
||||
"PE.Views.EditChart.txtDistribHor": "Vodorovně rozmístit",
|
||||
"PE.Views.EditChart.txtDistribVert": "Svisle rozmístit",
|
||||
"PE.Views.EditImage.textAddress": "Adresa",
|
||||
"PE.Views.EditImage.textAlign": "Zarovnat",
|
||||
"PE.Views.EditImage.textAlignBottom": "Zarovnat dolů",
|
||||
"PE.Views.EditImage.textAlignCenter": "Zarovnat na střed",
|
||||
"PE.Views.EditImage.textAlignLeft": "Zarovnat vlevo",
|
||||
"PE.Views.EditImage.textAlignMiddle": "Zarovnat na střed",
|
||||
"PE.Views.EditImage.textAlignRight": "Zarovnat vpravo",
|
||||
"PE.Views.EditImage.textAlignTop": "Zarovnat nahoru",
|
||||
"PE.Views.EditImage.textBack": "Zpět",
|
||||
"PE.Views.EditImage.textBackward": "Posunout zpět",
|
||||
"PE.Views.EditImage.textDefault": "Výchozí velikost",
|
||||
"PE.Views.EditImage.textForward": "Posunout vpřed",
|
||||
"PE.Views.EditImage.textFromLibrary": "Obrázek z knihovny",
|
||||
"PE.Views.EditImage.textFromURL": "Obrázek z adresy URL",
|
||||
"PE.Views.EditImage.textImageURL": "URL obrázku",
|
||||
"PE.Views.EditImage.textLinkSettings": "Nastavení odkazů",
|
||||
"PE.Views.EditImage.textRemove": "Odstranit obrázek",
|
||||
"PE.Views.EditImage.textReorder": "Přerovnat",
|
||||
"PE.Views.EditImage.textReplace": "Nahradit",
|
||||
"PE.Views.EditImage.textReplaceImg": "Nahradit obrázek",
|
||||
"PE.Views.EditImage.textToBackground": "Přesunout do pozadí",
|
||||
"PE.Views.EditImage.textToForeground": "Přenést do popředí",
|
||||
"PE.Views.EditImage.txtDistribHor": "Vodorovně rozmístit",
|
||||
"PE.Views.EditImage.txtDistribVert": "Svisle rozmístit",
|
||||
"PE.Views.EditLink.textBack": "Zpět",
|
||||
"PE.Views.EditLink.textDisplay": "Zobrazit",
|
||||
"PE.Views.EditLink.textEdit": "Upravit odkaz",
|
||||
"PE.Views.EditLink.textExternalLink": "Externí odkaz",
|
||||
"PE.Views.EditLink.textFirst": "První snímek",
|
||||
"PE.Views.EditLink.textInternalLink": "Snímek v této prezentaci",
|
||||
"PE.Views.EditLink.textLast": "Poslední snímek",
|
||||
"PE.Views.EditLink.textLink": "Odkaz",
|
||||
"PE.Views.EditLink.textLinkSlide": "Odkaz na",
|
||||
"PE.Views.EditLink.textLinkType": "Typ odkazu",
|
||||
"PE.Views.EditLink.textNext": "Další snímek",
|
||||
"PE.Views.EditLink.textNumber": "Číslo snímku",
|
||||
"PE.Views.EditLink.textPrev": "Předchozí snímek",
|
||||
"PE.Views.EditLink.textRemove": "Odstranit odkaz",
|
||||
"PE.Views.EditLink.textTip": "Nápověda",
|
||||
"PE.Views.EditShape.textAlign": "Zarovnat",
|
||||
"PE.Views.EditShape.textAlignBottom": "Zarovnat dolů",
|
||||
"PE.Views.EditShape.textAlignCenter": "Zarovnat na střed",
|
||||
"PE.Views.EditShape.textAlignLeft": "Zarovnat vlevo",
|
||||
"PE.Views.EditShape.textAlignMiddle": "Zarovnat na střed",
|
||||
"PE.Views.EditShape.textAlignRight": "Zarovnat vpravo",
|
||||
"PE.Views.EditShape.textAlignTop": "Zarovnat nahoru",
|
||||
"PE.Views.EditShape.textBack": "Zpět",
|
||||
"PE.Views.EditShape.textBackward": "Posunout zpět",
|
||||
"PE.Views.EditShape.textBorder": "Ohraničení",
|
||||
"PE.Views.EditShape.textColor": "Barva",
|
||||
"PE.Views.EditShape.textEffects": "Efekty",
|
||||
"PE.Views.EditShape.textFill": "Výplň",
|
||||
"PE.Views.EditShape.textForward": "Posunout vpřed",
|
||||
"PE.Views.EditShape.textOpacity": "Průhlednost",
|
||||
"PE.Views.EditShape.textRemoveShape": "Odstranit formu",
|
||||
"PE.Views.EditShape.textReorder": "Přerovnat",
|
||||
"PE.Views.EditShape.textReplace": "Nahradit",
|
||||
"PE.Views.EditShape.textSize": "Velikost",
|
||||
"PE.Views.EditShape.textStyle": "Styl",
|
||||
"PE.Views.EditShape.textToBackground": "Přesunout do pozadí",
|
||||
"PE.Views.EditShape.textToForeground": "Přenést do popředí",
|
||||
"PE.Views.EditShape.txtDistribHor": "Vodorovně rozmístit",
|
||||
"PE.Views.EditShape.txtDistribVert": "Svisle rozmístit",
|
||||
"PE.Views.EditSlide.textApplyAll": "Použít na všechny snímky",
|
||||
"PE.Views.EditSlide.textBack": "Zpět",
|
||||
"PE.Views.EditSlide.textBlack": "Přes černou",
|
||||
"PE.Views.EditSlide.textBottom": "Dole",
|
||||
"PE.Views.EditSlide.textBottomLeft": "Vlevo dole",
|
||||
"PE.Views.EditSlide.textBottomRight": "Vpravo dole",
|
||||
"PE.Views.EditSlide.textClock": "Hodiny",
|
||||
"PE.Views.EditSlide.textClockwise": "Ve směru hodinových ručiček",
|
||||
"PE.Views.EditSlide.textColor": "Barva",
|
||||
"PE.Views.EditSlide.textCounterclockwise": "Proti směru hodinových ručiček",
|
||||
"PE.Views.EditSlide.textCover": "Zakrýt",
|
||||
"PE.Views.EditSlide.textDelay": "Zpoždění",
|
||||
"PE.Views.EditSlide.textDuplicateSlide": "Kopírovat snímek",
|
||||
"PE.Views.EditSlide.textDuration": "Doba trvání",
|
||||
"PE.Views.EditSlide.textEffect": "Efekt",
|
||||
"PE.Views.EditSlide.textFade": "Vyblednout",
|
||||
"PE.Views.EditSlide.textFill": "Výplň",
|
||||
"PE.Views.EditSlide.textHorizontalIn": "Vodorovně uvnitř",
|
||||
"PE.Views.EditSlide.textHorizontalOut": "Vodorovně vně",
|
||||
"PE.Views.EditSlide.textLayout": "Rozložení",
|
||||
"PE.Views.EditSlide.textLeft": "Vlevo",
|
||||
"PE.Views.EditSlide.textNone": "Žádný",
|
||||
"PE.Views.EditSlide.textOpacity": "Průhlednost",
|
||||
"PE.Views.EditSlide.textPush": "Posunout",
|
||||
"PE.Views.EditSlide.textRemoveSlide": "Odstranit snímek",
|
||||
"PE.Views.EditSlide.textRight": "Vpravo",
|
||||
"PE.Views.EditSlide.textSmoothly": "Plynule",
|
||||
"PE.Views.EditSlide.textSplit": "Rozdělit",
|
||||
"PE.Views.EditSlide.textStartOnClick": "Začněte kliknutím",
|
||||
"PE.Views.EditSlide.textStyle": "Styl",
|
||||
"PE.Views.EditSlide.textTheme": "Téma",
|
||||
"PE.Views.EditSlide.textTop": "Nahoře",
|
||||
"PE.Views.EditSlide.textTopLeft": "Vlevo nahoře",
|
||||
"PE.Views.EditSlide.textTopRight": "Vpravo nahoře",
|
||||
"PE.Views.EditSlide.textTransition": "Přechod",
|
||||
"PE.Views.EditSlide.textType": "Typ",
|
||||
"PE.Views.EditSlide.textUnCover": "Odkrýt",
|
||||
"PE.Views.EditSlide.textVerticalIn": "Svislý uvnitř",
|
||||
"PE.Views.EditSlide.textVerticalOut": "Svislý vně",
|
||||
"PE.Views.EditSlide.textWedge": "Konjunkce",
|
||||
"PE.Views.EditSlide.textWipe": "Vyčistit",
|
||||
"PE.Views.EditSlide.textZoom": "Přiblížit",
|
||||
"PE.Views.EditSlide.textZoomIn": "Přiblížit",
|
||||
"PE.Views.EditSlide.textZoomOut": "Oddálit",
|
||||
"PE.Views.EditSlide.textZoomRotate": "Přiblížit a otočit",
|
||||
"PE.Views.EditTable.textAlign": "Zarovnat",
|
||||
"PE.Views.EditTable.textAlignBottom": "Zarovnat dolů",
|
||||
"PE.Views.EditTable.textAlignCenter": "Zarovnat na střed",
|
||||
"PE.Views.EditTable.textAlignLeft": "Zarovnat vlevo",
|
||||
"PE.Views.EditTable.textAlignMiddle": "Zarovnat na střed",
|
||||
"PE.Views.EditTable.textAlignRight": "Zarovnat vpravo",
|
||||
"PE.Views.EditTable.textAlignTop": "Zarovnat nahoru",
|
||||
"PE.Views.EditTable.textBack": "Zpět",
|
||||
"PE.Views.EditTable.textBackward": "Posunout zpět",
|
||||
"PE.Views.EditTable.textBandedColumn": "Pruhovaný sloupec",
|
||||
"PE.Views.EditTable.textBandedRow": "Pruhovaný řádek",
|
||||
"PE.Views.EditTable.textBorder": "Ohraničení",
|
||||
"PE.Views.EditTable.textCellMargins": "Okraje buňky",
|
||||
"PE.Views.EditTable.textColor": "Barva",
|
||||
"PE.Views.EditTable.textFill": "Výplň",
|
||||
"PE.Views.EditTable.textFirstColumn": "První sloupec",
|
||||
"PE.Views.EditTable.textForward": "Posunout vpřed",
|
||||
"PE.Views.EditTable.textHeaderRow": "Řádek záhlaví",
|
||||
"PE.Views.EditTable.textLastColumn": "Poslední sloupec",
|
||||
"PE.Views.EditTable.textOptions": "Možnosti",
|
||||
"PE.Views.EditTable.textRemoveTable": "Odstranit tabulku",
|
||||
"PE.Views.EditTable.textReorder": "Přerovnat",
|
||||
"PE.Views.EditTable.textSize": "Velikost",
|
||||
"PE.Views.EditTable.textStyle": "Styl",
|
||||
"PE.Views.EditTable.textStyleOptions": "Možnosti stylu",
|
||||
"PE.Views.EditTable.textTableOptions": "Možnosti tabulky",
|
||||
"PE.Views.EditTable.textToBackground": "Přesunout do pozadí",
|
||||
"PE.Views.EditTable.textToForeground": "Přenést do popředí",
|
||||
"PE.Views.EditTable.textTotalRow": "Řádek souhrnů",
|
||||
"PE.Views.EditTable.txtDistribHor": "Vodorovně rozmístit",
|
||||
"PE.Views.EditTable.txtDistribVert": "Svisle rozmístit",
|
||||
"PE.Views.EditText.textAdditional": "Další",
|
||||
"PE.Views.EditText.textAdditionalFormat": "Další formátování",
|
||||
"PE.Views.EditText.textAfter": "za",
|
||||
"PE.Views.EditText.textAllCaps": "Všechno velkým",
|
||||
"PE.Views.EditText.textAutomatic": "Automaticky",
|
||||
"PE.Views.EditText.textBack": "Zpět",
|
||||
"PE.Views.EditText.textBefore": "Před",
|
||||
"PE.Views.EditText.textBullets": "Odrážky",
|
||||
"PE.Views.EditText.textDblStrikethrough": "Dvojité přeškrtnutí",
|
||||
"PE.Views.EditText.textDblSuperscript": "Horní index",
|
||||
"PE.Views.EditText.textFontColor": "Barva písma",
|
||||
"PE.Views.EditText.textFontColors": "Barvy písma",
|
||||
"PE.Views.EditText.textFonts": "Fonty",
|
||||
"PE.Views.EditText.textFromText": "Vzdálenost od textu",
|
||||
"PE.Views.EditText.textLetterSpacing": "Rozestup mezi písmeny",
|
||||
"PE.Views.EditText.textLineSpacing": "Řádkování",
|
||||
"PE.Views.EditText.textNone": "Žádný",
|
||||
"PE.Views.EditText.textNumbers": "Čísla",
|
||||
"PE.Views.EditText.textSize": "Velikost",
|
||||
"PE.Views.EditText.textSmallCaps": "Malá písmena",
|
||||
"PE.Views.EditText.textStrikethrough": "Přeškrtnutí",
|
||||
"PE.Views.EditText.textSubscript": "Dolní index",
|
||||
"PE.Views.Search.textSearch": "Hledat",
|
||||
"PE.Views.Settings.mniSlideStandard": "Standardní (4:3)",
|
||||
"PE.Views.Settings.mniSlideWide": "Širokoúhlý (16:9)",
|
||||
"PE.Views.Settings.textAbout": "O",
|
||||
"PE.Views.Settings.textAddress": "Adresa",
|
||||
"PE.Views.Settings.textAuthor": "Autor",
|
||||
"PE.Views.Settings.textBack": "Zpět",
|
||||
"PE.Views.Settings.textCreateDate": "Datum vytvoření",
|
||||
"PE.Views.Settings.textDone": "Hotovo",
|
||||
"PE.Views.Settings.textDownload": "Stáhnout",
|
||||
"PE.Views.Settings.textDownloadAs": "Stáhnout jako...",
|
||||
"PE.Views.Settings.textEditPresent": "Upravit prezentaci",
|
||||
"PE.Views.Settings.textEmail": "E-mail",
|
||||
"PE.Views.Settings.textFind": "Najít",
|
||||
"PE.Views.Settings.textHelp": "Nápověda",
|
||||
"PE.Views.Settings.textLoading": "Nahrávám...",
|
||||
"PE.Views.Settings.textPoweredBy": "Poháněno",
|
||||
"PE.Views.Settings.textPresentInfo": "Informace o prezentaci",
|
||||
"PE.Views.Settings.textPresentSetup": "Nastavení prezentace",
|
||||
"PE.Views.Settings.textPresentTitle": "Nadpis prezentace",
|
||||
"PE.Views.Settings.textSettings": "Nastavení",
|
||||
"PE.Views.Settings.textSlideSize": "Velikost snímku",
|
||||
"PE.Views.Settings.textTel": "Sdělit",
|
||||
"PE.Views.Settings.textVersion": "Verze",
|
||||
"PE.Views.Settings.unknownText": "Neznámý",
|
||||
"PE.Views.Toolbar.textBack": "Zpět"
|
||||
}
|
|
@ -136,12 +136,20 @@
|
|||
"PE.Controllers.Main.txtButtons": "Buttons",
|
||||
"PE.Controllers.Main.txtCallouts": "Legenden",
|
||||
"PE.Controllers.Main.txtCharts": "Diagramme",
|
||||
"PE.Controllers.Main.txtClipArt": "ClipArt",
|
||||
"PE.Controllers.Main.txtDateTime": "Datum und Zeit",
|
||||
"PE.Controllers.Main.txtDiagram": "SmartArt",
|
||||
"PE.Controllers.Main.txtDiagramTitle": "Diagrammtitel",
|
||||
"PE.Controllers.Main.txtEditingMode": "Bearbeitungsmodus einschalten...",
|
||||
"PE.Controllers.Main.txtFiguredArrows": "Geformte Pfeile",
|
||||
"PE.Controllers.Main.txtFooter": "Fußzeile",
|
||||
"PE.Controllers.Main.txtHeader": "Kopfzeile",
|
||||
"PE.Controllers.Main.txtImage": "Bild",
|
||||
"PE.Controllers.Main.txtLines": "Linien",
|
||||
"PE.Controllers.Main.txtMath": "Mathematik",
|
||||
"PE.Controllers.Main.txtMedia": "Medien",
|
||||
"PE.Controllers.Main.txtNeedSynchronize": "Änderungen wurden vorgenommen",
|
||||
"PE.Controllers.Main.txtPicture": "Bild",
|
||||
"PE.Controllers.Main.txtRectangles": "Rechtecke",
|
||||
"PE.Controllers.Main.txtSeries": "Reihen",
|
||||
"PE.Controllers.Main.txtSldLtTBlank": "Leer",
|
||||
|
@ -180,6 +188,10 @@
|
|||
"PE.Controllers.Main.txtSldLtTVertTitleAndTx": "Vertikaler Titel und Text",
|
||||
"PE.Controllers.Main.txtSldLtTVertTitleAndTxOverChart": "Vertikaler Titel und Text über Diagramm",
|
||||
"PE.Controllers.Main.txtSldLtTVertTx": "Vertikaler Text",
|
||||
"PE.Controllers.Main.txtSlideNumber": "Foliennummer",
|
||||
"PE.Controllers.Main.txtSlideSubtitle": "Folienuntertitel",
|
||||
"PE.Controllers.Main.txtSlideText": "Folientext",
|
||||
"PE.Controllers.Main.txtSlideTitle": "Folientitel",
|
||||
"PE.Controllers.Main.txtStarsRibbons": "Sterne & Bänder",
|
||||
"PE.Controllers.Main.txtXAxis": "x-Achse",
|
||||
"PE.Controllers.Main.txtYAxis": "y-Achse",
|
||||
|
@ -420,6 +432,7 @@
|
|||
"PE.Views.Settings.textFind": "Suchen",
|
||||
"PE.Views.Settings.textHelp": "Hilfe",
|
||||
"PE.Views.Settings.textLoading": "Ladevorgang...",
|
||||
"PE.Views.Settings.textPoweredBy": "Betrieben von",
|
||||
"PE.Views.Settings.textPresentInfo": "Päsentation Infos",
|
||||
"PE.Views.Settings.textPresentSetup": "Präsentation-Einstellungen",
|
||||
"PE.Views.Settings.textPresentTitle": "Titel der Präsentation",
|
||||
|
|
|
@ -136,12 +136,20 @@
|
|||
"PE.Controllers.Main.txtButtons": "Buttons",
|
||||
"PE.Controllers.Main.txtCallouts": "Callouts",
|
||||
"PE.Controllers.Main.txtCharts": "Charts",
|
||||
"PE.Controllers.Main.txtClipArt": "Clip Art",
|
||||
"PE.Controllers.Main.txtDateTime": "Date and time",
|
||||
"PE.Controllers.Main.txtDiagram": "SmartArt",
|
||||
"PE.Controllers.Main.txtDiagramTitle": "Chart Title",
|
||||
"PE.Controllers.Main.txtEditingMode": "Set editing mode...",
|
||||
"PE.Controllers.Main.txtFiguredArrows": "Figured Arrows",
|
||||
"PE.Controllers.Main.txtFooter": "Footer",
|
||||
"PE.Controllers.Main.txtHeader": "Header",
|
||||
"PE.Controllers.Main.txtImage": "Image",
|
||||
"PE.Controllers.Main.txtLines": "Lines",
|
||||
"PE.Controllers.Main.txtMath": "Math",
|
||||
"PE.Controllers.Main.txtMedia": "Media",
|
||||
"PE.Controllers.Main.txtNeedSynchronize": "You have updates",
|
||||
"PE.Controllers.Main.txtPicture": "Picture",
|
||||
"PE.Controllers.Main.txtRectangles": "Rectangles",
|
||||
"PE.Controllers.Main.txtSeries": "Series",
|
||||
"PE.Controllers.Main.txtSldLtTBlank": "Blank",
|
||||
|
@ -180,6 +188,10 @@
|
|||
"PE.Controllers.Main.txtSldLtTVertTitleAndTx": "Vertical Title and Text",
|
||||
"PE.Controllers.Main.txtSldLtTVertTitleAndTxOverChart": "Vertical Title and Text Over Chart",
|
||||
"PE.Controllers.Main.txtSldLtTVertTx": "Vertical Text",
|
||||
"PE.Controllers.Main.txtSlideNumber": "Slide number",
|
||||
"PE.Controllers.Main.txtSlideSubtitle": "Slide subtitle",
|
||||
"PE.Controllers.Main.txtSlideText": "Slide text",
|
||||
"PE.Controllers.Main.txtSlideTitle": "Slide title",
|
||||
"PE.Controllers.Main.txtStarsRibbons": "Stars & Ribbons",
|
||||
"PE.Controllers.Main.txtXAxis": "X Axis",
|
||||
"PE.Controllers.Main.txtYAxis": "Y Axis",
|
||||
|
@ -193,18 +205,6 @@
|
|||
"PE.Controllers.Main.warnLicenseExp": "Your license has expired.<br>Please update your license and refresh the page.",
|
||||
"PE.Controllers.Main.warnNoLicense": "You are using an open source version of ONLYOFFICE. The version has limitations for concurrent connections to the document server (20 connections at a time).<br>If you need more please consider purchasing a commercial license.",
|
||||
"PE.Controllers.Main.warnProcessRightsChange": "You have been denied the right to edit the file.",
|
||||
"PE.Controllers.Main.txtSlideText": "Slide text",
|
||||
"PE.Controllers.Main.txtClipArt": "Clip Art",
|
||||
"PE.Controllers.Main.txtDiagram": "SmartArt",
|
||||
"PE.Controllers.Main.txtDateTime": "Date and time",
|
||||
"PE.Controllers.Main.txtFooter": "Footer",
|
||||
"PE.Controllers.Main.txtHeader": "Header",
|
||||
"PE.Controllers.Main.txtMedia": "Media",
|
||||
"PE.Controllers.Main.txtPicture": "Picture",
|
||||
"PE.Controllers.Main.txtImage": "Image",
|
||||
"PE.Controllers.Main.txtSlideNumber": "Slide number",
|
||||
"PE.Controllers.Main.txtSlideSubtitle": "Slide subtitle",
|
||||
"PE.Controllers.Main.txtSlideTitle": "Slide title",
|
||||
"PE.Controllers.Search.textNoTextFound": "Text not Found",
|
||||
"PE.Controllers.Settings.notcriticalErrorTitle": "Warning",
|
||||
"PE.Controllers.Settings.txtLoading": "Loading...",
|
||||
|
|
445
apps/presentationeditor/mobile/locale/es.json
Normal file
445
apps/presentationeditor/mobile/locale/es.json
Normal file
|
@ -0,0 +1,445 @@
|
|||
{
|
||||
"Common.UI.ThemeColorPalette.textStandartColors": "Colores estándar",
|
||||
"Common.UI.ThemeColorPalette.textThemeColors": "Colores de tema",
|
||||
"Common.Utils.Metric.txtCm": "cm",
|
||||
"Common.Utils.Metric.txtPt": "pt",
|
||||
"PE.Controllers.AddContainer.textImage": "Imagen",
|
||||
"PE.Controllers.AddContainer.textLink": "Enlace",
|
||||
"PE.Controllers.AddContainer.textShape": "Forma",
|
||||
"PE.Controllers.AddContainer.textSlide": "Diapositiva",
|
||||
"PE.Controllers.AddContainer.textTable": "Tabla",
|
||||
"PE.Controllers.AddImage.textEmptyImgUrl": "Hay que especificar URL de imagen.",
|
||||
"PE.Controllers.AddImage.txtNotUrl": "Este campo debe ser una dirección URL en el formato 'http://www.example.com'",
|
||||
"PE.Controllers.AddLink.textDefault": "Texto seleccionado",
|
||||
"PE.Controllers.AddLink.textExternalLink": "Enlace externo",
|
||||
"PE.Controllers.AddLink.textFirst": "Primera diapositiva",
|
||||
"PE.Controllers.AddLink.textInternalLink": "Diapositiva en esta presentación",
|
||||
"PE.Controllers.AddLink.textLast": "Última diapositiva",
|
||||
"PE.Controllers.AddLink.textNext": "Diapositiva siguiente",
|
||||
"PE.Controllers.AddLink.textPrev": "Diapositiva anterior",
|
||||
"PE.Controllers.AddLink.textSlide": "Diapositiva",
|
||||
"PE.Controllers.AddLink.txtNotUrl": "Este campo debe ser una dirección URL en el formato 'http://www.example.com'",
|
||||
"PE.Controllers.AddTable.textCancel": "Cancelar",
|
||||
"PE.Controllers.AddTable.textColumns": "Columnas",
|
||||
"PE.Controllers.AddTable.textRows": "Filas",
|
||||
"PE.Controllers.AddTable.textTableSize": "Tamaño de tabla",
|
||||
"PE.Controllers.DocumentHolder.menuAddLink": "Añadir enlace ",
|
||||
"PE.Controllers.DocumentHolder.menuCopy": "Copiar ",
|
||||
"PE.Controllers.DocumentHolder.menuCut": "Cortar",
|
||||
"PE.Controllers.DocumentHolder.menuDelete": "Eliminar",
|
||||
"PE.Controllers.DocumentHolder.menuEdit": "Editar",
|
||||
"PE.Controllers.DocumentHolder.menuMore": "Más",
|
||||
"PE.Controllers.DocumentHolder.menuOpenLink": "Abrir enlace",
|
||||
"PE.Controllers.DocumentHolder.menuPaste": "Pegar",
|
||||
"PE.Controllers.DocumentHolder.sheetCancel": "Cancelar",
|
||||
"PE.Controllers.EditContainer.textChart": "Gráfico",
|
||||
"PE.Controllers.EditContainer.textHyperlink": "Hiperenlace",
|
||||
"PE.Controllers.EditContainer.textImage": "Imagen",
|
||||
"PE.Controllers.EditContainer.textSettings": "Ajustes",
|
||||
"PE.Controllers.EditContainer.textShape": "Forma",
|
||||
"PE.Controllers.EditContainer.textSlide": "Diapositiva",
|
||||
"PE.Controllers.EditContainer.textTable": "Tabla",
|
||||
"PE.Controllers.EditContainer.textText": "Texto",
|
||||
"PE.Controllers.EditImage.textEmptyImgUrl": "Hay que especificar URL de imagen.",
|
||||
"PE.Controllers.EditImage.txtNotUrl": "Este campo debe ser una dirección URL en el formato 'http://www.example.com'",
|
||||
"PE.Controllers.EditLink.textDefault": "Texto seleccionado",
|
||||
"PE.Controllers.EditLink.textExternalLink": "Enlace externo",
|
||||
"PE.Controllers.EditLink.textFirst": "Primera diapositiva",
|
||||
"PE.Controllers.EditLink.textInternalLink": "Diapositiva en esta presentación",
|
||||
"PE.Controllers.EditLink.textLast": "Última diapositiva",
|
||||
"PE.Controllers.EditLink.textNext": "Diapositiva siguiente",
|
||||
"PE.Controllers.EditLink.textPrev": "Diapositiva anterior",
|
||||
"PE.Controllers.EditLink.textSlide": "Diapositiva",
|
||||
"PE.Controllers.EditLink.txtNotUrl": "Este campo debe ser una dirección URL en el formato 'http://www.example.com'",
|
||||
"PE.Controllers.EditSlide.textSec": "seg",
|
||||
"PE.Controllers.EditText.textAuto": "Auto",
|
||||
"PE.Controllers.EditText.textFonts": "Fuentes",
|
||||
"PE.Controllers.EditText.textPt": "pt",
|
||||
"PE.Controllers.Main.advDRMEnterPassword": "Introduzca su contraseña:",
|
||||
"PE.Controllers.Main.advDRMOptions": "Archivo protegido",
|
||||
"PE.Controllers.Main.advDRMPassword": "Contraseña",
|
||||
"PE.Controllers.Main.applyChangesTextText": "Cargando datos...",
|
||||
"PE.Controllers.Main.applyChangesTitleText": "Cargando datos",
|
||||
"PE.Controllers.Main.convertationTimeoutText": "Tiempo de conversión está superado.",
|
||||
"PE.Controllers.Main.criticalErrorExtText": "Pulse 'OK' para volver a la lista de documentos.",
|
||||
"PE.Controllers.Main.criticalErrorTitle": "Error",
|
||||
"PE.Controllers.Main.defaultTitleText": "ONLYOFFICE Presentation Editor",
|
||||
"PE.Controllers.Main.downloadErrorText": "Error en la descarga",
|
||||
"PE.Controllers.Main.downloadTextText": "Cargando documento...",
|
||||
"PE.Controllers.Main.downloadTitleText": "Cargando documento",
|
||||
"PE.Controllers.Main.errorBadImageUrl": "URL de imagen es incorrecto",
|
||||
"PE.Controllers.Main.errorCoAuthoringDisconnect": "La conexión al servidor se ha perdido. Usted ya no puede editar.",
|
||||
"PE.Controllers.Main.errorConnectToServer": "No se consiguió guardar el documento. Por favor, verifique los ajustes de conexión o contacte con su administrador.<br>Cuando Usted pulse el botón 'OK', se le solicitará que descargue el documento.<br><br>Encuentre más información acerca de conexión de Servidor de Documentos <a href=\"https://api.onlyoffice.com/editors/callback\" target=\"_blank\">aquí</a>",
|
||||
"PE.Controllers.Main.errorDatabaseConnection": "Error externo.<br>Error de conexión a la base de datos. Por favor, contacte con el equipo de soporte técnico.",
|
||||
"PE.Controllers.Main.errorDataRange": "Rango de datos incorrecto.",
|
||||
"PE.Controllers.Main.errorDefaultMessage": "Código de error: %1",
|
||||
"PE.Controllers.Main.errorFilePassProtect": "El documento es protegido por contraseña.",
|
||||
"PE.Controllers.Main.errorKeyEncrypt": "Descriptor de clave desconocido",
|
||||
"PE.Controllers.Main.errorKeyExpire": "Descriptor de clave ha expirado",
|
||||
"PE.Controllers.Main.errorProcessSaveResult": "Fallo en guardar",
|
||||
"PE.Controllers.Main.errorServerVersion": "La versión del editor ha sido actualizada. La página será recargada para aplicar los cambios.",
|
||||
"PE.Controllers.Main.errorStockChart": "Orden de las filas incorrecto. Para crear un gráfico de cotizaciones introduzca los datos en la hoja de la forma siguiente:<br> precio de apertura, precio máximo, precio mínimo, precio de cierre.",
|
||||
"PE.Controllers.Main.errorUpdateVersion": "Se ha cambiado la versión del archivo. La página será actualizada.",
|
||||
"PE.Controllers.Main.errorUserDrop": "No se puede acceder al archivo ahora.",
|
||||
"PE.Controllers.Main.errorUsersExceed": "El número de usuarios fue superado",
|
||||
"PE.Controllers.Main.errorViewerDisconnect": "Se pierde la conexión. Usted todavía puede visualizar el documento,<br> pero no puede descargar o imprimirlo hasta que la conexión sea restaurada.",
|
||||
"PE.Controllers.Main.leavePageText": "Hay cambios no guardados en este documento. Haga clic en \"Permanecer en esta página\" para esperar la función de guardar automáticamente del documento. Haga clic en \"Abandonar esta página\" para descartar todos los cambios no guardados.",
|
||||
"PE.Controllers.Main.loadFontsTextText": "Cargando datos...",
|
||||
"PE.Controllers.Main.loadFontsTitleText": "Cargando datos",
|
||||
"PE.Controllers.Main.loadFontTextText": "Cargando datos...",
|
||||
"PE.Controllers.Main.loadFontTitleText": "Cargando datos",
|
||||
"PE.Controllers.Main.loadImagesTextText": "Cargando imágenes...",
|
||||
"PE.Controllers.Main.loadImagesTitleText": "Cargando imágenes",
|
||||
"PE.Controllers.Main.loadImageTextText": "Cargando imagen...",
|
||||
"PE.Controllers.Main.loadImageTitleText": "Cargando imagen",
|
||||
"PE.Controllers.Main.loadingDocumentTextText": "Cargando presentación...",
|
||||
"PE.Controllers.Main.loadingDocumentTitleText": "Cargando presentación",
|
||||
"PE.Controllers.Main.loadThemeTextText": "Cargando tema...",
|
||||
"PE.Controllers.Main.loadThemeTitleText": "Cargando tema",
|
||||
"PE.Controllers.Main.notcriticalErrorTitle": "Aviso",
|
||||
"PE.Controllers.Main.openErrorText": "Se ha producido un error al abrir el archivo ",
|
||||
"PE.Controllers.Main.openTextText": "Abriendo documento...",
|
||||
"PE.Controllers.Main.openTitleText": "Abriendo documento",
|
||||
"PE.Controllers.Main.printTextText": "Imprimiendo documento...",
|
||||
"PE.Controllers.Main.printTitleText": "Imprimiendo documento",
|
||||
"PE.Controllers.Main.reloadButtonText": "Volver a cargar página",
|
||||
"PE.Controllers.Main.requestEditFailedMessageText": "Alguien está editando este documento en este momento. Por favor, inténtelo de nuevo más tarde.",
|
||||
"PE.Controllers.Main.requestEditFailedTitleText": "Acceso denegado",
|
||||
"PE.Controllers.Main.saveErrorText": "Se ha producido un error al guardar el archivo ",
|
||||
"PE.Controllers.Main.savePreparingText": "Preparando para guardar",
|
||||
"PE.Controllers.Main.savePreparingTitle": "Preparando para guardar. Espere, por favor...",
|
||||
"PE.Controllers.Main.saveTextText": "Guardando documento...",
|
||||
"PE.Controllers.Main.saveTitleText": "Guardando documento",
|
||||
"PE.Controllers.Main.splitDividerErrorText": "El número de filas debe ser un divisor de %1",
|
||||
"PE.Controllers.Main.splitMaxColsErrorText": "El número de columnas debe ser menos que %1",
|
||||
"PE.Controllers.Main.splitMaxRowsErrorText": "El número de filas debe ser menos que %1",
|
||||
"PE.Controllers.Main.textAnonymous": "Anónimo",
|
||||
"PE.Controllers.Main.textBack": "Atrás",
|
||||
"PE.Controllers.Main.textBuyNow": "Visitar sitio web",
|
||||
"PE.Controllers.Main.textCancel": "Cancelar",
|
||||
"PE.Controllers.Main.textClose": "Cerrar",
|
||||
"PE.Controllers.Main.textCloseTip": "Pulse para cerrar este consejo",
|
||||
"PE.Controllers.Main.textContactUs": "Contactar con equipo de ventas",
|
||||
"PE.Controllers.Main.textDone": "Listo",
|
||||
"PE.Controllers.Main.textLoadingDocument": "Cargando presentación",
|
||||
"PE.Controllers.Main.textNoLicenseTitle": "Versión de código abierto de ONLYOFFICE",
|
||||
"PE.Controllers.Main.textOK": "OK",
|
||||
"PE.Controllers.Main.textPassword": "Contraseña",
|
||||
"PE.Controllers.Main.textPreloader": "Cargando...",
|
||||
"PE.Controllers.Main.textShape": "Forma",
|
||||
"PE.Controllers.Main.textTryUndoRedo": "Las funciones Deshacer/Rehacer son desactivados en el modo de co-edición Rápido.",
|
||||
"PE.Controllers.Main.textUsername": "Nombre de usuario",
|
||||
"PE.Controllers.Main.titleLicenseExp": "Licencia ha expirado",
|
||||
"PE.Controllers.Main.titleServerVersion": "Editor ha sido actualizado",
|
||||
"PE.Controllers.Main.txtArt": "Introduzca su texto aquí",
|
||||
"PE.Controllers.Main.txtBasicShapes": "Formas básicas",
|
||||
"PE.Controllers.Main.txtButtons": "Botones",
|
||||
"PE.Controllers.Main.txtCallouts": "Llamadas",
|
||||
"PE.Controllers.Main.txtCharts": "Gráficos",
|
||||
"PE.Controllers.Main.txtClipArt": "Clip Art",
|
||||
"PE.Controllers.Main.txtDateTime": "Fecha y hora",
|
||||
"PE.Controllers.Main.txtDiagram": "SmartArt",
|
||||
"PE.Controllers.Main.txtDiagramTitle": "Título de gráfico",
|
||||
"PE.Controllers.Main.txtEditingMode": "Establecer el modo de edición...",
|
||||
"PE.Controllers.Main.txtFiguredArrows": "Flechas figuradas",
|
||||
"PE.Controllers.Main.txtFooter": "Pie de página",
|
||||
"PE.Controllers.Main.txtHeader": "Encabezado",
|
||||
"PE.Controllers.Main.txtImage": "Imagen",
|
||||
"PE.Controllers.Main.txtLines": "Líneas",
|
||||
"PE.Controllers.Main.txtMath": "Matemáticas",
|
||||
"PE.Controllers.Main.txtMedia": "Medios",
|
||||
"PE.Controllers.Main.txtNeedSynchronize": "Usted tiene actualizaciones",
|
||||
"PE.Controllers.Main.txtPicture": "Imagen",
|
||||
"PE.Controllers.Main.txtRectangles": "Rectángulos",
|
||||
"PE.Controllers.Main.txtSeries": "Serie",
|
||||
"PE.Controllers.Main.txtSldLtTBlank": "En blanco",
|
||||
"PE.Controllers.Main.txtSldLtTChart": "Gráfico",
|
||||
"PE.Controllers.Main.txtSldLtTChartAndTx": "Gráfico y texto",
|
||||
"PE.Controllers.Main.txtSldLtTClipArtAndTx": "Clip Art y texto",
|
||||
"PE.Controllers.Main.txtSldLtTClipArtAndVertTx": "Clip Art y texto vertical",
|
||||
"PE.Controllers.Main.txtSldLtTCust": "Personalizado",
|
||||
"PE.Controllers.Main.txtSldLtTDgm": "Diagrama",
|
||||
"PE.Controllers.Main.txtSldLtTFourObj": "Cuatro objetos",
|
||||
"PE.Controllers.Main.txtSldLtTMediaAndTx": "Multimedia y texto",
|
||||
"PE.Controllers.Main.txtSldLtTObj": "Título y objeto",
|
||||
"PE.Controllers.Main.txtSldLtTObjAndTwoObj": "Objeto y dos objetos",
|
||||
"PE.Controllers.Main.txtSldLtTObjAndTx": "Objeto y texto",
|
||||
"PE.Controllers.Main.txtSldLtTObjOnly": "Objeto",
|
||||
"PE.Controllers.Main.txtSldLtTObjOverTx": "Objeto encima de texto",
|
||||
"PE.Controllers.Main.txtSldLtTObjTx": "Título, objeto y leyenda",
|
||||
"PE.Controllers.Main.txtSldLtTPicTx": "Imagen y leyenda",
|
||||
"PE.Controllers.Main.txtSldLtTSecHead": "Encabezado de sección",
|
||||
"PE.Controllers.Main.txtSldLtTTbl": "Tabla",
|
||||
"PE.Controllers.Main.txtSldLtTTitle": "Título",
|
||||
"PE.Controllers.Main.txtSldLtTTitleOnly": "Sólo título",
|
||||
"PE.Controllers.Main.txtSldLtTTwoColTx": "Texto a dos columnas",
|
||||
"PE.Controllers.Main.txtSldLtTTwoObj": "Dos objetos",
|
||||
"PE.Controllers.Main.txtSldLtTTwoObjAndObj": "Dos objetos y objeto",
|
||||
"PE.Controllers.Main.txtSldLtTTwoObjAndTx": "Dos objetos y texto",
|
||||
"PE.Controllers.Main.txtSldLtTTwoObjOverTx": "Dos objetos encima de texto",
|
||||
"PE.Controllers.Main.txtSldLtTTwoTxTwoObj": "Dos textos y dos objetos",
|
||||
"PE.Controllers.Main.txtSldLtTTx": "Texto",
|
||||
"PE.Controllers.Main.txtSldLtTTxAndChart": "Texto y gráfico",
|
||||
"PE.Controllers.Main.txtSldLtTTxAndClipArt": "Texto y Clip Art",
|
||||
"PE.Controllers.Main.txtSldLtTTxAndMedia": "Texto y multimedia",
|
||||
"PE.Controllers.Main.txtSldLtTTxAndObj": "Texto y objeto",
|
||||
"PE.Controllers.Main.txtSldLtTTxAndTwoObj": "Texto y dos objetos",
|
||||
"PE.Controllers.Main.txtSldLtTTxOverObj": "Texto encima de objeto",
|
||||
"PE.Controllers.Main.txtSldLtTVertTitleAndTx": "Título vertical y texto",
|
||||
"PE.Controllers.Main.txtSldLtTVertTitleAndTxOverChart": "Título vertical y texto encima de gráfico",
|
||||
"PE.Controllers.Main.txtSldLtTVertTx": "Texto vertical",
|
||||
"PE.Controllers.Main.txtSlideNumber": "Número de diapositiva",
|
||||
"PE.Controllers.Main.txtSlideSubtitle": "Subtítulo de diapositiva",
|
||||
"PE.Controllers.Main.txtSlideText": "Texto de diapositiva",
|
||||
"PE.Controllers.Main.txtSlideTitle": "Título de diapositiva",
|
||||
"PE.Controllers.Main.txtStarsRibbons": "Cintas y estrellas",
|
||||
"PE.Controllers.Main.txtXAxis": "Eje X",
|
||||
"PE.Controllers.Main.txtYAxis": "Eje Y",
|
||||
"PE.Controllers.Main.unknownErrorText": "Error desconocido.",
|
||||
"PE.Controllers.Main.unsupportedBrowserErrorText ": "Su navegador no está soportado.",
|
||||
"PE.Controllers.Main.uploadImageExtMessage": "Formato de imagen desconocido.",
|
||||
"PE.Controllers.Main.uploadImageFileCountMessage": "No hay imágenes subidas.",
|
||||
"PE.Controllers.Main.uploadImageSizeMessage": "Tamaño de imagen máximo está superado.",
|
||||
"PE.Controllers.Main.uploadImageTextText": "Subiendo imagen...",
|
||||
"PE.Controllers.Main.uploadImageTitleText": "Subiendo imagen",
|
||||
"PE.Controllers.Main.warnLicenseExp": "Su licencia ha expirado.<br>Por favor, actualice su licencia y después recargue la página.",
|
||||
"PE.Controllers.Main.warnNoLicense": "Usted está usando la versión de código abierto de ONLYOFFICE. Esta versión tiene limitaciones respecto a la cantidad de conexiones concurrentes al servidor de documentos (20 conexiones simultáneamente).<br>Si se requiere más, considere la posibilidad de adquirir la licencia comercial.",
|
||||
"PE.Controllers.Main.warnProcessRightsChange": "El derecho de edición del archivo es denegado.",
|
||||
"PE.Controllers.Search.textNoTextFound": "Texto no es encontrado",
|
||||
"PE.Controllers.Settings.notcriticalErrorTitle": "Aviso",
|
||||
"PE.Controllers.Settings.txtLoading": "Cargando...",
|
||||
"PE.Controllers.Toolbar.dlgLeaveMsgText": "Hay cambios no guardados en este documento. Haga clic en \"Permanecer en esta página\" para esperar la función de guardar automáticamente del documento. Haga clic en \"Abandonar esta página\" para descartar todos los cambios no guardados.",
|
||||
"PE.Controllers.Toolbar.dlgLeaveTitleText": "Usted abandona la aplicación",
|
||||
"PE.Controllers.Toolbar.leaveButtonText": "Salir de esta página",
|
||||
"PE.Controllers.Toolbar.stayButtonText": "Quedarse en esta página",
|
||||
"PE.Views.AddImage.textAddress": "Dirección",
|
||||
"PE.Views.AddImage.textBack": "Atrás",
|
||||
"PE.Views.AddImage.textFromLibrary": "Imagen de biblioteca",
|
||||
"PE.Views.AddImage.textFromURL": "Imagen de URL",
|
||||
"PE.Views.AddImage.textImageURL": "URL de imagen",
|
||||
"PE.Views.AddImage.textInsertImage": "Insertar imagen",
|
||||
"PE.Views.AddImage.textLinkSettings": "Ajustes de enlace",
|
||||
"PE.Views.AddLink.textBack": "Atrás",
|
||||
"PE.Views.AddLink.textDisplay": "Mostrar",
|
||||
"PE.Views.AddLink.textExternalLink": "Enlace externo",
|
||||
"PE.Views.AddLink.textFirst": "Primera diapositiva",
|
||||
"PE.Views.AddLink.textInsert": "Insertar",
|
||||
"PE.Views.AddLink.textInternalLink": "Diapositiva en esta presentación",
|
||||
"PE.Views.AddLink.textLast": "Última diapositiva",
|
||||
"PE.Views.AddLink.textLink": "Enlace",
|
||||
"PE.Views.AddLink.textLinkSlide": "Vincular con",
|
||||
"PE.Views.AddLink.textLinkType": "Tipo de enlace",
|
||||
"PE.Views.AddLink.textNext": "Diapositiva siguiente",
|
||||
"PE.Views.AddLink.textNumber": "Número de diapositiva",
|
||||
"PE.Views.AddLink.textPrev": "Diapositiva anterior",
|
||||
"PE.Views.AddLink.textTip": "Consejo de pantalla",
|
||||
"PE.Views.EditChart.textAlign": "Alineación",
|
||||
"PE.Views.EditChart.textAlignBottom": "Alinear en la parte inferior",
|
||||
"PE.Views.EditChart.textAlignCenter": "Alinear al centro",
|
||||
"PE.Views.EditChart.textAlignLeft": "Alinear a la izquierda",
|
||||
"PE.Views.EditChart.textAlignMiddle": "Alinear al medio",
|
||||
"PE.Views.EditChart.textAlignRight": "Alinear a la derecha",
|
||||
"PE.Views.EditChart.textAlignTop": "Alinear en la parte superior",
|
||||
"PE.Views.EditChart.textBack": "Atrás",
|
||||
"PE.Views.EditChart.textBackward": "Mover atrás",
|
||||
"PE.Views.EditChart.textBorder": "Borde",
|
||||
"PE.Views.EditChart.textColor": "Color",
|
||||
"PE.Views.EditChart.textFill": "Relleno",
|
||||
"PE.Views.EditChart.textForward": "Mover adelante",
|
||||
"PE.Views.EditChart.textRemoveChart": "Eliminar gráfico",
|
||||
"PE.Views.EditChart.textReorder": "Reorganizar",
|
||||
"PE.Views.EditChart.textSize": "Tamaño",
|
||||
"PE.Views.EditChart.textStyle": "Estilo",
|
||||
"PE.Views.EditChart.textToBackground": "Enviar al fondo",
|
||||
"PE.Views.EditChart.textToForeground": "Traer al primer plano",
|
||||
"PE.Views.EditChart.textType": "Tipo",
|
||||
"PE.Views.EditChart.txtDistribHor": "Distribuir horizontalmente",
|
||||
"PE.Views.EditChart.txtDistribVert": "Distribuir verticalmente",
|
||||
"PE.Views.EditImage.textAddress": "Dirección",
|
||||
"PE.Views.EditImage.textAlign": "Alineación",
|
||||
"PE.Views.EditImage.textAlignBottom": "Alinear en la parte inferior",
|
||||
"PE.Views.EditImage.textAlignCenter": "Alinear al centro",
|
||||
"PE.Views.EditImage.textAlignLeft": "Alinear a la izquierda",
|
||||
"PE.Views.EditImage.textAlignMiddle": "Alinear al medio",
|
||||
"PE.Views.EditImage.textAlignRight": "Alinear a la derecha",
|
||||
"PE.Views.EditImage.textAlignTop": "Alinear en la parte superior",
|
||||
"PE.Views.EditImage.textBack": "Atrás",
|
||||
"PE.Views.EditImage.textBackward": "Mover atrás",
|
||||
"PE.Views.EditImage.textDefault": "Tamaño Predeterminado",
|
||||
"PE.Views.EditImage.textForward": "Mover adelante",
|
||||
"PE.Views.EditImage.textFromLibrary": "Imagen de biblioteca",
|
||||
"PE.Views.EditImage.textFromURL": "Imagen de URL",
|
||||
"PE.Views.EditImage.textImageURL": "URL de imagen",
|
||||
"PE.Views.EditImage.textLinkSettings": "Ajustes de enlace",
|
||||
"PE.Views.EditImage.textRemove": "Eliminar imagen",
|
||||
"PE.Views.EditImage.textReorder": "Reorganizar",
|
||||
"PE.Views.EditImage.textReplace": "Reemplazar",
|
||||
"PE.Views.EditImage.textReplaceImg": "Reemplazar imagen",
|
||||
"PE.Views.EditImage.textToBackground": "Enviar al fondo",
|
||||
"PE.Views.EditImage.textToForeground": "Traer al primer plano",
|
||||
"PE.Views.EditImage.txtDistribHor": "Distribuir horizontalmente",
|
||||
"PE.Views.EditImage.txtDistribVert": "Distribuir verticalmente",
|
||||
"PE.Views.EditLink.textBack": "Atrás",
|
||||
"PE.Views.EditLink.textDisplay": "Mostrar",
|
||||
"PE.Views.EditLink.textEdit": "Editar enlace",
|
||||
"PE.Views.EditLink.textExternalLink": "Enlace externo",
|
||||
"PE.Views.EditLink.textFirst": "Primera diapositiva",
|
||||
"PE.Views.EditLink.textInternalLink": "Diapositiva en esta presentación",
|
||||
"PE.Views.EditLink.textLast": "Última diapositiva",
|
||||
"PE.Views.EditLink.textLink": "Enlace",
|
||||
"PE.Views.EditLink.textLinkSlide": "Vincular con",
|
||||
"PE.Views.EditLink.textLinkType": "Tipo de enlace",
|
||||
"PE.Views.EditLink.textNext": "Diapositiva siguiente",
|
||||
"PE.Views.EditLink.textNumber": "Número de diapositiva",
|
||||
"PE.Views.EditLink.textPrev": "Diapositiva anterior",
|
||||
"PE.Views.EditLink.textRemove": "Eliminar enlace",
|
||||
"PE.Views.EditLink.textTip": "Consejo de pantalla",
|
||||
"PE.Views.EditShape.textAlign": "Alineación",
|
||||
"PE.Views.EditShape.textAlignBottom": "Alinear en la parte inferior",
|
||||
"PE.Views.EditShape.textAlignCenter": "Alinear al centro",
|
||||
"PE.Views.EditShape.textAlignLeft": "Alinear a la izquierda",
|
||||
"PE.Views.EditShape.textAlignMiddle": "Alinear al medio",
|
||||
"PE.Views.EditShape.textAlignRight": "Alinear a la derecha",
|
||||
"PE.Views.EditShape.textAlignTop": "Alinear en la parte superior",
|
||||
"PE.Views.EditShape.textBack": "Atrás",
|
||||
"PE.Views.EditShape.textBackward": "Mover atrás",
|
||||
"PE.Views.EditShape.textBorder": "Borde",
|
||||
"PE.Views.EditShape.textColor": "Color",
|
||||
"PE.Views.EditShape.textEffects": "Efectos",
|
||||
"PE.Views.EditShape.textFill": "Relleno",
|
||||
"PE.Views.EditShape.textForward": "Mover adelante",
|
||||
"PE.Views.EditShape.textOpacity": "Opacidad ",
|
||||
"PE.Views.EditShape.textRemoveShape": "Eliminar forma",
|
||||
"PE.Views.EditShape.textReorder": "Reorganizar",
|
||||
"PE.Views.EditShape.textReplace": "Reemplazar",
|
||||
"PE.Views.EditShape.textSize": "Tamaño",
|
||||
"PE.Views.EditShape.textStyle": "Estilo",
|
||||
"PE.Views.EditShape.textToBackground": "Enviar al fondo",
|
||||
"PE.Views.EditShape.textToForeground": "Traer al primer plano",
|
||||
"PE.Views.EditShape.txtDistribHor": "Distribuir horizontalmente",
|
||||
"PE.Views.EditShape.txtDistribVert": "Distribuir verticalmente",
|
||||
"PE.Views.EditSlide.textApplyAll": "Aplicar a todas las diapositivas",
|
||||
"PE.Views.EditSlide.textBack": "Atrás",
|
||||
"PE.Views.EditSlide.textBlack": "A través de negro",
|
||||
"PE.Views.EditSlide.textBottom": "Abajo ",
|
||||
"PE.Views.EditSlide.textBottomLeft": "Abajo a la izquierda",
|
||||
"PE.Views.EditSlide.textBottomRight": "Abajo a la derecha",
|
||||
"PE.Views.EditSlide.textClock": "Reloj",
|
||||
"PE.Views.EditSlide.textClockwise": "En el sentido de las agujas del reloj",
|
||||
"PE.Views.EditSlide.textColor": "Color",
|
||||
"PE.Views.EditSlide.textCounterclockwise": "En el sentido contrario a las agujas del reloj",
|
||||
"PE.Views.EditSlide.textCover": "Cubrir",
|
||||
"PE.Views.EditSlide.textDelay": "Retraso",
|
||||
"PE.Views.EditSlide.textDuplicateSlide": "Duplicar diapositiva",
|
||||
"PE.Views.EditSlide.textDuration": "Duración ",
|
||||
"PE.Views.EditSlide.textEffect": "Efecto",
|
||||
"PE.Views.EditSlide.textFade": "Atenuación",
|
||||
"PE.Views.EditSlide.textFill": "Relleno",
|
||||
"PE.Views.EditSlide.textHorizontalIn": "Horizontal dentro",
|
||||
"PE.Views.EditSlide.textHorizontalOut": "Horizontal por fuera",
|
||||
"PE.Views.EditSlide.textLayout": "Diseño",
|
||||
"PE.Views.EditSlide.textLeft": "A la izquierda",
|
||||
"PE.Views.EditSlide.textNone": "Ninguno",
|
||||
"PE.Views.EditSlide.textOpacity": "Opacidad ",
|
||||
"PE.Views.EditSlide.textPush": "Inserción",
|
||||
"PE.Views.EditSlide.textRemoveSlide": "Eliminar diapositiva",
|
||||
"PE.Views.EditSlide.textRight": "A la derecha",
|
||||
"PE.Views.EditSlide.textSmoothly": "Suavemente",
|
||||
"PE.Views.EditSlide.textSplit": "Dividir",
|
||||
"PE.Views.EditSlide.textStartOnClick": "Iniciar al hacer clic",
|
||||
"PE.Views.EditSlide.textStyle": "Estilo",
|
||||
"PE.Views.EditSlide.textTheme": "Tema",
|
||||
"PE.Views.EditSlide.textTop": "Superior",
|
||||
"PE.Views.EditSlide.textTopLeft": "Superior izquierda",
|
||||
"PE.Views.EditSlide.textTopRight": "Superior derecha",
|
||||
"PE.Views.EditSlide.textTransition": "Transición",
|
||||
"PE.Views.EditSlide.textType": "Tipo",
|
||||
"PE.Views.EditSlide.textUnCover": "Revelar",
|
||||
"PE.Views.EditSlide.textVerticalIn": "Vertical dentro",
|
||||
"PE.Views.EditSlide.textVerticalOut": "Vertical por fuera",
|
||||
"PE.Views.EditSlide.textWedge": "Cuña",
|
||||
"PE.Views.EditSlide.textWipe": "Limpiar",
|
||||
"PE.Views.EditSlide.textZoom": "Zoom",
|
||||
"PE.Views.EditSlide.textZoomIn": "Acercar",
|
||||
"PE.Views.EditSlide.textZoomOut": "Alejar",
|
||||
"PE.Views.EditSlide.textZoomRotate": "Zoom y girar",
|
||||
"PE.Views.EditTable.textAlign": "Alineación",
|
||||
"PE.Views.EditTable.textAlignBottom": "Alinear en la parte inferior",
|
||||
"PE.Views.EditTable.textAlignCenter": "Alinear al centro",
|
||||
"PE.Views.EditTable.textAlignLeft": "Alinear a la izquierda",
|
||||
"PE.Views.EditTable.textAlignMiddle": "Alinear al medio",
|
||||
"PE.Views.EditTable.textAlignRight": "Alinear a la derecha",
|
||||
"PE.Views.EditTable.textAlignTop": "Alinear en la parte superior",
|
||||
"PE.Views.EditTable.textBack": "Atrás",
|
||||
"PE.Views.EditTable.textBackward": "Mover atrás",
|
||||
"PE.Views.EditTable.textBandedColumn": "Columna de bandas",
|
||||
"PE.Views.EditTable.textBandedRow": "Fila de bandas",
|
||||
"PE.Views.EditTable.textBorder": "Borde",
|
||||
"PE.Views.EditTable.textCellMargins": "Márgenes de celda",
|
||||
"PE.Views.EditTable.textColor": "Color",
|
||||
"PE.Views.EditTable.textFill": "Relleno",
|
||||
"PE.Views.EditTable.textFirstColumn": "Primera columna",
|
||||
"PE.Views.EditTable.textForward": "Mover adelante",
|
||||
"PE.Views.EditTable.textHeaderRow": "Fila de encabezado",
|
||||
"PE.Views.EditTable.textLastColumn": "Columna última",
|
||||
"PE.Views.EditTable.textOptions": "Opciones",
|
||||
"PE.Views.EditTable.textRemoveTable": "Eliminar tabla",
|
||||
"PE.Views.EditTable.textReorder": "Reorganizar",
|
||||
"PE.Views.EditTable.textSize": "Tamaño",
|
||||
"PE.Views.EditTable.textStyle": "Estilo",
|
||||
"PE.Views.EditTable.textStyleOptions": "Opciones de estilo",
|
||||
"PE.Views.EditTable.textTableOptions": "Opciones de tabla",
|
||||
"PE.Views.EditTable.textToBackground": "Enviar al fondo",
|
||||
"PE.Views.EditTable.textToForeground": "Traer al primer plano",
|
||||
"PE.Views.EditTable.textTotalRow": "Fila de totales",
|
||||
"PE.Views.EditTable.txtDistribHor": "Distribuir horizontalmente",
|
||||
"PE.Views.EditTable.txtDistribVert": "Distribuir verticalmente",
|
||||
"PE.Views.EditText.textAdditional": "Adicional",
|
||||
"PE.Views.EditText.textAdditionalFormat": "Formateo adicional",
|
||||
"PE.Views.EditText.textAfter": "Después",
|
||||
"PE.Views.EditText.textAllCaps": "Mayúsculas",
|
||||
"PE.Views.EditText.textAutomatic": "Automático",
|
||||
"PE.Views.EditText.textBack": "Atrás",
|
||||
"PE.Views.EditText.textBefore": "Antes",
|
||||
"PE.Views.EditText.textBullets": "Viñetas",
|
||||
"PE.Views.EditText.textDblStrikethrough": "Doble tachado",
|
||||
"PE.Views.EditText.textDblSuperscript": "Sobreíndice",
|
||||
"PE.Views.EditText.textFontColor": "Color de fuente",
|
||||
"PE.Views.EditText.textFontColors": "Colores de fuente",
|
||||
"PE.Views.EditText.textFonts": "Fuentes",
|
||||
"PE.Views.EditText.textFromText": "Distancia del texto",
|
||||
"PE.Views.EditText.textLetterSpacing": "Espaciado entre letras",
|
||||
"PE.Views.EditText.textLineSpacing": "Espaciado de línea",
|
||||
"PE.Views.EditText.textNone": "Ninguno",
|
||||
"PE.Views.EditText.textNumbers": "Números",
|
||||
"PE.Views.EditText.textSize": "Tamaño",
|
||||
"PE.Views.EditText.textSmallCaps": "Mayúsculas pequeñas",
|
||||
"PE.Views.EditText.textStrikethrough": "Tachado",
|
||||
"PE.Views.EditText.textSubscript": "Subíndice",
|
||||
"PE.Views.Search.textSearch": "Búsqueda",
|
||||
"PE.Views.Settings.mniSlideStandard": "Estándar (4:3)",
|
||||
"PE.Views.Settings.mniSlideWide": "Panorámico (16:9)",
|
||||
"PE.Views.Settings.textAbout": "Acerca de programa",
|
||||
"PE.Views.Settings.textAddress": "dirección",
|
||||
"PE.Views.Settings.textAuthor": "Autor",
|
||||
"PE.Views.Settings.textBack": "Atrás",
|
||||
"PE.Views.Settings.textCreateDate": "Fecha de creación",
|
||||
"PE.Views.Settings.textDone": "Listo",
|
||||
"PE.Views.Settings.textDownload": "Descargar",
|
||||
"PE.Views.Settings.textDownloadAs": "Descargar como...",
|
||||
"PE.Views.Settings.textEditPresent": "Editar presentación",
|
||||
"PE.Views.Settings.textEmail": "email",
|
||||
"PE.Views.Settings.textFind": "Buscar",
|
||||
"PE.Views.Settings.textHelp": "Ayuda",
|
||||
"PE.Views.Settings.textLoading": "Cargando...",
|
||||
"PE.Views.Settings.textPoweredBy": "Desarrollado por",
|
||||
"PE.Views.Settings.textPresentInfo": "Información sobre presentación",
|
||||
"PE.Views.Settings.textPresentSetup": "Ajustes de presentación",
|
||||
"PE.Views.Settings.textPresentTitle": "Título de presentación",
|
||||
"PE.Views.Settings.textSettings": "Ajustes",
|
||||
"PE.Views.Settings.textSlideSize": "Tamaño de diapositiva",
|
||||
"PE.Views.Settings.textTel": "Tel.",
|
||||
"PE.Views.Settings.textVersion": "Versión ",
|
||||
"PE.Views.Settings.unknownText": "Desconocido",
|
||||
"PE.Views.Toolbar.textBack": "Atrás"
|
||||
}
|
|
@ -60,7 +60,7 @@
|
|||
"PE.Controllers.Main.advDRMPassword": " Mot de passe",
|
||||
"PE.Controllers.Main.applyChangesTextText": "Chargement des données en cours...",
|
||||
"PE.Controllers.Main.applyChangesTitleText": "Chargement des données",
|
||||
"PE.Controllers.Main.convertationTimeoutText": "Expiration du délai de conversion.",
|
||||
"PE.Controllers.Main.convertationTimeoutText": "Délai de conversion expiré.",
|
||||
"PE.Controllers.Main.criticalErrorExtText": "Appuyez sur OK pour revenir à la liste des documents.",
|
||||
"PE.Controllers.Main.criticalErrorTitle": "Erreur",
|
||||
"PE.Controllers.Main.defaultTitleText": "ONLYOFFICE Presentation Editor",
|
||||
|
@ -136,12 +136,20 @@
|
|||
"PE.Controllers.Main.txtButtons": "Boutons",
|
||||
"PE.Controllers.Main.txtCallouts": "Légendes",
|
||||
"PE.Controllers.Main.txtCharts": "Graphiques",
|
||||
"PE.Controllers.Main.txtClipArt": "Clip Art",
|
||||
"PE.Controllers.Main.txtDateTime": "Date and time",
|
||||
"PE.Controllers.Main.txtDiagram": "SmartArt",
|
||||
"PE.Controllers.Main.txtDiagramTitle": "Titre du graphique",
|
||||
"PE.Controllers.Main.txtEditingMode": "Définition du mode d'édition...",
|
||||
"PE.Controllers.Main.txtFiguredArrows": "Flèches figurées",
|
||||
"PE.Controllers.Main.txtFooter": "Footer",
|
||||
"PE.Controllers.Main.txtHeader": "Header",
|
||||
"PE.Controllers.Main.txtImage": "Image",
|
||||
"PE.Controllers.Main.txtLines": "Lignes",
|
||||
"PE.Controllers.Main.txtMath": "Maths",
|
||||
"PE.Controllers.Main.txtMedia": "Media",
|
||||
"PE.Controllers.Main.txtNeedSynchronize": "Vous avez des mises à jour",
|
||||
"PE.Controllers.Main.txtPicture": "Picture",
|
||||
"PE.Controllers.Main.txtRectangles": "Rectangles",
|
||||
"PE.Controllers.Main.txtSeries": "Série",
|
||||
"PE.Controllers.Main.txtSldLtTBlank": "Vide",
|
||||
|
@ -180,6 +188,10 @@
|
|||
"PE.Controllers.Main.txtSldLtTVertTitleAndTx": "Titre vertical et texte",
|
||||
"PE.Controllers.Main.txtSldLtTVertTitleAndTxOverChart": "Titre vertical et texte sur graphique",
|
||||
"PE.Controllers.Main.txtSldLtTVertTx": "Texte vertical",
|
||||
"PE.Controllers.Main.txtSlideNumber": "Slide number",
|
||||
"PE.Controllers.Main.txtSlideSubtitle": "Slide subtitle",
|
||||
"PE.Controllers.Main.txtSlideText": "Slide text",
|
||||
"PE.Controllers.Main.txtSlideTitle": "Slide title",
|
||||
"PE.Controllers.Main.txtStarsRibbons": "Étoiles et rubans",
|
||||
"PE.Controllers.Main.txtXAxis": "Axe X",
|
||||
"PE.Controllers.Main.txtYAxis": "Axe Y",
|
||||
|
@ -420,6 +432,7 @@
|
|||
"PE.Views.Settings.textFind": "Trouver",
|
||||
"PE.Views.Settings.textHelp": "Aide",
|
||||
"PE.Views.Settings.textLoading": "Chargement en cours...",
|
||||
"PE.Views.Settings.textPoweredBy": "Powered by",
|
||||
"PE.Views.Settings.textPresentInfo": "Infos sur présentation",
|
||||
"PE.Views.Settings.textPresentSetup": "Paramètres de la présentation",
|
||||
"PE.Views.Settings.textPresentTitle": "Titre de la présentation",
|
||||
|
|
|
@ -136,12 +136,20 @@
|
|||
"PE.Controllers.Main.txtButtons": "Кнопки",
|
||||
"PE.Controllers.Main.txtCallouts": "Выноски",
|
||||
"PE.Controllers.Main.txtCharts": "Схемы",
|
||||
"PE.Controllers.Main.txtClipArt": "Картинка",
|
||||
"PE.Controllers.Main.txtDateTime": "Дата и время",
|
||||
"PE.Controllers.Main.txtDiagram": "Рисунок SmartArt",
|
||||
"PE.Controllers.Main.txtDiagramTitle": "Заголовок диаграммы",
|
||||
"PE.Controllers.Main.txtEditingMode": "Установка режима редактирования...",
|
||||
"PE.Controllers.Main.txtFiguredArrows": "Фигурные стрелки",
|
||||
"PE.Controllers.Main.txtFooter": "Нижний колонтитул",
|
||||
"PE.Controllers.Main.txtHeader": "Верхний колонтитул",
|
||||
"PE.Controllers.Main.txtImage": "Образ слайда",
|
||||
"PE.Controllers.Main.txtLines": "Линии",
|
||||
"PE.Controllers.Main.txtMath": "Математические знаки",
|
||||
"PE.Controllers.Main.txtMedia": "Клип мультимедиа",
|
||||
"PE.Controllers.Main.txtNeedSynchronize": "Есть обновления",
|
||||
"PE.Controllers.Main.txtPicture": "Рисунок",
|
||||
"PE.Controllers.Main.txtRectangles": "Прямоугольники",
|
||||
"PE.Controllers.Main.txtSeries": "Ряд",
|
||||
"PE.Controllers.Main.txtSldLtTBlank": "Пустой слайд",
|
||||
|
@ -180,6 +188,10 @@
|
|||
"PE.Controllers.Main.txtSldLtTVertTitleAndTx": "Вертикальный заголовок и текст",
|
||||
"PE.Controllers.Main.txtSldLtTVertTitleAndTxOverChart": "Вертикальный заголовок и текст над диаграммой",
|
||||
"PE.Controllers.Main.txtSldLtTVertTx": "Вертикальный текст",
|
||||
"PE.Controllers.Main.txtSlideNumber": "Номер слайда",
|
||||
"PE.Controllers.Main.txtSlideSubtitle": "Подзаголовок слайда",
|
||||
"PE.Controllers.Main.txtSlideText": "Текст слайда",
|
||||
"PE.Controllers.Main.txtSlideTitle": "Заголовок слайда",
|
||||
"PE.Controllers.Main.txtStarsRibbons": "Звезды и ленты",
|
||||
"PE.Controllers.Main.txtXAxis": "Ось X",
|
||||
"PE.Controllers.Main.txtYAxis": "Ось Y",
|
||||
|
@ -193,18 +205,6 @@
|
|||
"PE.Controllers.Main.warnLicenseExp": "Истек срок действия лицензии.<br>Обновите лицензию, а затем обновите страницу.",
|
||||
"PE.Controllers.Main.warnNoLicense": "Вы используете open source версию ONLYOFFICE. Эта версия имеет ограничения по количеству одновременных подключений к серверу документов (20 подключений одновременно).<br>Если требуется больше, рассмотрите вопрос о покупке коммерческой лицензии.",
|
||||
"PE.Controllers.Main.warnProcessRightsChange": "Вам было отказано в праве на редактирование этого файла.",
|
||||
"PE.Controllers.Main.txtSlideText": "Текст слайда",
|
||||
"PE.Controllers.Main.txtClipArt": "Картинка",
|
||||
"PE.Controllers.Main.txtDiagram": "Рисунок SmartArt",
|
||||
"PE.Controllers.Main.txtDateTime": "Дата и время",
|
||||
"PE.Controllers.Main.txtFooter": "Нижний колонтитул",
|
||||
"PE.Controllers.Main.txtHeader": "Верхний колонтитул",
|
||||
"PE.Controllers.Main.txtMedia": "Клип мультимедиа",
|
||||
"PE.Controllers.Main.txtPicture": "Рисунок",
|
||||
"PE.Controllers.Main.txtImage": "Образ слайда",
|
||||
"PE.Controllers.Main.txtSlideNumber": "Номер слайда",
|
||||
"PE.Controllers.Main.txtSlideSubtitle": "Подзаголовок слайда",
|
||||
"PE.Controllers.Main.txtSlideTitle": "Заголовок слайда",
|
||||
"PE.Controllers.Search.textNoTextFound": "Текст не найден",
|
||||
"PE.Controllers.Settings.notcriticalErrorTitle": "Внимание",
|
||||
"PE.Controllers.Settings.txtLoading": "Загрузка...",
|
||||
|
@ -432,6 +432,7 @@
|
|||
"PE.Views.Settings.textFind": "Найти",
|
||||
"PE.Views.Settings.textHelp": "Справка",
|
||||
"PE.Views.Settings.textLoading": "Загрузка...",
|
||||
"PE.Views.Settings.textPoweredBy": "Powered by",
|
||||
"PE.Views.Settings.textPresentInfo": "Информация о презентации",
|
||||
"PE.Views.Settings.textPresentSetup": "Настройка презентации",
|
||||
"PE.Views.Settings.textPresentTitle": "Название презентации",
|
||||
|
|
445
apps/presentationeditor/mobile/locale/sk.json
Normal file
445
apps/presentationeditor/mobile/locale/sk.json
Normal file
|
@ -0,0 +1,445 @@
|
|||
{
|
||||
"Common.UI.ThemeColorPalette.textStandartColors": "Štandardné farby",
|
||||
"Common.UI.ThemeColorPalette.textThemeColors": "Farebné témy",
|
||||
"Common.Utils.Metric.txtCm": "cm",
|
||||
"Common.Utils.Metric.txtPt": "pt",
|
||||
"PE.Controllers.AddContainer.textImage": "Obrázok",
|
||||
"PE.Controllers.AddContainer.textLink": "Odkaz",
|
||||
"PE.Controllers.AddContainer.textShape": "Tvar",
|
||||
"PE.Controllers.AddContainer.textSlide": "Snímka",
|
||||
"PE.Controllers.AddContainer.textTable": "Tabuľka",
|
||||
"PE.Controllers.AddImage.textEmptyImgUrl": "Musíte upresniť URL obrázka.",
|
||||
"PE.Controllers.AddImage.txtNotUrl": "Toto pole by malo byť vo formáte 'http://www.example.com'",
|
||||
"PE.Controllers.AddLink.textDefault": "Vybraný text",
|
||||
"PE.Controllers.AddLink.textExternalLink": "Externý odkaz",
|
||||
"PE.Controllers.AddLink.textFirst": "Prvá snímka",
|
||||
"PE.Controllers.AddLink.textInternalLink": "Snímok v tejto prezentácii\n\n",
|
||||
"PE.Controllers.AddLink.textLast": "Posledná snímka",
|
||||
"PE.Controllers.AddLink.textNext": "Nasledujúca snímka",
|
||||
"PE.Controllers.AddLink.textPrev": "Predchádzajúca snímka",
|
||||
"PE.Controllers.AddLink.textSlide": "Snímka",
|
||||
"PE.Controllers.AddLink.txtNotUrl": "Toto pole by malo byť vo formáte 'http://www.example.com'",
|
||||
"PE.Controllers.AddTable.textCancel": "Zrušiť",
|
||||
"PE.Controllers.AddTable.textColumns": "Stĺpce",
|
||||
"PE.Controllers.AddTable.textRows": "Riadky",
|
||||
"PE.Controllers.AddTable.textTableSize": "Veľkosť tabuľky",
|
||||
"PE.Controllers.DocumentHolder.menuAddLink": "Pridať odkaz",
|
||||
"PE.Controllers.DocumentHolder.menuCopy": "Kopírovať",
|
||||
"PE.Controllers.DocumentHolder.menuCut": "Vystrihnúť",
|
||||
"PE.Controllers.DocumentHolder.menuDelete": "Vymazať",
|
||||
"PE.Controllers.DocumentHolder.menuEdit": "Upraviť",
|
||||
"PE.Controllers.DocumentHolder.menuMore": "Viac",
|
||||
"PE.Controllers.DocumentHolder.menuOpenLink": "Otvoriť odkaz\n\n",
|
||||
"PE.Controllers.DocumentHolder.menuPaste": "Vložiť",
|
||||
"PE.Controllers.DocumentHolder.sheetCancel": "Zrušiť",
|
||||
"PE.Controllers.EditContainer.textChart": "Graf",
|
||||
"PE.Controllers.EditContainer.textHyperlink": "Hypertextový odkaz",
|
||||
"PE.Controllers.EditContainer.textImage": "Obrázok",
|
||||
"PE.Controllers.EditContainer.textSettings": "Nastavenia",
|
||||
"PE.Controllers.EditContainer.textShape": "Tvar",
|
||||
"PE.Controllers.EditContainer.textSlide": "Snímka",
|
||||
"PE.Controllers.EditContainer.textTable": "Tabuľka",
|
||||
"PE.Controllers.EditContainer.textText": "Text",
|
||||
"PE.Controllers.EditImage.textEmptyImgUrl": "Musíte upresniť URL obrázka.",
|
||||
"PE.Controllers.EditImage.txtNotUrl": "Toto pole by malo byť vo formáte 'http://www.example.com'",
|
||||
"PE.Controllers.EditLink.textDefault": "Vybraný text",
|
||||
"PE.Controllers.EditLink.textExternalLink": "Externý odkaz",
|
||||
"PE.Controllers.EditLink.textFirst": "Prvá snímka",
|
||||
"PE.Controllers.EditLink.textInternalLink": "Snímok v tejto prezentácii\n\n",
|
||||
"PE.Controllers.EditLink.textLast": "Posledná snímka",
|
||||
"PE.Controllers.EditLink.textNext": "Nasledujúca snímka",
|
||||
"PE.Controllers.EditLink.textPrev": "Predchádzajúca snímka",
|
||||
"PE.Controllers.EditLink.textSlide": "Snímka",
|
||||
"PE.Controllers.EditLink.txtNotUrl": "Toto pole by malo byť vo formáte 'http://www.example.com'",
|
||||
"PE.Controllers.EditSlide.textSec": "s",
|
||||
"PE.Controllers.EditText.textAuto": "Auto",
|
||||
"PE.Controllers.EditText.textFonts": "Písma",
|
||||
"PE.Controllers.EditText.textPt": "pt",
|
||||
"PE.Controllers.Main.advDRMEnterPassword": "Zadajte svoje heslo:",
|
||||
"PE.Controllers.Main.advDRMOptions": "Chránený súbor",
|
||||
"PE.Controllers.Main.advDRMPassword": "Heslo",
|
||||
"PE.Controllers.Main.applyChangesTextText": "Načítavanie dát...",
|
||||
"PE.Controllers.Main.applyChangesTitleText": "Načítavanie dát",
|
||||
"PE.Controllers.Main.convertationTimeoutText": "Prekročený čas konverzie.\n\n",
|
||||
"PE.Controllers.Main.criticalErrorExtText": "Stlačením tlačidla 'OK' sa vrátite do zoznamu dokumentov.\n\n",
|
||||
"PE.Controllers.Main.criticalErrorTitle": "Chyba",
|
||||
"PE.Controllers.Main.defaultTitleText": "Editor ONLYOFFICE Prezentácia",
|
||||
"PE.Controllers.Main.downloadErrorText": "Sťahovanie zlyhalo.",
|
||||
"PE.Controllers.Main.downloadTextText": "Sťahovanie dokumentu...",
|
||||
"PE.Controllers.Main.downloadTitleText": "Sťahovanie dokumentu",
|
||||
"PE.Controllers.Main.errorBadImageUrl": "Adresa URL obrázku je nesprávna",
|
||||
"PE.Controllers.Main.errorCoAuthoringDisconnect": "Spojenie so serverom sa stratilo. Už nemôžete upravovať.\n\n",
|
||||
"PE.Controllers.Main.errorConnectToServer": "Dokument sa nepodarilo uložiť. Skontrolujte nastavenia pripojenia alebo sa obráťte na správcu. <br> Po kliknutí na tlačidlo 'OK' sa zobrazí výzva na stiahnutie dokumentu.<br><br>Viac informácií o pripojení dokumentového servera <a href=\"https://api.onlyoffice.com/editors/callback\" target=\"_ blank\">tu</a>",
|
||||
"PE.Controllers.Main.errorDatabaseConnection": "Externá chyba.<br>Chyba spojenia databázy. Obráťte sa prosím na podporu.",
|
||||
"PE.Controllers.Main.errorDataRange": "Nesprávny rozsah údajov.\n\n",
|
||||
"PE.Controllers.Main.errorDefaultMessage": "Kód chyby: %1",
|
||||
"PE.Controllers.Main.errorFilePassProtect": "Dokument je chránený heslom.\n\n",
|
||||
"PE.Controllers.Main.errorKeyEncrypt": "Neznámy kľúč deskriptoru\n\n",
|
||||
"PE.Controllers.Main.errorKeyExpire": "Kľúč deskriptora vypršal\n\n",
|
||||
"PE.Controllers.Main.errorProcessSaveResult": "Uloženie zlyhalo.",
|
||||
"PE.Controllers.Main.errorServerVersion": "Verzia editora bola aktualizovaná. Stránka sa opätovne načíta, aby sa vykonali zmeny.\n\n",
|
||||
"PE.Controllers.Main.errorStockChart": "Nesprávne poradie riadkov. Ak chcete vytvoriť burzový graf, umiestnite údaje na hárok v nasledujúcom poradí:<br> začiatočná cena, max cena, min cena, konečná cena.\n\n\n\n",
|
||||
"PE.Controllers.Main.errorUpdateVersion": "Verzia súboru bola zmenená. Stránka sa znova načíta.\n\n",
|
||||
"PE.Controllers.Main.errorUserDrop": "K súboru nie je možné práve teraz získať prístup.\n",
|
||||
"PE.Controllers.Main.errorUsersExceed": "Počet používateľov bol prekročený\n\n",
|
||||
"PE.Controllers.Main.errorViewerDisconnect": "Spojenie je prerušené. Dokument môžete zobraziť,<br>ale nemôžete ho stiahnuť ani vytlačiť, kým sa spojenie neobnoví.",
|
||||
"PE.Controllers.Main.leavePageText": "V tomto dokumente máte neuložené zmeny. Kliknutím na položku 'Zostať na tejto stránke' čakáte na automatické uloženie dokumentu. Kliknutím na položku 'Odísť z tejto stránky' odstránite všetky neuložené zmeny.\n\n",
|
||||
"PE.Controllers.Main.loadFontsTextText": "Načítavanie dát...",
|
||||
"PE.Controllers.Main.loadFontsTitleText": "Načítavanie dát",
|
||||
"PE.Controllers.Main.loadFontTextText": "Načítavanie dát...",
|
||||
"PE.Controllers.Main.loadFontTitleText": "Načítavanie dát",
|
||||
"PE.Controllers.Main.loadImagesTextText": "Načítavanie obrázkov...",
|
||||
"PE.Controllers.Main.loadImagesTitleText": "Načítanie obrázkov",
|
||||
"PE.Controllers.Main.loadImageTextText": "Načítanie obrázku ..",
|
||||
"PE.Controllers.Main.loadImageTitleText": "Načítavanie obrázku\n\n",
|
||||
"PE.Controllers.Main.loadingDocumentTextText": "Načítavanie prezentácie...\n\n",
|
||||
"PE.Controllers.Main.loadingDocumentTitleText": "Načítavanie prezentácie\n\n",
|
||||
"PE.Controllers.Main.loadThemeTextText": "Načítavanie témy...\n\n",
|
||||
"PE.Controllers.Main.loadThemeTitleText": "Načítavanie témy\n\n",
|
||||
"PE.Controllers.Main.notcriticalErrorTitle": "Upozornenie",
|
||||
"PE.Controllers.Main.openErrorText": "Pri otváraní súboru sa vyskytla chyba",
|
||||
"PE.Controllers.Main.openTextText": "Otváranie dokumentu...",
|
||||
"PE.Controllers.Main.openTitleText": "Otváranie dokumentu",
|
||||
"PE.Controllers.Main.printTextText": "Tlač dokumentu...",
|
||||
"PE.Controllers.Main.printTitleText": "Tlač dokumentu",
|
||||
"PE.Controllers.Main.reloadButtonText": "Obnoviť stránku",
|
||||
"PE.Controllers.Main.requestEditFailedMessageText": "Niekto tento dokument práve upravuje. Skúste neskôr prosím.\n\n",
|
||||
"PE.Controllers.Main.requestEditFailedTitleText": "Prístup zamietnutý",
|
||||
"PE.Controllers.Main.saveErrorText": "Pri ukladaní súboru sa vyskytla chyba",
|
||||
"PE.Controllers.Main.savePreparingText": "Príprava na uloženie\n\n",
|
||||
"PE.Controllers.Main.savePreparingTitle": "Príprava na uloženie. Prosím čakajte...\n\n",
|
||||
"PE.Controllers.Main.saveTextText": "Ukladanie dokumentu...",
|
||||
"PE.Controllers.Main.saveTitleText": "Ukladanie dokumentu",
|
||||
"PE.Controllers.Main.splitDividerErrorText": "Počet riadkov musí byť deliteľom %1\n\n",
|
||||
"PE.Controllers.Main.splitMaxColsErrorText": "Počet stĺpcov musí byť menší ako %1\n\n",
|
||||
"PE.Controllers.Main.splitMaxRowsErrorText": "Počet riadkov musí byť menší ako %1\n\n\n\n",
|
||||
"PE.Controllers.Main.textAnonymous": "Anonymný",
|
||||
"PE.Controllers.Main.textBack": "Späť",
|
||||
"PE.Controllers.Main.textBuyNow": "Navštíviť webovú stránku",
|
||||
"PE.Controllers.Main.textCancel": "Zrušiť",
|
||||
"PE.Controllers.Main.textClose": "Zatvoriť",
|
||||
"PE.Controllers.Main.textCloseTip": "Klepnutím zavrite nápovedu.\n\n",
|
||||
"PE.Controllers.Main.textContactUs": "Kontaktujte predajcu\n\n",
|
||||
"PE.Controllers.Main.textDone": "Hotovo",
|
||||
"PE.Controllers.Main.textLoadingDocument": "Načítavanie prezentácie\n\n",
|
||||
"PE.Controllers.Main.textNoLicenseTitle": "ONLYOFFICE verzia s otvoreným zdrojom\n\n",
|
||||
"PE.Controllers.Main.textOK": "OK",
|
||||
"PE.Controllers.Main.textPassword": "Heslo",
|
||||
"PE.Controllers.Main.textPreloader": "Nahrávanie...",
|
||||
"PE.Controllers.Main.textShape": "Tvar",
|
||||
"PE.Controllers.Main.textTryUndoRedo": "Funkcie späť/opakovať sú pre rýchly spolu-editačný režim vypnuté.",
|
||||
"PE.Controllers.Main.textUsername": "Užívateľské meno",
|
||||
"PE.Controllers.Main.titleLicenseExp": "Platnosť licencie uplynula\n\n",
|
||||
"PE.Controllers.Main.titleServerVersion": "Editor bol aktualizovaný\n\n",
|
||||
"PE.Controllers.Main.txtArt": "Váš text tu",
|
||||
"PE.Controllers.Main.txtBasicShapes": "Základné tvary\n\n",
|
||||
"PE.Controllers.Main.txtButtons": "Tlačidlá",
|
||||
"PE.Controllers.Main.txtCallouts": "Bubliny",
|
||||
"PE.Controllers.Main.txtCharts": "Grafy",
|
||||
"PE.Controllers.Main.txtClipArt": "Klipart",
|
||||
"PE.Controllers.Main.txtDateTime": "Dátum a čas",
|
||||
"PE.Controllers.Main.txtDiagram": "SmartArt",
|
||||
"PE.Controllers.Main.txtDiagramTitle": "Názov grafu",
|
||||
"PE.Controllers.Main.txtEditingMode": "Nastaviť režim úprav ...\n\n",
|
||||
"PE.Controllers.Main.txtFiguredArrows": "Šipky",
|
||||
"PE.Controllers.Main.txtFooter": "Päta stránky\n",
|
||||
"PE.Controllers.Main.txtHeader": "Hlavička",
|
||||
"PE.Controllers.Main.txtImage": "Obrázok",
|
||||
"PE.Controllers.Main.txtLines": "Čiary",
|
||||
"PE.Controllers.Main.txtMath": "Matematika",
|
||||
"PE.Controllers.Main.txtMedia": "Médiá ",
|
||||
"PE.Controllers.Main.txtNeedSynchronize": "Máte aktualizácie\n\n",
|
||||
"PE.Controllers.Main.txtPicture": "Obrázok",
|
||||
"PE.Controllers.Main.txtRectangles": "Obdĺžniky",
|
||||
"PE.Controllers.Main.txtSeries": "Rady",
|
||||
"PE.Controllers.Main.txtSldLtTBlank": "Prázdny",
|
||||
"PE.Controllers.Main.txtSldLtTChart": "Graf",
|
||||
"PE.Controllers.Main.txtSldLtTChartAndTx": "Graf a text",
|
||||
"PE.Controllers.Main.txtSldLtTClipArtAndTx": "Klipart a text",
|
||||
"PE.Controllers.Main.txtSldLtTClipArtAndVertTx": "Klipart a vertikálny text",
|
||||
"PE.Controllers.Main.txtSldLtTCust": "Vlastný",
|
||||
"PE.Controllers.Main.txtSldLtTDgm": "Diagram",
|
||||
"PE.Controllers.Main.txtSldLtTFourObj": "Štyri objekty\n\n",
|
||||
"PE.Controllers.Main.txtSldLtTMediaAndTx": "Médiá a text\n\n",
|
||||
"PE.Controllers.Main.txtSldLtTObj": "Názov a objekt",
|
||||
"PE.Controllers.Main.txtSldLtTObjAndTwoObj": "Objekt a dva objekty\n\n",
|
||||
"PE.Controllers.Main.txtSldLtTObjAndTx": "Objekt a text",
|
||||
"PE.Controllers.Main.txtSldLtTObjOnly": "Objekt",
|
||||
"PE.Controllers.Main.txtSldLtTObjOverTx": "Objekt nad textom\n\n",
|
||||
"PE.Controllers.Main.txtSldLtTObjTx": "Názov, objekt a titulok\n\n",
|
||||
"PE.Controllers.Main.txtSldLtTPicTx": "Obraz a titulok\n\n",
|
||||
"PE.Controllers.Main.txtSldLtTSecHead": "Záhlavie sekcie\n",
|
||||
"PE.Controllers.Main.txtSldLtTTbl": "Tabuľka",
|
||||
"PE.Controllers.Main.txtSldLtTTitle": "Názov",
|
||||
"PE.Controllers.Main.txtSldLtTTitleOnly": "Iba názov",
|
||||
"PE.Controllers.Main.txtSldLtTTwoColTx": "Text dvojstĺpca\n\n",
|
||||
"PE.Controllers.Main.txtSldLtTTwoObj": "Dva objekty",
|
||||
"PE.Controllers.Main.txtSldLtTTwoObjAndObj": "Dva objekty a objekt",
|
||||
"PE.Controllers.Main.txtSldLtTTwoObjAndTx": "Dva objekty a text",
|
||||
"PE.Controllers.Main.txtSldLtTTwoObjOverTx": "Dva objekty nad textom",
|
||||
"PE.Controllers.Main.txtSldLtTTwoTxTwoObj": "Dva texty a dva objekty",
|
||||
"PE.Controllers.Main.txtSldLtTTx": "Text",
|
||||
"PE.Controllers.Main.txtSldLtTTxAndChart": "Text a graf",
|
||||
"PE.Controllers.Main.txtSldLtTTxAndClipArt": "Text a Klipart",
|
||||
"PE.Controllers.Main.txtSldLtTTxAndMedia": "Text a médiá",
|
||||
"PE.Controllers.Main.txtSldLtTTxAndObj": "Text a objekt",
|
||||
"PE.Controllers.Main.txtSldLtTTxAndTwoObj": "Text a dva objekty",
|
||||
"PE.Controllers.Main.txtSldLtTTxOverObj": "Text nad objektom",
|
||||
"PE.Controllers.Main.txtSldLtTVertTitleAndTx": "Vertikálny názov a text\n\n",
|
||||
"PE.Controllers.Main.txtSldLtTVertTitleAndTxOverChart": "Vertikálny názov a text nad grafom\n\n",
|
||||
"PE.Controllers.Main.txtSldLtTVertTx": "Vertikálny text\n\n",
|
||||
"PE.Controllers.Main.txtSlideNumber": "Číslo snímku",
|
||||
"PE.Controllers.Main.txtSlideSubtitle": "Podtitul snímku",
|
||||
"PE.Controllers.Main.txtSlideText": "Text snímku",
|
||||
"PE.Controllers.Main.txtSlideTitle": "Názov snímku",
|
||||
"PE.Controllers.Main.txtStarsRibbons": "Hviezdy a stuhy\n\n",
|
||||
"PE.Controllers.Main.txtXAxis": "Os X\n\n",
|
||||
"PE.Controllers.Main.txtYAxis": "Os Y\n\n",
|
||||
"PE.Controllers.Main.unknownErrorText": "Neznáma chyba.",
|
||||
"PE.Controllers.Main.unsupportedBrowserErrorText ": "Váš prehliadač nie je podporovaný.\n\n",
|
||||
"PE.Controllers.Main.uploadImageExtMessage": "Neznámy formát obrázka.\n\n",
|
||||
"PE.Controllers.Main.uploadImageFileCountMessage": "Neboli načítané žiadne obrázky.\n\n",
|
||||
"PE.Controllers.Main.uploadImageSizeMessage": "Maximálny limit veľkosti obrázka bol prekročený.",
|
||||
"PE.Controllers.Main.uploadImageTextText": "Nahrávanie obrázku...",
|
||||
"PE.Controllers.Main.uploadImageTitleText": "Nahrávanie obrázku",
|
||||
"PE.Controllers.Main.warnLicenseExp": "Vaša licencia vypršala.<br>Prosím, aktualizujte si svoju licenciu a obnovte stránku.\n\n\n\n",
|
||||
"PE.Controllers.Main.warnNoLicense": "Používate verziu ONLYOFFICE s otvoreným zdrojom. Verzia má obmedzenia pre súbežné pripojenia k dokumentovému serveru (20 pripojení naraz).<br>Ak potrebujete viac, prosím zvážte nákup komerčnej licencie.\n\n\n",
|
||||
"PE.Controllers.Main.warnProcessRightsChange": "Bolo vám zamietnuté právo upravovať súbor.",
|
||||
"PE.Controllers.Search.textNoTextFound": "Text nebol nájdený",
|
||||
"PE.Controllers.Settings.notcriticalErrorTitle": "Upozornenie",
|
||||
"PE.Controllers.Settings.txtLoading": "Nahrávanie...",
|
||||
"PE.Controllers.Toolbar.dlgLeaveMsgText": "V tomto dokumente máte neuložené zmeny. Kliknutím na položku 'Zostať na tejto stránke' čakáte na automatické uloženie dokumentu. Kliknutím na položku 'Odísť z tejto stránky' odstránite všetky neuložené zmeny.\n\n",
|
||||
"PE.Controllers.Toolbar.dlgLeaveTitleText": "Opúšťate aplikáciu",
|
||||
"PE.Controllers.Toolbar.leaveButtonText": "Opustiť túto stránku",
|
||||
"PE.Controllers.Toolbar.stayButtonText": "Zostať na tejto stránke\n\n",
|
||||
"PE.Views.AddImage.textAddress": "Adresa",
|
||||
"PE.Views.AddImage.textBack": "Späť",
|
||||
"PE.Views.AddImage.textFromLibrary": "Obrázok z Knižnice",
|
||||
"PE.Views.AddImage.textFromURL": "Obrázok z URL adresy",
|
||||
"PE.Views.AddImage.textImageURL": "URL obrázka",
|
||||
"PE.Views.AddImage.textInsertImage": "Vložiť obrázok",
|
||||
"PE.Views.AddImage.textLinkSettings": "Nastavenia odkazu\n\n",
|
||||
"PE.Views.AddLink.textBack": "Späť",
|
||||
"PE.Views.AddLink.textDisplay": "Zobraziť",
|
||||
"PE.Views.AddLink.textExternalLink": "Externý odkaz",
|
||||
"PE.Views.AddLink.textFirst": "Prvá snímka",
|
||||
"PE.Views.AddLink.textInsert": "Vložiť",
|
||||
"PE.Views.AddLink.textInternalLink": "Snímok v tejto prezentácii\n\n",
|
||||
"PE.Views.AddLink.textLast": "Posledná snímka",
|
||||
"PE.Views.AddLink.textLink": "Odkaz",
|
||||
"PE.Views.AddLink.textLinkSlide": "Odkaz na",
|
||||
"PE.Views.AddLink.textLinkType": "Typ odkazu",
|
||||
"PE.Views.AddLink.textNext": "Nasledujúca snímka",
|
||||
"PE.Views.AddLink.textNumber": "Číslo snímky",
|
||||
"PE.Views.AddLink.textPrev": "Predchádzajúca snímka",
|
||||
"PE.Views.AddLink.textTip": "Nápoveda",
|
||||
"PE.Views.EditChart.textAlign": "Zarovnať",
|
||||
"PE.Views.EditChart.textAlignBottom": "Zarovnať dole",
|
||||
"PE.Views.EditChart.textAlignCenter": "Centrovať",
|
||||
"PE.Views.EditChart.textAlignLeft": "Zarovnať doľava",
|
||||
"PE.Views.EditChart.textAlignMiddle": "Zarovnať na stred",
|
||||
"PE.Views.EditChart.textAlignRight": "Zarovnať doprava",
|
||||
"PE.Views.EditChart.textAlignTop": "Zarovnať nahor",
|
||||
"PE.Views.EditChart.textBack": "Späť",
|
||||
"PE.Views.EditChart.textBackward": "Posunúť späť",
|
||||
"PE.Views.EditChart.textBorder": "Orámovanie",
|
||||
"PE.Views.EditChart.textColor": "Farba",
|
||||
"PE.Views.EditChart.textFill": "Vyplniť",
|
||||
"PE.Views.EditChart.textForward": "Posunúť vpred",
|
||||
"PE.Views.EditChart.textRemoveChart": "Odstrániť graf",
|
||||
"PE.Views.EditChart.textReorder": "Znovu usporiadať/zmena poradia\n\n\n",
|
||||
"PE.Views.EditChart.textSize": "Veľkosť",
|
||||
"PE.Views.EditChart.textStyle": "Štýl",
|
||||
"PE.Views.EditChart.textToBackground": "Presunúť do pozadia",
|
||||
"PE.Views.EditChart.textToForeground": "Premiestniť do popredia",
|
||||
"PE.Views.EditChart.textType": "Typ",
|
||||
"PE.Views.EditChart.txtDistribHor": "Rozložiť horizontálne\n\n",
|
||||
"PE.Views.EditChart.txtDistribVert": "Rozložiť vertikálne\n",
|
||||
"PE.Views.EditImage.textAddress": "Adresa",
|
||||
"PE.Views.EditImage.textAlign": "Zarovnať",
|
||||
"PE.Views.EditImage.textAlignBottom": "Zarovnať dole",
|
||||
"PE.Views.EditImage.textAlignCenter": "Centrovať",
|
||||
"PE.Views.EditImage.textAlignLeft": "Zarovnať doľava",
|
||||
"PE.Views.EditImage.textAlignMiddle": "Zarovnať na stred",
|
||||
"PE.Views.EditImage.textAlignRight": "Zarovnať doprava",
|
||||
"PE.Views.EditImage.textAlignTop": "Zarovnať nahor",
|
||||
"PE.Views.EditImage.textBack": "Späť",
|
||||
"PE.Views.EditImage.textBackward": "Posunúť späť",
|
||||
"PE.Views.EditImage.textDefault": "Predvolená veľkosť",
|
||||
"PE.Views.EditImage.textForward": "Posunúť vpred",
|
||||
"PE.Views.EditImage.textFromLibrary": "Obrázok z Knižnice",
|
||||
"PE.Views.EditImage.textFromURL": "Obrázok z URL adresy",
|
||||
"PE.Views.EditImage.textImageURL": "URL obrázka",
|
||||
"PE.Views.EditImage.textLinkSettings": "Nastavenia odkazu\n\n",
|
||||
"PE.Views.EditImage.textRemove": "Odstrániť obrázok",
|
||||
"PE.Views.EditImage.textReorder": "Znovu usporiadať/zmena poradia\n\n\n",
|
||||
"PE.Views.EditImage.textReplace": "Nahradiť",
|
||||
"PE.Views.EditImage.textReplaceImg": "Nahradiť obrázok",
|
||||
"PE.Views.EditImage.textToBackground": "Presunúť do pozadia",
|
||||
"PE.Views.EditImage.textToForeground": "Premiestniť do popredia",
|
||||
"PE.Views.EditImage.txtDistribHor": "Rozložiť horizontálne\n\n",
|
||||
"PE.Views.EditImage.txtDistribVert": "Rozložiť vertikálne\n",
|
||||
"PE.Views.EditLink.textBack": "Späť",
|
||||
"PE.Views.EditLink.textDisplay": "Zobraziť",
|
||||
"PE.Views.EditLink.textEdit": "Upraviť odkaz",
|
||||
"PE.Views.EditLink.textExternalLink": "Externý odkaz",
|
||||
"PE.Views.EditLink.textFirst": "Prvá snímka",
|
||||
"PE.Views.EditLink.textInternalLink": "Snímok v tejto prezentácii\n\n",
|
||||
"PE.Views.EditLink.textLast": "Posledná snímka",
|
||||
"PE.Views.EditLink.textLink": "Odkaz",
|
||||
"PE.Views.EditLink.textLinkSlide": "Odkaz na",
|
||||
"PE.Views.EditLink.textLinkType": "Typ odkazu",
|
||||
"PE.Views.EditLink.textNext": "Nasledujúca snímka",
|
||||
"PE.Views.EditLink.textNumber": "Číslo snímku",
|
||||
"PE.Views.EditLink.textPrev": "Predchádzajúca snímka",
|
||||
"PE.Views.EditLink.textRemove": "Odstrániť odkaz",
|
||||
"PE.Views.EditLink.textTip": "Nápoveda",
|
||||
"PE.Views.EditShape.textAlign": "Zarovnať",
|
||||
"PE.Views.EditShape.textAlignBottom": "Zarovnať dole",
|
||||
"PE.Views.EditShape.textAlignCenter": "Centrovať",
|
||||
"PE.Views.EditShape.textAlignLeft": "Zarovnať doľava",
|
||||
"PE.Views.EditShape.textAlignMiddle": "Zarovnať na stred",
|
||||
"PE.Views.EditShape.textAlignRight": "Zarovnať doprava",
|
||||
"PE.Views.EditShape.textAlignTop": "Zarovnať nahor",
|
||||
"PE.Views.EditShape.textBack": "Späť",
|
||||
"PE.Views.EditShape.textBackward": "Posunúť späť",
|
||||
"PE.Views.EditShape.textBorder": "Orámovanie",
|
||||
"PE.Views.EditShape.textColor": "Farba",
|
||||
"PE.Views.EditShape.textEffects": "Efekty",
|
||||
"PE.Views.EditShape.textFill": "Vyplniť",
|
||||
"PE.Views.EditShape.textForward": "Posunúť vpred",
|
||||
"PE.Views.EditShape.textOpacity": "Priehľadnosť",
|
||||
"PE.Views.EditShape.textRemoveShape": "Odstrániť tvar",
|
||||
"PE.Views.EditShape.textReorder": "Znovu usporiadať/zmena poradia\n\n\n",
|
||||
"PE.Views.EditShape.textReplace": "Nahradiť",
|
||||
"PE.Views.EditShape.textSize": "Veľkosť",
|
||||
"PE.Views.EditShape.textStyle": "Štýl",
|
||||
"PE.Views.EditShape.textToBackground": "Presunúť do pozadia",
|
||||
"PE.Views.EditShape.textToForeground": "Premiestniť do popredia",
|
||||
"PE.Views.EditShape.txtDistribHor": "Rozložiť horizontálne\n\n",
|
||||
"PE.Views.EditShape.txtDistribVert": "Rozložiť vertikálne\n",
|
||||
"PE.Views.EditSlide.textApplyAll": "Použiť na všetky snímky",
|
||||
"PE.Views.EditSlide.textBack": "Späť",
|
||||
"PE.Views.EditSlide.textBlack": "Prostredníctvom čiernej\n\n",
|
||||
"PE.Views.EditSlide.textBottom": "Dole",
|
||||
"PE.Views.EditSlide.textBottomLeft": "Dole-vľavo",
|
||||
"PE.Views.EditSlide.textBottomRight": "Dole-vpravo",
|
||||
"PE.Views.EditSlide.textClock": "Hodiny",
|
||||
"PE.Views.EditSlide.textClockwise": "V smere hodinových ručičiek\n\n",
|
||||
"PE.Views.EditSlide.textColor": "Farba",
|
||||
"PE.Views.EditSlide.textCounterclockwise": "Proti smeru hodinových ručičiek\n\n",
|
||||
"PE.Views.EditSlide.textCover": "Zakryť",
|
||||
"PE.Views.EditSlide.textDelay": "Oneskorenie",
|
||||
"PE.Views.EditSlide.textDuplicateSlide": "Kopírovať snímku",
|
||||
"PE.Views.EditSlide.textDuration": "Trvanie",
|
||||
"PE.Views.EditSlide.textEffect": "Efekt",
|
||||
"PE.Views.EditSlide.textFade": "Vyblednúť",
|
||||
"PE.Views.EditSlide.textFill": "Vyplniť",
|
||||
"PE.Views.EditSlide.textHorizontalIn": "Horizontálne dnu\n\n",
|
||||
"PE.Views.EditSlide.textHorizontalOut": "Horizontálne von\n\n",
|
||||
"PE.Views.EditSlide.textLayout": "Rozloženie",
|
||||
"PE.Views.EditSlide.textLeft": "Vľavo",
|
||||
"PE.Views.EditSlide.textNone": "Žiadny",
|
||||
"PE.Views.EditSlide.textOpacity": "Priehľadnosť",
|
||||
"PE.Views.EditSlide.textPush": "Posunúť",
|
||||
"PE.Views.EditSlide.textRemoveSlide": "Odstrániť snímku",
|
||||
"PE.Views.EditSlide.textRight": "Vpravo",
|
||||
"PE.Views.EditSlide.textSmoothly": "Plynule",
|
||||
"PE.Views.EditSlide.textSplit": "Rozdeliť",
|
||||
"PE.Views.EditSlide.textStartOnClick": "Začať kliknutím\n\n",
|
||||
"PE.Views.EditSlide.textStyle": "Štýl",
|
||||
"PE.Views.EditSlide.textTheme": "Téma",
|
||||
"PE.Views.EditSlide.textTop": "Hore",
|
||||
"PE.Views.EditSlide.textTopLeft": "Hore-vľavo",
|
||||
"PE.Views.EditSlide.textTopRight": "Hore-vpravo",
|
||||
"PE.Views.EditSlide.textTransition": "Prechod",
|
||||
"PE.Views.EditSlide.textType": "Typ",
|
||||
"PE.Views.EditSlide.textUnCover": "Odkryť",
|
||||
"PE.Views.EditSlide.textVerticalIn": "Vertikálne dnu\n\n",
|
||||
"PE.Views.EditSlide.textVerticalOut": "Vertikálne von",
|
||||
"PE.Views.EditSlide.textWedge": "Konjunkcia",
|
||||
"PE.Views.EditSlide.textWipe": "Rozotrieť",
|
||||
"PE.Views.EditSlide.textZoom": "Priblíženie",
|
||||
"PE.Views.EditSlide.textZoomIn": "Priblížiť",
|
||||
"PE.Views.EditSlide.textZoomOut": "Oddialiť",
|
||||
"PE.Views.EditSlide.textZoomRotate": "Priblížiť a otáčať",
|
||||
"PE.Views.EditTable.textAlign": "Zarovnať",
|
||||
"PE.Views.EditTable.textAlignBottom": "Zarovnať dole",
|
||||
"PE.Views.EditTable.textAlignCenter": "Centrovať",
|
||||
"PE.Views.EditTable.textAlignLeft": "Zarovnať doľava",
|
||||
"PE.Views.EditTable.textAlignMiddle": "Zarovnať na stred",
|
||||
"PE.Views.EditTable.textAlignRight": "Zarovnať doprava",
|
||||
"PE.Views.EditTable.textAlignTop": "Zarovnať nahor",
|
||||
"PE.Views.EditTable.textBack": "Späť",
|
||||
"PE.Views.EditTable.textBackward": "Posunúť späť",
|
||||
"PE.Views.EditTable.textBandedColumn": "Pruhovaný stĺpec\n\n",
|
||||
"PE.Views.EditTable.textBandedRow": "Pruhovaný riadok",
|
||||
"PE.Views.EditTable.textBorder": "Orámovanie",
|
||||
"PE.Views.EditTable.textCellMargins": "Okraje bunky",
|
||||
"PE.Views.EditTable.textColor": "Farba",
|
||||
"PE.Views.EditTable.textFill": "Vyplniť",
|
||||
"PE.Views.EditTable.textFirstColumn": "Prvý stĺpec",
|
||||
"PE.Views.EditTable.textForward": "Posunúť vpred",
|
||||
"PE.Views.EditTable.textHeaderRow": "Riadok hlavičky",
|
||||
"PE.Views.EditTable.textLastColumn": "Posledný stĺpec\n\n",
|
||||
"PE.Views.EditTable.textOptions": "Možnosti",
|
||||
"PE.Views.EditTable.textRemoveTable": "Odstrániť tabuľku",
|
||||
"PE.Views.EditTable.textReorder": "Znovu usporiadať/zmena poradia\n\n\n",
|
||||
"PE.Views.EditTable.textSize": "Veľkosť",
|
||||
"PE.Views.EditTable.textStyle": "Štýl",
|
||||
"PE.Views.EditTable.textStyleOptions": "Možnosti štýlu\n\n",
|
||||
"PE.Views.EditTable.textTableOptions": "Možnosti tabuľky",
|
||||
"PE.Views.EditTable.textToBackground": "Presunúť do pozadia",
|
||||
"PE.Views.EditTable.textToForeground": "Premiestniť do popredia",
|
||||
"PE.Views.EditTable.textTotalRow": "Celkový riadok\n\n",
|
||||
"PE.Views.EditTable.txtDistribHor": "Rozložiť horizontálne\n\n",
|
||||
"PE.Views.EditTable.txtDistribVert": "Rozložiť vertikálne\n",
|
||||
"PE.Views.EditText.textAdditional": "Ďalšie",
|
||||
"PE.Views.EditText.textAdditionalFormat": "Ďalšie formátovanie\n\n",
|
||||
"PE.Views.EditText.textAfter": "Za",
|
||||
"PE.Views.EditText.textAllCaps": "Všetko veľkým",
|
||||
"PE.Views.EditText.textAutomatic": "Automaticky/automatický",
|
||||
"PE.Views.EditText.textBack": "Späť",
|
||||
"PE.Views.EditText.textBefore": "Pred",
|
||||
"PE.Views.EditText.textBullets": "Odrážky",
|
||||
"PE.Views.EditText.textDblStrikethrough": "Dvojité prečiarknutie\n",
|
||||
"PE.Views.EditText.textDblSuperscript": "Horný index",
|
||||
"PE.Views.EditText.textFontColor": "Farba písma",
|
||||
"PE.Views.EditText.textFontColors": "Farby písma",
|
||||
"PE.Views.EditText.textFonts": "Písma",
|
||||
"PE.Views.EditText.textFromText": "Vzdialenosť od textu",
|
||||
"PE.Views.EditText.textLetterSpacing": "Rozstup medzi písmenami",
|
||||
"PE.Views.EditText.textLineSpacing": "Riadkovanie",
|
||||
"PE.Views.EditText.textNone": "Žiadny",
|
||||
"PE.Views.EditText.textNumbers": "Čísla",
|
||||
"PE.Views.EditText.textSize": "Veľkosť",
|
||||
"PE.Views.EditText.textSmallCaps": "Malé písmená",
|
||||
"PE.Views.EditText.textStrikethrough": "Prečiarknutie",
|
||||
"PE.Views.EditText.textSubscript": "Dolný index",
|
||||
"PE.Views.Search.textSearch": "Hľadať",
|
||||
"PE.Views.Settings.mniSlideStandard": "Štandard (4:3)\n",
|
||||
"PE.Views.Settings.mniSlideWide": "Širokouhlý (16:9)",
|
||||
"PE.Views.Settings.textAbout": "O aplikácii",
|
||||
"PE.Views.Settings.textAddress": "adresa",
|
||||
"PE.Views.Settings.textAuthor": "Autor",
|
||||
"PE.Views.Settings.textBack": "Späť",
|
||||
"PE.Views.Settings.textCreateDate": "Dátum vytvorenia",
|
||||
"PE.Views.Settings.textDone": "Hotovo",
|
||||
"PE.Views.Settings.textDownload": "Stiahnuť",
|
||||
"PE.Views.Settings.textDownloadAs": "Stiahnuť ako...",
|
||||
"PE.Views.Settings.textEditPresent": "Upraviť prezentáciu",
|
||||
"PE.Views.Settings.textEmail": "E-mail",
|
||||
"PE.Views.Settings.textFind": "Nájsť",
|
||||
"PE.Views.Settings.textHelp": "Pomoc",
|
||||
"PE.Views.Settings.textLoading": "Nahrávanie...",
|
||||
"PE.Views.Settings.textPoweredBy": "Poháňaný ",
|
||||
"PE.Views.Settings.textPresentInfo": "Informácie o prezentácii\n\n",
|
||||
"PE.Views.Settings.textPresentSetup": "Nastavenie prezentácie\n\n",
|
||||
"PE.Views.Settings.textPresentTitle": "Názov prezentácie\n\n",
|
||||
"PE.Views.Settings.textSettings": "Nastavenia",
|
||||
"PE.Views.Settings.textSlideSize": "Veľkosť snímku",
|
||||
"PE.Views.Settings.textTel": "Tel",
|
||||
"PE.Views.Settings.textVersion": "Verzia",
|
||||
"PE.Views.Settings.unknownText": "Neznámy",
|
||||
"PE.Views.Toolbar.textBack": "Späť"
|
||||
}
|
|
@ -136,12 +136,20 @@
|
|||
"PE.Controllers.Main.txtButtons": "按钮",
|
||||
"PE.Controllers.Main.txtCallouts": "标注",
|
||||
"PE.Controllers.Main.txtCharts": "图表",
|
||||
"PE.Controllers.Main.txtClipArt": "Clip Art",
|
||||
"PE.Controllers.Main.txtDateTime": "Date and time",
|
||||
"PE.Controllers.Main.txtDiagram": "SmartArt",
|
||||
"PE.Controllers.Main.txtDiagramTitle": "图表标题",
|
||||
"PE.Controllers.Main.txtEditingMode": "设置编辑模式..",
|
||||
"PE.Controllers.Main.txtFiguredArrows": "图形箭头",
|
||||
"PE.Controllers.Main.txtFooter": "Footer",
|
||||
"PE.Controllers.Main.txtHeader": "Header",
|
||||
"PE.Controllers.Main.txtImage": "Image",
|
||||
"PE.Controllers.Main.txtLines": "行",
|
||||
"PE.Controllers.Main.txtMath": "数学",
|
||||
"PE.Controllers.Main.txtMedia": "Media",
|
||||
"PE.Controllers.Main.txtNeedSynchronize": "你有更新",
|
||||
"PE.Controllers.Main.txtPicture": "Picture",
|
||||
"PE.Controllers.Main.txtRectangles": "矩形",
|
||||
"PE.Controllers.Main.txtSeries": "系列",
|
||||
"PE.Controllers.Main.txtSldLtTBlank": "空白",
|
||||
|
@ -180,6 +188,10 @@
|
|||
"PE.Controllers.Main.txtSldLtTVertTitleAndTx": "垂直标题和文字",
|
||||
"PE.Controllers.Main.txtSldLtTVertTitleAndTxOverChart": "垂直标题和文字在图表上",
|
||||
"PE.Controllers.Main.txtSldLtTVertTx": "垂直文本",
|
||||
"PE.Controllers.Main.txtSlideNumber": "Slide number",
|
||||
"PE.Controllers.Main.txtSlideSubtitle": "Slide subtitle",
|
||||
"PE.Controllers.Main.txtSlideText": "Slide text",
|
||||
"PE.Controllers.Main.txtSlideTitle": "Slide title",
|
||||
"PE.Controllers.Main.txtStarsRibbons": "星星和丝带",
|
||||
"PE.Controllers.Main.txtXAxis": "X轴",
|
||||
"PE.Controllers.Main.txtYAxis": "Y轴",
|
||||
|
@ -420,6 +432,7 @@
|
|||
"PE.Views.Settings.textFind": "发现",
|
||||
"PE.Views.Settings.textHelp": "帮助",
|
||||
"PE.Views.Settings.textLoading": "载入中…",
|
||||
"PE.Views.Settings.textPoweredBy": "Powered by",
|
||||
"PE.Views.Settings.textPresentInfo": "演示信息",
|
||||
"PE.Views.Settings.textPresentSetup": "演示设置",
|
||||
"PE.Views.Settings.textPresentTitle": "演讲题目",
|
||||
|
|
|
@ -6615,19 +6615,19 @@ i.icon.icon-align-vertical {
|
|||
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20viewBox%3D%220%200%2022%2022%22%20style%3D%22enable-background%3Anew%200%200%2022%2022%3B%22%20xml%3Aspace%3D%22preserve%22%20fill%3D%22%23DF6737%22%3E%3Cg%3E%3Cg%20id%3D%22XMLID_35_%22%3E%3Cpath%20id%3D%22XMLID_36_%22%20d%3D%22M0.9999998%2C21h1v-20h-1V21z%20M19.0000076%2C21H20v-20h-0.9999924V21z%20M2.9999995%2C12.999999v3.999999h15%20v-3.999999H2.9999995z%20M13.999999%2C4.999999H6.9999986v4h7.0000005V4.999999z%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fsvg%3E");
|
||||
}
|
||||
i.icon.icon-format-pdf {
|
||||
width: 22px;
|
||||
height: 22px;
|
||||
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20viewBox%3D%220%200%2022%2022%22%20style%3D%22enable-background%3Anew%200%200%2022%2022%3B%22%20xml%3Aspace%3D%22preserve%22%20fill%3D%22%23DF6737%22%3E%3Cg%3E%3Cpath%20id%3D%22XMLID_2_%22%20d%3D%22M2%2C21h18V4l-3.979166-4L2%2C0V21z%20M19%2C8v12H3V1h12l4%2C4V8z%22%2F%3E%3C%2Fg%3E%3Cg%3E%3Cpath%20d%3D%22M9.9996328%2C7.2994123L9.9996328%2C7.2994123C10.0988245%2C7.2994123%2C10.0988245%2C7.2994123%2C9.9996328%2C7.2994123%09c0.0991917-0.4004407%2C0.2002201-0.6006618%2C0.2002201-0.9000735V6.1991181c0.0991917-0.4996324%2C0.0991917-0.9000735%2C0-0.9992652%20c0%2C0%2C0%2C0%2C0-0.0991917l-0.0991917-0.0991917l0%2C0l0%2C0c0%2C0%2C0%2C0.0991917-0.0991917%2C0.0991917%20C9.7994118%2C5.6994858%2C9.7994118%2C6.3993387%2C9.9996328%2C7.2994123L9.9996328%2C7.2994123z%20M7%2C14.2005873%09c-0.2002201%2C0.0991926-0.4004407%2C0.2002211-0.4996328%2C0.2994118c-0.6998529%2C0.6006613-1.1994858%2C1.3005142-1.3005142%2C1.5999269l0%2C0%20l0%2C0l0%2C0C5.7986774%2C16.0007343%2C6.3993387%2C15.400074%2C7%2C14.2005873C7.0991917%2C14.2005873%2C7.0991917%2C14.2005873%2C7%2C14.2005873%20C7.0991917%2C14.2005873%2C7%2C14.2005873%2C7%2C14.2005873z%20M16.1991196%2C12.6998539%09c-0.0991936-0.0991926-0.4996338-0.4004412-1.8993397-0.4004412c-0.0991926%2C0-0.0991926%2C0-0.2002211%2C0l0%2C0c0%2C0%2C0%2C0%2C0%2C0.0991926%20c0.6998529%2C0.2994118%2C1.3997059%2C0.4996328%2C1.8993387%2C0.4996328c0.0991917%2C0%2C0.0991917%2C0%2C0.200222%2C0l0%2C0h0.0991917%20c0%2C0%2C0%2C0%2C0-0.0991926l0%2C0C16.300148%2C12.7990446%2C16.1991196%2C12.7990446%2C16.1991196%2C12.6998539z%20M16.5995598%2C13.4988985%20c-0.200222%2C0.0991917-0.4996338%2C0.2002211-0.900074%2C0.2002211c-0.8008814%2C0-2.0003681-0.2002211-2.9996319-0.6998529%20c-1.7009554%2C0.2002211-2.9996328%2C0.4004402-4.0007353%2C0.8008814c-0.0991917%2C0-0.0991917%2C0-0.2002201%2C0.0991917%20C7.2994123%2C16.0007343%2C6.2983098%2C17%2C5.4992652%2C17c-0.2002206%2C0-0.2994123%2C0-0.4004412-0.0991917l-0.4996324-0.2994118V16.502203%09C4.5%2C16.3019829%2C4.5%2C16.2027912%2C4.5%2C16.0025711c0.0991917-0.4996328%2C0.6998529-1.3997068%2C1.8993387-2.0995598%20c0.2002201-0.0991917%2C0.4996328-0.2994118%2C0.9000735-0.4996328c0.2994118-0.4996328%2C0.6006613-1.1002941%2C0.9992652-1.8001461%20c0.4996328-0.9992657%2C0.8008814-2.0003681%2C1.1002932-2.9004412l0%2C0C8.9985304%2C7.5033054%2C8.7983093%2C6.8034525%2C9.1987505%2C5.4019094C9.2979422%2C5.0014687%2C9.5991917%2C4.601028%2C9.9996328%2C4.601028h0.2002201c0.2002201%2C0%2C0.4004402%2C0.0991917%2C0.6006613%2C0.2002206%20c0.6998529%2C0.6998529%2C0.4004412%2C2.2997794%2C0%2C3.6002941c0%2C0.0991917%2C0%2C0.0991917%2C0%2C0.0991917%20c0.4004412%2C1.1002932%2C0.9992657%2C2.0003672%2C1.599926%2C2.6010284c0.2994118%2C0.2002211%2C0.4996328%2C0.4004402%2C0.900074%2C0.6006613%20c0.4996328%2C0%2C0.9000731-0.0991917%2C1.3005142-0.0991917c1.1994848%2C0%2C2.0003681%2C0.2002201%2C2.2997799%2C0.699852%09C17%2C12.5033054%2C17%2C12.7035255%2C17%2C12.9037457C16.9008083%2C12.9992657%2C16.7997799%2C13.3005142%2C16.5995598%2C13.4988985z%20M10.0988245%2C9.5991917C9.8986034%2C10.2990446%2C9.4981623%2C11.099926%2C9.0995588%2C12%20c-0.2002201%2C0.4004402-0.4004402%2C0.699852-0.6006613%2C1.1002941h0.0991917h0.0991917l0%2C0%20c1.3005142-0.4996328%2C2.5-0.8008814%2C3.3008814-0.9000731C11.7979412%2C12.1010284%2C11.6987505%2C12%2C11.5977221%2C11.9008083%20C11.099926%2C11.3001471%2C10.4992657%2C10.4992657%2C10.0988245%2C9.5991917z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
|
||||
width: 30px;
|
||||
height: 30px;
|
||||
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20width%3D%2233px%22%20height%3D%2233px%22%20viewBox%3D%22-3.363%20-3.658%2033%2033%22%20xml%3Aspace%3D%22preserve%22%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill%3A%23DF6737%3B%7D%3C%2Fstyle%3E%3C%2Fdefs%3E%3Cpath%20class%3D%22cls-1%22%20d%3D%22M8.512%2C14.989c0.8-1.567%2C1.709-3.334%2C2.438-5.107l0%2C0l0.287-0.699%20%20c-0.949-3.616-1.52-6.52-1.011-8.396l0%2C0C10.362%2C0.297%2C10.929%2C0%2C11.535%2C0l0%2C0l0.368%2C0.005h0.068c0.83-0.013%2C1.22%2C1.042%2C1.264%2C1.453%20%20l0%2C0c0.073%2C0.684-0.242%2C1.839-0.242%2C1.839l0%2C0c0-0.467%2C0.018-1.221-0.276-1.873l0%2C0c-0.343-0.753-0.671-1.203-0.965-1.274l0%2C0%20%20C11.604%2C0.25%2C11.46%2C0.455%2C11.411%2C0.85l0%2C0c-0.104%2C0.553-0.134%2C1.252-0.134%2C1.611l0%2C0c0%2C1.272%2C0.25%2C2.952%2C0.743%2C4.684l0%2C0%20%20c0.093-0.269%2C0.174-0.526%2C0.24-0.768l0%2C0c0.101-0.38%2C0.743-2.9%2C0.743-2.9l0%2C0c0%2C0-0.162%2C3.354-0.388%2C4.371l0%2C0%20%20c-0.049%2C0.215-0.103%2C0.427-0.158%2C0.644l0%2C0c0.812%2C2.268%2C2.121%2C4.292%2C3.68%2C5.75l0%2C0c0.615%2C0.575%2C1.393%2C1.038%2C2.128%2C1.461l0%2C0%20%20c1.605-0.229%2C3.084-0.338%2C4.318-0.324l0%2C0c1.637%2C0.021%2C2.838%2C0.265%2C3.324%2C0.743l0%2C0c0.237%2C0.232%2C0.335%2C0.514%2C0.364%2C0.83l0%2C0%20%20c0.007%2C0.122-0.053%2C0.41-0.069%2C0.482l0%2C0c0.018-0.088%2C0.018-0.519-1.298-0.938l0%2C0c-1.033-0.33-2.971-0.32-5.295-0.073l0%2C0%20%20c2.688%2C1.315%2C5.308%2C1.969%2C6.138%2C1.577l0%2C0c0.203-0.1%2C0.448-0.437%2C0.448-0.437l0%2C0c0%2C0-0.146%2C0.665-0.252%2C0.831l0%2C0%20%20c-0.134%2C0.18-0.396%2C0.376-0.646%2C0.44l0%2C0c-1.312%2C0.351-4.722-0.459-7.695-2.158l0%2C0c-3.322%2C0.489-6.972%2C1.394-9.896%2C2.354l0%2C0%20%20c-2.874%2C5.036-5.036%2C7.35-6.793%2C6.47l0%2C0l-0.646-0.325c-0.263-0.149-0.303-0.516-0.242-0.813l0%2C0%20%20c0.205-1.003%2C1.462-2.513%2C3.988-4.021l0%2C0c0.272-0.165%2C1.483-0.805%2C1.483-0.805l0%2C0c0%2C0-0.896%2C0.868-1.106%2C1.038l0%2C0%20%20c-2.016%2C1.652-3.504%2C3.73-3.467%2C4.536l0%2C0l0.007%2C0.069C2.643%2C24.936%2C5.21%2C21.45%2C8.512%2C14.989%20M9.559%2C15.525%20%20c-0.551%2C1.038-1.09%2C2.001-1.588%2C2.886l0%2C0c2.752-1.153%2C5.715-1.892%2C8.535-2.416l0%2C0c-0.379-0.262-0.746-0.539-1.093-0.832l0%2C0%20%20c-1.555-1.313-2.737-2.955-3.596-4.681l0%2C0C11.273%2C11.948%2C10.626%2C13.507%2C9.559%2C15.525%22%20%2F%3E%3C%2Fsvg%3E");
|
||||
}
|
||||
i.icon.icon-format-pptx {
|
||||
width: 22px;
|
||||
height: 22px;
|
||||
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20viewBox%3D%22-238%20240%2022%2022%22%20style%3D%22enable-background%3Anew%20-238%20240%2022%2022%3B%22%20xml%3Aspace%3D%22preserve%22%20fill%3D%22%23DF6737%22%3E%3Cg%3E%3Cpath%20id%3D%22XMLID_2_%22%20d%3D%22M-236%2C261h18v-17l-3.9791718-4H-236V261z%20M-219%2C248v12h-16v-19h12l4%2C4V248z%22%2F%3E%3C%2Fg%3E%3Cg%3E%3Cpath%20d%3D%22M-228.8226929%2C250.8646851c0.137085-0.060791%2C0.2341919-0.2302246%2C0.3131104-0.3647461%09c0.0792847-0.1351929%2C0.0861816-0.2935181%2C0.0861816-0.473938c0-0.2221069-0.0613403-0.4186401-0.1723633-0.5601807%09c-0.1102905-0.1405029-0.296875-0.2628784-0.4628906-0.2931519c-0.1210938-0.0233154-0.2396851-0.0012817-0.4535522%2C0.0090942%20l-0.3115234%2C0.010376v1.7925415h0.4523926C-228.9815063%2C250.9927368-228.9586182%2C250.9249878-228.8226929%2C250.8646851z%22%2F%3E%3Cpath%20d%3D%22M-233%2C256.1141357l7.333313%2C1.3553467V245L-233%2C246.3268433V256.1141357z%20M-230.8660889%2C248.2818604l1.4968872-0.0977783%20c0.6077881-0.0397339%2C0.9075317-0.0557251%2C1.1018066-0.0071411c0.3032227%2C0.0736084%2C0.637207%2C0.2349854%2C0.8483276%2C0.538147%09c0.2138672%2C0.3070679%2C0.3555908%2C0.7592163%2C0.3555908%2C1.262085c0%2C0.3878784-0.0623169%2C0.7130737-0.1862793%2C0.9741211%09c-0.1230469%2C0.2590942-0.2780151%2C0.4591064-0.4640503%2C0.6001587c-0.18396%2C0.1394653-0.3991089%2C0.2700195-0.5587769%2C0.3272705%20c-0.3145752%2C0.0774536-0.5286865%2C0.1747437-0.9802856%2C0.1508179h-0.5708618v1.9562378l-1.0423584-0.1081543V248.2818604z%22%2F%3E%3Cpath%20d%3D%22M-221.7266846%2C247H-225v9h3.2733154C-221.3253479%2C256-221%2C255.6746521-221%2C255.2733154v-7.5466309%09C-221%2C247.3253479-221.3253479%2C247-221.7266846%2C247z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
|
||||
width: 30px;
|
||||
height: 30px;
|
||||
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20width%3D%2265%22%20height%3D%2265%22%20viewBox%3D%2219.951%2032.432%2065.000002%2065.000003%22%20xml%3Aspace%3D%22preserve%22%20%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill%3A%23df6737%3B%7D%3C%2Fstyle%3E%3C%2Fdefs%3E%3Cpath%20class%3D%22cls-1%22%20d%3D%22M%2051.31066%2C44.356609%20C%2047.702785%2C44.433229%2043.9488%2C45.107%2040.5548%2C44.9445%20c%20-0.149%2C13.35%20-0.123719%2C26.7115%20-0.01172%2C40.0625%202.476001%2C0.199%204.9625%2C0.412%207.4375%2C0.625%20-0.011%2C-4.888%206.72e-4%2C-9.776062%200.01367%2C-14.664062%203.088%2C0.100999%206.336828%2C0.300562%209.173828%2C-1.148438%207.988%2C-3.913%209.413391%2C-15.938562%204.025391%2C-22.476562%20-2.8125%2C-2.544001%20-6.274937%2C-3.062954%20-9.882812%2C-2.986329%20z%20m%20-0.416016%2C7.244141%20c%201.641035%2C0.04387%203.222344%2C0.409844%204.261719%2C1.855469%201.425%2C2.45%201.350109%2C5.676172%200.162109%2C8.201172%20-1.425%2C2.575%20-4.650672%2C2.325%20-7.138672%2C2.625%20-0.262%2C-4.188%20-0.236218%2C-8.377172%20-0.199219%2C-12.576172%200.923626%2C-0.04237%201.929442%2C-0.131789%202.914063%2C-0.105469%20z%22%20%2F%3E%3C%2Fsvg%3E");
|
||||
}
|
||||
i.icon.icon-format-odp {
|
||||
width: 22px;
|
||||
height: 22px;
|
||||
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20viewBox%3D%22-286%20409.89%2022%2022%22%20style%3D%22enable-background%3Anew%20-286%20409.89%2022%2022%3B%22%20xml%3Aspace%3D%22preserve%22%20fill%3D%22%23DF6737%22%3E%3Cg%3E%3Cpath%20id%3D%22XMLID_2_%22%20d%3D%22M-284%2C430.89h18v-17l-3.979-4H-284V430.89z%20M-267%2C417.89v12h-16v-19h12l4%2C4V417.89z%22%2F%3E%3C%2Fg%3E%3Cpath%20d%3D%22M-281.655%2C419.661c0%2C0%2C1.036-1.266%2C3.529-1.381c2.493-0.115%2C3.107%2C0.499%2C3.107%2C0.499s1.072-0.873%2C2.634-0.984%20c1.473-0.106%2C2.244%2C0.134%2C3.657%2C0.639c-3.107-0.038-5.408%2C1.189-6.022%2C1.956C-276.17%2C419.163-278.817%2C418.817-281.655%2C419.661z%22%2F%3E%3Cpath%20d%3D%22M-278.663%2C415.979c1.458-0.767%2C2.864-0.857%2C5.063%2C0c1.189-0.652%2C3.414-0.307%2C4.68%2C0.269c-3.145-0.23-4.104%2C0.422-4.68%2C0.69%09C-274.367%2C416.056-276.86%2C415.595-278.663%2C415.979z%22%2F%3E%3Cg%3E%3Cpath%20d%3D%22M-281.721%2C425.011c0-0.465%2C0.07-0.855%2C0.209-1.172c0.104-0.232%2C0.246-0.441%2C0.425-0.626s0.376-0.322%2C0.59-0.411%20c0.285-0.121%2C0.613-0.181%2C0.985-0.181c0.673%2C0%2C1.212%2C0.208%2C1.616%2C0.626c0.404%2C0.418%2C0.606%2C0.998%2C0.606%2C1.742%20c0%2C0.737-0.2%2C1.314-0.601%2C1.731c-0.401%2C0.417-0.938%2C0.625-1.608%2C0.625c-0.679%2C0-1.22-0.207-1.621-0.622%09C-281.521%2C426.31-281.721%2C425.739-281.721%2C425.011z%20M-280.771%2C424.981c0%2C0.517%2C0.119%2C0.909%2C0.358%2C1.176%09c0.239%2C0.268%2C0.542%2C0.4%2C0.91%2C0.4c0.368%2C0%2C0.669-0.132%2C0.905-0.397c0.236-0.265%2C0.354-0.662%2C0.354-1.191%09c0-0.523-0.115-0.914-0.344-1.172s-0.535-0.387-0.915-0.387c-0.38%2C0-0.687%2C0.131-0.919%2C0.392%20C-280.654%2C424.062-280.771%2C424.455-280.771%2C424.981z%22%2F%3E%3Cpath%20d%3D%22M-276.573%2C422.699h1.686c0.38%2C0%2C0.67%2C0.029%2C0.87%2C0.088c0.267%2C0.079%2C0.498%2C0.219%2C0.689%2C0.421%20c0.191%2C0.201%2C0.336%2C0.448%2C0.436%2C0.74s0.15%2C0.651%2C0.15%2C1.079c0%2C0.377-0.047%2C0.7-0.141%2C0.973c-0.114%2C0.333-0.277%2C0.602-0.489%2C0.808%20c-0.16%2C0.155-0.376%2C0.277-0.648%2C0.364c-0.204%2C0.064-0.476%2C0.097-0.816%2C0.097h-1.736V422.699z%20M-275.65%2C423.472v3.026h0.689%20c0.257%2C0%2C0.443-0.015%2C0.558-0.044c0.149-0.037%2C0.274-0.101%2C0.373-0.19c0.099-0.089%2C0.18-0.236%2C0.241-0.44%20c0.062-0.205%2C0.094-0.483%2C0.094-0.837s-0.031-0.624-0.094-0.813c-0.062-0.189-0.149-0.337-0.262-0.442%20c-0.112-0.106-0.254-0.178-0.427-0.215c-0.129-0.029-0.381-0.044-0.757-0.044H-275.65z%22%2F%3E%3Cpath%20d%3D%22M-271.96%2C427.268v-4.569h1.479c0.562%2C0%2C0.927%2C0.023%2C1.098%2C0.069c0.262%2C0.068%2C0.48%2C0.218%2C0.657%2C0.447%20s0.265%2C0.525%2C0.265%2C0.89c0%2C0.28-0.051%2C0.516-0.152%2C0.707s-0.231%2C0.342-0.388%2C0.45c-0.157%2C0.109-0.316%2C0.182-0.479%2C0.217%09c-0.221%2C0.044-0.539%2C0.065-0.957%2C0.065h-0.602v1.724H-271.96z%20M-271.038%2C423.472v1.297h0.505c0.363%2C0%2C0.606-0.024%2C0.729-0.072%20c0.122-0.048%2C0.219-0.122%2C0.288-0.225c0.069-0.102%2C0.104-0.22%2C0.104-0.354c0-0.167-0.049-0.304-0.146-0.412%09c-0.098-0.107-0.222-0.176-0.371-0.202c-0.109-0.021-0.331-0.031-0.663-0.031H-271.038z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
|
||||
width: 30px;
|
||||
height: 30px;
|
||||
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20viewBox%3D%220%20-54.11%20193.63%20193.63%22%20height%3D%22193.63px%22%20width%3D%22193.63px%22%20y%3D%220px%22%20x%3D%220px%22%20xml%3Aspace%3D%22preserve%22%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill%3A%23DF6737%3B%7D%3C%2Fstyle%3E%3C%2Fdefs%3E%3Cpath%20d%3D%22M193.16%2C5.615V5.609c-0.334-0.173-0.671-0.334-1.005-0.497%20%20c-5.356-2.586-11.256-4.287-17.525-4.88c-11.083-1.049-21.673%2C1.496-30.622%2C6.678c-6.13-3.477-13.071-5.741-20.542-6.448%20%20c-10.298-0.974-20.17%2C1.16-28.697%2C5.629c-0.084%2C0.044-0.17%2C0.095-0.251%2C0.135c-0.207%2C0.162-0.347%2C0.414-0.347%2C0.697%20%20c0%2C0.492%2C0.392%2C0.89%2C0.889%2C0.89c0.046%2C0%2C0.091-0.007%2C0.139-0.017c0.021-0.002%2C0.042-0.011%2C0.061-0.015%20%20c4.586-0.848%2C9.368-1.088%2C14.243-0.627c13.684%2C1.293%2C25.609%2C5.521%2C33.975%2C15.011c0.437%2C0.455%2C0.822%2C0.427%2C1.266-0.024%20%20c10.523-12.2%2C26.662-17.021%2C44.006-15.382c0.968%2C0.094%2C1.921%2C0.213%2C2.871%2C0.355c0.33%2C0.05%2C0.836%2C0.134%2C1.133%2C0.167%20%20c0.572%2C0.063%2C0.88-0.397%2C0.88-0.891C193.629%2C6.056%2C193.485%2C5.776%2C193.16%2C5.615L193.16%2C5.615z%22%20class%3D%22cls-1%22%20%2F%3E%3Cpath%20d%3D%22M173.054%2C48.544c-0.057-0.028-0.107-0.046-0.154-0.065%20%20c-10.518-4.35-22.021-6.758-34.094-6.758c-19.293%2C0-37.154%2C6.127-51.757%2C16.524c-11.146-4.993-23.497-7.776-36.496-7.776%20%20c-18.485%2C0-35.648%2C5.617-49.895%2C15.237c-0.047%2C0.029-0.095%2C0.066-0.149%2C0.104C0.205%2C66.044%2C0%2C66.418%2C0%2C66.848%20%20c0%2C0.729%2C0.592%2C1.323%2C1.323%2C1.323c0.086%2C0%2C0.174-0.013%2C0.259-0.03c0.058-0.015%2C0.107-0.027%2C0.161-0.048%20%20c8.166-2.456%2C16.832-3.791%2C25.798-3.791c23.836%2C0%2C45.083%2C5.634%2C61.08%2C20.681c0.038%2C0.028%2C0.071%2C0.065%2C0.111%2C0.104%20%20c0.232%2C0.205%2C0.53%2C0.325%2C0.863%2C0.325c0.412%2C0%2C0.774-0.188%2C1.018-0.486c0.006%2C0.005%2C0.515-0.72%2C0.773-1.069%20%20c16.246-22.217%2C43.03-33.172%2C72.845-33.172c2.129%2C0%2C4.246%2C0.08%2C6.338%2C0.225c0.602%2C0.047%2C1.873%2C0.144%2C1.902%2C0.144%20%20c0.727%2C0%2C1.322-0.591%2C1.322-1.323C173.796%2C49.203%2C173.492%2C48.752%2C173.054%2C48.544L173.054%2C48.544z%22%20class%3D%22cls-1%22%20%2F%3E%3C%2Fsvg%3E");
|
||||
}
|
||||
#editor_sdk {
|
||||
position: absolute;
|
||||
|
|
|
@ -6160,19 +6160,19 @@ i.icon.icon-align-vertical {
|
|||
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20viewBox%3D%220%200%2022%2022%22%20style%3D%22enable-background%3Anew%200%200%2022%2022%3B%22%20xml%3Aspace%3D%22preserve%22%20fill%3D%22%23DF6737%22%3E%3Cg%3E%3Cg%20id%3D%22XMLID_35_%22%3E%3Cpath%20id%3D%22XMLID_36_%22%20d%3D%22M0.9999998%2C21h1v-20h-1V21z%20M19.0000076%2C21H20v-20h-0.9999924V21z%20M2.9999995%2C12.999999v3.999999h15%20v-3.999999H2.9999995z%20M13.999999%2C4.999999H6.9999986v4h7.0000005V4.999999z%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fsvg%3E");
|
||||
}
|
||||
i.icon.icon-format-pdf {
|
||||
width: 22px;
|
||||
height: 22px;
|
||||
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20viewBox%3D%220%200%2022%2022%22%20style%3D%22enable-background%3Anew%200%200%2022%2022%3B%22%20xml%3Aspace%3D%22preserve%22%20fill%3D%22%23DF6737%22%3E%3Cg%3E%3Cpath%20id%3D%22XMLID_2_%22%20d%3D%22M2%2C21h18V4l-3.979166-4L2%2C0V21z%20M19%2C8v12H3V1h12l4%2C4V8z%22%2F%3E%3C%2Fg%3E%3Cg%3E%3Cpath%20d%3D%22M9.9996328%2C7.2994123L9.9996328%2C7.2994123C10.0988245%2C7.2994123%2C10.0988245%2C7.2994123%2C9.9996328%2C7.2994123%09c0.0991917-0.4004407%2C0.2002201-0.6006618%2C0.2002201-0.9000735V6.1991181c0.0991917-0.4996324%2C0.0991917-0.9000735%2C0-0.9992652%20c0%2C0%2C0%2C0%2C0-0.0991917l-0.0991917-0.0991917l0%2C0l0%2C0c0%2C0%2C0%2C0.0991917-0.0991917%2C0.0991917%20C9.7994118%2C5.6994858%2C9.7994118%2C6.3993387%2C9.9996328%2C7.2994123L9.9996328%2C7.2994123z%20M7%2C14.2005873%09c-0.2002201%2C0.0991926-0.4004407%2C0.2002211-0.4996328%2C0.2994118c-0.6998529%2C0.6006613-1.1994858%2C1.3005142-1.3005142%2C1.5999269l0%2C0%20l0%2C0l0%2C0C5.7986774%2C16.0007343%2C6.3993387%2C15.400074%2C7%2C14.2005873C7.0991917%2C14.2005873%2C7.0991917%2C14.2005873%2C7%2C14.2005873%20C7.0991917%2C14.2005873%2C7%2C14.2005873%2C7%2C14.2005873z%20M16.1991196%2C12.6998539%09c-0.0991936-0.0991926-0.4996338-0.4004412-1.8993397-0.4004412c-0.0991926%2C0-0.0991926%2C0-0.2002211%2C0l0%2C0c0%2C0%2C0%2C0%2C0%2C0.0991926%20c0.6998529%2C0.2994118%2C1.3997059%2C0.4996328%2C1.8993387%2C0.4996328c0.0991917%2C0%2C0.0991917%2C0%2C0.200222%2C0l0%2C0h0.0991917%20c0%2C0%2C0%2C0%2C0-0.0991926l0%2C0C16.300148%2C12.7990446%2C16.1991196%2C12.7990446%2C16.1991196%2C12.6998539z%20M16.5995598%2C13.4988985%20c-0.200222%2C0.0991917-0.4996338%2C0.2002211-0.900074%2C0.2002211c-0.8008814%2C0-2.0003681-0.2002211-2.9996319-0.6998529%20c-1.7009554%2C0.2002211-2.9996328%2C0.4004402-4.0007353%2C0.8008814c-0.0991917%2C0-0.0991917%2C0-0.2002201%2C0.0991917%20C7.2994123%2C16.0007343%2C6.2983098%2C17%2C5.4992652%2C17c-0.2002206%2C0-0.2994123%2C0-0.4004412-0.0991917l-0.4996324-0.2994118V16.502203%09C4.5%2C16.3019829%2C4.5%2C16.2027912%2C4.5%2C16.0025711c0.0991917-0.4996328%2C0.6998529-1.3997068%2C1.8993387-2.0995598%20c0.2002201-0.0991917%2C0.4996328-0.2994118%2C0.9000735-0.4996328c0.2994118-0.4996328%2C0.6006613-1.1002941%2C0.9992652-1.8001461%20c0.4996328-0.9992657%2C0.8008814-2.0003681%2C1.1002932-2.9004412l0%2C0C8.9985304%2C7.5033054%2C8.7983093%2C6.8034525%2C9.1987505%2C5.4019094C9.2979422%2C5.0014687%2C9.5991917%2C4.601028%2C9.9996328%2C4.601028h0.2002201c0.2002201%2C0%2C0.4004402%2C0.0991917%2C0.6006613%2C0.2002206%20c0.6998529%2C0.6998529%2C0.4004412%2C2.2997794%2C0%2C3.6002941c0%2C0.0991917%2C0%2C0.0991917%2C0%2C0.0991917%20c0.4004412%2C1.1002932%2C0.9992657%2C2.0003672%2C1.599926%2C2.6010284c0.2994118%2C0.2002211%2C0.4996328%2C0.4004402%2C0.900074%2C0.6006613%20c0.4996328%2C0%2C0.9000731-0.0991917%2C1.3005142-0.0991917c1.1994848%2C0%2C2.0003681%2C0.2002201%2C2.2997799%2C0.699852%09C17%2C12.5033054%2C17%2C12.7035255%2C17%2C12.9037457C16.9008083%2C12.9992657%2C16.7997799%2C13.3005142%2C16.5995598%2C13.4988985z%20M10.0988245%2C9.5991917C9.8986034%2C10.2990446%2C9.4981623%2C11.099926%2C9.0995588%2C12%20c-0.2002201%2C0.4004402-0.4004402%2C0.699852-0.6006613%2C1.1002941h0.0991917h0.0991917l0%2C0%20c1.3005142-0.4996328%2C2.5-0.8008814%2C3.3008814-0.9000731C11.7979412%2C12.1010284%2C11.6987505%2C12%2C11.5977221%2C11.9008083%20C11.099926%2C11.3001471%2C10.4992657%2C10.4992657%2C10.0988245%2C9.5991917z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
|
||||
width: 30px;
|
||||
height: 30px;
|
||||
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20width%3D%2233px%22%20height%3D%2233px%22%20viewBox%3D%22-3.363%20-3.658%2033%2033%22%20xml%3Aspace%3D%22preserve%22%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill%3A%23DF6737%3B%7D%3C%2Fstyle%3E%3C%2Fdefs%3E%3Cpath%20class%3D%22cls-1%22%20d%3D%22M8.512%2C14.989c0.8-1.567%2C1.709-3.334%2C2.438-5.107l0%2C0l0.287-0.699%20%20c-0.949-3.616-1.52-6.52-1.011-8.396l0%2C0C10.362%2C0.297%2C10.929%2C0%2C11.535%2C0l0%2C0l0.368%2C0.005h0.068c0.83-0.013%2C1.22%2C1.042%2C1.264%2C1.453%20%20l0%2C0c0.073%2C0.684-0.242%2C1.839-0.242%2C1.839l0%2C0c0-0.467%2C0.018-1.221-0.276-1.873l0%2C0c-0.343-0.753-0.671-1.203-0.965-1.274l0%2C0%20%20C11.604%2C0.25%2C11.46%2C0.455%2C11.411%2C0.85l0%2C0c-0.104%2C0.553-0.134%2C1.252-0.134%2C1.611l0%2C0c0%2C1.272%2C0.25%2C2.952%2C0.743%2C4.684l0%2C0%20%20c0.093-0.269%2C0.174-0.526%2C0.24-0.768l0%2C0c0.101-0.38%2C0.743-2.9%2C0.743-2.9l0%2C0c0%2C0-0.162%2C3.354-0.388%2C4.371l0%2C0%20%20c-0.049%2C0.215-0.103%2C0.427-0.158%2C0.644l0%2C0c0.812%2C2.268%2C2.121%2C4.292%2C3.68%2C5.75l0%2C0c0.615%2C0.575%2C1.393%2C1.038%2C2.128%2C1.461l0%2C0%20%20c1.605-0.229%2C3.084-0.338%2C4.318-0.324l0%2C0c1.637%2C0.021%2C2.838%2C0.265%2C3.324%2C0.743l0%2C0c0.237%2C0.232%2C0.335%2C0.514%2C0.364%2C0.83l0%2C0%20%20c0.007%2C0.122-0.053%2C0.41-0.069%2C0.482l0%2C0c0.018-0.088%2C0.018-0.519-1.298-0.938l0%2C0c-1.033-0.33-2.971-0.32-5.295-0.073l0%2C0%20%20c2.688%2C1.315%2C5.308%2C1.969%2C6.138%2C1.577l0%2C0c0.203-0.1%2C0.448-0.437%2C0.448-0.437l0%2C0c0%2C0-0.146%2C0.665-0.252%2C0.831l0%2C0%20%20c-0.134%2C0.18-0.396%2C0.376-0.646%2C0.44l0%2C0c-1.312%2C0.351-4.722-0.459-7.695-2.158l0%2C0c-3.322%2C0.489-6.972%2C1.394-9.896%2C2.354l0%2C0%20%20c-2.874%2C5.036-5.036%2C7.35-6.793%2C6.47l0%2C0l-0.646-0.325c-0.263-0.149-0.303-0.516-0.242-0.813l0%2C0%20%20c0.205-1.003%2C1.462-2.513%2C3.988-4.021l0%2C0c0.272-0.165%2C1.483-0.805%2C1.483-0.805l0%2C0c0%2C0-0.896%2C0.868-1.106%2C1.038l0%2C0%20%20c-2.016%2C1.652-3.504%2C3.73-3.467%2C4.536l0%2C0l0.007%2C0.069C2.643%2C24.936%2C5.21%2C21.45%2C8.512%2C14.989%20M9.559%2C15.525%20%20c-0.551%2C1.038-1.09%2C2.001-1.588%2C2.886l0%2C0c2.752-1.153%2C5.715-1.892%2C8.535-2.416l0%2C0c-0.379-0.262-0.746-0.539-1.093-0.832l0%2C0%20%20c-1.555-1.313-2.737-2.955-3.596-4.681l0%2C0C11.273%2C11.948%2C10.626%2C13.507%2C9.559%2C15.525%22%20%2F%3E%3C%2Fsvg%3E");
|
||||
}
|
||||
i.icon.icon-format-pptx {
|
||||
width: 22px;
|
||||
height: 22px;
|
||||
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20viewBox%3D%22-238%20240%2022%2022%22%20style%3D%22enable-background%3Anew%20-238%20240%2022%2022%3B%22%20xml%3Aspace%3D%22preserve%22%20fill%3D%22%23DF6737%22%3E%3Cg%3E%3Cpath%20id%3D%22XMLID_2_%22%20d%3D%22M-236%2C261h18v-17l-3.9791718-4H-236V261z%20M-219%2C248v12h-16v-19h12l4%2C4V248z%22%2F%3E%3C%2Fg%3E%3Cg%3E%3Cpath%20d%3D%22M-228.8226929%2C250.8646851c0.137085-0.060791%2C0.2341919-0.2302246%2C0.3131104-0.3647461%09c0.0792847-0.1351929%2C0.0861816-0.2935181%2C0.0861816-0.473938c0-0.2221069-0.0613403-0.4186401-0.1723633-0.5601807%09c-0.1102905-0.1405029-0.296875-0.2628784-0.4628906-0.2931519c-0.1210938-0.0233154-0.2396851-0.0012817-0.4535522%2C0.0090942%20l-0.3115234%2C0.010376v1.7925415h0.4523926C-228.9815063%2C250.9927368-228.9586182%2C250.9249878-228.8226929%2C250.8646851z%22%2F%3E%3Cpath%20d%3D%22M-233%2C256.1141357l7.333313%2C1.3553467V245L-233%2C246.3268433V256.1141357z%20M-230.8660889%2C248.2818604l1.4968872-0.0977783%20c0.6077881-0.0397339%2C0.9075317-0.0557251%2C1.1018066-0.0071411c0.3032227%2C0.0736084%2C0.637207%2C0.2349854%2C0.8483276%2C0.538147%09c0.2138672%2C0.3070679%2C0.3555908%2C0.7592163%2C0.3555908%2C1.262085c0%2C0.3878784-0.0623169%2C0.7130737-0.1862793%2C0.9741211%09c-0.1230469%2C0.2590942-0.2780151%2C0.4591064-0.4640503%2C0.6001587c-0.18396%2C0.1394653-0.3991089%2C0.2700195-0.5587769%2C0.3272705%20c-0.3145752%2C0.0774536-0.5286865%2C0.1747437-0.9802856%2C0.1508179h-0.5708618v1.9562378l-1.0423584-0.1081543V248.2818604z%22%2F%3E%3Cpath%20d%3D%22M-221.7266846%2C247H-225v9h3.2733154C-221.3253479%2C256-221%2C255.6746521-221%2C255.2733154v-7.5466309%09C-221%2C247.3253479-221.3253479%2C247-221.7266846%2C247z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
|
||||
width: 30px;
|
||||
height: 30px;
|
||||
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20width%3D%2265%22%20height%3D%2265%22%20viewBox%3D%2219.951%2032.432%2065.000002%2065.000003%22%20xml%3Aspace%3D%22preserve%22%20%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill%3A%23df6737%3B%7D%3C%2Fstyle%3E%3C%2Fdefs%3E%3Cpath%20class%3D%22cls-1%22%20d%3D%22M%2051.31066%2C44.356609%20C%2047.702785%2C44.433229%2043.9488%2C45.107%2040.5548%2C44.9445%20c%20-0.149%2C13.35%20-0.123719%2C26.7115%20-0.01172%2C40.0625%202.476001%2C0.199%204.9625%2C0.412%207.4375%2C0.625%20-0.011%2C-4.888%206.72e-4%2C-9.776062%200.01367%2C-14.664062%203.088%2C0.100999%206.336828%2C0.300562%209.173828%2C-1.148438%207.988%2C-3.913%209.413391%2C-15.938562%204.025391%2C-22.476562%20-2.8125%2C-2.544001%20-6.274937%2C-3.062954%20-9.882812%2C-2.986329%20z%20m%20-0.416016%2C7.244141%20c%201.641035%2C0.04387%203.222344%2C0.409844%204.261719%2C1.855469%201.425%2C2.45%201.350109%2C5.676172%200.162109%2C8.201172%20-1.425%2C2.575%20-4.650672%2C2.325%20-7.138672%2C2.625%20-0.262%2C-4.188%20-0.236218%2C-8.377172%20-0.199219%2C-12.576172%200.923626%2C-0.04237%201.929442%2C-0.131789%202.914063%2C-0.105469%20z%22%20%2F%3E%3C%2Fsvg%3E");
|
||||
}
|
||||
i.icon.icon-format-odp {
|
||||
width: 22px;
|
||||
height: 22px;
|
||||
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20viewBox%3D%22-286%20409.89%2022%2022%22%20style%3D%22enable-background%3Anew%20-286%20409.89%2022%2022%3B%22%20xml%3Aspace%3D%22preserve%22%20fill%3D%22%23DF6737%22%3E%3Cg%3E%3Cpath%20id%3D%22XMLID_2_%22%20d%3D%22M-284%2C430.89h18v-17l-3.979-4H-284V430.89z%20M-267%2C417.89v12h-16v-19h12l4%2C4V417.89z%22%2F%3E%3C%2Fg%3E%3Cpath%20d%3D%22M-281.655%2C419.661c0%2C0%2C1.036-1.266%2C3.529-1.381c2.493-0.115%2C3.107%2C0.499%2C3.107%2C0.499s1.072-0.873%2C2.634-0.984%20c1.473-0.106%2C2.244%2C0.134%2C3.657%2C0.639c-3.107-0.038-5.408%2C1.189-6.022%2C1.956C-276.17%2C419.163-278.817%2C418.817-281.655%2C419.661z%22%2F%3E%3Cpath%20d%3D%22M-278.663%2C415.979c1.458-0.767%2C2.864-0.857%2C5.063%2C0c1.189-0.652%2C3.414-0.307%2C4.68%2C0.269c-3.145-0.23-4.104%2C0.422-4.68%2C0.69%09C-274.367%2C416.056-276.86%2C415.595-278.663%2C415.979z%22%2F%3E%3Cg%3E%3Cpath%20d%3D%22M-281.721%2C425.011c0-0.465%2C0.07-0.855%2C0.209-1.172c0.104-0.232%2C0.246-0.441%2C0.425-0.626s0.376-0.322%2C0.59-0.411%20c0.285-0.121%2C0.613-0.181%2C0.985-0.181c0.673%2C0%2C1.212%2C0.208%2C1.616%2C0.626c0.404%2C0.418%2C0.606%2C0.998%2C0.606%2C1.742%20c0%2C0.737-0.2%2C1.314-0.601%2C1.731c-0.401%2C0.417-0.938%2C0.625-1.608%2C0.625c-0.679%2C0-1.22-0.207-1.621-0.622%09C-281.521%2C426.31-281.721%2C425.739-281.721%2C425.011z%20M-280.771%2C424.981c0%2C0.517%2C0.119%2C0.909%2C0.358%2C1.176%09c0.239%2C0.268%2C0.542%2C0.4%2C0.91%2C0.4c0.368%2C0%2C0.669-0.132%2C0.905-0.397c0.236-0.265%2C0.354-0.662%2C0.354-1.191%09c0-0.523-0.115-0.914-0.344-1.172s-0.535-0.387-0.915-0.387c-0.38%2C0-0.687%2C0.131-0.919%2C0.392%20C-280.654%2C424.062-280.771%2C424.455-280.771%2C424.981z%22%2F%3E%3Cpath%20d%3D%22M-276.573%2C422.699h1.686c0.38%2C0%2C0.67%2C0.029%2C0.87%2C0.088c0.267%2C0.079%2C0.498%2C0.219%2C0.689%2C0.421%20c0.191%2C0.201%2C0.336%2C0.448%2C0.436%2C0.74s0.15%2C0.651%2C0.15%2C1.079c0%2C0.377-0.047%2C0.7-0.141%2C0.973c-0.114%2C0.333-0.277%2C0.602-0.489%2C0.808%20c-0.16%2C0.155-0.376%2C0.277-0.648%2C0.364c-0.204%2C0.064-0.476%2C0.097-0.816%2C0.097h-1.736V422.699z%20M-275.65%2C423.472v3.026h0.689%20c0.257%2C0%2C0.443-0.015%2C0.558-0.044c0.149-0.037%2C0.274-0.101%2C0.373-0.19c0.099-0.089%2C0.18-0.236%2C0.241-0.44%20c0.062-0.205%2C0.094-0.483%2C0.094-0.837s-0.031-0.624-0.094-0.813c-0.062-0.189-0.149-0.337-0.262-0.442%20c-0.112-0.106-0.254-0.178-0.427-0.215c-0.129-0.029-0.381-0.044-0.757-0.044H-275.65z%22%2F%3E%3Cpath%20d%3D%22M-271.96%2C427.268v-4.569h1.479c0.562%2C0%2C0.927%2C0.023%2C1.098%2C0.069c0.262%2C0.068%2C0.48%2C0.218%2C0.657%2C0.447%20s0.265%2C0.525%2C0.265%2C0.89c0%2C0.28-0.051%2C0.516-0.152%2C0.707s-0.231%2C0.342-0.388%2C0.45c-0.157%2C0.109-0.316%2C0.182-0.479%2C0.217%09c-0.221%2C0.044-0.539%2C0.065-0.957%2C0.065h-0.602v1.724H-271.96z%20M-271.038%2C423.472v1.297h0.505c0.363%2C0%2C0.606-0.024%2C0.729-0.072%20c0.122-0.048%2C0.219-0.122%2C0.288-0.225c0.069-0.102%2C0.104-0.22%2C0.104-0.354c0-0.167-0.049-0.304-0.146-0.412%09c-0.098-0.107-0.222-0.176-0.371-0.202c-0.109-0.021-0.331-0.031-0.663-0.031H-271.038z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
|
||||
width: 30px;
|
||||
height: 30px;
|
||||
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20viewBox%3D%220%20-54.11%20193.63%20193.63%22%20height%3D%22193.63px%22%20width%3D%22193.63px%22%20y%3D%220px%22%20x%3D%220px%22%20xml%3Aspace%3D%22preserve%22%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill%3A%23DF6737%3B%7D%3C%2Fstyle%3E%3C%2Fdefs%3E%3Cpath%20d%3D%22M193.16%2C5.615V5.609c-0.334-0.173-0.671-0.334-1.005-0.497%20%20c-5.356-2.586-11.256-4.287-17.525-4.88c-11.083-1.049-21.673%2C1.496-30.622%2C6.678c-6.13-3.477-13.071-5.741-20.542-6.448%20%20c-10.298-0.974-20.17%2C1.16-28.697%2C5.629c-0.084%2C0.044-0.17%2C0.095-0.251%2C0.135c-0.207%2C0.162-0.347%2C0.414-0.347%2C0.697%20%20c0%2C0.492%2C0.392%2C0.89%2C0.889%2C0.89c0.046%2C0%2C0.091-0.007%2C0.139-0.017c0.021-0.002%2C0.042-0.011%2C0.061-0.015%20%20c4.586-0.848%2C9.368-1.088%2C14.243-0.627c13.684%2C1.293%2C25.609%2C5.521%2C33.975%2C15.011c0.437%2C0.455%2C0.822%2C0.427%2C1.266-0.024%20%20c10.523-12.2%2C26.662-17.021%2C44.006-15.382c0.968%2C0.094%2C1.921%2C0.213%2C2.871%2C0.355c0.33%2C0.05%2C0.836%2C0.134%2C1.133%2C0.167%20%20c0.572%2C0.063%2C0.88-0.397%2C0.88-0.891C193.629%2C6.056%2C193.485%2C5.776%2C193.16%2C5.615L193.16%2C5.615z%22%20class%3D%22cls-1%22%20%2F%3E%3Cpath%20d%3D%22M173.054%2C48.544c-0.057-0.028-0.107-0.046-0.154-0.065%20%20c-10.518-4.35-22.021-6.758-34.094-6.758c-19.293%2C0-37.154%2C6.127-51.757%2C16.524c-11.146-4.993-23.497-7.776-36.496-7.776%20%20c-18.485%2C0-35.648%2C5.617-49.895%2C15.237c-0.047%2C0.029-0.095%2C0.066-0.149%2C0.104C0.205%2C66.044%2C0%2C66.418%2C0%2C66.848%20%20c0%2C0.729%2C0.592%2C1.323%2C1.323%2C1.323c0.086%2C0%2C0.174-0.013%2C0.259-0.03c0.058-0.015%2C0.107-0.027%2C0.161-0.048%20%20c8.166-2.456%2C16.832-3.791%2C25.798-3.791c23.836%2C0%2C45.083%2C5.634%2C61.08%2C20.681c0.038%2C0.028%2C0.071%2C0.065%2C0.111%2C0.104%20%20c0.232%2C0.205%2C0.53%2C0.325%2C0.863%2C0.325c0.412%2C0%2C0.774-0.188%2C1.018-0.486c0.006%2C0.005%2C0.515-0.72%2C0.773-1.069%20%20c16.246-22.217%2C43.03-33.172%2C72.845-33.172c2.129%2C0%2C4.246%2C0.08%2C6.338%2C0.225c0.602%2C0.047%2C1.873%2C0.144%2C1.902%2C0.144%20%20c0.727%2C0%2C1.322-0.591%2C1.322-1.323C173.796%2C49.203%2C173.492%2C48.752%2C173.054%2C48.544L173.054%2C48.544z%22%20class%3D%22cls-1%22%20%2F%3E%3C%2Fsvg%3E");
|
||||
}
|
||||
.navbar i.icon.icon-undo {
|
||||
width: 22px;
|
||||
|
|
|
@ -354,18 +354,18 @@ i.icon {
|
|||
// Formats
|
||||
|
||||
&.icon-format-pdf {
|
||||
width: 22px;
|
||||
height: 22px;
|
||||
.encoded-svg-background('<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 22 22" style="enable-background:new 0 0 22 22;" xml:space="preserve" fill="@{themeColor}"><g><path id="XMLID_2_" d="M2,21h18V4l-3.979166-4L2,0V21z M19,8v12H3V1h12l4,4V8z"/></g><g><path d="M9.9996328,7.2994123L9.9996328,7.2994123C10.0988245,7.2994123,10.0988245,7.2994123,9.9996328,7.2994123 c0.0991917-0.4004407,0.2002201-0.6006618,0.2002201-0.9000735V6.1991181c0.0991917-0.4996324,0.0991917-0.9000735,0-0.9992652 c0,0,0,0,0-0.0991917l-0.0991917-0.0991917l0,0l0,0c0,0,0,0.0991917-0.0991917,0.0991917 C9.7994118,5.6994858,9.7994118,6.3993387,9.9996328,7.2994123L9.9996328,7.2994123z M7,14.2005873 c-0.2002201,0.0991926-0.4004407,0.2002211-0.4996328,0.2994118c-0.6998529,0.6006613-1.1994858,1.3005142-1.3005142,1.5999269l0,0 l0,0l0,0C5.7986774,16.0007343,6.3993387,15.400074,7,14.2005873C7.0991917,14.2005873,7.0991917,14.2005873,7,14.2005873 C7.0991917,14.2005873,7,14.2005873,7,14.2005873z M16.1991196,12.6998539 c-0.0991936-0.0991926-0.4996338-0.4004412-1.8993397-0.4004412c-0.0991926,0-0.0991926,0-0.2002211,0l0,0c0,0,0,0,0,0.0991926 c0.6998529,0.2994118,1.3997059,0.4996328,1.8993387,0.4996328c0.0991917,0,0.0991917,0,0.200222,0l0,0h0.0991917 c0,0,0,0,0-0.0991926l0,0C16.300148,12.7990446,16.1991196,12.7990446,16.1991196,12.6998539z M16.5995598,13.4988985 c-0.200222,0.0991917-0.4996338,0.2002211-0.900074,0.2002211c-0.8008814,0-2.0003681-0.2002211-2.9996319-0.6998529 c-1.7009554,0.2002211-2.9996328,0.4004402-4.0007353,0.8008814c-0.0991917,0-0.0991917,0-0.2002201,0.0991917 C7.2994123,16.0007343,6.2983098,17,5.4992652,17c-0.2002206,0-0.2994123,0-0.4004412-0.0991917l-0.4996324-0.2994118V16.502203 C4.5,16.3019829,4.5,16.2027912,4.5,16.0025711c0.0991917-0.4996328,0.6998529-1.3997068,1.8993387-2.0995598 c0.2002201-0.0991917,0.4996328-0.2994118,0.9000735-0.4996328c0.2994118-0.4996328,0.6006613-1.1002941,0.9992652-1.8001461 c0.4996328-0.9992657,0.8008814-2.0003681,1.1002932-2.9004412l0,0C8.9985304,7.5033054,8.7983093,6.8034525,9.1987505,5.4019094C9.2979422,5.0014687,9.5991917,4.601028,9.9996328,4.601028h0.2002201c0.2002201,0,0.4004402,0.0991917,0.6006613,0.2002206 c0.6998529,0.6998529,0.4004412,2.2997794,0,3.6002941c0,0.0991917,0,0.0991917,0,0.0991917 c0.4004412,1.1002932,0.9992657,2.0003672,1.599926,2.6010284c0.2994118,0.2002211,0.4996328,0.4004402,0.900074,0.6006613 c0.4996328,0,0.9000731-0.0991917,1.3005142-0.0991917c1.1994848,0,2.0003681,0.2002201,2.2997799,0.699852 C17,12.5033054,17,12.7035255,17,12.9037457C16.9008083,12.9992657,16.7997799,13.3005142,16.5995598,13.4988985z M10.0988245,9.5991917C9.8986034,10.2990446,9.4981623,11.099926,9.0995588,12 c-0.2002201,0.4004402-0.4004402,0.699852-0.6006613,1.1002941h0.0991917h0.0991917l0,0 c1.3005142-0.4996328,2.5-0.8008814,3.3008814-0.9000731C11.7979412,12.1010284,11.6987505,12,11.5977221,11.9008083 C11.099926,11.3001471,10.4992657,10.4992657,10.0988245,9.5991917z"/></g></svg>');
|
||||
width: 30px;
|
||||
height: 30px;
|
||||
.encoded-svg-background('<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="33px" height="33px" viewBox="-3.363 -3.658 33 33" xml:space="preserve"><defs><style>.cls-1{fill:#DF6737;}</style></defs><path class="cls-1" d="M8.512,14.989c0.8-1.567,1.709-3.334,2.438-5.107l0,0l0.287-0.699 c-0.949-3.616-1.52-6.52-1.011-8.396l0,0C10.362,0.297,10.929,0,11.535,0l0,0l0.368,0.005h0.068c0.83-0.013,1.22,1.042,1.264,1.453 l0,0c0.073,0.684-0.242,1.839-0.242,1.839l0,0c0-0.467,0.018-1.221-0.276-1.873l0,0c-0.343-0.753-0.671-1.203-0.965-1.274l0,0 C11.604,0.25,11.46,0.455,11.411,0.85l0,0c-0.104,0.553-0.134,1.252-0.134,1.611l0,0c0,1.272,0.25,2.952,0.743,4.684l0,0 c0.093-0.269,0.174-0.526,0.24-0.768l0,0c0.101-0.38,0.743-2.9,0.743-2.9l0,0c0,0-0.162,3.354-0.388,4.371l0,0 c-0.049,0.215-0.103,0.427-0.158,0.644l0,0c0.812,2.268,2.121,4.292,3.68,5.75l0,0c0.615,0.575,1.393,1.038,2.128,1.461l0,0 c1.605-0.229,3.084-0.338,4.318-0.324l0,0c1.637,0.021,2.838,0.265,3.324,0.743l0,0c0.237,0.232,0.335,0.514,0.364,0.83l0,0 c0.007,0.122-0.053,0.41-0.069,0.482l0,0c0.018-0.088,0.018-0.519-1.298-0.938l0,0c-1.033-0.33-2.971-0.32-5.295-0.073l0,0 c2.688,1.315,5.308,1.969,6.138,1.577l0,0c0.203-0.1,0.448-0.437,0.448-0.437l0,0c0,0-0.146,0.665-0.252,0.831l0,0 c-0.134,0.18-0.396,0.376-0.646,0.44l0,0c-1.312,0.351-4.722-0.459-7.695-2.158l0,0c-3.322,0.489-6.972,1.394-9.896,2.354l0,0 c-2.874,5.036-5.036,7.35-6.793,6.47l0,0l-0.646-0.325c-0.263-0.149-0.303-0.516-0.242-0.813l0,0 c0.205-1.003,1.462-2.513,3.988-4.021l0,0c0.272-0.165,1.483-0.805,1.483-0.805l0,0c0,0-0.896,0.868-1.106,1.038l0,0 c-2.016,1.652-3.504,3.73-3.467,4.536l0,0l0.007,0.069C2.643,24.936,5.21,21.45,8.512,14.989 M9.559,15.525 c-0.551,1.038-1.09,2.001-1.588,2.886l0,0c2.752-1.153,5.715-1.892,8.535-2.416l0,0c-0.379-0.262-0.746-0.539-1.093-0.832l0,0 c-1.555-1.313-2.737-2.955-3.596-4.681l0,0C11.273,11.948,10.626,13.507,9.559,15.525" /></svg>');
|
||||
}
|
||||
&.icon-format-pptx {
|
||||
width: 22px;
|
||||
height: 22px;
|
||||
.encoded-svg-background('<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="-238 240 22 22" style="enable-background:new -238 240 22 22;" xml:space="preserve" fill="@{themeColor}"><g><path id="XMLID_2_" d="M-236,261h18v-17l-3.9791718-4H-236V261z M-219,248v12h-16v-19h12l4,4V248z"/></g><g><path d="M-228.8226929,250.8646851c0.137085-0.060791,0.2341919-0.2302246,0.3131104-0.3647461 c0.0792847-0.1351929,0.0861816-0.2935181,0.0861816-0.473938c0-0.2221069-0.0613403-0.4186401-0.1723633-0.5601807 c-0.1102905-0.1405029-0.296875-0.2628784-0.4628906-0.2931519c-0.1210938-0.0233154-0.2396851-0.0012817-0.4535522,0.0090942 l-0.3115234,0.010376v1.7925415h0.4523926C-228.9815063,250.9927368-228.9586182,250.9249878-228.8226929,250.8646851z"/><path d="M-233,256.1141357l7.333313,1.3553467V245L-233,246.3268433V256.1141357z M-230.8660889,248.2818604l1.4968872-0.0977783 c0.6077881-0.0397339,0.9075317-0.0557251,1.1018066-0.0071411c0.3032227,0.0736084,0.637207,0.2349854,0.8483276,0.538147 c0.2138672,0.3070679,0.3555908,0.7592163,0.3555908,1.262085c0,0.3878784-0.0623169,0.7130737-0.1862793,0.9741211 c-0.1230469,0.2590942-0.2780151,0.4591064-0.4640503,0.6001587c-0.18396,0.1394653-0.3991089,0.2700195-0.5587769,0.3272705 c-0.3145752,0.0774536-0.5286865,0.1747437-0.9802856,0.1508179h-0.5708618v1.9562378l-1.0423584-0.1081543V248.2818604z"/><path d="M-221.7266846,247H-225v9h3.2733154C-221.3253479,256-221,255.6746521-221,255.2733154v-7.5466309 C-221,247.3253479-221.3253479,247-221.7266846,247z"/></g></svg>');
|
||||
width: 30px;
|
||||
height: 30px;
|
||||
.encoded-svg-background('<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="65" height="65" viewBox="19.951 32.432 65.000002 65.000003" xml:space="preserve" ><defs><style>.cls-1{fill:#df6737;}</style></defs><path class="cls-1" d="M 51.31066,44.356609 C 47.702785,44.433229 43.9488,45.107 40.5548,44.9445 c -0.149,13.35 -0.123719,26.7115 -0.01172,40.0625 2.476001,0.199 4.9625,0.412 7.4375,0.625 -0.011,-4.888 6.72e-4,-9.776062 0.01367,-14.664062 3.088,0.100999 6.336828,0.300562 9.173828,-1.148438 7.988,-3.913 9.413391,-15.938562 4.025391,-22.476562 -2.8125,-2.544001 -6.274937,-3.062954 -9.882812,-2.986329 z m -0.416016,7.244141 c 1.641035,0.04387 3.222344,0.409844 4.261719,1.855469 1.425,2.45 1.350109,5.676172 0.162109,8.201172 -1.425,2.575 -4.650672,2.325 -7.138672,2.625 -0.262,-4.188 -0.236218,-8.377172 -0.199219,-12.576172 0.923626,-0.04237 1.929442,-0.131789 2.914063,-0.105469 z" /></svg>');
|
||||
}
|
||||
&.icon-format-odp {
|
||||
width: 22px;
|
||||
height: 22px;
|
||||
.encoded-svg-background('<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="-286 409.89 22 22" style="enable-background:new -286 409.89 22 22;" xml:space="preserve" fill="@{themeColor}"><g><path id="XMLID_2_" d="M-284,430.89h18v-17l-3.979-4H-284V430.89z M-267,417.89v12h-16v-19h12l4,4V417.89z"/></g><path d="M-281.655,419.661c0,0,1.036-1.266,3.529-1.381c2.493-0.115,3.107,0.499,3.107,0.499s1.072-0.873,2.634-0.984 c1.473-0.106,2.244,0.134,3.657,0.639c-3.107-0.038-5.408,1.189-6.022,1.956C-276.17,419.163-278.817,418.817-281.655,419.661z"/><path d="M-278.663,415.979c1.458-0.767,2.864-0.857,5.063,0c1.189-0.652,3.414-0.307,4.68,0.269c-3.145-0.23-4.104,0.422-4.68,0.69 C-274.367,416.056-276.86,415.595-278.663,415.979z"/><g><path d="M-281.721,425.011c0-0.465,0.07-0.855,0.209-1.172c0.104-0.232,0.246-0.441,0.425-0.626s0.376-0.322,0.59-0.411 c0.285-0.121,0.613-0.181,0.985-0.181c0.673,0,1.212,0.208,1.616,0.626c0.404,0.418,0.606,0.998,0.606,1.742 c0,0.737-0.2,1.314-0.601,1.731c-0.401,0.417-0.938,0.625-1.608,0.625c-0.679,0-1.22-0.207-1.621-0.622 C-281.521,426.31-281.721,425.739-281.721,425.011z M-280.771,424.981c0,0.517,0.119,0.909,0.358,1.176 c0.239,0.268,0.542,0.4,0.91,0.4c0.368,0,0.669-0.132,0.905-0.397c0.236-0.265,0.354-0.662,0.354-1.191 c0-0.523-0.115-0.914-0.344-1.172s-0.535-0.387-0.915-0.387c-0.38,0-0.687,0.131-0.919,0.392 C-280.654,424.062-280.771,424.455-280.771,424.981z"/><path d="M-276.573,422.699h1.686c0.38,0,0.67,0.029,0.87,0.088c0.267,0.079,0.498,0.219,0.689,0.421 c0.191,0.201,0.336,0.448,0.436,0.74s0.15,0.651,0.15,1.079c0,0.377-0.047,0.7-0.141,0.973c-0.114,0.333-0.277,0.602-0.489,0.808 c-0.16,0.155-0.376,0.277-0.648,0.364c-0.204,0.064-0.476,0.097-0.816,0.097h-1.736V422.699z M-275.65,423.472v3.026h0.689 c0.257,0,0.443-0.015,0.558-0.044c0.149-0.037,0.274-0.101,0.373-0.19c0.099-0.089,0.18-0.236,0.241-0.44 c0.062-0.205,0.094-0.483,0.094-0.837s-0.031-0.624-0.094-0.813c-0.062-0.189-0.149-0.337-0.262-0.442 c-0.112-0.106-0.254-0.178-0.427-0.215c-0.129-0.029-0.381-0.044-0.757-0.044H-275.65z"/><path d="M-271.96,427.268v-4.569h1.479c0.562,0,0.927,0.023,1.098,0.069c0.262,0.068,0.48,0.218,0.657,0.447 s0.265,0.525,0.265,0.89c0,0.28-0.051,0.516-0.152,0.707s-0.231,0.342-0.388,0.45c-0.157,0.109-0.316,0.182-0.479,0.217 c-0.221,0.044-0.539,0.065-0.957,0.065h-0.602v1.724H-271.96z M-271.038,423.472v1.297h0.505c0.363,0,0.606-0.024,0.729-0.072 c0.122-0.048,0.219-0.122,0.288-0.225c0.069-0.102,0.104-0.22,0.104-0.354c0-0.167-0.049-0.304-0.146-0.412 c-0.098-0.107-0.222-0.176-0.371-0.202c-0.109-0.021-0.331-0.031-0.663-0.031H-271.038z"/></g></svg>');
|
||||
width: 30px;
|
||||
height: 30px;
|
||||
.encoded-svg-background('<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 -54.11 193.63 193.63" height="193.63px" width="193.63px" y="0px" x="0px" xml:space="preserve"><defs><style>.cls-1{fill:#DF6737;}</style></defs><path d="M193.16,5.615V5.609c-0.334-0.173-0.671-0.334-1.005-0.497 c-5.356-2.586-11.256-4.287-17.525-4.88c-11.083-1.049-21.673,1.496-30.622,6.678c-6.13-3.477-13.071-5.741-20.542-6.448 c-10.298-0.974-20.17,1.16-28.697,5.629c-0.084,0.044-0.17,0.095-0.251,0.135c-0.207,0.162-0.347,0.414-0.347,0.697 c0,0.492,0.392,0.89,0.889,0.89c0.046,0,0.091-0.007,0.139-0.017c0.021-0.002,0.042-0.011,0.061-0.015 c4.586-0.848,9.368-1.088,14.243-0.627c13.684,1.293,25.609,5.521,33.975,15.011c0.437,0.455,0.822,0.427,1.266-0.024 c10.523-12.2,26.662-17.021,44.006-15.382c0.968,0.094,1.921,0.213,2.871,0.355c0.33,0.05,0.836,0.134,1.133,0.167 c0.572,0.063,0.88-0.397,0.88-0.891C193.629,6.056,193.485,5.776,193.16,5.615L193.16,5.615z" class="cls-1" /><path d="M173.054,48.544c-0.057-0.028-0.107-0.046-0.154-0.065 c-10.518-4.35-22.021-6.758-34.094-6.758c-19.293,0-37.154,6.127-51.757,16.524c-11.146-4.993-23.497-7.776-36.496-7.776 c-18.485,0-35.648,5.617-49.895,15.237c-0.047,0.029-0.095,0.066-0.149,0.104C0.205,66.044,0,66.418,0,66.848 c0,0.729,0.592,1.323,1.323,1.323c0.086,0,0.174-0.013,0.259-0.03c0.058-0.015,0.107-0.027,0.161-0.048 c8.166-2.456,16.832-3.791,25.798-3.791c23.836,0,45.083,5.634,61.08,20.681c0.038,0.028,0.071,0.065,0.111,0.104 c0.232,0.205,0.53,0.325,0.863,0.325c0.412,0,0.774-0.188,1.018-0.486c0.006,0.005,0.515-0.72,0.773-1.069 c16.246-22.217,43.03-33.172,72.845-33.172c2.129,0,4.246,0.08,6.338,0.225c0.602,0.047,1.873,0.144,1.902,0.144 c0.727,0,1.322-0.591,1.322-1.323C173.796,49.203,173.492,48.752,173.054,48.544L173.054,48.544z" class="cls-1" /></svg>');
|
||||
}
|
||||
}
|
|
@ -324,19 +324,19 @@ i.icon {
|
|||
// Formats
|
||||
|
||||
&.icon-format-pdf {
|
||||
width: 22px;
|
||||
height: 22px;
|
||||
.encoded-svg-background('<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 22 22" style="enable-background:new 0 0 22 22;" xml:space="preserve" fill="@{themeColor}"><g><path id="XMLID_2_" d="M2,21h18V4l-3.979166-4L2,0V21z M19,8v12H3V1h12l4,4V8z"/></g><g><path d="M9.9996328,7.2994123L9.9996328,7.2994123C10.0988245,7.2994123,10.0988245,7.2994123,9.9996328,7.2994123 c0.0991917-0.4004407,0.2002201-0.6006618,0.2002201-0.9000735V6.1991181c0.0991917-0.4996324,0.0991917-0.9000735,0-0.9992652 c0,0,0,0,0-0.0991917l-0.0991917-0.0991917l0,0l0,0c0,0,0,0.0991917-0.0991917,0.0991917 C9.7994118,5.6994858,9.7994118,6.3993387,9.9996328,7.2994123L9.9996328,7.2994123z M7,14.2005873 c-0.2002201,0.0991926-0.4004407,0.2002211-0.4996328,0.2994118c-0.6998529,0.6006613-1.1994858,1.3005142-1.3005142,1.5999269l0,0 l0,0l0,0C5.7986774,16.0007343,6.3993387,15.400074,7,14.2005873C7.0991917,14.2005873,7.0991917,14.2005873,7,14.2005873 C7.0991917,14.2005873,7,14.2005873,7,14.2005873z M16.1991196,12.6998539 c-0.0991936-0.0991926-0.4996338-0.4004412-1.8993397-0.4004412c-0.0991926,0-0.0991926,0-0.2002211,0l0,0c0,0,0,0,0,0.0991926 c0.6998529,0.2994118,1.3997059,0.4996328,1.8993387,0.4996328c0.0991917,0,0.0991917,0,0.200222,0l0,0h0.0991917 c0,0,0,0,0-0.0991926l0,0C16.300148,12.7990446,16.1991196,12.7990446,16.1991196,12.6998539z M16.5995598,13.4988985 c-0.200222,0.0991917-0.4996338,0.2002211-0.900074,0.2002211c-0.8008814,0-2.0003681-0.2002211-2.9996319-0.6998529 c-1.7009554,0.2002211-2.9996328,0.4004402-4.0007353,0.8008814c-0.0991917,0-0.0991917,0-0.2002201,0.0991917 C7.2994123,16.0007343,6.2983098,17,5.4992652,17c-0.2002206,0-0.2994123,0-0.4004412-0.0991917l-0.4996324-0.2994118V16.502203 C4.5,16.3019829,4.5,16.2027912,4.5,16.0025711c0.0991917-0.4996328,0.6998529-1.3997068,1.8993387-2.0995598 c0.2002201-0.0991917,0.4996328-0.2994118,0.9000735-0.4996328c0.2994118-0.4996328,0.6006613-1.1002941,0.9992652-1.8001461 c0.4996328-0.9992657,0.8008814-2.0003681,1.1002932-2.9004412l0,0C8.9985304,7.5033054,8.7983093,6.8034525,9.1987505,5.4019094C9.2979422,5.0014687,9.5991917,4.601028,9.9996328,4.601028h0.2002201c0.2002201,0,0.4004402,0.0991917,0.6006613,0.2002206 c0.6998529,0.6998529,0.4004412,2.2997794,0,3.6002941c0,0.0991917,0,0.0991917,0,0.0991917 c0.4004412,1.1002932,0.9992657,2.0003672,1.599926,2.6010284c0.2994118,0.2002211,0.4996328,0.4004402,0.900074,0.6006613 c0.4996328,0,0.9000731-0.0991917,1.3005142-0.0991917c1.1994848,0,2.0003681,0.2002201,2.2997799,0.699852 C17,12.5033054,17,12.7035255,17,12.9037457C16.9008083,12.9992657,16.7997799,13.3005142,16.5995598,13.4988985z M10.0988245,9.5991917C9.8986034,10.2990446,9.4981623,11.099926,9.0995588,12 c-0.2002201,0.4004402-0.4004402,0.699852-0.6006613,1.1002941h0.0991917h0.0991917l0,0 c1.3005142-0.4996328,2.5-0.8008814,3.3008814-0.9000731C11.7979412,12.1010284,11.6987505,12,11.5977221,11.9008083 C11.099926,11.3001471,10.4992657,10.4992657,10.0988245,9.5991917z"/></g></svg>');
|
||||
width: 30px;
|
||||
height: 30px;
|
||||
.encoded-svg-background('<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="33px" height="33px" viewBox="-3.363 -3.658 33 33" xml:space="preserve"><defs><style>.cls-1{fill:#DF6737;}</style></defs><path class="cls-1" d="M8.512,14.989c0.8-1.567,1.709-3.334,2.438-5.107l0,0l0.287-0.699 c-0.949-3.616-1.52-6.52-1.011-8.396l0,0C10.362,0.297,10.929,0,11.535,0l0,0l0.368,0.005h0.068c0.83-0.013,1.22,1.042,1.264,1.453 l0,0c0.073,0.684-0.242,1.839-0.242,1.839l0,0c0-0.467,0.018-1.221-0.276-1.873l0,0c-0.343-0.753-0.671-1.203-0.965-1.274l0,0 C11.604,0.25,11.46,0.455,11.411,0.85l0,0c-0.104,0.553-0.134,1.252-0.134,1.611l0,0c0,1.272,0.25,2.952,0.743,4.684l0,0 c0.093-0.269,0.174-0.526,0.24-0.768l0,0c0.101-0.38,0.743-2.9,0.743-2.9l0,0c0,0-0.162,3.354-0.388,4.371l0,0 c-0.049,0.215-0.103,0.427-0.158,0.644l0,0c0.812,2.268,2.121,4.292,3.68,5.75l0,0c0.615,0.575,1.393,1.038,2.128,1.461l0,0 c1.605-0.229,3.084-0.338,4.318-0.324l0,0c1.637,0.021,2.838,0.265,3.324,0.743l0,0c0.237,0.232,0.335,0.514,0.364,0.83l0,0 c0.007,0.122-0.053,0.41-0.069,0.482l0,0c0.018-0.088,0.018-0.519-1.298-0.938l0,0c-1.033-0.33-2.971-0.32-5.295-0.073l0,0 c2.688,1.315,5.308,1.969,6.138,1.577l0,0c0.203-0.1,0.448-0.437,0.448-0.437l0,0c0,0-0.146,0.665-0.252,0.831l0,0 c-0.134,0.18-0.396,0.376-0.646,0.44l0,0c-1.312,0.351-4.722-0.459-7.695-2.158l0,0c-3.322,0.489-6.972,1.394-9.896,2.354l0,0 c-2.874,5.036-5.036,7.35-6.793,6.47l0,0l-0.646-0.325c-0.263-0.149-0.303-0.516-0.242-0.813l0,0 c0.205-1.003,1.462-2.513,3.988-4.021l0,0c0.272-0.165,1.483-0.805,1.483-0.805l0,0c0,0-0.896,0.868-1.106,1.038l0,0 c-2.016,1.652-3.504,3.73-3.467,4.536l0,0l0.007,0.069C2.643,24.936,5.21,21.45,8.512,14.989 M9.559,15.525 c-0.551,1.038-1.09,2.001-1.588,2.886l0,0c2.752-1.153,5.715-1.892,8.535-2.416l0,0c-0.379-0.262-0.746-0.539-1.093-0.832l0,0 c-1.555-1.313-2.737-2.955-3.596-4.681l0,0C11.273,11.948,10.626,13.507,9.559,15.525" /></svg>');
|
||||
}
|
||||
&.icon-format-pptx {
|
||||
width: 22px;
|
||||
height: 22px;
|
||||
.encoded-svg-background('<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="-238 240 22 22" style="enable-background:new -238 240 22 22;" xml:space="preserve" fill="@{themeColor}"><g><path id="XMLID_2_" d="M-236,261h18v-17l-3.9791718-4H-236V261z M-219,248v12h-16v-19h12l4,4V248z"/></g><g><path d="M-228.8226929,250.8646851c0.137085-0.060791,0.2341919-0.2302246,0.3131104-0.3647461 c0.0792847-0.1351929,0.0861816-0.2935181,0.0861816-0.473938c0-0.2221069-0.0613403-0.4186401-0.1723633-0.5601807 c-0.1102905-0.1405029-0.296875-0.2628784-0.4628906-0.2931519c-0.1210938-0.0233154-0.2396851-0.0012817-0.4535522,0.0090942 l-0.3115234,0.010376v1.7925415h0.4523926C-228.9815063,250.9927368-228.9586182,250.9249878-228.8226929,250.8646851z"/><path d="M-233,256.1141357l7.333313,1.3553467V245L-233,246.3268433V256.1141357z M-230.8660889,248.2818604l1.4968872-0.0977783 c0.6077881-0.0397339,0.9075317-0.0557251,1.1018066-0.0071411c0.3032227,0.0736084,0.637207,0.2349854,0.8483276,0.538147 c0.2138672,0.3070679,0.3555908,0.7592163,0.3555908,1.262085c0,0.3878784-0.0623169,0.7130737-0.1862793,0.9741211 c-0.1230469,0.2590942-0.2780151,0.4591064-0.4640503,0.6001587c-0.18396,0.1394653-0.3991089,0.2700195-0.5587769,0.3272705 c-0.3145752,0.0774536-0.5286865,0.1747437-0.9802856,0.1508179h-0.5708618v1.9562378l-1.0423584-0.1081543V248.2818604z"/><path d="M-221.7266846,247H-225v9h3.2733154C-221.3253479,256-221,255.6746521-221,255.2733154v-7.5466309 C-221,247.3253479-221.3253479,247-221.7266846,247z"/></g></svg>');
|
||||
width: 30px;
|
||||
height: 30px;
|
||||
.encoded-svg-background('<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="65" height="65" viewBox="19.951 32.432 65.000002 65.000003" xml:space="preserve" ><defs><style>.cls-1{fill:#df6737;}</style></defs><path class="cls-1" d="M 51.31066,44.356609 C 47.702785,44.433229 43.9488,45.107 40.5548,44.9445 c -0.149,13.35 -0.123719,26.7115 -0.01172,40.0625 2.476001,0.199 4.9625,0.412 7.4375,0.625 -0.011,-4.888 6.72e-4,-9.776062 0.01367,-14.664062 3.088,0.100999 6.336828,0.300562 9.173828,-1.148438 7.988,-3.913 9.413391,-15.938562 4.025391,-22.476562 -2.8125,-2.544001 -6.274937,-3.062954 -9.882812,-2.986329 z m -0.416016,7.244141 c 1.641035,0.04387 3.222344,0.409844 4.261719,1.855469 1.425,2.45 1.350109,5.676172 0.162109,8.201172 -1.425,2.575 -4.650672,2.325 -7.138672,2.625 -0.262,-4.188 -0.236218,-8.377172 -0.199219,-12.576172 0.923626,-0.04237 1.929442,-0.131789 2.914063,-0.105469 z" /></svg>');
|
||||
}
|
||||
&.icon-format-odp {
|
||||
width: 22px;
|
||||
height: 22px;
|
||||
.encoded-svg-background('<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="-286 409.89 22 22" style="enable-background:new -286 409.89 22 22;" xml:space="preserve" fill="@{themeColor}"><g><path id="XMLID_2_" d="M-284,430.89h18v-17l-3.979-4H-284V430.89z M-267,417.89v12h-16v-19h12l4,4V417.89z"/></g><path d="M-281.655,419.661c0,0,1.036-1.266,3.529-1.381c2.493-0.115,3.107,0.499,3.107,0.499s1.072-0.873,2.634-0.984 c1.473-0.106,2.244,0.134,3.657,0.639c-3.107-0.038-5.408,1.189-6.022,1.956C-276.17,419.163-278.817,418.817-281.655,419.661z"/><path d="M-278.663,415.979c1.458-0.767,2.864-0.857,5.063,0c1.189-0.652,3.414-0.307,4.68,0.269c-3.145-0.23-4.104,0.422-4.68,0.69 C-274.367,416.056-276.86,415.595-278.663,415.979z"/><g><path d="M-281.721,425.011c0-0.465,0.07-0.855,0.209-1.172c0.104-0.232,0.246-0.441,0.425-0.626s0.376-0.322,0.59-0.411 c0.285-0.121,0.613-0.181,0.985-0.181c0.673,0,1.212,0.208,1.616,0.626c0.404,0.418,0.606,0.998,0.606,1.742 c0,0.737-0.2,1.314-0.601,1.731c-0.401,0.417-0.938,0.625-1.608,0.625c-0.679,0-1.22-0.207-1.621-0.622 C-281.521,426.31-281.721,425.739-281.721,425.011z M-280.771,424.981c0,0.517,0.119,0.909,0.358,1.176 c0.239,0.268,0.542,0.4,0.91,0.4c0.368,0,0.669-0.132,0.905-0.397c0.236-0.265,0.354-0.662,0.354-1.191 c0-0.523-0.115-0.914-0.344-1.172s-0.535-0.387-0.915-0.387c-0.38,0-0.687,0.131-0.919,0.392 C-280.654,424.062-280.771,424.455-280.771,424.981z"/><path d="M-276.573,422.699h1.686c0.38,0,0.67,0.029,0.87,0.088c0.267,0.079,0.498,0.219,0.689,0.421 c0.191,0.201,0.336,0.448,0.436,0.74s0.15,0.651,0.15,1.079c0,0.377-0.047,0.7-0.141,0.973c-0.114,0.333-0.277,0.602-0.489,0.808 c-0.16,0.155-0.376,0.277-0.648,0.364c-0.204,0.064-0.476,0.097-0.816,0.097h-1.736V422.699z M-275.65,423.472v3.026h0.689 c0.257,0,0.443-0.015,0.558-0.044c0.149-0.037,0.274-0.101,0.373-0.19c0.099-0.089,0.18-0.236,0.241-0.44 c0.062-0.205,0.094-0.483,0.094-0.837s-0.031-0.624-0.094-0.813c-0.062-0.189-0.149-0.337-0.262-0.442 c-0.112-0.106-0.254-0.178-0.427-0.215c-0.129-0.029-0.381-0.044-0.757-0.044H-275.65z"/><path d="M-271.96,427.268v-4.569h1.479c0.562,0,0.927,0.023,1.098,0.069c0.262,0.068,0.48,0.218,0.657,0.447 s0.265,0.525,0.265,0.89c0,0.28-0.051,0.516-0.152,0.707s-0.231,0.342-0.388,0.45c-0.157,0.109-0.316,0.182-0.479,0.217 c-0.221,0.044-0.539,0.065-0.957,0.065h-0.602v1.724H-271.96z M-271.038,423.472v1.297h0.505c0.363,0,0.606-0.024,0.729-0.072 c0.122-0.048,0.219-0.122,0.288-0.225c0.069-0.102,0.104-0.22,0.104-0.354c0-0.167-0.049-0.304-0.146-0.412 c-0.098-0.107-0.222-0.176-0.371-0.202c-0.109-0.021-0.331-0.031-0.663-0.031H-271.038z"/></g></svg>');
|
||||
width: 30px;
|
||||
height: 30px;
|
||||
.encoded-svg-background('<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 -54.11 193.63 193.63" height="193.63px" width="193.63px" y="0px" x="0px" xml:space="preserve"><defs><style>.cls-1{fill:#DF6737;}</style></defs><path d="M193.16,5.615V5.609c-0.334-0.173-0.671-0.334-1.005-0.497 c-5.356-2.586-11.256-4.287-17.525-4.88c-11.083-1.049-21.673,1.496-30.622,6.678c-6.13-3.477-13.071-5.741-20.542-6.448 c-10.298-0.974-20.17,1.16-28.697,5.629c-0.084,0.044-0.17,0.095-0.251,0.135c-0.207,0.162-0.347,0.414-0.347,0.697 c0,0.492,0.392,0.89,0.889,0.89c0.046,0,0.091-0.007,0.139-0.017c0.021-0.002,0.042-0.011,0.061-0.015 c4.586-0.848,9.368-1.088,14.243-0.627c13.684,1.293,25.609,5.521,33.975,15.011c0.437,0.455,0.822,0.427,1.266-0.024 c10.523-12.2,26.662-17.021,44.006-15.382c0.968,0.094,1.921,0.213,2.871,0.355c0.33,0.05,0.836,0.134,1.133,0.167 c0.572,0.063,0.88-0.397,0.88-0.891C193.629,6.056,193.485,5.776,193.16,5.615L193.16,5.615z" class="cls-1" /><path d="M173.054,48.544c-0.057-0.028-0.107-0.046-0.154-0.065 c-10.518-4.35-22.021-6.758-34.094-6.758c-19.293,0-37.154,6.127-51.757,16.524c-11.146-4.993-23.497-7.776-36.496-7.776 c-18.485,0-35.648,5.617-49.895,15.237c-0.047,0.029-0.095,0.066-0.149,0.104C0.205,66.044,0,66.418,0,66.848 c0,0.729,0.592,1.323,1.323,1.323c0.086,0,0.174-0.013,0.259-0.03c0.058-0.015,0.107-0.027,0.161-0.048 c8.166-2.456,16.832-3.791,25.798-3.791c23.836,0,45.083,5.634,61.08,20.681c0.038,0.028,0.071,0.065,0.111,0.104 c0.232,0.205,0.53,0.325,0.863,0.325c0.412,0,0.774-0.188,1.018-0.486c0.006,0.005,0.515-0.72,0.773-1.069 c16.246-22.217,43.03-33.172,72.845-33.172c2.129,0,4.246,0.08,6.338,0.225c0.602,0.047,1.873,0.144,1.902,0.144 c0.727,0,1.322-0.591,1.322-1.323C173.796,49.203,173.492,48.752,173.054,48.544L173.054,48.544z" class="cls-1" /></svg>');
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -78,6 +78,31 @@ define([
|
|||
},
|
||||
'LeftMenu': {
|
||||
'settings:apply': _.bind(this.applyFormulaSettings, this)
|
||||
},
|
||||
'Common.Views.Header': {
|
||||
'print': this.onPrint.bind(this),
|
||||
'downloadas': function (opts) {
|
||||
var _main = this.getApplication().getController('Main');
|
||||
var _file_type = _main.appOptions.spreadsheet.fileType,
|
||||
_format;
|
||||
if ( !!_file_type ) {
|
||||
_format = Asc.c_oAscFileType[ _file_type.toUpperCase() ];
|
||||
}
|
||||
|
||||
var _supported = [
|
||||
Asc.c_oAscFileType.XLSX,
|
||||
Asc.c_oAscFileType.ODS,
|
||||
Asc.c_oAscFileType.CSV
|
||||
];
|
||||
|
||||
if ( !_format || _supported.indexOf(_format) < 0 )
|
||||
_format = Asc.c_oAscFileType.PDF;
|
||||
|
||||
_main.api.asc_DownloadAs(_format);
|
||||
},
|
||||
'go:editor': function() {
|
||||
Common.Gateway.requestEditRights();
|
||||
}
|
||||
}
|
||||
});
|
||||
this.editMode = true;
|
||||
|
|
|
@ -142,7 +142,7 @@ define([
|
|||
action : 'opts',
|
||||
caption : this.btnSettingsCaption,
|
||||
canFocused: false
|
||||
})
|
||||
});
|
||||
|
||||
this.items = [];
|
||||
this.items.push(
|
||||
|
|
|
@ -319,9 +319,9 @@ define([
|
|||
Common.UI.Mixtbar.prototype.initialize.call(this, {
|
||||
template: _.template(template),
|
||||
tabs: [
|
||||
{ caption: 'File'/*me.textTabFile*/, action: 'file', extcls: 'canedit'},
|
||||
{ caption: 'Home'/*me.textTabHome*/, action: 'home', extcls: 'canedit'},
|
||||
{ caption: 'Insert'/*me.textTabInsert*/, action: 'ins', extcls: 'canedit'}
|
||||
{ caption: me.textTabFile, action: 'file', extcls: 'canedit'},
|
||||
{ caption: me.textTabHome, action: 'home', extcls: 'canedit'},
|
||||
{ caption: me.textTabInsert, action: 'ins', extcls: 'canedit'}
|
||||
]}
|
||||
);
|
||||
|
||||
|
@ -1280,7 +1280,7 @@ define([
|
|||
});
|
||||
|
||||
if ( me.isCompactView )
|
||||
me.setFolded(true); else
|
||||
me.setFolded(true), me.collapse(); else
|
||||
me.setTab('home');
|
||||
|
||||
return this;
|
||||
|
@ -2057,6 +2057,9 @@ define([
|
|||
capInsertHyperlink: 'Hyperlink',
|
||||
capInsertEquation: 'Equation',
|
||||
capBtnComment: 'Comment',
|
||||
textTabFile: 'File',
|
||||
textTabHome: 'Home',
|
||||
textTabInsert: 'Insert',
|
||||
textSurface: 'Surface'
|
||||
}, SSE.Views.Toolbar || {}));
|
||||
});
|
File diff suppressed because it is too large
Load diff
|
@ -1599,6 +1599,7 @@
|
|||
"SSE.Views.Toolbar.textDiagUpBorder": "Rahmenlinien diagonal nach oben",
|
||||
"SSE.Views.Toolbar.textEntireCol": "Ganze Spalte",
|
||||
"SSE.Views.Toolbar.textEntireRow": "Ganze Zeile",
|
||||
"SSE.Views.Toolbar.textFreezePanes": "Fenster fixieren",
|
||||
"SSE.Views.Toolbar.textHideFBar": "Formelleiste vergeben",
|
||||
"SSE.Views.Toolbar.textHideGridlines": "Gitternetzlinien vergeben",
|
||||
"SSE.Views.Toolbar.textHideHeadings": "Überschriften vergeben",
|
||||
|
|
|
@ -82,6 +82,10 @@
|
|||
"Common.Views.Header.txtAccessRights": "Change access rights",
|
||||
"Common.Views.Header.tipAccessRights": "Manage document access rights",
|
||||
"Common.Views.Header.labelCoUsersDescr": "Document is currently being edited by several users.",
|
||||
"Common.Views.Header.tipViewUsers": "View users and manage document access rights",
|
||||
"Common.Views.Header.tipDownload": "Download file",
|
||||
"Common.Views.Header.tipPrint": "Print file",
|
||||
"Common.Views.Header.tipGoEdit": "Edit current file",
|
||||
"Common.Views.ImageFromUrlDialog.cancelButtonText": "Cancel",
|
||||
"Common.Views.ImageFromUrlDialog.okButtonText": "OK",
|
||||
"Common.Views.ImageFromUrlDialog.textUrl": "Paste an image URL:",
|
||||
|
@ -1636,6 +1640,9 @@
|
|||
"SSE.Views.Toolbar.textRotateUp": "Rotate Text Up",
|
||||
"SSE.Views.Toolbar.textSparks": "Sparklines",
|
||||
"SSE.Views.Toolbar.textStock": "Stock",
|
||||
"SSE.Views.Toolbar.textTabFile": "File",
|
||||
"SSE.Views.Toolbar.textTabHome": "Home",
|
||||
"SSE.Views.Toolbar.textTabInsert": "Insert",
|
||||
"SSE.Views.Toolbar.textSurface": "Surface",
|
||||
"SSE.Views.Toolbar.textTopBorders": "Top Borders",
|
||||
"SSE.Views.Toolbar.textUnderline": "Underline",
|
||||
|
|
|
@ -1599,6 +1599,7 @@
|
|||
"SSE.Views.Toolbar.textDiagUpBorder": "Borde diagonal ascendente",
|
||||
"SSE.Views.Toolbar.textEntireCol": "Toda la columna",
|
||||
"SSE.Views.Toolbar.textEntireRow": "Toda la fila",
|
||||
"SSE.Views.Toolbar.textFreezePanes": "Inmovilizar paneles",
|
||||
"SSE.Views.Toolbar.textHideFBar": "Ocultar barra de fórmulas",
|
||||
"SSE.Views.Toolbar.textHideGridlines": "Ocultar cuadrícula",
|
||||
"SSE.Views.Toolbar.textHideHeadings": "Ocultar títulos",
|
||||
|
|
|
@ -58,7 +58,7 @@
|
|||
"Common.Views.Comments.textCancel": "Annuler",
|
||||
"Common.Views.Comments.textClose": "Fermer",
|
||||
"Common.Views.Comments.textComments": "Commentaires",
|
||||
"Common.Views.Comments.textEdit": "OK",
|
||||
"Common.Views.Comments.textEdit": "Modifier",
|
||||
"Common.Views.Comments.textEnterCommentHint": "Entrez votre commentaire ici",
|
||||
"Common.Views.Comments.textOpenAgain": "Ouvrir à nouveau",
|
||||
"Common.Views.Comments.textReply": "Répondre",
|
||||
|
@ -330,6 +330,7 @@
|
|||
"SSE.Controllers.Main.titleLicenseExp": "Licence expirée",
|
||||
"SSE.Controllers.Main.titleRecalcFormulas": "Calcul en cours...",
|
||||
"SSE.Controllers.Main.titleServerVersion": "L'éditeur est mis à jour",
|
||||
"SSE.Controllers.Main.txtAccent": "Accent",
|
||||
"SSE.Controllers.Main.txtArt": "Votre texte ici",
|
||||
"SSE.Controllers.Main.txtBasicShapes": "Formes de base",
|
||||
"SSE.Controllers.Main.txtButtons": "Boutons",
|
||||
|
@ -343,6 +344,27 @@
|
|||
"SSE.Controllers.Main.txtRectangles": "Rectangles",
|
||||
"SSE.Controllers.Main.txtSeries": "Série",
|
||||
"SSE.Controllers.Main.txtStarsRibbons": "Étoiles et rubans",
|
||||
"SSE.Controllers.Main.txtStyle_Bad": "Bad",
|
||||
"SSE.Controllers.Main.txtStyle_Calculation": "Calculation",
|
||||
"SSE.Controllers.Main.txtStyle_Check_Cell": "Check Cell",
|
||||
"SSE.Controllers.Main.txtStyle_Comma": "Comma",
|
||||
"SSE.Controllers.Main.txtStyle_Currency": "Currency",
|
||||
"SSE.Controllers.Main.txtStyle_Explanatory_Text": "Explanatory Text",
|
||||
"SSE.Controllers.Main.txtStyle_Good": "Good",
|
||||
"SSE.Controllers.Main.txtStyle_Heading_1": "Heading 1",
|
||||
"SSE.Controllers.Main.txtStyle_Heading_2": "Heading 2",
|
||||
"SSE.Controllers.Main.txtStyle_Heading_3": "Heading 3",
|
||||
"SSE.Controllers.Main.txtStyle_Heading_4": "Heading 4",
|
||||
"SSE.Controllers.Main.txtStyle_Input": "Input",
|
||||
"SSE.Controllers.Main.txtStyle_Linked_Cell": "Linked Cell",
|
||||
"SSE.Controllers.Main.txtStyle_Neutral": "Neutral",
|
||||
"SSE.Controllers.Main.txtStyle_Normal": "Normal",
|
||||
"SSE.Controllers.Main.txtStyle_Note": "Note",
|
||||
"SSE.Controllers.Main.txtStyle_Output": "Output",
|
||||
"SSE.Controllers.Main.txtStyle_Percent": "Percent",
|
||||
"SSE.Controllers.Main.txtStyle_Title": "Title",
|
||||
"SSE.Controllers.Main.txtStyle_Total": "Total",
|
||||
"SSE.Controllers.Main.txtStyle_Warning_Text": "Warning Text",
|
||||
"SSE.Controllers.Main.txtXAxis": "Axe X",
|
||||
"SSE.Controllers.Main.txtYAxis": "Axe Y",
|
||||
"SSE.Controllers.Main.unknownErrorText": "Erreur inconnue.",
|
||||
|
@ -782,6 +804,7 @@
|
|||
"SSE.Views.ChartSettings.textSize": "Taille",
|
||||
"SSE.Views.ChartSettings.textStock": "Boursier",
|
||||
"SSE.Views.ChartSettings.textStyle": "Style",
|
||||
"SSE.Views.ChartSettings.textSurface": "Surface",
|
||||
"SSE.Views.ChartSettings.textType": "Type",
|
||||
"SSE.Views.ChartSettings.textWidth": "Largeur",
|
||||
"SSE.Views.ChartSettings.textWinLossSpark": "Positif/Négatif",
|
||||
|
@ -897,6 +920,7 @@
|
|||
"SSE.Views.ChartSettingsDlg.textStock": "Boursier",
|
||||
"SSE.Views.ChartSettingsDlg.textStraight": "Droit",
|
||||
"SSE.Views.ChartSettingsDlg.textStyle": "Style",
|
||||
"SSE.Views.ChartSettingsDlg.textSurface": "Surface",
|
||||
"SSE.Views.ChartSettingsDlg.textTenMillions": "10 000 000",
|
||||
"SSE.Views.ChartSettingsDlg.textTenThousands": "10 000",
|
||||
"SSE.Views.ChartSettingsDlg.textThousands": "Milliers",
|
||||
|
@ -1575,6 +1599,7 @@
|
|||
"SSE.Views.Toolbar.textDiagUpBorder": "Bordure diagonale haut",
|
||||
"SSE.Views.Toolbar.textEntireCol": "Colonne entière",
|
||||
"SSE.Views.Toolbar.textEntireRow": "Ligne entière",
|
||||
"SSE.Views.Toolbar.textFreezePanes": "Verrouiller les volets",
|
||||
"SSE.Views.Toolbar.textHideFBar": "Masquer la barre de formule",
|
||||
"SSE.Views.Toolbar.textHideGridlines": "Masquer le quadrillage",
|
||||
"SSE.Views.Toolbar.textHideHeadings": "Masquer les en-têtes",
|
||||
|
@ -1603,6 +1628,7 @@
|
|||
"SSE.Views.Toolbar.textRotateUp": "Rotation du texte vers le haut",
|
||||
"SSE.Views.Toolbar.textSparks": "Graphiques sparkline",
|
||||
"SSE.Views.Toolbar.textStock": "Boursier",
|
||||
"SSE.Views.Toolbar.textSurface": "Surface",
|
||||
"SSE.Views.Toolbar.textTopBorders": "Bordures supérieures",
|
||||
"SSE.Views.Toolbar.textUnderline": "Souligné",
|
||||
"SSE.Views.Toolbar.textWinLossSpark": "Positif/Négatif",
|
||||
|
|
|
@ -1599,6 +1599,7 @@
|
|||
"SSE.Views.Toolbar.textDiagUpBorder": "Диагональная граница снизу вверх",
|
||||
"SSE.Views.Toolbar.textEntireCol": "Столбец",
|
||||
"SSE.Views.Toolbar.textEntireRow": "Строку",
|
||||
"SSE.Views.Toolbar.textFreezePanes": "Закрепить области",
|
||||
"SSE.Views.Toolbar.textHideFBar": "Скрыть строку формул",
|
||||
"SSE.Views.Toolbar.textHideGridlines": "Скрыть линии сетки",
|
||||
"SSE.Views.Toolbar.textHideHeadings": "Скрыть заголовки",
|
||||
|
|
1765
apps/spreadsheeteditor/main/locale/sk.json
Normal file
1765
apps/spreadsheeteditor/main/locale/sk.json
Normal file
File diff suppressed because it is too large
Load diff
|
@ -1599,6 +1599,7 @@
|
|||
"SSE.Views.Toolbar.textDiagUpBorder": "对角线上边界",
|
||||
"SSE.Views.Toolbar.textEntireCol": "整列",
|
||||
"SSE.Views.Toolbar.textEntireRow": "整行",
|
||||
"SSE.Views.Toolbar.textFreezePanes": "Freeze Panes",
|
||||
"SSE.Views.Toolbar.textHideFBar": "隐藏公式栏",
|
||||
"SSE.Views.Toolbar.textHideGridlines": "隐藏网格线",
|
||||
"SSE.Views.Toolbar.textHideHeadings": "隐藏标题",
|
||||
|
|
|
@ -212,7 +212,7 @@
|
|||
<a data-format="<%= saveas.csv %>" class="item-link no-indicator">
|
||||
<div class="item-content">
|
||||
<div class="item-media">
|
||||
<i class="icon icon-format-CSV"></i>
|
||||
<i class="icon icon-format-csv"></i>
|
||||
</div>
|
||||
<div class="item-inner">
|
||||
<div class="item-title">CSV</div>
|
||||
|
|
487
apps/spreadsheeteditor/mobile/locale/cs.json
Normal file
487
apps/spreadsheeteditor/mobile/locale/cs.json
Normal file
|
@ -0,0 +1,487 @@
|
|||
{
|
||||
"Common.UI.ThemeColorPalette.textStandartColors": "Standardní barvy",
|
||||
"Common.UI.ThemeColorPalette.textThemeColors": "Barvy tématu",
|
||||
"Common.Utils.Metric.txtCm": "cm",
|
||||
"Common.Utils.Metric.txtPt": "pt",
|
||||
"SSE.Controllers.AddChart.txtDiagramTitle": "Nadpis grafu",
|
||||
"SSE.Controllers.AddChart.txtSeries": "Řady",
|
||||
"SSE.Controllers.AddChart.txtXAxis": "Osa X",
|
||||
"SSE.Controllers.AddChart.txtYAxis": "Osa Y",
|
||||
"SSE.Controllers.AddContainer.textChart": "Graf",
|
||||
"SSE.Controllers.AddContainer.textFormula": "Funkce",
|
||||
"SSE.Controllers.AddContainer.textImage": "Obrázek",
|
||||
"SSE.Controllers.AddContainer.textOther": "Ostatní",
|
||||
"SSE.Controllers.AddContainer.textShape": "Tvar",
|
||||
"SSE.Controllers.AddLink.textInvalidRange": "CHYBA! Nesprávný rozsah buňek",
|
||||
"SSE.Controllers.AddLink.txtNotUrl": "Toto pole by mělo obsahovat adresu URL ve formátu 'http://www.example.com'",
|
||||
"SSE.Controllers.AddOther.textEmptyImgUrl": "Musíte upřesnit URL obrázku.",
|
||||
"SSE.Controllers.AddOther.txtNotUrl": "Toto pole by mělo obsahovat adresu URL ve formátu 'http://www.example.com'",
|
||||
"SSE.Controllers.DocumentHolder.menuAddLink": "Přidat odkaz",
|
||||
"SSE.Controllers.DocumentHolder.menuCell": "Buňka",
|
||||
"SSE.Controllers.DocumentHolder.menuCopy": "Kopírovat",
|
||||
"SSE.Controllers.DocumentHolder.menuCut": "Vyjmout",
|
||||
"SSE.Controllers.DocumentHolder.menuDelete": "Odstranit",
|
||||
"SSE.Controllers.DocumentHolder.menuEdit": "Upravit",
|
||||
"SSE.Controllers.DocumentHolder.menuHide": "Skrýt",
|
||||
"SSE.Controllers.DocumentHolder.menuMerge": "Spojit",
|
||||
"SSE.Controllers.DocumentHolder.menuMore": "Více",
|
||||
"SSE.Controllers.DocumentHolder.menuOpenLink": "Otevřít odkaz",
|
||||
"SSE.Controllers.DocumentHolder.menuPaste": "Vložit",
|
||||
"SSE.Controllers.DocumentHolder.menuShow": "Zobrazit",
|
||||
"SSE.Controllers.DocumentHolder.menuUnmerge": "Odpojit",
|
||||
"SSE.Controllers.DocumentHolder.menuUnwrap": "Rozbalit",
|
||||
"SSE.Controllers.DocumentHolder.menuWrap": "Zabalit",
|
||||
"SSE.Controllers.DocumentHolder.sheetCancel": "Zrušit",
|
||||
"SSE.Controllers.DocumentHolder.warnMergeLostData": "Operace může zničit data ve vybraných buňkách.<br>Chcete pokračovat?",
|
||||
"SSE.Controllers.EditCell.textAuto": "Automaticky",
|
||||
"SSE.Controllers.EditCell.textFonts": "Fonty",
|
||||
"SSE.Controllers.EditCell.textPt": "pt",
|
||||
"SSE.Controllers.EditChart.errorMaxRows": "CHYBA! Maximální počet datových řad v grafu je 255.",
|
||||
"SSE.Controllers.EditChart.errorStockChart": "Nespravné pořadí řádků. Chcete-li vytvořit burzovní graf umístěte data na list v následujícím pořadí:<br> otevírací cena, maximální cena, minimální cena, uzavírací cena.",
|
||||
"SSE.Controllers.EditChart.textAuto": "Automaticky",
|
||||
"SSE.Controllers.EditChart.textBetweenTickMarks": "Mezi značkami",
|
||||
"SSE.Controllers.EditChart.textBillions": "Miliardy",
|
||||
"SSE.Controllers.EditChart.textBottom": "Dole",
|
||||
"SSE.Controllers.EditChart.textCenter": "Střed",
|
||||
"SSE.Controllers.EditChart.textCross": "Kříž",
|
||||
"SSE.Controllers.EditChart.textCustom": "Vlastní",
|
||||
"SSE.Controllers.EditChart.textFit": "Přizpůsobit šířku",
|
||||
"SSE.Controllers.EditChart.textFixed": "Fixní",
|
||||
"SSE.Controllers.EditChart.textHigh": "Vysoký",
|
||||
"SSE.Controllers.EditChart.textHorizontal": "Horizontálně",
|
||||
"SSE.Controllers.EditChart.textHundredMil": "100 000 000",
|
||||
"SSE.Controllers.EditChart.textHundreds": "Stovky",
|
||||
"SSE.Controllers.EditChart.textHundredThousands": "100 000",
|
||||
"SSE.Controllers.EditChart.textIn": "Uvnitř",
|
||||
"SSE.Controllers.EditChart.textInnerBottom": "Uvnitř dole",
|
||||
"SSE.Controllers.EditChart.textInnerTop": "Uvnitř nahoře",
|
||||
"SSE.Controllers.EditChart.textLeft": "Vlevo",
|
||||
"SSE.Controllers.EditChart.textLeftOverlay": "Levé překrytí",
|
||||
"SSE.Controllers.EditChart.textLow": "Nízký",
|
||||
"SSE.Controllers.EditChart.textManual": "Manuál",
|
||||
"SSE.Controllers.EditChart.textMaxValue": "Maximální hodnota",
|
||||
"SSE.Controllers.EditChart.textMillions": "Milióny",
|
||||
"SSE.Controllers.EditChart.textMinValue": "Minimální hodnota",
|
||||
"SSE.Controllers.EditChart.textNextToAxis": "Vedle osy",
|
||||
"SSE.Controllers.EditChart.textNone": "Žádný",
|
||||
"SSE.Controllers.EditChart.textNoOverlay": "Bez překrytí",
|
||||
"SSE.Controllers.EditChart.textOnTickMarks": "Na značkách",
|
||||
"SSE.Controllers.EditChart.textOut": "Vně",
|
||||
"SSE.Controllers.EditChart.textOuterTop": "Vně nahoře",
|
||||
"SSE.Controllers.EditChart.textOverlay": "Překrytí",
|
||||
"SSE.Controllers.EditChart.textRight": "Vpravo",
|
||||
"SSE.Controllers.EditChart.textRightOverlay": "Pravé překrytí",
|
||||
"SSE.Controllers.EditChart.textRotated": "Otočený",
|
||||
"SSE.Controllers.EditChart.textTenMillions": "10 000 000",
|
||||
"SSE.Controllers.EditChart.textTenThousands": "10 000",
|
||||
"SSE.Controllers.EditChart.textThousands": "Tisíce",
|
||||
"SSE.Controllers.EditChart.textTop": "Nahoře",
|
||||
"SSE.Controllers.EditChart.textTrillions": "Biliony",
|
||||
"SSE.Controllers.EditChart.textValue": "Hodnota",
|
||||
"SSE.Controllers.EditContainer.textCell": "Buňka",
|
||||
"SSE.Controllers.EditContainer.textChart": "Graf",
|
||||
"SSE.Controllers.EditContainer.textHyperlink": "Hypertextový odkaz",
|
||||
"SSE.Controllers.EditContainer.textImage": "Obrázek",
|
||||
"SSE.Controllers.EditContainer.textSettings": "Nastavení",
|
||||
"SSE.Controllers.EditContainer.textShape": "Tvar",
|
||||
"SSE.Controllers.EditContainer.textTable": "Tabulka",
|
||||
"SSE.Controllers.EditContainer.textText": "Text",
|
||||
"SSE.Controllers.EditHyperlink.textDefault": "Vybraný rozsah",
|
||||
"SSE.Controllers.EditHyperlink.textEmptyImgUrl": "Musíte upřesnit URL obrázku.",
|
||||
"SSE.Controllers.EditHyperlink.textExternalLink": "Externí odkaz",
|
||||
"SSE.Controllers.EditHyperlink.textInternalLink": "Vnitřní rozsah dat",
|
||||
"SSE.Controllers.EditHyperlink.textInvalidRange": "Neplatný rozsah buňky",
|
||||
"SSE.Controllers.EditHyperlink.txtNotUrl": "Toto pole by mělo obsahovat adresu URL ve formátu \"http://www.example.com\"",
|
||||
"SSE.Controllers.Main.advCSVOptions": "Vyberte možnosti CSV",
|
||||
"SSE.Controllers.Main.advDRMEnterPassword": "Zadejte vaše heslo:",
|
||||
"SSE.Controllers.Main.advDRMOptions": "Chráněný soubor",
|
||||
"SSE.Controllers.Main.advDRMPassword": "Heslo",
|
||||
"SSE.Controllers.Main.applyChangesTextText": "Načítání dat...",
|
||||
"SSE.Controllers.Main.applyChangesTitleText": "Načítání dat",
|
||||
"SSE.Controllers.Main.convertationTimeoutText": "Vypršel čas konverze.",
|
||||
"SSE.Controllers.Main.criticalErrorExtText": "Stisknutím tlačítka \"OK\" se vrátíte do seznamu dokumentů.",
|
||||
"SSE.Controllers.Main.criticalErrorTitle": "Chyba",
|
||||
"SSE.Controllers.Main.defaultTitleText": "ONLYOFFICE Tabulkový editor",
|
||||
"SSE.Controllers.Main.downloadErrorText": "Stahování selhalo.",
|
||||
"SSE.Controllers.Main.downloadMergeText": "Stahování...",
|
||||
"SSE.Controllers.Main.downloadMergeTitle": "Stahuji",
|
||||
"SSE.Controllers.Main.downloadTextText": "Stahování dokumentu...",
|
||||
"SSE.Controllers.Main.downloadTitleText": "Stahování dokumentu",
|
||||
"SSE.Controllers.Main.errorAccessDeny": "Pokoušíte se provést akci, na kterou nemáte oprávnění.<br>Prosím, kontaktujte administrátora vašeho Dokumentového serveru.",
|
||||
"SSE.Controllers.Main.errorArgsRange": "Chyba v zadaném vzorci.<br>Použitý nesprávný rozsah argumentu.",
|
||||
"SSE.Controllers.Main.errorAutoFilterChange": "Operace není povolena, protože se pokouší posunout buňky v tabulce ve vašem pracovním listu.",
|
||||
"SSE.Controllers.Main.errorAutoFilterChangeFormatTable": "Operaci nelze provést pro vybrané buňky, protože nelze přesunout část tabulky.<br>Vyberte jinou oblast dat tak, aby byla celá tabulka byla posunuta a zkuste to znovu.",
|
||||
"SSE.Controllers.Main.errorAutoFilterDataRange": "Operaci nelze provést pro zvolený rozsah buněk.<br>Vyberte jednotnou oblast dat odlišnou od již existující a zkuste to znovu.",
|
||||
"SSE.Controllers.Main.errorAutoFilterHiddenRange": "Operaci nelze provést, protože oblast obsahuje filtrované buňky.<br>Prosím, odkryjte filtrované prvky a zkuste to znovu.",
|
||||
"SSE.Controllers.Main.errorBadImageUrl": "Adresa URL obrázku je nesprávná",
|
||||
"SSE.Controllers.Main.errorCoAuthoringDisconnect": "Spojení se serverem ztraceno. Dokument nyní nelze upravovat.",
|
||||
"SSE.Controllers.Main.errorConnectToServer": "Dokument nelze uložit. Prosím zkontrolujte nastavení připojení nebo kontaktujte administrátora.<br>Po kliknutí na tlačítko \"OK\", budete vyzváni ke stažení dokumentu.<br><br> Více informací o připojení k dokumentovému serveru naleznete na <a href=\"https://api.onlyoffice.com/editors/callback\" target=\"_blank\">here</a>",
|
||||
"SSE.Controllers.Main.errorCopyMultiselectArea": "Tento příkaz nelze použít s více výběry.<br>Vyberte jeden z rozsahů a zkuste to znovu.",
|
||||
"SSE.Controllers.Main.errorCountArg": "Chyba v zadaném vzorci.<br>Použitý neprávný počet argumentů.",
|
||||
"SSE.Controllers.Main.errorCountArgExceed": "Chyba v zadaném vzorci.<br>Překročen počet argumentů.",
|
||||
"SSE.Controllers.Main.errorCreateDefName": "Stávající pojmenované rozsahy nelze měnit a nové nyní nemůžou být vytvořeny, protože některé z nich jsou upravovány.",
|
||||
"SSE.Controllers.Main.errorDatabaseConnection": "Externí chyba.<br>Chyba spojení s databází. Prosím kontaktujte podporu, pokud chyba přetrvává.",
|
||||
"SSE.Controllers.Main.errorDataRange": "Nesprávný datový rozsah.",
|
||||
"SSE.Controllers.Main.errorDefaultMessage": "Kód chyby: %1",
|
||||
"SSE.Controllers.Main.errorFilePassProtect": "Dokument je chráněn heslem a nelze otevřít.",
|
||||
"SSE.Controllers.Main.errorFileRequest": "Externí chyba.<br>Chyba souborového požadavku. Obraťte se prosím na podporu v případě, že chyba přetrvává.",
|
||||
"SSE.Controllers.Main.errorFileVKey": "Externí chyba.<br>Nesprávný bezpečnostní klíč. Obraťte se prosím na podporu v případě, že chyba přetrvává.",
|
||||
"SSE.Controllers.Main.errorFillRange": "Nelze vyplnit vybranou oblast buněk.<br>Všechny sloučené buňky musí být stejně velké.",
|
||||
"SSE.Controllers.Main.errorFormulaName": "Chyba v zadaném vzorci.<br>Použité nesprávné jméno vzorce.",
|
||||
"SSE.Controllers.Main.errorFormulaParsing": "Interní chyba při analýze vzorce.",
|
||||
"SSE.Controllers.Main.errorFrmlWrongReferences": "Funkce odkazuje na list, který neexistuje.<br>Prosím, zkontrolujte data a zkuste to znovu.",
|
||||
"SSE.Controllers.Main.errorInvalidRef": "Zadejte správný název pro výběr nebo platnou referenci.",
|
||||
"SSE.Controllers.Main.errorKeyEncrypt": "Neznámý klíč deskriptoru",
|
||||
"SSE.Controllers.Main.errorKeyExpire": "Klíč deskriptoru vypršel",
|
||||
"SSE.Controllers.Main.errorLockedAll": "Operace nemůže být provedena, protože list byl uzamčen jiným uživatelem.",
|
||||
"SSE.Controllers.Main.errorLockedWorksheetRename": "V tuto chvíli list nelze přejmenovat, protože je přejmenováván jiným uživatelem",
|
||||
"SSE.Controllers.Main.errorMailMergeLoadFile": "Načítání selhalo",
|
||||
"SSE.Controllers.Main.errorMailMergeSaveFile": "Spojování selhalo.",
|
||||
"SSE.Controllers.Main.errorMoveRange": "Nelze změnit část sloučené buňky",
|
||||
"SSE.Controllers.Main.errorOpenWarning": "Délka jednoho ze vzorců v souboru překročila<br>povolený počet znaků, tudíž byl vzorec odstraněn.",
|
||||
"SSE.Controllers.Main.errorOperandExpected": "Zadaná funkce syntaxe není správná. Prosím, zkontrolujte zda nechybí jedna ze závorek - '(' or ')'.",
|
||||
"SSE.Controllers.Main.errorPasteMaxRange": "Kopírovaná oblast a oblast pro vložení nejsou odpovídající.<br>Prosím, vyberte oblast se stejnou velikosti nebo klikněte na první buňku v řádku a vložte zkopírované buňky.",
|
||||
"SSE.Controllers.Main.errorPrintMaxPagesCount": "Bohužel, v aktuální verzi programu není možné vytisknout více jak 1500 stránek najednou.<br>Toto omezení bude nadcházejících vydáních odstraněno.",
|
||||
"SSE.Controllers.Main.errorProcessSaveResult": "Ukládání selhalo",
|
||||
"SSE.Controllers.Main.errorServerVersion": "Verze editoru byla aktualizována. Stránka bude znovu načtena, aby se provedly změny.",
|
||||
"SSE.Controllers.Main.errorSessionAbsolute": "Úprava editace dokumentu vypršela. Prosím, znovu načtěte stránku.",
|
||||
"SSE.Controllers.Main.errorSessionIdle": "Dokument nebyl po dlouhou dobu upravován. Prosím, znovu načtěte stránku.",
|
||||
"SSE.Controllers.Main.errorSessionToken": "Připojení k serveru bylo přerušeno. Prosím, znovu načtěte stránku.",
|
||||
"SSE.Controllers.Main.errorStockChart": "Nespravné pořadí řádků. Chcete-li vytvořit burzovní graf umístěte data na list v následujícím pořadí:<br> otevírací cena, maximální cena, minimální cena, uzavírací cena.",
|
||||
"SSE.Controllers.Main.errorToken": "Dokument zabezpečení tokenu má chybný formát.<br> Prosím, kontaktujte administrátora vašeho Dokumentového serveru.",
|
||||
"SSE.Controllers.Main.errorTokenExpire": "Dokument bezpečnostního tokenu vypršel.<br>Prosím, kontaktujte administrátora vašeho Dokumentového serveru.",
|
||||
"SSE.Controllers.Main.errorUnexpectedGuid": "Externí chyba.<br>Neočekávané GUID. Obraťte se prosím na podporu v případě, že chyba přetrvává.",
|
||||
"SSE.Controllers.Main.errorUpdateVersion": "Verze souboru byla změněna. Stránka bude znovu načtena.",
|
||||
"SSE.Controllers.Main.errorUserDrop": "Tento soubor není nyní přístupný.",
|
||||
"SSE.Controllers.Main.errorUsersExceed": "Počet uživatelů povolených cenovým plánem byl překročen",
|
||||
"SSE.Controllers.Main.errorViewerDisconnect": "Spojení je ztraceno. Stále můžete zobrazit dokument,<br>ale nebudete moct stahovat ani tisknout, dokud nebude obnoveno připojení.",
|
||||
"SSE.Controllers.Main.errorWrongBracketsCount": "Chyba v zadaném vzorci.<br>Použitý nesprávný počet závorek.",
|
||||
"SSE.Controllers.Main.errorWrongOperator": "Chyba v zadaném vzorci.Použitý nesprávný operátor.<br>Prosím, opravte chybu.",
|
||||
"SSE.Controllers.Main.leavePageText": "V tomto dokumentu máte neuložené změny. Klikněte na tlačítko \"Zůstat na této stránce\" a počkejte na automatické ukládání dokumentu.Klikněte na tlačítko \"Opustit tuto stránku\", abyste zrušili všechny neuložené změny.",
|
||||
"SSE.Controllers.Main.loadFontsTextText": "Načítání dat...",
|
||||
"SSE.Controllers.Main.loadFontsTitleText": "Načítání dat",
|
||||
"SSE.Controllers.Main.loadFontTextText": "Načítání dat...",
|
||||
"SSE.Controllers.Main.loadFontTitleText": "Načítání dat",
|
||||
"SSE.Controllers.Main.loadImagesTextText": "Načítání obrázků...",
|
||||
"SSE.Controllers.Main.loadImagesTitleText": "Načítání obrázků",
|
||||
"SSE.Controllers.Main.loadImageTextText": "Načítání obrázku...",
|
||||
"SSE.Controllers.Main.loadImageTitleText": "Načítání obrázku",
|
||||
"SSE.Controllers.Main.loadingDocumentTextText": "Načítám dokument...",
|
||||
"SSE.Controllers.Main.loadingDocumentTitleText": "Načítání dokumentu",
|
||||
"SSE.Controllers.Main.mailMergeLoadFileText": "Načítání datového zdroje...",
|
||||
"SSE.Controllers.Main.mailMergeLoadFileTitle": "Načítání datového zdroje",
|
||||
"SSE.Controllers.Main.notcriticalErrorTitle": "Varování",
|
||||
"SSE.Controllers.Main.openErrorText": "Při otevírání souboru došlo k chybě",
|
||||
"SSE.Controllers.Main.openTextText": "Otevírání dokumentu...",
|
||||
"SSE.Controllers.Main.openTitleText": "Otevírání dokumentu",
|
||||
"SSE.Controllers.Main.printTextText": "Tisknutí dokumentu...",
|
||||
"SSE.Controllers.Main.printTitleText": "Tisknutí dokumentu",
|
||||
"SSE.Controllers.Main.reloadButtonText": "Znovu načíst stránku",
|
||||
"SSE.Controllers.Main.requestEditFailedMessageText": "Někdo právě upravuje tento dokument. Prosím zkuste to znovu později.",
|
||||
"SSE.Controllers.Main.requestEditFailedTitleText": "Přístup zamítnut",
|
||||
"SSE.Controllers.Main.saveErrorText": "Během ukládání souboru došlo k chybě",
|
||||
"SSE.Controllers.Main.savePreparingText": "Příprava na ukládání",
|
||||
"SSE.Controllers.Main.savePreparingTitle": "Příprava ukládání. Prosím čekejte...",
|
||||
"SSE.Controllers.Main.saveTextText": "Ukládání dokumentu...",
|
||||
"SSE.Controllers.Main.saveTitleText": "Ukládání dokumentu",
|
||||
"SSE.Controllers.Main.sendMergeText": "Odesílaní hromadné zprávy...",
|
||||
"SSE.Controllers.Main.sendMergeTitle": "Odesílaní hromadné zprávy",
|
||||
"SSE.Controllers.Main.textAnonymous": "Anonymní",
|
||||
"SSE.Controllers.Main.textBack": "Zpět",
|
||||
"SSE.Controllers.Main.textBuyNow": "Navštívit webovou stránku",
|
||||
"SSE.Controllers.Main.textCancel": "Zrušit",
|
||||
"SSE.Controllers.Main.textClose": "Zavřít",
|
||||
"SSE.Controllers.Main.textContactUs": "Kontaktujte prodejce",
|
||||
"SSE.Controllers.Main.textDone": "Hotovo",
|
||||
"SSE.Controllers.Main.textLoadingDocument": "Načítání dokumentu",
|
||||
"SSE.Controllers.Main.textNoLicenseTitle": "ONLYOFFICE open source verze",
|
||||
"SSE.Controllers.Main.textOK": "OK",
|
||||
"SSE.Controllers.Main.textPassword": "Heslo",
|
||||
"SSE.Controllers.Main.textPreloader": "Nahrávám...",
|
||||
"SSE.Controllers.Main.textShape": "Tvar",
|
||||
"SSE.Controllers.Main.textStrict": "Přísný režim",
|
||||
"SSE.Controllers.Main.textTryUndoRedo": "Funkce zpět/zopakovat jsou vypnuty pro rychlý co-editační režim.<br>Klikněte na tlačítko \"Přísný režim\", abyste přešli do přísného co-editačního režimu a abyste upravovali soubor bez rušení ostatních uživatelů a odeslali vaše změny jen po jejich uložení. Pomocí Rozšířeného nastavení editoru můžete přepínat mezi co-editačními režimy.",
|
||||
"SSE.Controllers.Main.textUsername": "Uživatelské jméno ",
|
||||
"SSE.Controllers.Main.titleLicenseExp": "Platnost licence vypršela",
|
||||
"SSE.Controllers.Main.titleServerVersion": "Editor byl aktualizován",
|
||||
"SSE.Controllers.Main.titleUpdateVersion": "Verze změněna",
|
||||
"SSE.Controllers.Main.txtAccent": "Akcent",
|
||||
"SSE.Controllers.Main.txtArt": "Zde napište text",
|
||||
"SSE.Controllers.Main.txtBasicShapes": "Základní tvary",
|
||||
"SSE.Controllers.Main.txtButtons": "Tlačítka",
|
||||
"SSE.Controllers.Main.txtCallouts": "Bubliny",
|
||||
"SSE.Controllers.Main.txtCharts": "Grafy",
|
||||
"SSE.Controllers.Main.txtDelimiter": "Oddělovač",
|
||||
"SSE.Controllers.Main.txtDiagramTitle": "Nadpis grafu",
|
||||
"SSE.Controllers.Main.txtEditingMode": "Nastavit editační režim...",
|
||||
"SSE.Controllers.Main.txtEncoding": "Kódování",
|
||||
"SSE.Controllers.Main.txtErrorLoadHistory": "Načítání historie selhalo",
|
||||
"SSE.Controllers.Main.txtFiguredArrows": "Šipky",
|
||||
"SSE.Controllers.Main.txtLines": "Čáry",
|
||||
"SSE.Controllers.Main.txtMath": "Matematika",
|
||||
"SSE.Controllers.Main.txtRectangles": "Obdelníky",
|
||||
"SSE.Controllers.Main.txtSeries": "Řady",
|
||||
"SSE.Controllers.Main.txtSpace": "Prostor",
|
||||
"SSE.Controllers.Main.txtStarsRibbons": "Hvězdy a stuhy",
|
||||
"SSE.Controllers.Main.txtStyle_Bad": "Špatný",
|
||||
"SSE.Controllers.Main.txtStyle_Calculation": "Výpočet",
|
||||
"SSE.Controllers.Main.txtStyle_Check_Cell": "Zkontrolujte buňku",
|
||||
"SSE.Controllers.Main.txtStyle_Comma": "Čárka",
|
||||
"SSE.Controllers.Main.txtStyle_Currency": "Měna",
|
||||
"SSE.Controllers.Main.txtStyle_Explanatory_Text": "Vysvětlující text",
|
||||
"SSE.Controllers.Main.txtStyle_Good": "Dobrý",
|
||||
"SSE.Controllers.Main.txtStyle_Heading_1": "Nadpis 1",
|
||||
"SSE.Controllers.Main.txtStyle_Heading_2": "Nadpis 2",
|
||||
"SSE.Controllers.Main.txtStyle_Heading_3": "Nadpis 3",
|
||||
"SSE.Controllers.Main.txtStyle_Heading_4": "Nadpis 4",
|
||||
"SSE.Controllers.Main.txtStyle_Input": "Vstup",
|
||||
"SSE.Controllers.Main.txtStyle_Linked_Cell": "Spojená buňka",
|
||||
"SSE.Controllers.Main.txtStyle_Neutral": "Neutrální",
|
||||
"SSE.Controllers.Main.txtStyle_Normal": "Normální",
|
||||
"SSE.Controllers.Main.txtStyle_Note": "Poznámka",
|
||||
"SSE.Controllers.Main.txtStyle_Output": "Výstup",
|
||||
"SSE.Controllers.Main.txtStyle_Percent": "Procento",
|
||||
"SSE.Controllers.Main.txtStyle_Title": "Titulek",
|
||||
"SSE.Controllers.Main.txtStyle_Total": "Celkem",
|
||||
"SSE.Controllers.Main.txtStyle_Warning_Text": "Varovný text",
|
||||
"SSE.Controllers.Main.txtTab": "Tabulátory",
|
||||
"SSE.Controllers.Main.txtXAxis": "Osa X",
|
||||
"SSE.Controllers.Main.txtYAxis": "Osa Y",
|
||||
"SSE.Controllers.Main.unknownErrorText": "Neznámá chyba.",
|
||||
"SSE.Controllers.Main.unsupportedBrowserErrorText ": "Váš prohlížeč není podporován.",
|
||||
"SSE.Controllers.Main.uploadImageExtMessage": "Neznámý formát obrázku.",
|
||||
"SSE.Controllers.Main.uploadImageFileCountMessage": "Žádné obrázky nenahrány.",
|
||||
"SSE.Controllers.Main.uploadImageSizeMessage": "Překročení maximální velikost obrázku.",
|
||||
"SSE.Controllers.Main.uploadImageTextText": "Nahrávání obrázku...",
|
||||
"SSE.Controllers.Main.uploadImageTitleText": "Nahrávání obrázku",
|
||||
"SSE.Controllers.Main.warnLicenseExp": "Platnost vaší licence vypršela.<br>Prosím, aktualizujte vaší licenci a obnovte stránku.",
|
||||
"SSE.Controllers.Main.warnNoLicense": "Používáte verzi open source ONLYOFFICE. Verze má omezení pro souběžné připojení k dokumentovému serveru (20 připojení najednou).<br>Pokud budete potřebovat více, tak prosím zvažte koupi komerční licence.",
|
||||
"SSE.Controllers.Main.warnProcessRightsChange": "Bylo Vám odebráno právo upravovat tento soubor.",
|
||||
"SSE.Controllers.Search.textNoTextFound": "Text nebyl nalezen",
|
||||
"SSE.Controllers.Search.textReplaceAll": "Nahradit vše",
|
||||
"SSE.Controllers.Settings.notcriticalErrorTitle": "Varování",
|
||||
"SSE.Controllers.Settings.warnDownloadAs": "Pokud budete pokračovat v ukládání v tomto formátu, vše kromě textu bude ztraceno.<br>Opravdu chcete pokračovat?",
|
||||
"SSE.Controllers.Statusbar.errorLastSheet": "Sešit musí mít alespoň jeden viditelný list",
|
||||
"SSE.Controllers.Statusbar.errorRemoveSheet": "Nelze odstranit pracovní list.",
|
||||
"SSE.Controllers.Statusbar.menuDelete": "Odstranit",
|
||||
"SSE.Controllers.Statusbar.menuDuplicate": "Duplikát",
|
||||
"SSE.Controllers.Statusbar.menuHide": "Skrýt",
|
||||
"SSE.Controllers.Statusbar.menuUnhide": "Odkrýt",
|
||||
"SSE.Controllers.Statusbar.strSheet": "List",
|
||||
"SSE.Controllers.Statusbar.textExternalLink": "Externí odkaz",
|
||||
"SSE.Controllers.Statusbar.warnDeleteSheet": "Pracovní list možná obsahuje data. Pokračovat v operaci?",
|
||||
"SSE.Controllers.Toolbar.dlgLeaveMsgText": "V tomto dokumentu máte neuložené změny. Klikněte na tlačítko \"Zůstat na této stránce\" a počkejte na automatické ukládání dokumentu.Klikněte na tlačítko \"Opustit tuto stránku\", abyste zrušili všechny neuložené změny.",
|
||||
"SSE.Controllers.Toolbar.dlgLeaveTitleText": "Opouštíte aplikaci",
|
||||
"SSE.Controllers.Toolbar.leaveButtonText": "Opustit tuto stránku",
|
||||
"SSE.Controllers.Toolbar.stayButtonText": "Zůstat na této stránce",
|
||||
"SSE.Views.AddFunction.sCatDateAndTime": "Datum a čas",
|
||||
"SSE.Views.AddFunction.sCatEngineering": "Strojírenské",
|
||||
"SSE.Views.AddFunction.sCatFinancial": "Finanční",
|
||||
"SSE.Views.AddFunction.sCatInformation": "Informace",
|
||||
"SSE.Views.AddFunction.sCatLogical": "Logický",
|
||||
"SSE.Views.AddFunction.sCatLookupAndReference": "Hledání a reference",
|
||||
"SSE.Views.AddFunction.sCatMathematic": "Matematika a trigonometrie",
|
||||
"SSE.Views.AddFunction.sCatStatistical": "Statistické",
|
||||
"SSE.Views.AddFunction.sCatTextAndData": "Text a data",
|
||||
"SSE.Views.AddFunction.textBack": "Zpět",
|
||||
"SSE.Views.AddFunction.textGroups": "Kategorie",
|
||||
"SSE.Views.AddLink.textAddLink": "Přidat odkaz",
|
||||
"SSE.Views.AddLink.textAddress": "Adresa",
|
||||
"SSE.Views.AddLink.textDisplay": "Zobrazit",
|
||||
"SSE.Views.AddLink.textExternalLink": "Externí odkaz",
|
||||
"SSE.Views.AddLink.textInsert": "Vložit",
|
||||
"SSE.Views.AddLink.textInternalLink": "Vnitřní rozsah dat",
|
||||
"SSE.Views.AddLink.textLink": "Odkaz",
|
||||
"SSE.Views.AddLink.textLinkSettings": "Nastavení odkazů",
|
||||
"SSE.Views.AddLink.textLinkType": "Typ odkazu",
|
||||
"SSE.Views.AddLink.textRange": "Rozsah",
|
||||
"SSE.Views.AddLink.textRequired": "Požadovaný",
|
||||
"SSE.Views.AddLink.textSheet": "List",
|
||||
"SSE.Views.AddLink.textTip": "Nápověda",
|
||||
"SSE.Views.AddOther.textAddress": "Adresa",
|
||||
"SSE.Views.AddOther.textBack": "Zpět",
|
||||
"SSE.Views.AddOther.textFilter": "Filtr",
|
||||
"SSE.Views.AddOther.textFromLibrary": "Obrázek z knihovny",
|
||||
"SSE.Views.AddOther.textFromURL": "Obrázek z adresy URL",
|
||||
"SSE.Views.AddOther.textImageURL": "URL obrázku",
|
||||
"SSE.Views.AddOther.textInsert": "Vložit",
|
||||
"SSE.Views.AddOther.textInsertImage": "Vložit obrázek",
|
||||
"SSE.Views.AddOther.textLink": "Odkaz",
|
||||
"SSE.Views.AddOther.textSort": "Setřídit a filtrovat",
|
||||
"SSE.Views.EditCell.textAccounting": "Účetnictví",
|
||||
"SSE.Views.EditCell.textAlignBottom": "Zarovnat dolů",
|
||||
"SSE.Views.EditCell.textAlignCenter": "Zarovnat na střed",
|
||||
"SSE.Views.EditCell.textAlignLeft": "Zarovnat vlevo",
|
||||
"SSE.Views.EditCell.textAlignMiddle": "Zarovnat na střed",
|
||||
"SSE.Views.EditCell.textAlignRight": "Zarovnat vpravo",
|
||||
"SSE.Views.EditCell.textAlignTop": "Zarovnat nahoru",
|
||||
"SSE.Views.EditCell.textAllBorders": "Všechny ohraničení",
|
||||
"SSE.Views.EditCell.textBack": "Zpět",
|
||||
"SSE.Views.EditCell.textBorderStyle": "Styl ohraničení",
|
||||
"SSE.Views.EditCell.textBottomBorder": "Dolní ohraničení",
|
||||
"SSE.Views.EditCell.textCellStyle": "Styly buňky",
|
||||
"SSE.Views.EditCell.textColor": "Barva",
|
||||
"SSE.Views.EditCell.textCurrency": "Měna",
|
||||
"SSE.Views.EditCell.textDate": "Datum",
|
||||
"SSE.Views.EditCell.textDiagDownBorder": "Ohraničení diagonálně dolů",
|
||||
"SSE.Views.EditCell.textDiagUpBorder": "Ohraničení diagonálně nahoru",
|
||||
"SSE.Views.EditCell.textDollar": "Dollar",
|
||||
"SSE.Views.EditCell.textEuro": "Euro",
|
||||
"SSE.Views.EditCell.textFillColor": "Vyplňte barvu",
|
||||
"SSE.Views.EditCell.textFonts": "Fonty",
|
||||
"SSE.Views.EditCell.textFormat": "Formát",
|
||||
"SSE.Views.EditCell.textGeneral": "Obecný",
|
||||
"SSE.Views.EditCell.textInBorders": "Vložit ohraničení",
|
||||
"SSE.Views.EditCell.textInHorBorder": "Vnitřní vodorovné ohraničení",
|
||||
"SSE.Views.EditCell.textInteger": "Celé číslo",
|
||||
"SSE.Views.EditCell.textInVertBorder": "Vnitřní svislé ohraničení",
|
||||
"SSE.Views.EditCell.textJustified": "Do bloku",
|
||||
"SSE.Views.EditCell.textLeftBorder": "Levé ohraničení",
|
||||
"SSE.Views.EditCell.textMedium": "Střední",
|
||||
"SSE.Views.EditCell.textNoBorder": "Žádné ohraničení",
|
||||
"SSE.Views.EditCell.textNumber": "Číslo",
|
||||
"SSE.Views.EditCell.textPercentage": "Procento",
|
||||
"SSE.Views.EditCell.textPound": "Libra",
|
||||
"SSE.Views.EditCell.textRightBorder": "Pravé ohraničení",
|
||||
"SSE.Views.EditCell.textRouble": "Rubl",
|
||||
"SSE.Views.EditCell.textScientific": "Vědecké",
|
||||
"SSE.Views.EditCell.textSize": "Velikost",
|
||||
"SSE.Views.EditCell.textText": "Text",
|
||||
"SSE.Views.EditCell.textTextColor": "Barva textu",
|
||||
"SSE.Views.EditCell.textTextFormat": "Formát textu",
|
||||
"SSE.Views.EditCell.textThick": "Silný",
|
||||
"SSE.Views.EditCell.textThin": "Tenký",
|
||||
"SSE.Views.EditCell.textTime": "Čas",
|
||||
"SSE.Views.EditCell.textTopBorder": "Horní ohraničení",
|
||||
"SSE.Views.EditCell.textWrapText": "Zalamovat text",
|
||||
"SSE.Views.EditCell.textYen": "Jen",
|
||||
"SSE.Views.EditChart.textAuto": "Automaticky",
|
||||
"SSE.Views.EditChart.textAxisCrosses": "Křížení os",
|
||||
"SSE.Views.EditChart.textAxisOptions": "Možnosti os",
|
||||
"SSE.Views.EditChart.textAxisPosition": "Umístění osy",
|
||||
"SSE.Views.EditChart.textAxisTitle": "Název osy",
|
||||
"SSE.Views.EditChart.textBack": "Zpět",
|
||||
"SSE.Views.EditChart.textBackward": "Posunout zpět",
|
||||
"SSE.Views.EditChart.textBorder": "Ohraničení",
|
||||
"SSE.Views.EditChart.textBottom": "Dole",
|
||||
"SSE.Views.EditChart.textChart": "Graf",
|
||||
"SSE.Views.EditChart.textChartTitle": "Nadpis grafu",
|
||||
"SSE.Views.EditChart.textColor": "Barva",
|
||||
"SSE.Views.EditChart.textCrossesValue": "Překročená hodnota",
|
||||
"SSE.Views.EditChart.textDataLabels": "Popisky dat",
|
||||
"SSE.Views.EditChart.textDesign": "Design",
|
||||
"SSE.Views.EditChart.textDisplayUnits": "Zobrazit jednotky",
|
||||
"SSE.Views.EditChart.textFill": "Výplň",
|
||||
"SSE.Views.EditChart.textForward": "Posunout vpřed",
|
||||
"SSE.Views.EditChart.textHorAxis": "Vodorovná osa",
|
||||
"SSE.Views.EditChart.textHorizontal": "Horizontálně",
|
||||
"SSE.Views.EditChart.textLabelOptions": "Možnosti popisků",
|
||||
"SSE.Views.EditChart.textLabelPos": "Umístění popisků",
|
||||
"SSE.Views.EditChart.textLayout": "Rozložení",
|
||||
"SSE.Views.EditChart.textLeft": "Vlevo",
|
||||
"SSE.Views.EditChart.textLeftOverlay": "Levé překrytí",
|
||||
"SSE.Views.EditChart.textLegend": "Legenda",
|
||||
"SSE.Views.EditChart.textMajor": "Hlavní",
|
||||
"SSE.Views.EditChart.textMajorMinor": "Hlavní a vedlejší",
|
||||
"SSE.Views.EditChart.textMajorType": "Hlavní značky",
|
||||
"SSE.Views.EditChart.textMaxValue": "Maximální hodnota",
|
||||
"SSE.Views.EditChart.textMinor": "Vedlejší",
|
||||
"SSE.Views.EditChart.textMinorType": "Vedlejší značky",
|
||||
"SSE.Views.EditChart.textMinValue": "Minimální hodnota",
|
||||
"SSE.Views.EditChart.textNone": "Žádný",
|
||||
"SSE.Views.EditChart.textNoOverlay": "Bez překrytí",
|
||||
"SSE.Views.EditChart.textOverlay": "Překrytí",
|
||||
"SSE.Views.EditChart.textRemoveChart": "Odstranit graf",
|
||||
"SSE.Views.EditChart.textReorder": "Přerovnat",
|
||||
"SSE.Views.EditChart.textRight": "Vpravo",
|
||||
"SSE.Views.EditChart.textRightOverlay": "Pravé překrytí",
|
||||
"SSE.Views.EditChart.textRotated": "Otočený",
|
||||
"SSE.Views.EditChart.textSize": "Velikost",
|
||||
"SSE.Views.EditChart.textStyle": "Styl",
|
||||
"SSE.Views.EditChart.textTickOptions": "Možnosti značek",
|
||||
"SSE.Views.EditChart.textToBackground": "Přesunout do pozadí",
|
||||
"SSE.Views.EditChart.textToForeground": "Přenést do popředí",
|
||||
"SSE.Views.EditChart.textTop": "Nahoře",
|
||||
"SSE.Views.EditChart.textType": "Typ",
|
||||
"SSE.Views.EditChart.textValReverseOrder": "Hodnoty v obráceném pořádí",
|
||||
"SSE.Views.EditChart.textVerAxis": "Svislá osa",
|
||||
"SSE.Views.EditChart.textVertical": "Svislé",
|
||||
"SSE.Views.EditHyperlink.textBack": "Zpět",
|
||||
"SSE.Views.EditHyperlink.textDisplay": "Zobrazit",
|
||||
"SSE.Views.EditHyperlink.textEditLink": "Upravit odkaz",
|
||||
"SSE.Views.EditHyperlink.textExternalLink": "Externí odkaz",
|
||||
"SSE.Views.EditHyperlink.textInternalLink": "Vnitřní rozsah dat",
|
||||
"SSE.Views.EditHyperlink.textLink": "Odkaz",
|
||||
"SSE.Views.EditHyperlink.textLinkType": "Typ odkazu",
|
||||
"SSE.Views.EditHyperlink.textRange": "Rozsah",
|
||||
"SSE.Views.EditHyperlink.textRemoveLink": "Odstranit odkaz",
|
||||
"SSE.Views.EditHyperlink.textScreenTip": "Nápověda",
|
||||
"SSE.Views.EditHyperlink.textSheet": "List",
|
||||
"SSE.Views.EditImage.textAddress": "Adresa",
|
||||
"SSE.Views.EditImage.textBack": "Zpět",
|
||||
"SSE.Views.EditImage.textBackward": "Posunout zpět",
|
||||
"SSE.Views.EditImage.textDefault": "Výchozí velikost",
|
||||
"SSE.Views.EditImage.textForward": "Posunout vpřed",
|
||||
"SSE.Views.EditImage.textFromLibrary": "Obrázek z knihovny",
|
||||
"SSE.Views.EditImage.textFromURL": "Obrázek z adresy URL",
|
||||
"SSE.Views.EditImage.textImageURL": "URL obrázku",
|
||||
"SSE.Views.EditImage.textLinkSettings": "Nastavení odkazů",
|
||||
"SSE.Views.EditImage.textRemove": "Odstranit obrázek",
|
||||
"SSE.Views.EditImage.textReorder": "Přerovnat",
|
||||
"SSE.Views.EditImage.textReplace": "Nahradit",
|
||||
"SSE.Views.EditImage.textReplaceImg": "Nahradit obrázek",
|
||||
"SSE.Views.EditImage.textToBackground": "Přesunout do pozadí",
|
||||
"SSE.Views.EditImage.textToForeground": "Přenést do popředí",
|
||||
"SSE.Views.EditShape.textBack": "Zpět",
|
||||
"SSE.Views.EditShape.textBackward": "Posunout zpět",
|
||||
"SSE.Views.EditShape.textBorder": "Ohraničení",
|
||||
"SSE.Views.EditShape.textColor": "Barva",
|
||||
"SSE.Views.EditShape.textEffects": "Efekty",
|
||||
"SSE.Views.EditShape.textFill": "Výplň",
|
||||
"SSE.Views.EditShape.textForward": "Posunout vpřed",
|
||||
"SSE.Views.EditShape.textOpacity": "Průhlednost",
|
||||
"SSE.Views.EditShape.textRemoveShape": "Odstranit formu",
|
||||
"SSE.Views.EditShape.textReorder": "Přerovnat",
|
||||
"SSE.Views.EditShape.textReplace": "Nahradit",
|
||||
"SSE.Views.EditShape.textSize": "Velikost",
|
||||
"SSE.Views.EditShape.textStyle": "Styl",
|
||||
"SSE.Views.EditShape.textToBackground": "Přesunout do pozadí",
|
||||
"SSE.Views.EditShape.textToForeground": "Přenést do popředí",
|
||||
"SSE.Views.EditText.textBack": "Zpět",
|
||||
"SSE.Views.EditText.textFillColor": "Vyplňte barvu",
|
||||
"SSE.Views.EditText.textFonts": "Fonty",
|
||||
"SSE.Views.EditText.textSize": "Velikost",
|
||||
"SSE.Views.EditText.textTextColor": "Barva textu",
|
||||
"SSE.Views.Search.textDone": "Hotovo",
|
||||
"SSE.Views.Search.textFind": "Najít",
|
||||
"SSE.Views.Search.textFindAndReplace": "Najít a nahradit",
|
||||
"SSE.Views.Search.textMatchCase": "Shodný případ",
|
||||
"SSE.Views.Search.textMatchCell": "Přizpůsobit buňku",
|
||||
"SSE.Views.Search.textReplace": "Nahradit",
|
||||
"SSE.Views.Search.textSearch": "Hledat",
|
||||
"SSE.Views.Search.textSearchIn": "Hledat v",
|
||||
"SSE.Views.Search.textSheet": "List",
|
||||
"SSE.Views.Search.textWorkbook": "Sešit",
|
||||
"SSE.Views.Settings.textAbout": "O",
|
||||
"SSE.Views.Settings.textAddress": "Adresa",
|
||||
"SSE.Views.Settings.textAuthor": "Autor",
|
||||
"SSE.Views.Settings.textBack": "Zpět",
|
||||
"SSE.Views.Settings.textCreateDate": "Datum vytvoření",
|
||||
"SSE.Views.Settings.textDocInfo": "Info tabulky",
|
||||
"SSE.Views.Settings.textDocTitle": "Nadpis sešitu",
|
||||
"SSE.Views.Settings.textDone": "Hotovo",
|
||||
"SSE.Views.Settings.textDownload": "Stáhnout",
|
||||
"SSE.Views.Settings.textDownloadAs": "Stáhnout jako...",
|
||||
"SSE.Views.Settings.textEditDoc": "Upravit dokument",
|
||||
"SSE.Views.Settings.textEmail": "E-mail",
|
||||
"SSE.Views.Settings.textFind": "Najít",
|
||||
"SSE.Views.Settings.textFindAndReplace": "Najít a nahradit",
|
||||
"SSE.Views.Settings.textHelp": "Nápověda",
|
||||
"SSE.Views.Settings.textLoading": "Nahrávám...",
|
||||
"SSE.Views.Settings.textPoweredBy": "Poháněno",
|
||||
"SSE.Views.Settings.textSettings": "Nastavení",
|
||||
"SSE.Views.Settings.textTel": "Sdělit",
|
||||
"SSE.Views.Settings.textVersion": "Verze",
|
||||
"SSE.Views.Settings.unknownText": "Neznámý",
|
||||
"SSE.Views.Toolbar.textBack": "Zpět"
|
||||
}
|
|
@ -205,6 +205,7 @@
|
|||
"SSE.Controllers.Main.titleLicenseExp": "Lizenz ist abgelaufen",
|
||||
"SSE.Controllers.Main.titleServerVersion": "Editor wurde aktualisiert",
|
||||
"SSE.Controllers.Main.titleUpdateVersion": "Version wurde geändert",
|
||||
"SSE.Controllers.Main.txtAccent": "Akzent",
|
||||
"SSE.Controllers.Main.txtArt": "Hier den Text eingeben",
|
||||
"SSE.Controllers.Main.txtBasicShapes": "Standardformen",
|
||||
"SSE.Controllers.Main.txtButtons": "Buttons",
|
||||
|
@ -222,6 +223,27 @@
|
|||
"SSE.Controllers.Main.txtSeries": "Reihen",
|
||||
"SSE.Controllers.Main.txtSpace": "Leerzeichen",
|
||||
"SSE.Controllers.Main.txtStarsRibbons": "Sterne & Bänder",
|
||||
"SSE.Controllers.Main.txtStyle_Bad": "Schlecht",
|
||||
"SSE.Controllers.Main.txtStyle_Calculation": "Berechnung",
|
||||
"SSE.Controllers.Main.txtStyle_Check_Cell": "Zelle überprüfen",
|
||||
"SSE.Controllers.Main.txtStyle_Comma": "Finanziell",
|
||||
"SSE.Controllers.Main.txtStyle_Currency": "Währung",
|
||||
"SSE.Controllers.Main.txtStyle_Explanatory_Text": "Erklärender Text",
|
||||
"SSE.Controllers.Main.txtStyle_Good": "Gut",
|
||||
"SSE.Controllers.Main.txtStyle_Heading_1": "Heading 1",
|
||||
"SSE.Controllers.Main.txtStyle_Heading_2": "Heading 2",
|
||||
"SSE.Controllers.Main.txtStyle_Heading_3": "Heading 3",
|
||||
"SSE.Controllers.Main.txtStyle_Heading_4": "Heading 4",
|
||||
"SSE.Controllers.Main.txtStyle_Input": "Eingabe",
|
||||
"SSE.Controllers.Main.txtStyle_Linked_Cell": "Verknüpfte Zelle",
|
||||
"SSE.Controllers.Main.txtStyle_Neutral": "Neutral",
|
||||
"SSE.Controllers.Main.txtStyle_Normal": "Normal",
|
||||
"SSE.Controllers.Main.txtStyle_Note": "Hinweis",
|
||||
"SSE.Controllers.Main.txtStyle_Output": "Ausgabe",
|
||||
"SSE.Controllers.Main.txtStyle_Percent": "Prozent",
|
||||
"SSE.Controllers.Main.txtStyle_Title": "Titel\t",
|
||||
"SSE.Controllers.Main.txtStyle_Total": "Insgesamt",
|
||||
"SSE.Controllers.Main.txtStyle_Warning_Text": "Warnungstext",
|
||||
"SSE.Controllers.Main.txtTab": "Tabulator",
|
||||
"SSE.Controllers.Main.txtXAxis": "x-Achse",
|
||||
"SSE.Controllers.Main.txtYAxis": "y-Achse",
|
||||
|
@ -456,6 +478,7 @@
|
|||
"SSE.Views.Settings.textFindAndReplace": "Suchen und ersetzen\t",
|
||||
"SSE.Views.Settings.textHelp": "Hilfe",
|
||||
"SSE.Views.Settings.textLoading": "Ladevorgang...",
|
||||
"SSE.Views.Settings.textPoweredBy": "Betrieben von",
|
||||
"SSE.Views.Settings.textSettings": "Einstellungen",
|
||||
"SSE.Views.Settings.textTel": "Tel.",
|
||||
"SSE.Views.Settings.textVersion": "Version",
|
||||
|
|
|
@ -205,6 +205,7 @@
|
|||
"SSE.Controllers.Main.titleLicenseExp": "License expired",
|
||||
"SSE.Controllers.Main.titleServerVersion": "Editor updated",
|
||||
"SSE.Controllers.Main.titleUpdateVersion": "Version changed",
|
||||
"SSE.Controllers.Main.txtAccent": "Accent",
|
||||
"SSE.Controllers.Main.txtArt": "Your text here",
|
||||
"SSE.Controllers.Main.txtBasicShapes": "Basic Shapes",
|
||||
"SSE.Controllers.Main.txtButtons": "Buttons",
|
||||
|
@ -222,6 +223,27 @@
|
|||
"SSE.Controllers.Main.txtSeries": "Series",
|
||||
"SSE.Controllers.Main.txtSpace": "Space",
|
||||
"SSE.Controllers.Main.txtStarsRibbons": "Stars & Ribbons",
|
||||
"SSE.Controllers.Main.txtStyle_Bad": "Bad",
|
||||
"SSE.Controllers.Main.txtStyle_Calculation": "Calculation",
|
||||
"SSE.Controllers.Main.txtStyle_Check_Cell": "Check Cell",
|
||||
"SSE.Controllers.Main.txtStyle_Comma": "Comma",
|
||||
"SSE.Controllers.Main.txtStyle_Currency": "Currency",
|
||||
"SSE.Controllers.Main.txtStyle_Explanatory_Text": "Explanatory Text",
|
||||
"SSE.Controllers.Main.txtStyle_Good": "Good",
|
||||
"SSE.Controllers.Main.txtStyle_Heading_1": "Heading 1",
|
||||
"SSE.Controllers.Main.txtStyle_Heading_2": "Heading 2",
|
||||
"SSE.Controllers.Main.txtStyle_Heading_3": "Heading 3",
|
||||
"SSE.Controllers.Main.txtStyle_Heading_4": "Heading 4",
|
||||
"SSE.Controllers.Main.txtStyle_Input": "Input",
|
||||
"SSE.Controllers.Main.txtStyle_Linked_Cell": "Linked Cell",
|
||||
"SSE.Controllers.Main.txtStyle_Neutral": "Neutral",
|
||||
"SSE.Controllers.Main.txtStyle_Normal": "Normal",
|
||||
"SSE.Controllers.Main.txtStyle_Note": "Note",
|
||||
"SSE.Controllers.Main.txtStyle_Output": "Output",
|
||||
"SSE.Controllers.Main.txtStyle_Percent": "Percent",
|
||||
"SSE.Controllers.Main.txtStyle_Title": "Title",
|
||||
"SSE.Controllers.Main.txtStyle_Total": "Total",
|
||||
"SSE.Controllers.Main.txtStyle_Warning_Text": "Warning Text",
|
||||
"SSE.Controllers.Main.txtTab": "Tab",
|
||||
"SSE.Controllers.Main.txtXAxis": "X Axis",
|
||||
"SSE.Controllers.Main.txtYAxis": "Y Axis",
|
||||
|
@ -235,28 +257,6 @@
|
|||
"SSE.Controllers.Main.warnLicenseExp": "Your license has expired.<br>Please update your license and refresh the page.",
|
||||
"SSE.Controllers.Main.warnNoLicense": "You are using an open source version of ONLYOFFICE. The version has limitations for concurrent connections to the document server (20 connections at a time).<br>If you need more please consider purchasing a commercial license.",
|
||||
"SSE.Controllers.Main.warnProcessRightsChange": "You have been denied the right to edit the file.",
|
||||
"SSE.Controllers.Main.txtAccent": "Accent",
|
||||
"SSE.Controllers.Main.txtStyle_Normal": "Normal",
|
||||
"SSE.Controllers.Main.txtStyle_Heading_1": "Heading 1",
|
||||
"SSE.Controllers.Main.txtStyle_Heading_2": "Heading 2",
|
||||
"SSE.Controllers.Main.txtStyle_Heading_3": "Heading 3",
|
||||
"SSE.Controllers.Main.txtStyle_Heading_4": "Heading 4",
|
||||
"SSE.Controllers.Main.txtStyle_Title": "Title",
|
||||
"SSE.Controllers.Main.txtStyle_Neutral": "Neutral",
|
||||
"SSE.Controllers.Main.txtStyle_Bad": "Bad",
|
||||
"SSE.Controllers.Main.txtStyle_Good": "Good",
|
||||
"SSE.Controllers.Main.txtStyle_Input": "Input",
|
||||
"SSE.Controllers.Main.txtStyle_Output": "Output",
|
||||
"SSE.Controllers.Main.txtStyle_Calculation": "Calculation",
|
||||
"SSE.Controllers.Main.txtStyle_Check_Cell": "Check Cell",
|
||||
"SSE.Controllers.Main.txtStyle_Explanatory_Text": "Explanatory Text",
|
||||
"SSE.Controllers.Main.txtStyle_Note": "Note",
|
||||
"SSE.Controllers.Main.txtStyle_Linked_Cell": "Linked Cell",
|
||||
"SSE.Controllers.Main.txtStyle_Warning_Text": "Warning Text",
|
||||
"SSE.Controllers.Main.txtStyle_Total": "Total",
|
||||
"SSE.Controllers.Main.txtStyle_Currency": "Currency",
|
||||
"SSE.Controllers.Main.txtStyle_Percent": "Percent",
|
||||
"SSE.Controllers.Main.txtStyle_Comma": "Comma",
|
||||
"SSE.Controllers.Search.textNoTextFound": "Text not found",
|
||||
"SSE.Controllers.Search.textReplaceAll": "Replace All",
|
||||
"SSE.Controllers.Settings.notcriticalErrorTitle": "Warning",
|
||||
|
|
487
apps/spreadsheeteditor/mobile/locale/es.json
Normal file
487
apps/spreadsheeteditor/mobile/locale/es.json
Normal file
|
@ -0,0 +1,487 @@
|
|||
{
|
||||
"Common.UI.ThemeColorPalette.textStandartColors": "Colores estándar",
|
||||
"Common.UI.ThemeColorPalette.textThemeColors": "Colores de tema",
|
||||
"Common.Utils.Metric.txtCm": "cm",
|
||||
"Common.Utils.Metric.txtPt": "pt",
|
||||
"SSE.Controllers.AddChart.txtDiagramTitle": "Título de gráfico",
|
||||
"SSE.Controllers.AddChart.txtSeries": "Serie",
|
||||
"SSE.Controllers.AddChart.txtXAxis": "Eje X",
|
||||
"SSE.Controllers.AddChart.txtYAxis": "Eje Y",
|
||||
"SSE.Controllers.AddContainer.textChart": "Gráfico",
|
||||
"SSE.Controllers.AddContainer.textFormula": "Función",
|
||||
"SSE.Controllers.AddContainer.textImage": "Imagen",
|
||||
"SSE.Controllers.AddContainer.textOther": "Otro",
|
||||
"SSE.Controllers.AddContainer.textShape": "Forma",
|
||||
"SSE.Controllers.AddLink.textInvalidRange": "¡ERROR!Rango de celdas inválido",
|
||||
"SSE.Controllers.AddLink.txtNotUrl": "Este campo debe ser una dirección URL en el formato 'http://www.example.com'",
|
||||
"SSE.Controllers.AddOther.textEmptyImgUrl": "Hay que especificar URL de imagen",
|
||||
"SSE.Controllers.AddOther.txtNotUrl": "Este campo debe ser una dirección URL en el formato 'http://www.example.com'",
|
||||
"SSE.Controllers.DocumentHolder.menuAddLink": "Añadir enlace ",
|
||||
"SSE.Controllers.DocumentHolder.menuCell": "Celda",
|
||||
"SSE.Controllers.DocumentHolder.menuCopy": "Copiar ",
|
||||
"SSE.Controllers.DocumentHolder.menuCut": "Cortar",
|
||||
"SSE.Controllers.DocumentHolder.menuDelete": "Eliminar",
|
||||
"SSE.Controllers.DocumentHolder.menuEdit": "Editar",
|
||||
"SSE.Controllers.DocumentHolder.menuHide": "Ocultar",
|
||||
"SSE.Controllers.DocumentHolder.menuMerge": "Unir",
|
||||
"SSE.Controllers.DocumentHolder.menuMore": "Más",
|
||||
"SSE.Controllers.DocumentHolder.menuOpenLink": "Abrir enlace",
|
||||
"SSE.Controllers.DocumentHolder.menuPaste": "Pegar",
|
||||
"SSE.Controllers.DocumentHolder.menuShow": "Mostrar",
|
||||
"SSE.Controllers.DocumentHolder.menuUnmerge": "Anular combinación",
|
||||
"SSE.Controllers.DocumentHolder.menuUnwrap": "Desenvolver",
|
||||
"SSE.Controllers.DocumentHolder.menuWrap": "Envoltura",
|
||||
"SSE.Controllers.DocumentHolder.sheetCancel": "Cancelar",
|
||||
"SSE.Controllers.DocumentHolder.warnMergeLostData": "Operación puede destruir datos en las celdas seleccionadas.<br>¿Continuar?",
|
||||
"SSE.Controllers.EditCell.textAuto": "Auto",
|
||||
"SSE.Controllers.EditCell.textFonts": "Fuentes",
|
||||
"SSE.Controllers.EditCell.textPt": "pt",
|
||||
"SSE.Controllers.EditChart.errorMaxRows": "ERROR! Número máximo de series de datos para un gráfico es 255.",
|
||||
"SSE.Controllers.EditChart.errorStockChart": "Orden de las filas incorrecto. Para crear un gráfico de cotizaciones introduzca los datos en la hoja de la forma siguiente:<br> precio de apertura, precio máximo, precio mínimo, precio de cierre.",
|
||||
"SSE.Controllers.EditChart.textAuto": "Auto",
|
||||
"SSE.Controllers.EditChart.textBetweenTickMarks": "Entre marcas de graduación",
|
||||
"SSE.Controllers.EditChart.textBillions": "Miles de millones",
|
||||
"SSE.Controllers.EditChart.textBottom": "Abajo ",
|
||||
"SSE.Controllers.EditChart.textCenter": "Al centro",
|
||||
"SSE.Controllers.EditChart.textCross": "Intersección",
|
||||
"SSE.Controllers.EditChart.textCustom": "Personalizado",
|
||||
"SSE.Controllers.EditChart.textFit": "Ajustar al ancho",
|
||||
"SSE.Controllers.EditChart.textFixed": "Fijado",
|
||||
"SSE.Controllers.EditChart.textHigh": "Alta",
|
||||
"SSE.Controllers.EditChart.textHorizontal": "Horizontal ",
|
||||
"SSE.Controllers.EditChart.textHundredMil": "100 000 000",
|
||||
"SSE.Controllers.EditChart.textHundreds": "Cientos",
|
||||
"SSE.Controllers.EditChart.textHundredThousands": "100 000",
|
||||
"SSE.Controllers.EditChart.textIn": "En",
|
||||
"SSE.Controllers.EditChart.textInnerBottom": "Abajo en el interior",
|
||||
"SSE.Controllers.EditChart.textInnerTop": "Arriba en el interior",
|
||||
"SSE.Controllers.EditChart.textLeft": "A la izquierda",
|
||||
"SSE.Controllers.EditChart.textLeftOverlay": "Superposición a la izquierda",
|
||||
"SSE.Controllers.EditChart.textLow": "Bajo",
|
||||
"SSE.Controllers.EditChart.textManual": "Manualmente",
|
||||
"SSE.Controllers.EditChart.textMaxValue": "Valor máximo",
|
||||
"SSE.Controllers.EditChart.textMillions": "Millones",
|
||||
"SSE.Controllers.EditChart.textMinValue": "Valor mínimo",
|
||||
"SSE.Controllers.EditChart.textNextToAxis": "Al lado de eje",
|
||||
"SSE.Controllers.EditChart.textNone": "Ninguno",
|
||||
"SSE.Controllers.EditChart.textNoOverlay": "Sin superposición",
|
||||
"SSE.Controllers.EditChart.textOnTickMarks": "Marcas de graduación",
|
||||
"SSE.Controllers.EditChart.textOut": "Fuera",
|
||||
"SSE.Controllers.EditChart.textOuterTop": "Arriba en el exterior",
|
||||
"SSE.Controllers.EditChart.textOverlay": "Superposición",
|
||||
"SSE.Controllers.EditChart.textRight": "A la derecha",
|
||||
"SSE.Controllers.EditChart.textRightOverlay": "Superposición a la derecha",
|
||||
"SSE.Controllers.EditChart.textRotated": "Girado",
|
||||
"SSE.Controllers.EditChart.textTenMillions": "10 000 000",
|
||||
"SSE.Controllers.EditChart.textTenThousands": "10 000",
|
||||
"SSE.Controllers.EditChart.textThousands": "Miles",
|
||||
"SSE.Controllers.EditChart.textTop": "Superior",
|
||||
"SSE.Controllers.EditChart.textTrillions": "Billones",
|
||||
"SSE.Controllers.EditChart.textValue": "Valor",
|
||||
"SSE.Controllers.EditContainer.textCell": "Celda",
|
||||
"SSE.Controllers.EditContainer.textChart": "Gráfico",
|
||||
"SSE.Controllers.EditContainer.textHyperlink": "Hiperenlace",
|
||||
"SSE.Controllers.EditContainer.textImage": "Imagen",
|
||||
"SSE.Controllers.EditContainer.textSettings": "Ajustes",
|
||||
"SSE.Controllers.EditContainer.textShape": "Forma",
|
||||
"SSE.Controllers.EditContainer.textTable": "Tabla",
|
||||
"SSE.Controllers.EditContainer.textText": "Texto",
|
||||
"SSE.Controllers.EditHyperlink.textDefault": "Rango seleccionado",
|
||||
"SSE.Controllers.EditHyperlink.textEmptyImgUrl": "Hay que especificar URL de imagen.",
|
||||
"SSE.Controllers.EditHyperlink.textExternalLink": "Enlace externo",
|
||||
"SSE.Controllers.EditHyperlink.textInternalLink": "Rango de datos interno",
|
||||
"SSE.Controllers.EditHyperlink.textInvalidRange": "Rango de celdas inválido",
|
||||
"SSE.Controllers.EditHyperlink.txtNotUrl": "Este campo debe ser una dirección URL en el formato \"http://www.example.com\"",
|
||||
"SSE.Controllers.Main.advCSVOptions": "Elegir los parámetros de CSV",
|
||||
"SSE.Controllers.Main.advDRMEnterPassword": "Introduzca su contraseña:",
|
||||
"SSE.Controllers.Main.advDRMOptions": "Archivo protegido",
|
||||
"SSE.Controllers.Main.advDRMPassword": "Contraseña",
|
||||
"SSE.Controllers.Main.applyChangesTextText": "Cargando datos...",
|
||||
"SSE.Controllers.Main.applyChangesTitleText": "Cargando datos",
|
||||
"SSE.Controllers.Main.convertationTimeoutText": "Tiempo de conversión está superado.",
|
||||
"SSE.Controllers.Main.criticalErrorExtText": "Pulse 'OK' para volver a la lista de documentos.",
|
||||
"SSE.Controllers.Main.criticalErrorTitle": "Error",
|
||||
"SSE.Controllers.Main.defaultTitleText": "ONLYOFFICE Spreadsheet Editor",
|
||||
"SSE.Controllers.Main.downloadErrorText": "Error en la descarga",
|
||||
"SSE.Controllers.Main.downloadMergeText": "Descargando...",
|
||||
"SSE.Controllers.Main.downloadMergeTitle": "Descargando",
|
||||
"SSE.Controllers.Main.downloadTextText": "Descargando documento...",
|
||||
"SSE.Controllers.Main.downloadTitleText": "Descargando documento",
|
||||
"SSE.Controllers.Main.errorAccessDeny": "Usted no tiene permisos para realizar la acción que está intentando hacer.<br> Por favor, contacte con el Administrador del Servidor de Documentos.",
|
||||
"SSE.Controllers.Main.errorArgsRange": "Un error en la fórmula introducida.<br>Se usa un intervalo de argumentos incorrecto.",
|
||||
"SSE.Controllers.Main.errorAutoFilterChange": "No se permite la operación porque intenta desplazar celdas en una tabla de su hoja de cálculo.",
|
||||
"SSE.Controllers.Main.errorAutoFilterChangeFormatTable": "No se puede realizar la operación para las celdas seleccionadas porque Usted no puede mover una parte de la tabla.<br> Seleccione otro rango de celdas para que toda la tabla sea seleccionada y intente de nuevo.",
|
||||
"SSE.Controllers.Main.errorAutoFilterDataRange": "No se puede realizar la operación para el rango de celdas seleccionado.<br>Seleccione un rango de datos uniforme diferente del existente y vuelva a intentarlo.",
|
||||
"SSE.Controllers.Main.errorAutoFilterHiddenRange": "No se puede realizar la operación porque el área contiene celdas filtradas.<br>Por favor, muestre los elementos filtrados y vuelva a intentarlo.",
|
||||
"SSE.Controllers.Main.errorBadImageUrl": "URL de imagen es incorrecto",
|
||||
"SSE.Controllers.Main.errorCoAuthoringDisconnect": "Se ha perdido la conexión con servidor. No se puede editar el documento ahora.",
|
||||
"SSE.Controllers.Main.errorConnectToServer": "No se pudo guardar el documento. Por favor, verifique la configuración de conexión o póngase en contacto con el administrador.<br>Al hacer clic en el botón \"Aceptar\", se le pedirá que descargue el documento.<br> Encuentre más información acerca de la conexión Servidor de Documentos<a href=\"https://api.onlyoffice.com/editors/callback\" target=\"_blank\">aquí</a>",
|
||||
"SSE.Controllers.Main.errorCopyMultiselectArea": "No se puede usar este comando con varias selecciones.<br>Seleccione un solo rango y intente de nuevo.",
|
||||
"SSE.Controllers.Main.errorCountArg": "Hay un error en la fórmula introducida.<br>Se usa un número de argumentos incorrecto.",
|
||||
"SSE.Controllers.Main.errorCountArgExceed": "Un error en la fórmula introducida.<br>Número de argumentos es excedido.",
|
||||
"SSE.Controllers.Main.errorCreateDefName": "No se puede editar los rangos con nombre existentes y crear los nuevos,<br>ya que algunos de ellos están editándose en este momento.",
|
||||
"SSE.Controllers.Main.errorDatabaseConnection": "Error externo.<br>Error de conexión a la base de datos. Por favor, póngase en contacto con soporte si el error persiste.",
|
||||
"SSE.Controllers.Main.errorDataRange": "Rango de datos incorrecto.",
|
||||
"SSE.Controllers.Main.errorDefaultMessage": "Código de error: %1",
|
||||
"SSE.Controllers.Main.errorFilePassProtect": "El documento está protegido por una contraseña y no puede ser abierto.",
|
||||
"SSE.Controllers.Main.errorFileRequest": "Error externo.<br>Error de solicitud de archivo. Por favor, póngase en contacto con soporte si el error persiste.",
|
||||
"SSE.Controllers.Main.errorFileVKey": "Error externo.<br>Clave de seguridad incorrecto. Por favor, póngase en contacto con soporte si el error persiste.",
|
||||
"SSE.Controllers.Main.errorFillRange": "No se puede rellenar el rango de celdas seleccionado.<br>Todas las celdas seleccionadas deben tener el mismo tamaño.",
|
||||
"SSE.Controllers.Main.errorFormulaName": "Hay un error en la fórmula introducida.<br>Se usa un nombre de fórmula incorrecto.",
|
||||
"SSE.Controllers.Main.errorFormulaParsing": "Error interno mientras analizando la fórmula.",
|
||||
"SSE.Controllers.Main.errorFrmlWrongReferences": "La función se refiere a una hoja que no existe. <br> Por favor, verifique los datos e inténtelo de nuevo.",
|
||||
"SSE.Controllers.Main.errorInvalidRef": "Introducir un nombre correcto para la selección o una referencia válida para pasar.",
|
||||
"SSE.Controllers.Main.errorKeyEncrypt": "Descriptor de clave desconocido",
|
||||
"SSE.Controllers.Main.errorKeyExpire": "Descriptor de clave ha expirado",
|
||||
"SSE.Controllers.Main.errorLockedAll": "No se puede realizar la operación porque la hoja ha sido bloqueado por otro usuario.",
|
||||
"SSE.Controllers.Main.errorLockedWorksheetRename": "No se puede cambiar el nombre de la hoja en este momento, porque se está cambiando el nombre por otro usuario",
|
||||
"SSE.Controllers.Main.errorMailMergeLoadFile": "Error en la carga",
|
||||
"SSE.Controllers.Main.errorMailMergeSaveFile": "Error de fusión.",
|
||||
"SSE.Controllers.Main.errorMoveRange": "No se puede cambiar parte de una celda combinada",
|
||||
"SSE.Controllers.Main.errorOpenWarning": "La longitud de una de las fórmulas en el archivo superó <br> el número de caracteres permitidos y se quitó.",
|
||||
"SSE.Controllers.Main.errorOperandExpected": "La función de sintaxis introducida no es correcta. Le recomendamos verificar si no le hace falta uno del paréntesis - '(' o ')'",
|
||||
"SSE.Controllers.Main.errorPasteMaxRange": "El área de copiar y pegar no coincide.<br>Por favor, seleccione una zona con el mismo tamaño o haga clic en la primera celda de una fila para pegar las celdas copiadas.",
|
||||
"SSE.Controllers.Main.errorPrintMaxPagesCount": "Por desgracia, no es posible imprimir más de 1500 páginas a la vez en la versión actual.<br>Esta restricción será extraida en próximos lanzamientos.",
|
||||
"SSE.Controllers.Main.errorProcessSaveResult": "Problemas al guardar",
|
||||
"SSE.Controllers.Main.errorServerVersion": "La versión del editor ha sido actualizada. La página será recargada para aplicar los cambios.",
|
||||
"SSE.Controllers.Main.errorSessionAbsolute": "Sesión de editar el documento ha expirado. Por favor, recargue la página.",
|
||||
"SSE.Controllers.Main.errorSessionIdle": "El documento no ha sido editado durante bastante tiempo. Por favor, recargue la página.",
|
||||
"SSE.Controllers.Main.errorSessionToken": "Conexión al servidor ha sido interrumpido. Por favor, recargue la página.",
|
||||
"SSE.Controllers.Main.errorStockChart": "Orden de las filas incorrecto. Para crear un gráfico de cotizaciones introduzca los datos en la hoja de la forma siguiente:<br> precio de apertura, precio máximo, precio mínimo, precio de cierre.",
|
||||
"SSE.Controllers.Main.errorToken": "El token de seguridad de documento tiene un formato incorrecto.<br>Por favor, contacte con el Administrador del Servidor de Documentos.",
|
||||
"SSE.Controllers.Main.errorTokenExpire": "El token de seguridad de documento ha sido expirado.<br>Por favor, contacte con el Administrador del Servidor de Documentos.",
|
||||
"SSE.Controllers.Main.errorUnexpectedGuid": "Error externo.<br>GUID inesparada. Por favor, póngase en contacto con soporte si el error persiste.",
|
||||
"SSE.Controllers.Main.errorUpdateVersion": "Se ha cambiado la versión del archivo. La página será actualizada.",
|
||||
"SSE.Controllers.Main.errorUserDrop": "No se puede acceder al archivo ahora.",
|
||||
"SSE.Controllers.Main.errorUsersExceed": "El número de usuarios permitido según su plan de precios fue excedido",
|
||||
"SSE.Controllers.Main.errorViewerDisconnect": "Se pierde la conexión. Usted todavía puede visualizar el documento,<br> pero no puede descargar o imprimirlo hasta que la conexión sea restaurada.",
|
||||
"SSE.Controllers.Main.errorWrongBracketsCount": "Un error en la fórmula introducida.<br>Se usa un número incorrecto de corchetes.",
|
||||
"SSE.Controllers.Main.errorWrongOperator": "Hay un error en la fórmula introducida. Se usa un operador inválido.<br>Por favor, corrija el error.",
|
||||
"SSE.Controllers.Main.leavePageText": "Hay cambios no guardados en este documento. Haga clic en \"Permanecer en esta página\" para esperar la función de guardar automáticamente del documento. Haga clic en \"Abandonar esta página\" para descartar todos los cambios no guardados.",
|
||||
"SSE.Controllers.Main.loadFontsTextText": "Cargando datos...",
|
||||
"SSE.Controllers.Main.loadFontsTitleText": "Cargando datos",
|
||||
"SSE.Controllers.Main.loadFontTextText": "Cargando datos...",
|
||||
"SSE.Controllers.Main.loadFontTitleText": "Cargando datos",
|
||||
"SSE.Controllers.Main.loadImagesTextText": "Cargando imágenes...",
|
||||
"SSE.Controllers.Main.loadImagesTitleText": "Cargando imágenes",
|
||||
"SSE.Controllers.Main.loadImageTextText": "Cargando imagen...",
|
||||
"SSE.Controllers.Main.loadImageTitleText": "Cargando imagen",
|
||||
"SSE.Controllers.Main.loadingDocumentTextText": "Cargando documento...",
|
||||
"SSE.Controllers.Main.loadingDocumentTitleText": "Cargando documento",
|
||||
"SSE.Controllers.Main.mailMergeLoadFileText": "Cargando fuente de datos...",
|
||||
"SSE.Controllers.Main.mailMergeLoadFileTitle": "Cargando fuente de datos",
|
||||
"SSE.Controllers.Main.notcriticalErrorTitle": "Aviso",
|
||||
"SSE.Controllers.Main.openErrorText": "Se ha producido un error al abrir el archivo ",
|
||||
"SSE.Controllers.Main.openTextText": "Abriendo documento...",
|
||||
"SSE.Controllers.Main.openTitleText": "Abriendo documento",
|
||||
"SSE.Controllers.Main.printTextText": "Imprimiendo documento...",
|
||||
"SSE.Controllers.Main.printTitleText": "Imprimiendo documento",
|
||||
"SSE.Controllers.Main.reloadButtonText": "Volver a cargar página",
|
||||
"SSE.Controllers.Main.requestEditFailedMessageText": "Alguien está editando este documento en este momento. Por favor, inténtelo de nuevo más tarde.",
|
||||
"SSE.Controllers.Main.requestEditFailedTitleText": "Acceso denegado",
|
||||
"SSE.Controllers.Main.saveErrorText": "Se ha producido un error al guardar el archivo ",
|
||||
"SSE.Controllers.Main.savePreparingText": "Preparando para guardar",
|
||||
"SSE.Controllers.Main.savePreparingTitle": "Preparando para guardar. Espere, por favor...",
|
||||
"SSE.Controllers.Main.saveTextText": "Guardando documento...",
|
||||
"SSE.Controllers.Main.saveTitleText": "Guardando documento",
|
||||
"SSE.Controllers.Main.sendMergeText": "Envío de los resultados de fusión...",
|
||||
"SSE.Controllers.Main.sendMergeTitle": "Envío de los resultados de fusión",
|
||||
"SSE.Controllers.Main.textAnonymous": "Anónimo",
|
||||
"SSE.Controllers.Main.textBack": "Atrás",
|
||||
"SSE.Controllers.Main.textBuyNow": "Visitar sitio web",
|
||||
"SSE.Controllers.Main.textCancel": "Cancelar",
|
||||
"SSE.Controllers.Main.textClose": "Cerrar",
|
||||
"SSE.Controllers.Main.textContactUs": "Contactar con equipo de ventas",
|
||||
"SSE.Controllers.Main.textDone": "Listo",
|
||||
"SSE.Controllers.Main.textLoadingDocument": "Cargando documento",
|
||||
"SSE.Controllers.Main.textNoLicenseTitle": "Versión de código abierto de ONLYOFFICE",
|
||||
"SSE.Controllers.Main.textOK": "OK",
|
||||
"SSE.Controllers.Main.textPassword": "Contraseña",
|
||||
"SSE.Controllers.Main.textPreloader": "Cargando...",
|
||||
"SSE.Controllers.Main.textShape": "Forma",
|
||||
"SSE.Controllers.Main.textStrict": "Modo estricto",
|
||||
"SSE.Controllers.Main.textTryUndoRedo": "Las funciones Deshacer/Rehacer son desactivadas para el modo de co-edición Rápido.<br>Haga Clic en el botón \"Modo estricto\" para cambiar al modo de co-edición al Estricto para editar el archivo sin la interferencia de otros usuarios y enviar sus cambios sólo después de guardarlos. Se puede cambiar entre los modos de co-edición usando los ajustes avanzados de edición.",
|
||||
"SSE.Controllers.Main.textUsername": "Nombre de usuario",
|
||||
"SSE.Controllers.Main.titleLicenseExp": "Licencia ha expirado",
|
||||
"SSE.Controllers.Main.titleServerVersion": "Editor ha sido actualizado",
|
||||
"SSE.Controllers.Main.titleUpdateVersion": "Versión se ha cambiado",
|
||||
"SSE.Controllers.Main.txtAccent": "Acento",
|
||||
"SSE.Controllers.Main.txtArt": "Introduzca su texto aquí",
|
||||
"SSE.Controllers.Main.txtBasicShapes": "Formas básicas",
|
||||
"SSE.Controllers.Main.txtButtons": "Botones",
|
||||
"SSE.Controllers.Main.txtCallouts": "Llamadas",
|
||||
"SSE.Controllers.Main.txtCharts": "Gráficos",
|
||||
"SSE.Controllers.Main.txtDelimiter": "Delimitador",
|
||||
"SSE.Controllers.Main.txtDiagramTitle": "Título de gráfico",
|
||||
"SSE.Controllers.Main.txtEditingMode": "Establecer el modo de edición...",
|
||||
"SSE.Controllers.Main.txtEncoding": "Codificación",
|
||||
"SSE.Controllers.Main.txtErrorLoadHistory": "Error en la carga de historial",
|
||||
"SSE.Controllers.Main.txtFiguredArrows": "Flechas figuradas",
|
||||
"SSE.Controllers.Main.txtLines": "Líneas",
|
||||
"SSE.Controllers.Main.txtMath": "Matemáticas",
|
||||
"SSE.Controllers.Main.txtRectangles": "Rectángulos",
|
||||
"SSE.Controllers.Main.txtSeries": "Serie",
|
||||
"SSE.Controllers.Main.txtSpace": "Espacio",
|
||||
"SSE.Controllers.Main.txtStarsRibbons": "Cintas y estrellas",
|
||||
"SSE.Controllers.Main.txtStyle_Bad": "Malo",
|
||||
"SSE.Controllers.Main.txtStyle_Calculation": "Cálculo",
|
||||
"SSE.Controllers.Main.txtStyle_Check_Cell": "Celda de control",
|
||||
"SSE.Controllers.Main.txtStyle_Comma": "Financiero",
|
||||
"SSE.Controllers.Main.txtStyle_Currency": "Moneda",
|
||||
"SSE.Controllers.Main.txtStyle_Explanatory_Text": "Texto explicativo",
|
||||
"SSE.Controllers.Main.txtStyle_Good": "Bueno",
|
||||
"SSE.Controllers.Main.txtStyle_Heading_1": "Título 1",
|
||||
"SSE.Controllers.Main.txtStyle_Heading_2": "Título 2",
|
||||
"SSE.Controllers.Main.txtStyle_Heading_3": "Título 3",
|
||||
"SSE.Controllers.Main.txtStyle_Heading_4": "Título 4",
|
||||
"SSE.Controllers.Main.txtStyle_Input": "Entrada",
|
||||
"SSE.Controllers.Main.txtStyle_Linked_Cell": "Celda enlazada",
|
||||
"SSE.Controllers.Main.txtStyle_Neutral": "Neutral",
|
||||
"SSE.Controllers.Main.txtStyle_Normal": "Normal",
|
||||
"SSE.Controllers.Main.txtStyle_Note": "Nota",
|
||||
"SSE.Controllers.Main.txtStyle_Output": "Salida",
|
||||
"SSE.Controllers.Main.txtStyle_Percent": "Por ciento",
|
||||
"SSE.Controllers.Main.txtStyle_Title": "Título",
|
||||
"SSE.Controllers.Main.txtStyle_Total": "Total",
|
||||
"SSE.Controllers.Main.txtStyle_Warning_Text": "Texto de advertencia",
|
||||
"SSE.Controllers.Main.txtTab": "Pestaña",
|
||||
"SSE.Controllers.Main.txtXAxis": "Eje X",
|
||||
"SSE.Controllers.Main.txtYAxis": "Eje Y",
|
||||
"SSE.Controllers.Main.unknownErrorText": "Error desconocido.",
|
||||
"SSE.Controllers.Main.unsupportedBrowserErrorText ": "Su navegador no está soportado.",
|
||||
"SSE.Controllers.Main.uploadImageExtMessage": "Formato de imagen desconocido.",
|
||||
"SSE.Controllers.Main.uploadImageFileCountMessage": "No hay imágenes subidas.",
|
||||
"SSE.Controllers.Main.uploadImageSizeMessage": "Tamaño máximo de imagen está superado.",
|
||||
"SSE.Controllers.Main.uploadImageTextText": "Subiendo imagen...",
|
||||
"SSE.Controllers.Main.uploadImageTitleText": "Subiendo imagen",
|
||||
"SSE.Controllers.Main.warnLicenseExp": "Su licencia ha expirado.<br>Por favor, actualice su licencia y después recargue la página.",
|
||||
"SSE.Controllers.Main.warnNoLicense": "Usted está usando la versión de código abierto de ONLYOFFICE. Esta versión tiene limitaciones respecto a la cantidad de conexiones concurrentes al servidor de documentos (20 conexiones simultáneamente).<br>Si se requiere más, considere la posibilidad de adquirir la licencia comercial.",
|
||||
"SSE.Controllers.Main.warnProcessRightsChange": "El derecho de edición del archivo es denegado.",
|
||||
"SSE.Controllers.Search.textNoTextFound": "Texto no encontrado",
|
||||
"SSE.Controllers.Search.textReplaceAll": "Reemplazar todo",
|
||||
"SSE.Controllers.Settings.notcriticalErrorTitle": "Aviso",
|
||||
"SSE.Controllers.Settings.warnDownloadAs": "Si sigue guardando en este formato, todas las características excepto el texto se perderán.<br> ¿Está seguro de que quiere continuar?",
|
||||
"SSE.Controllers.Statusbar.errorLastSheet": "Un libro de trabajo debe contener al menos una hoja visible.",
|
||||
"SSE.Controllers.Statusbar.errorRemoveSheet": "No se puede eliminar la hoja de cálculo.",
|
||||
"SSE.Controllers.Statusbar.menuDelete": "Eliminar",
|
||||
"SSE.Controllers.Statusbar.menuDuplicate": "Duplicar",
|
||||
"SSE.Controllers.Statusbar.menuHide": "Ocultar",
|
||||
"SSE.Controllers.Statusbar.menuUnhide": "Mostrar",
|
||||
"SSE.Controllers.Statusbar.strSheet": "Hoja",
|
||||
"SSE.Controllers.Statusbar.textExternalLink": "Enlace externo",
|
||||
"SSE.Controllers.Statusbar.warnDeleteSheet": "La hoja de cálculo puede contener los datos. ¿Continuar operación?",
|
||||
"SSE.Controllers.Toolbar.dlgLeaveMsgText": "Hay cambios no guardados en este documento. Haga clic en \"Permanecer en esta página\" para esperar la función de guardar automáticamente del documento. Haga clic en \"Abandonar esta página\" para descartar todos los cambios no guardados.",
|
||||
"SSE.Controllers.Toolbar.dlgLeaveTitleText": "Usted abandona la aplicación",
|
||||
"SSE.Controllers.Toolbar.leaveButtonText": "Salir de esta página",
|
||||
"SSE.Controllers.Toolbar.stayButtonText": "Quedarse en esta página",
|
||||
"SSE.Views.AddFunction.sCatDateAndTime": "Fecha y hora",
|
||||
"SSE.Views.AddFunction.sCatEngineering": "Ingenería",
|
||||
"SSE.Views.AddFunction.sCatFinancial": "Financial",
|
||||
"SSE.Views.AddFunction.sCatInformation": "Información",
|
||||
"SSE.Views.AddFunction.sCatLogical": "Lógico",
|
||||
"SSE.Views.AddFunction.sCatLookupAndReference": "Búsq. y referencia",
|
||||
"SSE.Views.AddFunction.sCatMathematic": "Matemát./trigonom.",
|
||||
"SSE.Views.AddFunction.sCatStatistical": "Estadístico",
|
||||
"SSE.Views.AddFunction.sCatTextAndData": "Texto y datos",
|
||||
"SSE.Views.AddFunction.textBack": "Atrás",
|
||||
"SSE.Views.AddFunction.textGroups": "Categorías",
|
||||
"SSE.Views.AddLink.textAddLink": "Añadir enlace ",
|
||||
"SSE.Views.AddLink.textAddress": "Dirección",
|
||||
"SSE.Views.AddLink.textDisplay": "Mostrar",
|
||||
"SSE.Views.AddLink.textExternalLink": "Enlace externo",
|
||||
"SSE.Views.AddLink.textInsert": "Insertar",
|
||||
"SSE.Views.AddLink.textInternalLink": "Rango de datos interno",
|
||||
"SSE.Views.AddLink.textLink": "Enlace",
|
||||
"SSE.Views.AddLink.textLinkSettings": "Ajustes de enlace",
|
||||
"SSE.Views.AddLink.textLinkType": "Típo de enlace",
|
||||
"SSE.Views.AddLink.textRange": "Rango",
|
||||
"SSE.Views.AddLink.textRequired": "Necesario",
|
||||
"SSE.Views.AddLink.textSheet": "Hoja",
|
||||
"SSE.Views.AddLink.textTip": "Consejos de pantalla",
|
||||
"SSE.Views.AddOther.textAddress": "Dirección",
|
||||
"SSE.Views.AddOther.textBack": "Atrás",
|
||||
"SSE.Views.AddOther.textFilter": "Filtro",
|
||||
"SSE.Views.AddOther.textFromLibrary": "Imagen de biblioteca",
|
||||
"SSE.Views.AddOther.textFromURL": "Imagen de URL",
|
||||
"SSE.Views.AddOther.textImageURL": "URL de imagen",
|
||||
"SSE.Views.AddOther.textInsert": "Insertar",
|
||||
"SSE.Views.AddOther.textInsertImage": "Insertar imagen",
|
||||
"SSE.Views.AddOther.textLink": "Enlace",
|
||||
"SSE.Views.AddOther.textSort": "Ordenar y filtrar",
|
||||
"SSE.Views.EditCell.textAccounting": "Contabilidad",
|
||||
"SSE.Views.EditCell.textAlignBottom": "Alinear en la parte inferior",
|
||||
"SSE.Views.EditCell.textAlignCenter": "Alinear al centro",
|
||||
"SSE.Views.EditCell.textAlignLeft": "Alinear a la izquierda",
|
||||
"SSE.Views.EditCell.textAlignMiddle": "Alinear al medio",
|
||||
"SSE.Views.EditCell.textAlignRight": "Alinear a la derecha",
|
||||
"SSE.Views.EditCell.textAlignTop": "Alinear en la parte superior",
|
||||
"SSE.Views.EditCell.textAllBorders": "Todos los bordes",
|
||||
"SSE.Views.EditCell.textBack": "Atrás",
|
||||
"SSE.Views.EditCell.textBorderStyle": "Estilo de borde",
|
||||
"SSE.Views.EditCell.textBottomBorder": "Borde inferior",
|
||||
"SSE.Views.EditCell.textCellStyle": "Estilos de celda",
|
||||
"SSE.Views.EditCell.textColor": "Color",
|
||||
"SSE.Views.EditCell.textCurrency": "Moneda",
|
||||
"SSE.Views.EditCell.textDate": "Fecha",
|
||||
"SSE.Views.EditCell.textDiagDownBorder": "Borde diagonal descendente",
|
||||
"SSE.Views.EditCell.textDiagUpBorder": "Borde diagonal ascendente",
|
||||
"SSE.Views.EditCell.textDollar": "Dólar",
|
||||
"SSE.Views.EditCell.textEuro": "Euro",
|
||||
"SSE.Views.EditCell.textFillColor": "Color de relleno",
|
||||
"SSE.Views.EditCell.textFonts": "Fuentes",
|
||||
"SSE.Views.EditCell.textFormat": "Formato",
|
||||
"SSE.Views.EditCell.textGeneral": "General",
|
||||
"SSE.Views.EditCell.textInBorders": "Bordes internos",
|
||||
"SSE.Views.EditCell.textInHorBorder": "Borde horizontal interno",
|
||||
"SSE.Views.EditCell.textInteger": "Entero",
|
||||
"SSE.Views.EditCell.textInVertBorder": "Borde vertical interno",
|
||||
"SSE.Views.EditCell.textJustified": "Justificado",
|
||||
"SSE.Views.EditCell.textLeftBorder": "Borde izquierdo",
|
||||
"SSE.Views.EditCell.textMedium": "Medio",
|
||||
"SSE.Views.EditCell.textNoBorder": "Sin bordes",
|
||||
"SSE.Views.EditCell.textNumber": "Número",
|
||||
"SSE.Views.EditCell.textPercentage": "Porcentaje",
|
||||
"SSE.Views.EditCell.textPound": "Libra",
|
||||
"SSE.Views.EditCell.textRightBorder": "Borde derecho",
|
||||
"SSE.Views.EditCell.textRouble": "Rublo",
|
||||
"SSE.Views.EditCell.textScientific": "Scientífico",
|
||||
"SSE.Views.EditCell.textSize": "Tamaño",
|
||||
"SSE.Views.EditCell.textText": "Texto",
|
||||
"SSE.Views.EditCell.textTextColor": "Color de texto",
|
||||
"SSE.Views.EditCell.textTextFormat": "Formato de texto",
|
||||
"SSE.Views.EditCell.textThick": "Grueso",
|
||||
"SSE.Views.EditCell.textThin": "Fino",
|
||||
"SSE.Views.EditCell.textTime": "Hora",
|
||||
"SSE.Views.EditCell.textTopBorder": "Borde superior",
|
||||
"SSE.Views.EditCell.textWrapText": "Ajustar texto",
|
||||
"SSE.Views.EditCell.textYen": "Yen",
|
||||
"SSE.Views.EditChart.textAuto": "Auto",
|
||||
"SSE.Views.EditChart.textAxisCrosses": "Intersección con eje",
|
||||
"SSE.Views.EditChart.textAxisOptions": "Parámetros de eje",
|
||||
"SSE.Views.EditChart.textAxisPosition": "Posición de eje",
|
||||
"SSE.Views.EditChart.textAxisTitle": "Título del eje",
|
||||
"SSE.Views.EditChart.textBack": "Atrás",
|
||||
"SSE.Views.EditChart.textBackward": "Mover atrás",
|
||||
"SSE.Views.EditChart.textBorder": "Borde",
|
||||
"SSE.Views.EditChart.textBottom": "Abajo ",
|
||||
"SSE.Views.EditChart.textChart": "Gráfico",
|
||||
"SSE.Views.EditChart.textChartTitle": "Título de gráfico",
|
||||
"SSE.Views.EditChart.textColor": "Color",
|
||||
"SSE.Views.EditChart.textCrossesValue": "Valor",
|
||||
"SSE.Views.EditChart.textDataLabels": "Etiquetas de datos",
|
||||
"SSE.Views.EditChart.textDesign": "Diseño",
|
||||
"SSE.Views.EditChart.textDisplayUnits": "Unidades de visualización",
|
||||
"SSE.Views.EditChart.textFill": "Relleno",
|
||||
"SSE.Views.EditChart.textForward": "Mover adelante",
|
||||
"SSE.Views.EditChart.textHorAxis": "Eje horizontal",
|
||||
"SSE.Views.EditChart.textHorizontal": "Horizontal ",
|
||||
"SSE.Views.EditChart.textLabelOptions": "Parámetros de etiqueta",
|
||||
"SSE.Views.EditChart.textLabelPos": "Posición de etiqueta",
|
||||
"SSE.Views.EditChart.textLayout": "Diseño",
|
||||
"SSE.Views.EditChart.textLeft": "A la izquierda",
|
||||
"SSE.Views.EditChart.textLeftOverlay": "Superposición a la izquierda",
|
||||
"SSE.Views.EditChart.textLegend": "Leyenda",
|
||||
"SSE.Views.EditChart.textMajor": "Principal",
|
||||
"SSE.Views.EditChart.textMajorMinor": "Principales y secundarios",
|
||||
"SSE.Views.EditChart.textMajorType": "Tipo principal",
|
||||
"SSE.Views.EditChart.textMaxValue": "Valor máximo",
|
||||
"SSE.Views.EditChart.textMinor": "Secundario",
|
||||
"SSE.Views.EditChart.textMinorType": "Tipo secundario",
|
||||
"SSE.Views.EditChart.textMinValue": "Valor mínimo",
|
||||
"SSE.Views.EditChart.textNone": "Ninguno",
|
||||
"SSE.Views.EditChart.textNoOverlay": "Sin superposición",
|
||||
"SSE.Views.EditChart.textOverlay": "Superposición",
|
||||
"SSE.Views.EditChart.textRemoveChart": "Eliminar gráfico",
|
||||
"SSE.Views.EditChart.textReorder": "Reorganizar",
|
||||
"SSE.Views.EditChart.textRight": "A la derecha",
|
||||
"SSE.Views.EditChart.textRightOverlay": "Superposición a la derecha",
|
||||
"SSE.Views.EditChart.textRotated": "Girado",
|
||||
"SSE.Views.EditChart.textSize": "Tamaño",
|
||||
"SSE.Views.EditChart.textStyle": "Estilo",
|
||||
"SSE.Views.EditChart.textTickOptions": "Parámetros de marcas de graduación",
|
||||
"SSE.Views.EditChart.textToBackground": "Enviar al fondo",
|
||||
"SSE.Views.EditChart.textToForeground": "Traer al primer plano",
|
||||
"SSE.Views.EditChart.textTop": "Superior",
|
||||
"SSE.Views.EditChart.textType": "Tipo",
|
||||
"SSE.Views.EditChart.textValReverseOrder": "Valores en orden inverso",
|
||||
"SSE.Views.EditChart.textVerAxis": "Eje vertical",
|
||||
"SSE.Views.EditChart.textVertical": "Vertical",
|
||||
"SSE.Views.EditHyperlink.textBack": "Atrás",
|
||||
"SSE.Views.EditHyperlink.textDisplay": "Mostrar",
|
||||
"SSE.Views.EditHyperlink.textEditLink": "Editar enlace",
|
||||
"SSE.Views.EditHyperlink.textExternalLink": "Enlace externo",
|
||||
"SSE.Views.EditHyperlink.textInternalLink": "Rango de datos interno",
|
||||
"SSE.Views.EditHyperlink.textLink": "Enlace",
|
||||
"SSE.Views.EditHyperlink.textLinkType": "Tipo de enlace",
|
||||
"SSE.Views.EditHyperlink.textRange": "Rango",
|
||||
"SSE.Views.EditHyperlink.textRemoveLink": "Eliminar enlace",
|
||||
"SSE.Views.EditHyperlink.textScreenTip": "Consejos de pantalla",
|
||||
"SSE.Views.EditHyperlink.textSheet": "Hoja",
|
||||
"SSE.Views.EditImage.textAddress": "Dirección",
|
||||
"SSE.Views.EditImage.textBack": "Atrás",
|
||||
"SSE.Views.EditImage.textBackward": "Mover atrás",
|
||||
"SSE.Views.EditImage.textDefault": "Tamaño predeterminado",
|
||||
"SSE.Views.EditImage.textForward": "Mover adelante",
|
||||
"SSE.Views.EditImage.textFromLibrary": "Imagen de biblioteca",
|
||||
"SSE.Views.EditImage.textFromURL": "Imagen de URL",
|
||||
"SSE.Views.EditImage.textImageURL": "URL de imagen",
|
||||
"SSE.Views.EditImage.textLinkSettings": "Ajustes de enlace",
|
||||
"SSE.Views.EditImage.textRemove": "Eliminar imagen",
|
||||
"SSE.Views.EditImage.textReorder": "Reorganizar",
|
||||
"SSE.Views.EditImage.textReplace": "Reemplazar",
|
||||
"SSE.Views.EditImage.textReplaceImg": "Reemplazar imagen",
|
||||
"SSE.Views.EditImage.textToBackground": "Enviar al fondo",
|
||||
"SSE.Views.EditImage.textToForeground": "Traer al primer plano",
|
||||
"SSE.Views.EditShape.textBack": "Atrás",
|
||||
"SSE.Views.EditShape.textBackward": "Mover atrás",
|
||||
"SSE.Views.EditShape.textBorder": "Borde",
|
||||
"SSE.Views.EditShape.textColor": "Color",
|
||||
"SSE.Views.EditShape.textEffects": "Efectos",
|
||||
"SSE.Views.EditShape.textFill": "Relleno",
|
||||
"SSE.Views.EditShape.textForward": "Mover adelante",
|
||||
"SSE.Views.EditShape.textOpacity": "Opacidad ",
|
||||
"SSE.Views.EditShape.textRemoveShape": "Eliminar forma",
|
||||
"SSE.Views.EditShape.textReorder": "Reorganizar",
|
||||
"SSE.Views.EditShape.textReplace": "Reemplazar",
|
||||
"SSE.Views.EditShape.textSize": "Tamaño",
|
||||
"SSE.Views.EditShape.textStyle": "Estilo",
|
||||
"SSE.Views.EditShape.textToBackground": "Enviar al fondo",
|
||||
"SSE.Views.EditShape.textToForeground": "Traer al primer plano",
|
||||
"SSE.Views.EditText.textBack": "Atrás",
|
||||
"SSE.Views.EditText.textFillColor": "Color de relleno",
|
||||
"SSE.Views.EditText.textFonts": "Fuentes",
|
||||
"SSE.Views.EditText.textSize": "Tamaño",
|
||||
"SSE.Views.EditText.textTextColor": "Color de texto",
|
||||
"SSE.Views.Search.textDone": "Listo",
|
||||
"SSE.Views.Search.textFind": "Buscar",
|
||||
"SSE.Views.Search.textFindAndReplace": "Buscar y reemplazar",
|
||||
"SSE.Views.Search.textMatchCase": "Coincidir mayúsculas y minúsculas",
|
||||
"SSE.Views.Search.textMatchCell": "Coincidir celda",
|
||||
"SSE.Views.Search.textReplace": "Reemplazar",
|
||||
"SSE.Views.Search.textSearch": "Búsqueda",
|
||||
"SSE.Views.Search.textSearchIn": "Buscar en",
|
||||
"SSE.Views.Search.textSheet": "Hoja",
|
||||
"SSE.Views.Search.textWorkbook": "Libro de trabajo",
|
||||
"SSE.Views.Settings.textAbout": "Acerca de producto",
|
||||
"SSE.Views.Settings.textAddress": "dirección",
|
||||
"SSE.Views.Settings.textAuthor": "Autor",
|
||||
"SSE.Views.Settings.textBack": "Atrás",
|
||||
"SSE.Views.Settings.textCreateDate": "Fecha de creación",
|
||||
"SSE.Views.Settings.textDocInfo": "Información sobre hoja de cálculo",
|
||||
"SSE.Views.Settings.textDocTitle": "Título de hoja de cálculo",
|
||||
"SSE.Views.Settings.textDone": "Listo",
|
||||
"SSE.Views.Settings.textDownload": "Descargar",
|
||||
"SSE.Views.Settings.textDownloadAs": "Descargar como...",
|
||||
"SSE.Views.Settings.textEditDoc": "Editar documento",
|
||||
"SSE.Views.Settings.textEmail": "email",
|
||||
"SSE.Views.Settings.textFind": "Buscar",
|
||||
"SSE.Views.Settings.textFindAndReplace": "Buscar y reemplazar",
|
||||
"SSE.Views.Settings.textHelp": "Ayuda",
|
||||
"SSE.Views.Settings.textLoading": "Cargando...",
|
||||
"SSE.Views.Settings.textPoweredBy": "Desarrollado por",
|
||||
"SSE.Views.Settings.textSettings": "Ajustes",
|
||||
"SSE.Views.Settings.textTel": "Tel.",
|
||||
"SSE.Views.Settings.textVersion": "Versión ",
|
||||
"SSE.Views.Settings.unknownText": "Desconocido",
|
||||
"SSE.Views.Toolbar.textBack": "Atrás"
|
||||
}
|
|
@ -144,8 +144,8 @@
|
|||
"SSE.Controllers.Main.errorPrintMaxPagesCount": "Malheureusement, il n’est pas possible d’imprimer plus de 1500 pages à la fois en utilisant la version actuelle du programme.<br>Cette restriction sera supprimée dans la version future.",
|
||||
"SSE.Controllers.Main.errorProcessSaveResult": "Échec de l'enregistrement",
|
||||
"SSE.Controllers.Main.errorServerVersion": "La version de l'éditeur a été mise à jour. La page sera rechargée pour appliquer les modifications.",
|
||||
"SSE.Controllers.Main.errorSessionAbsolute": "La session de la modification de document a expiré. Veuillez recharger la page.",
|
||||
"SSE.Controllers.Main.errorSessionIdle": "Le document n'est pas modifié depuis longtemps. Veuillez recharger la page.",
|
||||
"SSE.Controllers.Main.errorSessionAbsolute": "Votre session a expiré. Veuillez recharger la page.",
|
||||
"SSE.Controllers.Main.errorSessionIdle": "Le document n'a pas été modifié depuis trop longtemps. Veuillez recharger la page.",
|
||||
"SSE.Controllers.Main.errorSessionToken": "La connexion au serveur a été interrompue. Veuillez recharger la page.",
|
||||
"SSE.Controllers.Main.errorStockChart": "L'ordre des lignes est incorrect. Pour créer un graphique boursier organisez vos données sur la feuille de calcul dans l'ordre suivant:<br> cours à l'ouverture, cours maximal, cours minimal, cours à la clôture.",
|
||||
"SSE.Controllers.Main.errorToken": "Le jeton de sécurité du document n’était pas formé correctement.<br>Veuillez contacter l'administrateur de Document Server.",
|
||||
|
@ -205,6 +205,7 @@
|
|||
"SSE.Controllers.Main.titleLicenseExp": "Licence expirée",
|
||||
"SSE.Controllers.Main.titleServerVersion": "L'éditeur est mis à jour",
|
||||
"SSE.Controllers.Main.titleUpdateVersion": "Version a été modifiée",
|
||||
"SSE.Controllers.Main.txtAccent": "Accent",
|
||||
"SSE.Controllers.Main.txtArt": "Entrez votre texte",
|
||||
"SSE.Controllers.Main.txtBasicShapes": "Formes de base",
|
||||
"SSE.Controllers.Main.txtButtons": "Boutons",
|
||||
|
@ -222,6 +223,27 @@
|
|||
"SSE.Controllers.Main.txtSeries": "Série",
|
||||
"SSE.Controllers.Main.txtSpace": "Espace",
|
||||
"SSE.Controllers.Main.txtStarsRibbons": "Étoiles et rubans",
|
||||
"SSE.Controllers.Main.txtStyle_Bad": "Bad",
|
||||
"SSE.Controllers.Main.txtStyle_Calculation": "Calculation",
|
||||
"SSE.Controllers.Main.txtStyle_Check_Cell": "Check Cell",
|
||||
"SSE.Controllers.Main.txtStyle_Comma": "Comma",
|
||||
"SSE.Controllers.Main.txtStyle_Currency": "Currency",
|
||||
"SSE.Controllers.Main.txtStyle_Explanatory_Text": "Explanatory Text",
|
||||
"SSE.Controllers.Main.txtStyle_Good": "Good",
|
||||
"SSE.Controllers.Main.txtStyle_Heading_1": "Heading 1",
|
||||
"SSE.Controllers.Main.txtStyle_Heading_2": "Heading 2",
|
||||
"SSE.Controllers.Main.txtStyle_Heading_3": "Heading 3",
|
||||
"SSE.Controllers.Main.txtStyle_Heading_4": "Heading 4",
|
||||
"SSE.Controllers.Main.txtStyle_Input": "Input",
|
||||
"SSE.Controllers.Main.txtStyle_Linked_Cell": "Linked Cell",
|
||||
"SSE.Controllers.Main.txtStyle_Neutral": "Neutral",
|
||||
"SSE.Controllers.Main.txtStyle_Normal": "Normal",
|
||||
"SSE.Controllers.Main.txtStyle_Note": "Note",
|
||||
"SSE.Controllers.Main.txtStyle_Output": "Output",
|
||||
"SSE.Controllers.Main.txtStyle_Percent": "Percent",
|
||||
"SSE.Controllers.Main.txtStyle_Title": "Title",
|
||||
"SSE.Controllers.Main.txtStyle_Total": "Total",
|
||||
"SSE.Controllers.Main.txtStyle_Warning_Text": "Warning Text",
|
||||
"SSE.Controllers.Main.txtTab": "Tabulation",
|
||||
"SSE.Controllers.Main.txtXAxis": "Axe X",
|
||||
"SSE.Controllers.Main.txtYAxis": "Axe Y",
|
||||
|
@ -456,6 +478,7 @@
|
|||
"SSE.Views.Settings.textFindAndReplace": "Rechercher et remplacer",
|
||||
"SSE.Views.Settings.textHelp": "Aide",
|
||||
"SSE.Views.Settings.textLoading": "Chargement en cours...",
|
||||
"SSE.Views.Settings.textPoweredBy": "Powered by",
|
||||
"SSE.Views.Settings.textSettings": "Paramètres",
|
||||
"SSE.Views.Settings.textTel": "tél.",
|
||||
"SSE.Views.Settings.textVersion": "Version",
|
||||
|
|
|
@ -205,6 +205,7 @@
|
|||
"SSE.Controllers.Main.titleLicenseExp": "Истек срок действия лицензии",
|
||||
"SSE.Controllers.Main.titleServerVersion": "Редактор обновлен",
|
||||
"SSE.Controllers.Main.titleUpdateVersion": "Версия изменилась",
|
||||
"SSE.Controllers.Main.txtAccent": "Акцент",
|
||||
"SSE.Controllers.Main.txtArt": "Введите ваш текст",
|
||||
"SSE.Controllers.Main.txtBasicShapes": "Основные фигуры",
|
||||
"SSE.Controllers.Main.txtButtons": "Кнопки",
|
||||
|
@ -222,6 +223,27 @@
|
|||
"SSE.Controllers.Main.txtSeries": "Ряд",
|
||||
"SSE.Controllers.Main.txtSpace": "Пробел",
|
||||
"SSE.Controllers.Main.txtStarsRibbons": "Звезды и ленты",
|
||||
"SSE.Controllers.Main.txtStyle_Bad": "Плохой",
|
||||
"SSE.Controllers.Main.txtStyle_Calculation": "Вычисление",
|
||||
"SSE.Controllers.Main.txtStyle_Check_Cell": "Контрольная ячейка",
|
||||
"SSE.Controllers.Main.txtStyle_Comma": "Финансовый",
|
||||
"SSE.Controllers.Main.txtStyle_Currency": "Денежный",
|
||||
"SSE.Controllers.Main.txtStyle_Explanatory_Text": "Пояснение",
|
||||
"SSE.Controllers.Main.txtStyle_Good": "Хороший",
|
||||
"SSE.Controllers.Main.txtStyle_Heading_1": "Заголовок 1",
|
||||
"SSE.Controllers.Main.txtStyle_Heading_2": "Заголовок 2",
|
||||
"SSE.Controllers.Main.txtStyle_Heading_3": "Заголовок 3",
|
||||
"SSE.Controllers.Main.txtStyle_Heading_4": "Заголовок 4",
|
||||
"SSE.Controllers.Main.txtStyle_Input": "Ввод",
|
||||
"SSE.Controllers.Main.txtStyle_Linked_Cell": "Связанная ячейка",
|
||||
"SSE.Controllers.Main.txtStyle_Neutral": "Нейтральный",
|
||||
"SSE.Controllers.Main.txtStyle_Normal": "Обычный",
|
||||
"SSE.Controllers.Main.txtStyle_Note": "Примечание",
|
||||
"SSE.Controllers.Main.txtStyle_Output": "Вывод",
|
||||
"SSE.Controllers.Main.txtStyle_Percent": "Процентный",
|
||||
"SSE.Controllers.Main.txtStyle_Title": "Название",
|
||||
"SSE.Controllers.Main.txtStyle_Total": "Итог",
|
||||
"SSE.Controllers.Main.txtStyle_Warning_Text": "Текст предупреждения",
|
||||
"SSE.Controllers.Main.txtTab": "Табуляция",
|
||||
"SSE.Controllers.Main.txtXAxis": "Ось X",
|
||||
"SSE.Controllers.Main.txtYAxis": "Ось Y",
|
||||
|
@ -235,28 +257,6 @@
|
|||
"SSE.Controllers.Main.warnLicenseExp": "Истек срок действия лицензии.<br>Обновите лицензию, а затем обновите страницу.",
|
||||
"SSE.Controllers.Main.warnNoLicense": "Вы используете open source версию ONLYOFFICE. Эта версия имеет ограничения по количеству одновременных подключений к серверу документов (20 подключений одновременно).<br>Если требуется больше, рассмотрите вопрос о покупке коммерческой лицензии.",
|
||||
"SSE.Controllers.Main.warnProcessRightsChange": "Вам было отказано в праве на редактирование этого файла.",
|
||||
"SSE.Controllers.Main.txtAccent": "Акцент",
|
||||
"SSE.Controllers.Main.txtStyle_Normal": "Обычный",
|
||||
"SSE.Controllers.Main.txtStyle_Heading_1": "Заголовок 1",
|
||||
"SSE.Controllers.Main.txtStyle_Heading_2": "Заголовок 2",
|
||||
"SSE.Controllers.Main.txtStyle_Heading_3": "Заголовок 3",
|
||||
"SSE.Controllers.Main.txtStyle_Heading_4": "Заголовок 4",
|
||||
"SSE.Controllers.Main.txtStyle_Title": "Название",
|
||||
"SSE.Controllers.Main.txtStyle_Neutral": "Нейтральный",
|
||||
"SSE.Controllers.Main.txtStyle_Bad": "Плохой",
|
||||
"SSE.Controllers.Main.txtStyle_Good": "Хороший",
|
||||
"SSE.Controllers.Main.txtStyle_Input": "Ввод",
|
||||
"SSE.Controllers.Main.txtStyle_Output": "Вывод",
|
||||
"SSE.Controllers.Main.txtStyle_Calculation": "Вычисление",
|
||||
"SSE.Controllers.Main.txtStyle_Check_Cell": "Контрольная ячейка",
|
||||
"SSE.Controllers.Main.txtStyle_Explanatory_Text": "Пояснение",
|
||||
"SSE.Controllers.Main.txtStyle_Note": "Примечание",
|
||||
"SSE.Controllers.Main.txtStyle_Linked_Cell": "Связанная ячейка",
|
||||
"SSE.Controllers.Main.txtStyle_Warning_Text": "Текст предупреждения",
|
||||
"SSE.Controllers.Main.txtStyle_Total": "Итог",
|
||||
"SSE.Controllers.Main.txtStyle_Currency": "Денежный",
|
||||
"SSE.Controllers.Main.txtStyle_Percent": "Процентный",
|
||||
"SSE.Controllers.Main.txtStyle_Comma": "Финансовый",
|
||||
"SSE.Controllers.Search.textNoTextFound": "Текст не найден",
|
||||
"SSE.Controllers.Search.textReplaceAll": "Заменить все",
|
||||
"SSE.Controllers.Settings.notcriticalErrorTitle": "Внимание",
|
||||
|
@ -478,6 +478,7 @@
|
|||
"SSE.Views.Settings.textFindAndReplace": "Поиск и замена",
|
||||
"SSE.Views.Settings.textHelp": "Справка",
|
||||
"SSE.Views.Settings.textLoading": "Загрузка...",
|
||||
"SSE.Views.Settings.textPoweredBy": "Powered by",
|
||||
"SSE.Views.Settings.textSettings": "Настройки",
|
||||
"SSE.Views.Settings.textTel": "Телефон",
|
||||
"SSE.Views.Settings.textVersion": "Версия",
|
||||
|
|
487
apps/spreadsheeteditor/mobile/locale/sk.json
Normal file
487
apps/spreadsheeteditor/mobile/locale/sk.json
Normal file
|
@ -0,0 +1,487 @@
|
|||
{
|
||||
"Common.UI.ThemeColorPalette.textStandartColors": "Štandardné farby",
|
||||
"Common.UI.ThemeColorPalette.textThemeColors": "Farebné témy",
|
||||
"Common.Utils.Metric.txtCm": "cm",
|
||||
"Common.Utils.Metric.txtPt": "pt",
|
||||
"SSE.Controllers.AddChart.txtDiagramTitle": "Názov grafu",
|
||||
"SSE.Controllers.AddChart.txtSeries": "Rady",
|
||||
"SSE.Controllers.AddChart.txtXAxis": "Os X\n\n",
|
||||
"SSE.Controllers.AddChart.txtYAxis": "Os Y\n\n",
|
||||
"SSE.Controllers.AddContainer.textChart": "Graf",
|
||||
"SSE.Controllers.AddContainer.textFormula": "Funkcia",
|
||||
"SSE.Controllers.AddContainer.textImage": "Obrázok",
|
||||
"SSE.Controllers.AddContainer.textOther": "Ostatný",
|
||||
"SSE.Controllers.AddContainer.textShape": "Tvar",
|
||||
"SSE.Controllers.AddLink.textInvalidRange": "CHYBA! Neplatný rozsah buniek",
|
||||
"SSE.Controllers.AddLink.txtNotUrl": "Toto pole by malo byť vo formáte 'http://www.example.com'",
|
||||
"SSE.Controllers.AddOther.textEmptyImgUrl": "Musíte upresniť URL obrázka.",
|
||||
"SSE.Controllers.AddOther.txtNotUrl": "Toto pole by malo byť vo formáte 'http://www.example.com'",
|
||||
"SSE.Controllers.DocumentHolder.menuAddLink": "Pridať odkaz",
|
||||
"SSE.Controllers.DocumentHolder.menuCell": "Bunka",
|
||||
"SSE.Controllers.DocumentHolder.menuCopy": "Kopírovať",
|
||||
"SSE.Controllers.DocumentHolder.menuCut": "Vystrihnúť",
|
||||
"SSE.Controllers.DocumentHolder.menuDelete": "Vymazať",
|
||||
"SSE.Controllers.DocumentHolder.menuEdit": "Upraviť",
|
||||
"SSE.Controllers.DocumentHolder.menuHide": "Skryť",
|
||||
"SSE.Controllers.DocumentHolder.menuMerge": "Zlúčiť",
|
||||
"SSE.Controllers.DocumentHolder.menuMore": "Viac",
|
||||
"SSE.Controllers.DocumentHolder.menuOpenLink": "Otvoriť odkaz\n\n",
|
||||
"SSE.Controllers.DocumentHolder.menuPaste": "Vložiť",
|
||||
"SSE.Controllers.DocumentHolder.menuShow": "Zobraziť",
|
||||
"SSE.Controllers.DocumentHolder.menuUnmerge": "Zrušiť zlúčenie\n\n",
|
||||
"SSE.Controllers.DocumentHolder.menuUnwrap": "Rozbaliť",
|
||||
"SSE.Controllers.DocumentHolder.menuWrap": "Zabaliť",
|
||||
"SSE.Controllers.DocumentHolder.sheetCancel": "Zrušiť",
|
||||
"SSE.Controllers.DocumentHolder.warnMergeLostData": "Operácia môže zničiť údaje vo vybraných bunkách.<br>Pokračovať?\n\n",
|
||||
"SSE.Controllers.EditCell.textAuto": "automaticky/automatický",
|
||||
"SSE.Controllers.EditCell.textFonts": "Písma",
|
||||
"SSE.Controllers.EditCell.textPt": "pt",
|
||||
"SSE.Controllers.EditChart.errorMaxRows": "CHYBA! Maximálny počet dátových radov na graf je 255.\n\n",
|
||||
"SSE.Controllers.EditChart.errorStockChart": "Nesprávne poradie riadkov. Ak chcete vytvoriť burzový graf, umiestnite údaje na hárok v nasledujúcom poradí:<br> začiatočná cena, max cena, min cena, konečná cena.\n\n\n\n",
|
||||
"SSE.Controllers.EditChart.textAuto": "automaticky/automatický",
|
||||
"SSE.Controllers.EditChart.textBetweenTickMarks": "Medzi značkami rozsahu\n\n\n\n",
|
||||
"SSE.Controllers.EditChart.textBillions": "Miliardy",
|
||||
"SSE.Controllers.EditChart.textBottom": "Dole",
|
||||
"SSE.Controllers.EditChart.textCenter": "Stred",
|
||||
"SSE.Controllers.EditChart.textCross": "Kríž/pretínať",
|
||||
"SSE.Controllers.EditChart.textCustom": "Vlastný",
|
||||
"SSE.Controllers.EditChart.textFit": "Prispôsobiť šírku",
|
||||
"SSE.Controllers.EditChart.textFixed": "Fixný/napravený",
|
||||
"SSE.Controllers.EditChart.textHigh": "Vysoký",
|
||||
"SSE.Controllers.EditChart.textHorizontal": "Vodorovný",
|
||||
"SSE.Controllers.EditChart.textHundredMil": "100 000 000",
|
||||
"SSE.Controllers.EditChart.textHundreds": "Stovky",
|
||||
"SSE.Controllers.EditChart.textHundredThousands": "100 000",
|
||||
"SSE.Controllers.EditChart.textIn": "v",
|
||||
"SSE.Controllers.EditChart.textInnerBottom": "Vnútri dole",
|
||||
"SSE.Controllers.EditChart.textInnerTop": "Vnútri hore",
|
||||
"SSE.Controllers.EditChart.textLeft": "Vľavo",
|
||||
"SSE.Controllers.EditChart.textLeftOverlay": "Ľavé prekrytie",
|
||||
"SSE.Controllers.EditChart.textLow": "Nízky",
|
||||
"SSE.Controllers.EditChart.textManual": "Manuál/ručný",
|
||||
"SSE.Controllers.EditChart.textMaxValue": "Maximálna hodnota",
|
||||
"SSE.Controllers.EditChart.textMillions": "Milióny",
|
||||
"SSE.Controllers.EditChart.textMinValue": "Minimálna hodnota",
|
||||
"SSE.Controllers.EditChart.textNextToAxis": "Vedľa osi\n\n",
|
||||
"SSE.Controllers.EditChart.textNone": "Žiadny",
|
||||
"SSE.Controllers.EditChart.textNoOverlay": "Žiadne prekrytie\n\n",
|
||||
"SSE.Controllers.EditChart.textOnTickMarks": "Na značkách",
|
||||
"SSE.Controllers.EditChart.textOut": "Von/mimo",
|
||||
"SSE.Controllers.EditChart.textOuterTop": "Mimo hore\n\n",
|
||||
"SSE.Controllers.EditChart.textOverlay": "Prekrytie",
|
||||
"SSE.Controllers.EditChart.textRight": "Vpravo",
|
||||
"SSE.Controllers.EditChart.textRightOverlay": "Pravé prekrytie\n\n",
|
||||
"SSE.Controllers.EditChart.textRotated": "Otočený",
|
||||
"SSE.Controllers.EditChart.textTenMillions": "10 000 000",
|
||||
"SSE.Controllers.EditChart.textTenThousands": "10 000",
|
||||
"SSE.Controllers.EditChart.textThousands": "Tisíce\n\n",
|
||||
"SSE.Controllers.EditChart.textTop": "Hore",
|
||||
"SSE.Controllers.EditChart.textTrillions": "Bilióny",
|
||||
"SSE.Controllers.EditChart.textValue": "Hodnota",
|
||||
"SSE.Controllers.EditContainer.textCell": "Bunka",
|
||||
"SSE.Controllers.EditContainer.textChart": "Graf",
|
||||
"SSE.Controllers.EditContainer.textHyperlink": "Hypertextový odkaz",
|
||||
"SSE.Controllers.EditContainer.textImage": "Obrázok",
|
||||
"SSE.Controllers.EditContainer.textSettings": "Nastavenia",
|
||||
"SSE.Controllers.EditContainer.textShape": "Tvar",
|
||||
"SSE.Controllers.EditContainer.textTable": "Tabuľka",
|
||||
"SSE.Controllers.EditContainer.textText": "Text",
|
||||
"SSE.Controllers.EditHyperlink.textDefault": "Vybraný rozsah",
|
||||
"SSE.Controllers.EditHyperlink.textEmptyImgUrl": "Musíte upresniť URL obrázka.",
|
||||
"SSE.Controllers.EditHyperlink.textExternalLink": "Externý odkaz",
|
||||
"SSE.Controllers.EditHyperlink.textInternalLink": "Interný rozsah údajov\n\n",
|
||||
"SSE.Controllers.EditHyperlink.textInvalidRange": "Neplatný rozsah buniek\n\n",
|
||||
"SSE.Controllers.EditHyperlink.txtNotUrl": "Toto pole by malo byť vo formáte \"http://www.example.com\"",
|
||||
"SSE.Controllers.Main.advCSVOptions": "Vybrať možnosti CSV",
|
||||
"SSE.Controllers.Main.advDRMEnterPassword": "Zadajte svoje heslo:",
|
||||
"SSE.Controllers.Main.advDRMOptions": "Chránený súbor",
|
||||
"SSE.Controllers.Main.advDRMPassword": "Heslo",
|
||||
"SSE.Controllers.Main.applyChangesTextText": "Načítavanie dát...",
|
||||
"SSE.Controllers.Main.applyChangesTitleText": "Načítavanie dát",
|
||||
"SSE.Controllers.Main.convertationTimeoutText": "Prekročený čas konverzie.\n\n",
|
||||
"SSE.Controllers.Main.criticalErrorExtText": "Stlačením tlačidla 'OK' sa vrátite do zoznamu dokumentov.\n\n",
|
||||
"SSE.Controllers.Main.criticalErrorTitle": "Chyba",
|
||||
"SSE.Controllers.Main.defaultTitleText": "ONLYOFFICE Editor tabuliek\n\n",
|
||||
"SSE.Controllers.Main.downloadErrorText": "Sťahovanie zlyhalo.",
|
||||
"SSE.Controllers.Main.downloadMergeText": "Sťahovanie...",
|
||||
"SSE.Controllers.Main.downloadMergeTitle": "Sťahovanie",
|
||||
"SSE.Controllers.Main.downloadTextText": "Sťahovanie dokumentu...",
|
||||
"SSE.Controllers.Main.downloadTitleText": "Sťahovanie dokumentu",
|
||||
"SSE.Controllers.Main.errorAccessDeny": "Pokúšate sa vykonať akciu, na ktorú nemáte práva.<br>Prosím, kontaktujte svojho správcu dokumentového servera. \n",
|
||||
"SSE.Controllers.Main.errorArgsRange": "Chyba v zadanom vzorci. <br> Používa sa nesprávny rozsah argumentov.",
|
||||
"SSE.Controllers.Main.errorAutoFilterChange": "Operácia nie je povolená, pretože sa pokúša posunúť bunky do tabuľky na pracovnom hárku.\n\n",
|
||||
"SSE.Controllers.Main.errorAutoFilterChangeFormatTable": "Operácia nemôže byť vykonaná pre vybrané bunky, pretože nemôžete presunúť časť tabuľky.<br>Vyberte iný rozsah údajov tak, aby sa celá tabuľka posunula a skúste to znova.",
|
||||
"SSE.Controllers.Main.errorAutoFilterDataRange": "Operáciu nemožno vykonať pre vybraný rozsah buniek.<br>Vyberte jednotný dátový rozsah, iný ako existujúci, a skúste to znova.\n\n",
|
||||
"SSE.Controllers.Main.errorAutoFilterHiddenRange": "Operáciu nemožno vykonať, pretože oblasť obsahuje filtrované bunky.<br>Odkryte filtrované prvky a skúste to znova.",
|
||||
"SSE.Controllers.Main.errorBadImageUrl": "Adresa URL obrázku je nesprávna",
|
||||
"SSE.Controllers.Main.errorCoAuthoringDisconnect": "Serverové pripojenie sa stratilo. Práve teraz nie je možné dokument upravovať.\n\n",
|
||||
"SSE.Controllers.Main.errorConnectToServer": "Dokument sa nepodarilo uložiť. Prosím, skontrolujte nastavenia pripojenia alebo kontaktujte správcu.<br>Po kliknutí na tlačidlo 'OK' sa zobrazí výzva na prevzatie dokumentu.<br><br>Viac informácií o pripojení dokumentového servera nájdete <a href=\"https://api.onlyoffice.com/editors/callback\" target=\"_blank\">tu</a>\n\n\n\n\n\n",
|
||||
"SSE.Controllers.Main.errorCopyMultiselectArea": "Tento príkaz sa nedá použiť s viacerými výbermi.<br>Vyberte jeden rozsah a skúste to znova.\n\n",
|
||||
"SSE.Controllers.Main.errorCountArg": "Chyba v zadanom vzorci.<br>Používa sa nesprávny počet argumentov.\n\n\n",
|
||||
"SSE.Controllers.Main.errorCountArgExceed": "Chyba v zadanom vzorci.<br>Počet argumentov je prekročený.\n\n\n",
|
||||
"SSE.Controllers.Main.errorCreateDefName": "Existujúce pomenované rozsahy nemožno upraviť a nové nemôžu byť momentálne vytvorené<br>, keďže niektoré z nich sú práve editované.\n\n",
|
||||
"SSE.Controllers.Main.errorDatabaseConnection": "Externá chyba.<br>Chyba spojenia databázy. Prosím, kontaktujte podporu ak chyba pretrváva. \n\n",
|
||||
"SSE.Controllers.Main.errorDataRange": "Nesprávny rozsah údajov.\n\n",
|
||||
"SSE.Controllers.Main.errorDefaultMessage": "Kód chyby: %1",
|
||||
"SSE.Controllers.Main.errorFilePassProtect": "Dokument je chránený heslom a nie je možné ho otvoriť.",
|
||||
"SSE.Controllers.Main.errorFileRequest": "Externá chyba.<br>Chyba požiadavky súboru. Ak chyba pretrváva, kontaktujte podporu.",
|
||||
"SSE.Controllers.Main.errorFileVKey": "Externá chyba.<br>Nesprávny bezpečnostný kľúč. Ak chyba pretrváva, kontaktujte podporu.",
|
||||
"SSE.Controllers.Main.errorFillRange": "Nepodarilo sa vyplniť vybraný rozsah buniek.<br>Všetky zlúčené bunky musia mať rovnakú veľkosť.\n\n\n",
|
||||
"SSE.Controllers.Main.errorFormulaName": "Chyba v zadanom vzorci. <br> Používa sa nesprávny názov vzorca.",
|
||||
"SSE.Controllers.Main.errorFormulaParsing": "Interná chyba pri analýze vzorca.",
|
||||
"SSE.Controllers.Main.errorFrmlWrongReferences": "Funkcia sa týka listu, ktorý neexistuje.<br>Skontrolujte prosím údaje a skúste to znova.\n\n",
|
||||
"SSE.Controllers.Main.errorInvalidRef": "Zadajte správny názov pre výber alebo platný odkaz, na ktorý chcete prejsť.\n\n",
|
||||
"SSE.Controllers.Main.errorKeyEncrypt": "Neznámy kľúč deskriptoru\n\n",
|
||||
"SSE.Controllers.Main.errorKeyExpire": "Kľúč deskriptora vypršal\n\n",
|
||||
"SSE.Controllers.Main.errorLockedAll": "Operáciu nemožno vykonať, pretože list bol zamknutý iným používateľom.",
|
||||
"SSE.Controllers.Main.errorLockedWorksheetRename": "List nemôže byť momentálne premenovaný, pretože je premenovaný iným používateľom",
|
||||
"SSE.Controllers.Main.errorMailMergeLoadFile": "Načítavanie zlyhalo",
|
||||
"SSE.Controllers.Main.errorMailMergeSaveFile": "Zlúčenie zlyhalo.",
|
||||
"SSE.Controllers.Main.errorMoveRange": "Nie je možné zmeniť časť zlúčenej bunky\n\n",
|
||||
"SSE.Controllers.Main.errorOpenWarning": "Dĺžka jedného zo vzorcov v súbore prekročila<br>povolený počet znakov a bola odstránená.\n\n",
|
||||
"SSE.Controllers.Main.errorOperandExpected": "Zadaná funkcia syntax nie je správna. Skontrolujte prosím, či chýba jedna zo zátvoriek-'(' alebo ')'.\n\n",
|
||||
"SSE.Controllers.Main.errorPasteMaxRange": "Oblasť kopírovania a prilepovania sa nezhoduje.<br>Prosím, vyberte oblasť s rovnakou veľkosťou alebo kliknite na prvú bunku v rade a vložte skopírované bunky.\n\n",
|
||||
"SSE.Controllers.Main.errorPrintMaxPagesCount": "Bohužiaľ, nie je možné v aktuálnej verzii programu vytlačiť viac ako 1500 strán naraz.<br>Toto obmedzenie bude odstránené v najbližších vydaniach.\n\n",
|
||||
"SSE.Controllers.Main.errorProcessSaveResult": "Ukladanie zlyhalo",
|
||||
"SSE.Controllers.Main.errorServerVersion": "Verzia editora bola aktualizovaná. Stránka sa opätovne načíta, aby sa vykonali zmeny.\n\n",
|
||||
"SSE.Controllers.Main.errorSessionAbsolute": "Režim editácie dokumentu vypršal. Prosím, načítajte stránku znova.\n\n",
|
||||
"SSE.Controllers.Main.errorSessionIdle": "Dokument nebol dlho upravovaný. Prosím, načítajte stránku znova.\n\n",
|
||||
"SSE.Controllers.Main.errorSessionToken": "Spojenie so serverom bolo prerušené. Prosím, načítajte stránku znova.\n\n",
|
||||
"SSE.Controllers.Main.errorStockChart": "Nesprávne poradie riadkov. Ak chcete vytvoriť burzový graf, umiestnite údaje na hárok v nasledujúcom poradí:<br> začiatočná cena, max cena, min cena, konečná cena.\n\n\n\n",
|
||||
"SSE.Controllers.Main.errorToken": "Rámec platnosti zabezpečenia dokumentu nie je správne vytvorený.<br>Prosím, kontaktujte svojho správcu dokumentového servera. \n",
|
||||
"SSE.Controllers.Main.errorTokenExpire": "Rámec platnosti zabezpečenia dokumentu vypršal.<br>Prosím, kontaktujte svojho správcu dokumentového servera. \n\n",
|
||||
"SSE.Controllers.Main.errorUnexpectedGuid": "Externá chyba.<br>Neočakávaná GUID. Ak chyba pretrváva, kontaktujte podporu.",
|
||||
"SSE.Controllers.Main.errorUpdateVersion": "Verzia súboru bola zmenená. Stránka sa znova načíta.\n\n",
|
||||
"SSE.Controllers.Main.errorUserDrop": "K súboru nie je možné práve teraz získať prístup.\n",
|
||||
"SSE.Controllers.Main.errorUsersExceed": "Počet používateľov povolených cenovým plánom bol prekročený\n\n",
|
||||
"SSE.Controllers.Main.errorViewerDisconnect": "Spojenie je prerušené. Dokument môžete zobraziť,<br>ale nemôžete ho stiahnuť ani vytlačiť, kým sa spojenie neobnoví.",
|
||||
"SSE.Controllers.Main.errorWrongBracketsCount": "Chyba v zadanom vzorci.<br>Používa sa nesprávny počet zátvoriek.\n\n",
|
||||
"SSE.Controllers.Main.errorWrongOperator": "Chyba v zadanom vzorci. Používa sa nesprávny operátor. <br> Prosím, opravte chybu.",
|
||||
"SSE.Controllers.Main.leavePageText": "V tomto dokumente máte neuložené zmeny. Kliknutím na položku 'Zostať na tejto stránke' čakáte na automatické uloženie dokumentu. Kliknutím na položku 'Odísť z tejto stránky' odstránite všetky neuložené zmeny.\n\n",
|
||||
"SSE.Controllers.Main.loadFontsTextText": "Načítavanie dát...",
|
||||
"SSE.Controllers.Main.loadFontsTitleText": "Načítavanie dát",
|
||||
"SSE.Controllers.Main.loadFontTextText": "Načítavanie dát...",
|
||||
"SSE.Controllers.Main.loadFontTitleText": "Načítavanie dát",
|
||||
"SSE.Controllers.Main.loadImagesTextText": "Načítavanie obrázkov...",
|
||||
"SSE.Controllers.Main.loadImagesTitleText": "Načítanie obrázkov",
|
||||
"SSE.Controllers.Main.loadImageTextText": "Načítanie obrázku ..",
|
||||
"SSE.Controllers.Main.loadImageTitleText": "Načítavanie obrázku\n\n",
|
||||
"SSE.Controllers.Main.loadingDocumentTextText": "Načítavanie dokumentu ...",
|
||||
"SSE.Controllers.Main.loadingDocumentTitleText": "Načítavanie dokumentu",
|
||||
"SSE.Controllers.Main.mailMergeLoadFileText": "Načítavanie zdroja údajov...\n\n",
|
||||
"SSE.Controllers.Main.mailMergeLoadFileTitle": "Načítavanie zdroja údajov\n\n",
|
||||
"SSE.Controllers.Main.notcriticalErrorTitle": "Upozornenie",
|
||||
"SSE.Controllers.Main.openErrorText": "Pri otváraní súboru sa vyskytla chyba",
|
||||
"SSE.Controllers.Main.openTextText": "Otváranie dokumentu...",
|
||||
"SSE.Controllers.Main.openTitleText": "Otváranie dokumentu",
|
||||
"SSE.Controllers.Main.printTextText": "Tlač dokumentu...",
|
||||
"SSE.Controllers.Main.printTitleText": "Tlač dokumentu",
|
||||
"SSE.Controllers.Main.reloadButtonText": "Obnoviť stránku",
|
||||
"SSE.Controllers.Main.requestEditFailedMessageText": "Niekto tento dokument práve upravuje. Skúste neskôr prosím.\n\n",
|
||||
"SSE.Controllers.Main.requestEditFailedTitleText": "Prístup zamietnutý",
|
||||
"SSE.Controllers.Main.saveErrorText": "Pri ukladaní súboru sa vyskytla chyba",
|
||||
"SSE.Controllers.Main.savePreparingText": "Príprava na uloženie\n\n",
|
||||
"SSE.Controllers.Main.savePreparingTitle": "Príprava na uloženie. Prosím čakajte...\n\n",
|
||||
"SSE.Controllers.Main.saveTextText": "Ukladanie dokumentu...",
|
||||
"SSE.Controllers.Main.saveTitleText": "Ukladanie dokumentu",
|
||||
"SSE.Controllers.Main.sendMergeText": "Odoslanie zlúčenia...\n\n",
|
||||
"SSE.Controllers.Main.sendMergeTitle": "Odoslanie zlúčenia\n\n",
|
||||
"SSE.Controllers.Main.textAnonymous": "Anonymný",
|
||||
"SSE.Controllers.Main.textBack": "Späť",
|
||||
"SSE.Controllers.Main.textBuyNow": "Navštíviť webovú stránku",
|
||||
"SSE.Controllers.Main.textCancel": "Zrušiť",
|
||||
"SSE.Controllers.Main.textClose": "Zatvoriť",
|
||||
"SSE.Controllers.Main.textContactUs": "Kontaktujte predajcu\n\n",
|
||||
"SSE.Controllers.Main.textDone": "Hotovo",
|
||||
"SSE.Controllers.Main.textLoadingDocument": "Načítavanie dokumentu",
|
||||
"SSE.Controllers.Main.textNoLicenseTitle": "ONLYOFFICE verzia s otvoreným zdrojom\n\n",
|
||||
"SSE.Controllers.Main.textOK": "OK",
|
||||
"SSE.Controllers.Main.textPassword": "Heslo",
|
||||
"SSE.Controllers.Main.textPreloader": "Nahrávanie...",
|
||||
"SSE.Controllers.Main.textShape": "Tvar",
|
||||
"SSE.Controllers.Main.textStrict": "Prísny režim\n\n",
|
||||
"SSE.Controllers.Main.textTryUndoRedo": "Funkcie späť/zopakovať sú vypnuté pre rýchly spolueditačný režim.<br>Kliknite na tlačítko \"Prísny režim\", aby ste prešli do prísneho spolueditačného režimu a aby ste upravovali súbor bez rušenia ostatných užívateľov a odosielali vaše zmeny iba po ich uložení. Pomocou Rozšírených nastavení editoru môžete prepínať medzi spolueditačnými režimami.",
|
||||
"SSE.Controllers.Main.textUsername": "Užívateľské meno",
|
||||
"SSE.Controllers.Main.titleLicenseExp": "Platnosť licencie uplynula\n\n",
|
||||
"SSE.Controllers.Main.titleServerVersion": "Editor bol aktualizovaný\n\n",
|
||||
"SSE.Controllers.Main.titleUpdateVersion": "Verzia bola zmenená\n\n",
|
||||
"SSE.Controllers.Main.txtAccent": "Akcent",
|
||||
"SSE.Controllers.Main.txtArt": "Váš text tu",
|
||||
"SSE.Controllers.Main.txtBasicShapes": "Základné tvary\n\n",
|
||||
"SSE.Controllers.Main.txtButtons": "Tlačidlá",
|
||||
"SSE.Controllers.Main.txtCallouts": "Popisky obrázku",
|
||||
"SSE.Controllers.Main.txtCharts": "Grafy",
|
||||
"SSE.Controllers.Main.txtDelimiter": "Oddeľovač",
|
||||
"SSE.Controllers.Main.txtDiagramTitle": "Názov grafu",
|
||||
"SSE.Controllers.Main.txtEditingMode": "Nastaviť režim úprav ...\n\n",
|
||||
"SSE.Controllers.Main.txtEncoding": "Kódovanie/zakódovanie",
|
||||
"SSE.Controllers.Main.txtErrorLoadHistory": "Načítavanie histórie zlyhalo\n\n",
|
||||
"SSE.Controllers.Main.txtFiguredArrows": "Šipky",
|
||||
"SSE.Controllers.Main.txtLines": "Riadky/čiary",
|
||||
"SSE.Controllers.Main.txtMath": "Matematika",
|
||||
"SSE.Controllers.Main.txtRectangles": "Obdĺžniky",
|
||||
"SSE.Controllers.Main.txtSeries": "Rady",
|
||||
"SSE.Controllers.Main.txtSpace": "Priestor",
|
||||
"SSE.Controllers.Main.txtStarsRibbons": "Hviezdy a stuhy\n\n",
|
||||
"SSE.Controllers.Main.txtStyle_Bad": "Zlý/chybný",
|
||||
"SSE.Controllers.Main.txtStyle_Calculation": "Kalkulácia",
|
||||
"SSE.Controllers.Main.txtStyle_Check_Cell": "Skontrolovať bunku\n\n",
|
||||
"SSE.Controllers.Main.txtStyle_Comma": "Čiarka",
|
||||
"SSE.Controllers.Main.txtStyle_Currency": "Mena",
|
||||
"SSE.Controllers.Main.txtStyle_Explanatory_Text": "Vysvetľujúci text",
|
||||
"SSE.Controllers.Main.txtStyle_Good": "Dobrý",
|
||||
"SSE.Controllers.Main.txtStyle_Heading_1": "Nadpis 1",
|
||||
"SSE.Controllers.Main.txtStyle_Heading_2": "Nadpis 2",
|
||||
"SSE.Controllers.Main.txtStyle_Heading_3": "Nadpis 3",
|
||||
"SSE.Controllers.Main.txtStyle_Heading_4": "Nadpis 4",
|
||||
"SSE.Controllers.Main.txtStyle_Input": "Vstup/vstupná jednotka\n",
|
||||
"SSE.Controllers.Main.txtStyle_Linked_Cell": "Spojená bunka",
|
||||
"SSE.Controllers.Main.txtStyle_Neutral": "Neutrálny",
|
||||
"SSE.Controllers.Main.txtStyle_Normal": "Normálny",
|
||||
"SSE.Controllers.Main.txtStyle_Note": "Poznámka",
|
||||
"SSE.Controllers.Main.txtStyle_Output": "Výstup",
|
||||
"SSE.Controllers.Main.txtStyle_Percent": "Percento",
|
||||
"SSE.Controllers.Main.txtStyle_Title": "Názov",
|
||||
"SSE.Controllers.Main.txtStyle_Total": "Celkovo",
|
||||
"SSE.Controllers.Main.txtStyle_Warning_Text": "Varovný text",
|
||||
"SSE.Controllers.Main.txtTab": "Tabulátor",
|
||||
"SSE.Controllers.Main.txtXAxis": "Os X\n\n",
|
||||
"SSE.Controllers.Main.txtYAxis": "Os Y\n\n",
|
||||
"SSE.Controllers.Main.unknownErrorText": "Neznáma chyba.",
|
||||
"SSE.Controllers.Main.unsupportedBrowserErrorText ": "Váš prehliadač nie je podporovaný.\n\n",
|
||||
"SSE.Controllers.Main.uploadImageExtMessage": "Neznámy formát obrázka.\n\n",
|
||||
"SSE.Controllers.Main.uploadImageFileCountMessage": "Neboli načítané žiadne obrázky.\n\n",
|
||||
"SSE.Controllers.Main.uploadImageSizeMessage": "Prekročená maximálna veľkosť obrázka",
|
||||
"SSE.Controllers.Main.uploadImageTextText": "Nahrávanie obrázku...",
|
||||
"SSE.Controllers.Main.uploadImageTitleText": "Nahrávanie obrázku",
|
||||
"SSE.Controllers.Main.warnLicenseExp": "Vaša licencia vypršala.<br>Prosím, aktualizujte si svoju licenciu a obnovte stránku.\n\n\n\n",
|
||||
"SSE.Controllers.Main.warnNoLicense": "Používate verziu ONLYOFFICE s otvoreným zdrojom. Verzia má obmedzenia pre súbežné pripojenia k dokumentovému serveru (20 pripojení naraz).<br>Ak potrebujete viac, prosím zvážte nákup komerčnej licencie.\n\n\n",
|
||||
"SSE.Controllers.Main.warnProcessRightsChange": "Bolo vám zamietnuté právo upravovať súbor.",
|
||||
"SSE.Controllers.Search.textNoTextFound": "Text nebol nájdený",
|
||||
"SSE.Controllers.Search.textReplaceAll": "Nahradiť všetko",
|
||||
"SSE.Controllers.Settings.notcriticalErrorTitle": "Upozornenie",
|
||||
"SSE.Controllers.Settings.warnDownloadAs": "Ak budete pokračovať v ukladaní v tomto formáte, všetky funkcie okrem textu sa stratia.<br>Ste si istý, že chcete pokračovať?\n\n",
|
||||
"SSE.Controllers.Statusbar.errorLastSheet": "Pracovný zošit musí mať aspoň jeden viditeľný pracovný list.",
|
||||
"SSE.Controllers.Statusbar.errorRemoveSheet": "Pracovný list sa nedá odstrániť.\n\n",
|
||||
"SSE.Controllers.Statusbar.menuDelete": "Vymazať",
|
||||
"SSE.Controllers.Statusbar.menuDuplicate": "Duplikát",
|
||||
"SSE.Controllers.Statusbar.menuHide": "Skryť",
|
||||
"SSE.Controllers.Statusbar.menuUnhide": "Odkryť",
|
||||
"SSE.Controllers.Statusbar.strSheet": "List",
|
||||
"SSE.Controllers.Statusbar.textExternalLink": "Externý odkaz",
|
||||
"SSE.Controllers.Statusbar.warnDeleteSheet": "Pracovný list môže mať údaje. Vykonať operáciu?\n\n",
|
||||
"SSE.Controllers.Toolbar.dlgLeaveMsgText": "V tomto dokumente máte neuložené zmeny. Kliknutím na položku 'Zostať na tejto stránke' čakáte na automatické uloženie dokumentu. Kliknutím na položku 'Odísť z tejto stránky' odstránite všetky neuložené zmeny.\n\n",
|
||||
"SSE.Controllers.Toolbar.dlgLeaveTitleText": "Opúšťate aplikáciu",
|
||||
"SSE.Controllers.Toolbar.leaveButtonText": "Opustiť túto stránku",
|
||||
"SSE.Controllers.Toolbar.stayButtonText": "Zostať na tejto stránke\n\n",
|
||||
"SSE.Views.AddFunction.sCatDateAndTime": "Dátum a čas",
|
||||
"SSE.Views.AddFunction.sCatEngineering": "Inžinierstvo",
|
||||
"SSE.Views.AddFunction.sCatFinancial": "Finančné",
|
||||
"SSE.Views.AddFunction.sCatInformation": "Informácie",
|
||||
"SSE.Views.AddFunction.sCatLogical": "Logické",
|
||||
"SSE.Views.AddFunction.sCatLookupAndReference": "Vyhľadávanie a referencie",
|
||||
"SSE.Views.AddFunction.sCatMathematic": "Matematika a trigonometria\n\n",
|
||||
"SSE.Views.AddFunction.sCatStatistical": "Štatistické",
|
||||
"SSE.Views.AddFunction.sCatTextAndData": "Text a dáta",
|
||||
"SSE.Views.AddFunction.textBack": "Späť",
|
||||
"SSE.Views.AddFunction.textGroups": "Kategórie",
|
||||
"SSE.Views.AddLink.textAddLink": "Pridať odkaz",
|
||||
"SSE.Views.AddLink.textAddress": "Adresa",
|
||||
"SSE.Views.AddLink.textDisplay": "Zobraziť",
|
||||
"SSE.Views.AddLink.textExternalLink": "Externý odkaz",
|
||||
"SSE.Views.AddLink.textInsert": "Vložiť",
|
||||
"SSE.Views.AddLink.textInternalLink": "Interný rozsah údajov\n\n",
|
||||
"SSE.Views.AddLink.textLink": "Odkaz",
|
||||
"SSE.Views.AddLink.textLinkSettings": "Nastavenia odkazu\n\n",
|
||||
"SSE.Views.AddLink.textLinkType": "Typ odkazu",
|
||||
"SSE.Views.AddLink.textRange": "Rozsah",
|
||||
"SSE.Views.AddLink.textRequired": "Vyžadovaný",
|
||||
"SSE.Views.AddLink.textSheet": "List",
|
||||
"SSE.Views.AddLink.textTip": "Nápoveda",
|
||||
"SSE.Views.AddOther.textAddress": "Adresa",
|
||||
"SSE.Views.AddOther.textBack": "Späť",
|
||||
"SSE.Views.AddOther.textFilter": "Filter",
|
||||
"SSE.Views.AddOther.textFromLibrary": "Obrázok z Knižnice",
|
||||
"SSE.Views.AddOther.textFromURL": "Obrázok z URL adresy",
|
||||
"SSE.Views.AddOther.textImageURL": "URL obrázka",
|
||||
"SSE.Views.AddOther.textInsert": "Vložiť",
|
||||
"SSE.Views.AddOther.textInsertImage": "Vložiť obrázok",
|
||||
"SSE.Views.AddOther.textLink": "Odkaz",
|
||||
"SSE.Views.AddOther.textSort": "Zoradiť a filtrovať",
|
||||
"SSE.Views.EditCell.textAccounting": "Účtovníctvo",
|
||||
"SSE.Views.EditCell.textAlignBottom": "Zarovnať dole",
|
||||
"SSE.Views.EditCell.textAlignCenter": "Centrovať",
|
||||
"SSE.Views.EditCell.textAlignLeft": "Zarovnať doľava",
|
||||
"SSE.Views.EditCell.textAlignMiddle": "Zarovnať na stred",
|
||||
"SSE.Views.EditCell.textAlignRight": "Zarovnať doprava",
|
||||
"SSE.Views.EditCell.textAlignTop": "Zarovnať nahor",
|
||||
"SSE.Views.EditCell.textAllBorders": "Všetky orámovania",
|
||||
"SSE.Views.EditCell.textBack": "Späť",
|
||||
"SSE.Views.EditCell.textBorderStyle": "Štýl orámovania",
|
||||
"SSE.Views.EditCell.textBottomBorder": "Spodné orámovanie",
|
||||
"SSE.Views.EditCell.textCellStyle": "Štýly bunky",
|
||||
"SSE.Views.EditCell.textColor": "Farba",
|
||||
"SSE.Views.EditCell.textCurrency": "Mena",
|
||||
"SSE.Views.EditCell.textDate": "Dátum",
|
||||
"SSE.Views.EditCell.textDiagDownBorder": "Diagonálna dolná hranica\n\n",
|
||||
"SSE.Views.EditCell.textDiagUpBorder": "Diagonálna horná hranica\n",
|
||||
"SSE.Views.EditCell.textDollar": "Dolár",
|
||||
"SSE.Views.EditCell.textEuro": "Euro",
|
||||
"SSE.Views.EditCell.textFillColor": "Vyplniť farbou",
|
||||
"SSE.Views.EditCell.textFonts": "Písma",
|
||||
"SSE.Views.EditCell.textFormat": "Formát",
|
||||
"SSE.Views.EditCell.textGeneral": "Všeobecný",
|
||||
"SSE.Views.EditCell.textInBorders": "Vnútorné hranice\n\n",
|
||||
"SSE.Views.EditCell.textInHorBorder": "Vnútorná horizontálna hranica\n\n",
|
||||
"SSE.Views.EditCell.textInteger": "Celé číslo\n",
|
||||
"SSE.Views.EditCell.textInVertBorder": "Vnútorná vertikálna hranica\n",
|
||||
"SSE.Views.EditCell.textJustified": "Podľa okrajov",
|
||||
"SSE.Views.EditCell.textLeftBorder": "Ľavé orámovanie",
|
||||
"SSE.Views.EditCell.textMedium": "Stredný",
|
||||
"SSE.Views.EditCell.textNoBorder": "Bez orámovania",
|
||||
"SSE.Views.EditCell.textNumber": "Číslo",
|
||||
"SSE.Views.EditCell.textPercentage": "Percentuálny podiel",
|
||||
"SSE.Views.EditCell.textPound": "Libra (britská mena)\n",
|
||||
"SSE.Views.EditCell.textRightBorder": "Pravé orámovanie",
|
||||
"SSE.Views.EditCell.textRouble": "Rubeľ",
|
||||
"SSE.Views.EditCell.textScientific": "Vedecký",
|
||||
"SSE.Views.EditCell.textSize": "Veľkosť",
|
||||
"SSE.Views.EditCell.textText": "Text",
|
||||
"SSE.Views.EditCell.textTextColor": "Farba textu",
|
||||
"SSE.Views.EditCell.textTextFormat": "Formát textu\n\n",
|
||||
"SSE.Views.EditCell.textThick": "Hrubý/tučný",
|
||||
"SSE.Views.EditCell.textThin": "Tenký",
|
||||
"SSE.Views.EditCell.textTime": "Čas",
|
||||
"SSE.Views.EditCell.textTopBorder": "Horné orámovanie",
|
||||
"SSE.Views.EditCell.textWrapText": "Obtekanie textu\n\n",
|
||||
"SSE.Views.EditCell.textYen": "yen/menová jednotka Japonska\n",
|
||||
"SSE.Views.EditChart.textAuto": "automaticky/automatický",
|
||||
"SSE.Views.EditChart.textAxisCrosses": "Kríženie os",
|
||||
"SSE.Views.EditChart.textAxisOptions": "Možnosti osi",
|
||||
"SSE.Views.EditChart.textAxisPosition": "Umiestnenie osi",
|
||||
"SSE.Views.EditChart.textAxisTitle": "Názov osi\n\n",
|
||||
"SSE.Views.EditChart.textBack": "Späť",
|
||||
"SSE.Views.EditChart.textBackward": "Posunúť späť",
|
||||
"SSE.Views.EditChart.textBorder": "Orámovanie",
|
||||
"SSE.Views.EditChart.textBottom": "Dole",
|
||||
"SSE.Views.EditChart.textChart": "Graf",
|
||||
"SSE.Views.EditChart.textChartTitle": "Názov grafu",
|
||||
"SSE.Views.EditChart.textColor": "Farba",
|
||||
"SSE.Views.EditChart.textCrossesValue": "Prekračuje hodnotu",
|
||||
"SSE.Views.EditChart.textDataLabels": "Popisky dát\n\n",
|
||||
"SSE.Views.EditChart.textDesign": "Dizajn/náčrt",
|
||||
"SSE.Views.EditChart.textDisplayUnits": "Zobrazovacie jednotky\n\n",
|
||||
"SSE.Views.EditChart.textFill": "Vyplniť",
|
||||
"SSE.Views.EditChart.textForward": "Posunúť vpred",
|
||||
"SSE.Views.EditChart.textHorAxis": "Vodorovná os",
|
||||
"SSE.Views.EditChart.textHorizontal": "Vodorovný",
|
||||
"SSE.Views.EditChart.textLabelOptions": "Možnosti menoviek\n\n",
|
||||
"SSE.Views.EditChart.textLabelPos": "Umiestnenie menoviek",
|
||||
"SSE.Views.EditChart.textLayout": "Rozloženie",
|
||||
"SSE.Views.EditChart.textLeft": "Vľavo",
|
||||
"SSE.Views.EditChart.textLeftOverlay": "Ľavé prekrytie",
|
||||
"SSE.Views.EditChart.textLegend": "Legenda",
|
||||
"SSE.Views.EditChart.textMajor": "Hlavný\n",
|
||||
"SSE.Views.EditChart.textMajorMinor": "Hlavný a vedľajší",
|
||||
"SSE.Views.EditChart.textMajorType": "Hlavná značka\n\n",
|
||||
"SSE.Views.EditChart.textMaxValue": "Maximálna hodnota",
|
||||
"SSE.Views.EditChart.textMinor": "Vedľajší",
|
||||
"SSE.Views.EditChart.textMinorType": "Vedľajšia značka",
|
||||
"SSE.Views.EditChart.textMinValue": "Minimálna hodnota",
|
||||
"SSE.Views.EditChart.textNone": "Žiadny",
|
||||
"SSE.Views.EditChart.textNoOverlay": "Žiadne prekrytie\n\n",
|
||||
"SSE.Views.EditChart.textOverlay": "Prekrytie",
|
||||
"SSE.Views.EditChart.textRemoveChart": "Odstrániť graf",
|
||||
"SSE.Views.EditChart.textReorder": "Znovu usporiadať/zmena poradia\n\n\n",
|
||||
"SSE.Views.EditChart.textRight": "Vpravo",
|
||||
"SSE.Views.EditChart.textRightOverlay": "Pravé prekrytie\n\n",
|
||||
"SSE.Views.EditChart.textRotated": "Otočený",
|
||||
"SSE.Views.EditChart.textSize": "Veľkosť",
|
||||
"SSE.Views.EditChart.textStyle": "Štýl",
|
||||
"SSE.Views.EditChart.textTickOptions": "Začiarknuť/označiť možnosti\n\n",
|
||||
"SSE.Views.EditChart.textToBackground": "Presunúť do pozadia",
|
||||
"SSE.Views.EditChart.textToForeground": "Premiestniť do popredia",
|
||||
"SSE.Views.EditChart.textTop": "Hore",
|
||||
"SSE.Views.EditChart.textType": "Typ",
|
||||
"SSE.Views.EditChart.textValReverseOrder": "Hodnoty v opačnom poradí",
|
||||
"SSE.Views.EditChart.textVerAxis": "Vertikálna os\n\n",
|
||||
"SSE.Views.EditChart.textVertical": "Zvislý",
|
||||
"SSE.Views.EditHyperlink.textBack": "Späť",
|
||||
"SSE.Views.EditHyperlink.textDisplay": "Zobraziť",
|
||||
"SSE.Views.EditHyperlink.textEditLink": "Upraviť odkaz",
|
||||
"SSE.Views.EditHyperlink.textExternalLink": "Externý odkaz",
|
||||
"SSE.Views.EditHyperlink.textInternalLink": "Interný rozsah údajov\n\n",
|
||||
"SSE.Views.EditHyperlink.textLink": "Odkaz",
|
||||
"SSE.Views.EditHyperlink.textLinkType": "Typ odkazu",
|
||||
"SSE.Views.EditHyperlink.textRange": "Rozsah",
|
||||
"SSE.Views.EditHyperlink.textRemoveLink": "Odstrániť odkaz",
|
||||
"SSE.Views.EditHyperlink.textScreenTip": "Nápoveda",
|
||||
"SSE.Views.EditHyperlink.textSheet": "List",
|
||||
"SSE.Views.EditImage.textAddress": "Adresa",
|
||||
"SSE.Views.EditImage.textBack": "Späť",
|
||||
"SSE.Views.EditImage.textBackward": "Posunúť späť",
|
||||
"SSE.Views.EditImage.textDefault": "Predvolená veľkosť",
|
||||
"SSE.Views.EditImage.textForward": "Posunúť vpred",
|
||||
"SSE.Views.EditImage.textFromLibrary": "Obrázok z Knižnice",
|
||||
"SSE.Views.EditImage.textFromURL": "Obrázok z URL adresy",
|
||||
"SSE.Views.EditImage.textImageURL": "URL obrázka",
|
||||
"SSE.Views.EditImage.textLinkSettings": "Nastavenia odkazu\n\n",
|
||||
"SSE.Views.EditImage.textRemove": "Odstrániť obrázok",
|
||||
"SSE.Views.EditImage.textReorder": "Znovu usporiadať/zmena poradia\n\n\n",
|
||||
"SSE.Views.EditImage.textReplace": "Nahradiť",
|
||||
"SSE.Views.EditImage.textReplaceImg": "Nahradiť obrázok\n\n",
|
||||
"SSE.Views.EditImage.textToBackground": "Presunúť do pozadia",
|
||||
"SSE.Views.EditImage.textToForeground": "Premiestniť do popredia",
|
||||
"SSE.Views.EditShape.textBack": "Späť",
|
||||
"SSE.Views.EditShape.textBackward": "Posunúť späť",
|
||||
"SSE.Views.EditShape.textBorder": "Orámovanie",
|
||||
"SSE.Views.EditShape.textColor": "Farba",
|
||||
"SSE.Views.EditShape.textEffects": "Efekty",
|
||||
"SSE.Views.EditShape.textFill": "Vyplniť",
|
||||
"SSE.Views.EditShape.textForward": "Posunúť vpred",
|
||||
"SSE.Views.EditShape.textOpacity": "Priehľadnosť",
|
||||
"SSE.Views.EditShape.textRemoveShape": "Odstrániť tvar",
|
||||
"SSE.Views.EditShape.textReorder": "Znovu usporiadať/zmena poradia\n\n\n",
|
||||
"SSE.Views.EditShape.textReplace": "Nahradiť",
|
||||
"SSE.Views.EditShape.textSize": "Veľkosť",
|
||||
"SSE.Views.EditShape.textStyle": "Štýl",
|
||||
"SSE.Views.EditShape.textToBackground": "Presunúť do pozadia",
|
||||
"SSE.Views.EditShape.textToForeground": "Premiestniť do popredia",
|
||||
"SSE.Views.EditText.textBack": "Späť",
|
||||
"SSE.Views.EditText.textFillColor": "Vyplniť farbou",
|
||||
"SSE.Views.EditText.textFonts": "Písma",
|
||||
"SSE.Views.EditText.textSize": "Veľkosť",
|
||||
"SSE.Views.EditText.textTextColor": "Farba textu",
|
||||
"SSE.Views.Search.textDone": "Hotovo",
|
||||
"SSE.Views.Search.textFind": "Nájsť",
|
||||
"SSE.Views.Search.textFindAndReplace": "Nájsť a nahradiť",
|
||||
"SSE.Views.Search.textMatchCase": "Zhodný prípad",
|
||||
"SSE.Views.Search.textMatchCell": "Prispôsobiť bunku",
|
||||
"SSE.Views.Search.textReplace": "Nahradiť",
|
||||
"SSE.Views.Search.textSearch": "Hľadať",
|
||||
"SSE.Views.Search.textSearchIn": "Hľadať v",
|
||||
"SSE.Views.Search.textSheet": "List",
|
||||
"SSE.Views.Search.textWorkbook": "Zošit",
|
||||
"SSE.Views.Settings.textAbout": "O aplikácii",
|
||||
"SSE.Views.Settings.textAddress": "adresa",
|
||||
"SSE.Views.Settings.textAuthor": "Autor",
|
||||
"SSE.Views.Settings.textBack": "Späť",
|
||||
"SSE.Views.Settings.textCreateDate": "Dátum vytvorenia",
|
||||
"SSE.Views.Settings.textDocInfo": "Informácie tabuľky\n\n",
|
||||
"SSE.Views.Settings.textDocTitle": "Názov zošitu",
|
||||
"SSE.Views.Settings.textDone": "Hotovo",
|
||||
"SSE.Views.Settings.textDownload": "Stiahnuť",
|
||||
"SSE.Views.Settings.textDownloadAs": "Stiahnuť ako...",
|
||||
"SSE.Views.Settings.textEditDoc": "Upraviť dokument",
|
||||
"SSE.Views.Settings.textEmail": "E-mail",
|
||||
"SSE.Views.Settings.textFind": "Nájsť",
|
||||
"SSE.Views.Settings.textFindAndReplace": "Nájsť a nahradiť",
|
||||
"SSE.Views.Settings.textHelp": "Pomoc",
|
||||
"SSE.Views.Settings.textLoading": "Nahrávanie...",
|
||||
"SSE.Views.Settings.textPoweredBy": "Poháňaný ",
|
||||
"SSE.Views.Settings.textSettings": "Nastavenia",
|
||||
"SSE.Views.Settings.textTel": "Tel",
|
||||
"SSE.Views.Settings.textVersion": "Verzia",
|
||||
"SSE.Views.Settings.unknownText": "Neznámy",
|
||||
"SSE.Views.Toolbar.textBack": "Späť"
|
||||
}
|
|
@ -205,6 +205,7 @@
|
|||
"SSE.Controllers.Main.titleLicenseExp": "许可证过期",
|
||||
"SSE.Controllers.Main.titleServerVersion": "编辑器已更新",
|
||||
"SSE.Controllers.Main.titleUpdateVersion": "版本已变化",
|
||||
"SSE.Controllers.Main.txtAccent": "Accent",
|
||||
"SSE.Controllers.Main.txtArt": "你的文本在此",
|
||||
"SSE.Controllers.Main.txtBasicShapes": "基本形状",
|
||||
"SSE.Controllers.Main.txtButtons": "按钮",
|
||||
|
@ -222,6 +223,27 @@
|
|||
"SSE.Controllers.Main.txtSeries": "系列",
|
||||
"SSE.Controllers.Main.txtSpace": "空格",
|
||||
"SSE.Controllers.Main.txtStarsRibbons": "星星和丝带",
|
||||
"SSE.Controllers.Main.txtStyle_Bad": "Bad",
|
||||
"SSE.Controllers.Main.txtStyle_Calculation": "Calculation",
|
||||
"SSE.Controllers.Main.txtStyle_Check_Cell": "Check Cell",
|
||||
"SSE.Controllers.Main.txtStyle_Comma": "Comma",
|
||||
"SSE.Controllers.Main.txtStyle_Currency": "Currency",
|
||||
"SSE.Controllers.Main.txtStyle_Explanatory_Text": "Explanatory Text",
|
||||
"SSE.Controllers.Main.txtStyle_Good": "Good",
|
||||
"SSE.Controllers.Main.txtStyle_Heading_1": "Heading 1",
|
||||
"SSE.Controllers.Main.txtStyle_Heading_2": "Heading 2",
|
||||
"SSE.Controllers.Main.txtStyle_Heading_3": "Heading 3",
|
||||
"SSE.Controllers.Main.txtStyle_Heading_4": "Heading 4",
|
||||
"SSE.Controllers.Main.txtStyle_Input": "Input",
|
||||
"SSE.Controllers.Main.txtStyle_Linked_Cell": "Linked Cell",
|
||||
"SSE.Controllers.Main.txtStyle_Neutral": "Neutral",
|
||||
"SSE.Controllers.Main.txtStyle_Normal": "Normal",
|
||||
"SSE.Controllers.Main.txtStyle_Note": "Note",
|
||||
"SSE.Controllers.Main.txtStyle_Output": "Output",
|
||||
"SSE.Controllers.Main.txtStyle_Percent": "Percent",
|
||||
"SSE.Controllers.Main.txtStyle_Title": "Title",
|
||||
"SSE.Controllers.Main.txtStyle_Total": "Total",
|
||||
"SSE.Controllers.Main.txtStyle_Warning_Text": "Warning Text",
|
||||
"SSE.Controllers.Main.txtTab": "标签",
|
||||
"SSE.Controllers.Main.txtXAxis": "X轴",
|
||||
"SSE.Controllers.Main.txtYAxis": "Y轴",
|
||||
|
@ -456,6 +478,7 @@
|
|||
"SSE.Views.Settings.textFindAndReplace": "查找和替换",
|
||||
"SSE.Views.Settings.textHelp": "帮助",
|
||||
"SSE.Views.Settings.textLoading": "载入中……",
|
||||
"SSE.Views.Settings.textPoweredBy": "Powered by",
|
||||
"SSE.Views.Settings.textSettings": "设置",
|
||||
"SSE.Views.Settings.textTel": "电话",
|
||||
"SSE.Views.Settings.textVersion": "版本",
|
||||
|
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -304,6 +304,29 @@ i.icon {
|
|||
height: 22px;
|
||||
.encoded-svg-background('<svg xmlns="http://www.w3.org/2000/svg" version="1.1" x="0" y="0" viewBox="-238 240 22 22" xml:space="preserve"><style type="text/css">.st0{fill:@{themeColor}}</style><polygon class="st0" points="-233.5 242 -233.5 242 -233.5 242 -237 245.6 -236.3 246.3 -234 243.9 -234 260 -233 260 -233 243.9 -230.7 246.3 -230 245.6 "/><path class="st0" d="M-226.53 260l2.9-7.55h1.08L-219.47 260h-1.14l-0.88-2.29h-3.16L-225.47 260H-226.53zM-224.36 256.9h2.56l-0.79-2.09c-0.24-0.64-0.42-1.16-0.54-1.57 -0.1 0.48-0.23 0.97-0.41 1.44L-224.36 256.9z"/><path class="st0" d="M-225.97 250.55v-0.93l3.87-4.84c0.28-0.34 0.54-0.64 0.78-0.9h-4.21V243h5.41v0.89l-4.24 5.24 -0.46 0.53H-220v0.89H-225.97z"/></svg>');
|
||||
}
|
||||
|
||||
// Formats
|
||||
|
||||
&.icon-format-pdf {
|
||||
width: 30px;
|
||||
height: 30px;
|
||||
.encoded-svg-background('<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="-3.363 -3.658 33 33" height="33px" width="33px" y="0px" x="0px" xml:space="preserve"><defs><style>.cls-1{fill:#4F9E4F;}</style></defs><path class="cls-1" d="M8.512,14.989c0.8-1.567,1.709-3.334,2.438-5.107l0,0l0.287-0.699 c-0.949-3.616-1.52-6.52-1.011-8.396l0,0C10.362,0.297,10.929,0,11.535,0l0,0l0.368,0.005h0.068c0.83-0.013,1.22,1.042,1.264,1.453 l0,0c0.073,0.684-0.242,1.839-0.242,1.839l0,0c0-0.467,0.018-1.221-0.276-1.873l0,0c-0.343-0.753-0.671-1.203-0.965-1.274l0,0 C11.604,0.25,11.46,0.455,11.411,0.85l0,0c-0.104,0.553-0.134,1.252-0.134,1.611l0,0c0,1.272,0.25,2.952,0.743,4.684l0,0 c0.093-0.269,0.174-0.526,0.24-0.768l0,0c0.101-0.38,0.743-2.9,0.743-2.9l0,0c0,0-0.162,3.354-0.388,4.371l0,0 c-0.049,0.215-0.103,0.427-0.158,0.644l0,0c0.812,2.268,2.121,4.292,3.68,5.75l0,0c0.615,0.575,1.393,1.038,2.128,1.461l0,0 c1.605-0.229,3.084-0.338,4.318-0.324l0,0c1.637,0.021,2.838,0.265,3.324,0.743l0,0c0.237,0.232,0.335,0.514,0.364,0.83l0,0 c0.007,0.122-0.053,0.41-0.069,0.482l0,0c0.018-0.088,0.018-0.519-1.298-0.938l0,0c-1.033-0.33-2.971-0.32-5.295-0.073l0,0 c2.688,1.315,5.308,1.969,6.138,1.577l0,0c0.203-0.1,0.448-0.437,0.448-0.437l0,0c0,0-0.146,0.665-0.252,0.831l0,0 c-0.134,0.18-0.396,0.376-0.646,0.44l0,0c-1.312,0.351-4.722-0.459-7.695-2.158l0,0c-3.322,0.489-6.972,1.394-9.896,2.354l0,0 c-2.874,5.036-5.036,7.35-6.793,6.47l0,0l-0.646-0.325c-0.263-0.149-0.303-0.516-0.242-0.813l0,0 c0.205-1.003,1.462-2.513,3.988-4.021l0,0c0.272-0.165,1.483-0.805,1.483-0.805l0,0c0,0-0.896,0.868-1.106,1.038l0,0 c-2.016,1.652-3.504,3.73-3.467,4.536l0,0l0.007,0.069C2.643,24.936,5.21,21.45,8.512,14.989 M9.559,15.525 c-0.551,1.038-1.09,2.001-1.588,2.886l0,0c2.752-1.153,5.715-1.892,8.535-2.416l0,0c-0.379-0.262-0.746-0.539-1.093-0.832l0,0 c-1.555-1.313-2.737-2.955-3.596-4.681l0,0C11.273,11.948,10.626,13.507,9.559,15.525" /></svg>');
|
||||
}
|
||||
&.icon-format-xlsx {
|
||||
width: 30px;
|
||||
height: 30px;
|
||||
.encoded-svg-background('<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="63" height="63" viewBox="16.287 32.45 63.000002 63" xml:space="preserve" ><defs><style>.cls-1{fill:#4f9e4f;}</style></defs><path class="cls-1" d="m 53.774,43.725 c 2.825,-0.2 5.663,-0.375 8.5,-0.512 -3.337,6.837 -6.688,13.675 -10.087,20.487 3.438,7 6.95,13.95 10.399,20.95 -3.012,-0.175 -6.012,-0.362 -9.024,-0.575 -2.125,-5.213 -4.713,-10.25 -6.237,-15.7 -1.7,5.075 -4.125,9.862 -6.075,14.838 -2.737,-0.038 -5.476,-0.15 -8.213,-0.263 3.212,-6.287 6.312,-12.624 9.624,-18.874 -2.813,-6.438 -5.899,-12.75 -8.8,-19.15 2.75,-0.163 5.5,-0.325 8.25,-0.475 1.862,4.888 3.9,9.712 5.438,14.725 1.65,-5.313 4.112,-10.313 6.225,-15.451 z" /></svg>');
|
||||
}
|
||||
&.icon-format-ods {
|
||||
width: 30px;
|
||||
height: 30px;
|
||||
.encoded-svg-background('<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 -54.11 193.631 193.63" height="193.63px" width="193.631px" y="0px" x="0px" xml:space="preserve"><defs><style>.cls-1{fill:#4F9E4F;}</style></defs><path d="M193.16,5.615V5.609c-0.334-0.173-0.671-0.334-1.005-0.497 c-5.356-2.586-11.256-4.287-17.525-4.88c-11.083-1.049-21.673,1.496-30.622,6.678c-6.13-3.477-13.071-5.741-20.542-6.448 c-10.298-0.974-20.17,1.16-28.697,5.629c-0.084,0.044-0.17,0.095-0.251,0.135c-0.207,0.162-0.347,0.414-0.347,0.697 c0,0.492,0.392,0.89,0.889,0.89c0.046,0,0.091-0.007,0.139-0.017c0.021-0.002,0.042-0.011,0.061-0.015 c4.586-0.848,9.368-1.088,14.243-0.627c13.684,1.293,25.609,5.521,33.975,15.011c0.437,0.455,0.822,0.427,1.266-0.024 c10.523-12.2,26.662-17.021,44.006-15.382c0.968,0.094,1.921,0.213,2.871,0.355c0.33,0.05,0.836,0.134,1.133,0.167 c0.572,0.063,0.88-0.397,0.88-0.891C193.629,6.056,193.485,5.776,193.16,5.615L193.16,5.615z" class="cls-1" /><path d="M173.054,48.544c-0.057-0.028-0.107-0.046-0.154-0.065 c-10.518-4.35-22.021-6.758-34.094-6.758c-19.293,0-37.154,6.127-51.757,16.524c-11.146-4.993-23.497-7.776-36.496-7.776 c-18.485,0-35.648,5.617-49.895,15.237c-0.047,0.029-0.095,0.066-0.149,0.104C0.205,66.044,0,66.418,0,66.848 c0,0.729,0.592,1.323,1.323,1.323c0.086,0,0.174-0.013,0.259-0.03c0.058-0.015,0.107-0.027,0.161-0.048 c8.166-2.456,16.832-3.791,25.798-3.791c23.836,0,45.083,5.634,61.08,20.681c0.038,0.028,0.071,0.065,0.111,0.104 c0.232,0.205,0.53,0.325,0.863,0.325c0.412,0,0.774-0.188,1.018-0.486c0.006,0.005,0.515-0.72,0.773-1.069 c16.246-22.217,43.03-33.172,72.845-33.172c2.129,0,4.246,0.08,6.338,0.225c0.602,0.047,1.873,0.144,1.902,0.144 c0.727,0,1.322-0.591,1.322-1.323C173.796,49.203,173.492,48.752,173.054,48.544L173.054,48.544z" class="cls-1" /></svg>');
|
||||
}
|
||||
&.icon-format-csv {
|
||||
width: 30px;
|
||||
height: 30px;
|
||||
.encoded-svg-background('<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 58 58" height="58px" width="58px" y="0px" x="0px" xml:space="preserve"><defs><style>.cls-1{fill:#4F9E4F;}</style></defs><rect height="1" width="9" class="cls-1" y="42.5" x="13.5" /><rect height="1" width="9" class="cls-1" y="38.5" x="13.5" /><rect height="1" width="9" class="cls-1" y="34.5" x="13.5" /><rect height="1" width="9" class="cls-1" y="30.5" x="13.5" /><rect height="1" width="9" class="cls-1" y="26.5" x="13.5" /><rect height="1" width="9" class="cls-1" y="22.5" x="13.5" /><rect height="1" width="9" class="cls-1" y="18.5" x="13.5" /><rect height="1" width="9" class="cls-1" y="14.5" x="13.5" /><rect height="1" width="9" class="cls-1" y="42.5" x="24.5" /><rect height="1" width="9" class="cls-1" y="38.5" x="24.5" /><rect height="1" width="9" class="cls-1" y="34.5" x="24.5" /><rect height="1" width="9" class="cls-1" y="30.5" x="24.5" /><rect height="1" width="9" class="cls-1" y="26.5" x="24.5" /><rect height="1" width="9" class="cls-1" y="22.5" x="24.5" /><rect height="1" width="9" class="cls-1" y="18.5" x="24.5" /><rect height="1" width="9" class="cls-1" y="14.5" x="24.5" /><rect height="1" width="9" class="cls-1" y="42.5" x="35.5" /><rect height="1" width="9" class="cls-1" y="38.5" x="35.5" /><rect height="1" width="9" class="cls-1" y="34.5" x="35.5" /><rect height="1" width="9" class="cls-1" y="30.5" x="35.5" /><rect height="1" width="9" class="cls-1" y="26.5" x="35.5" /><rect height="1" width="9" class="cls-1" y="22.5" x="35.5" /><rect height="1" width="9" class="cls-1" y="18.5" x="35.5" /><rect height="1" width="9" class="cls-1" y="14.5" x="35.5" /></svg>');
|
||||
}
|
||||
}
|
||||
|
||||
.chart-types .thumb {
|
||||
|
|
|
@ -267,6 +267,29 @@ i.icon {
|
|||
height: 22px;
|
||||
.encoded-svg-background('<svg xmlns="http://www.w3.org/2000/svg" version="1.1" x="0" y="0" viewBox="-238 240 22 22" xml:space="preserve"><style type="text/css">.st0{fill:@{themeColor}}</style><polygon class="st0" points="-233.5 242 -233.5 242 -233.5 242 -237 245.6 -236.3 246.3 -234 243.9 -234 260 -233 260 -233 243.9 -230.7 246.3 -230 245.6 "/><path class="st0" d="M-226.53 260l2.9-7.55h1.08L-219.47 260h-1.14l-0.88-2.29h-3.16L-225.47 260H-226.53zM-224.36 256.9h2.56l-0.79-2.09c-0.24-0.64-0.42-1.16-0.54-1.57 -0.1 0.48-0.23 0.97-0.41 1.44L-224.36 256.9z"/><path class="st0" d="M-225.97 250.55v-0.93l3.87-4.84c0.28-0.34 0.54-0.64 0.78-0.9h-4.21V243h5.41v0.89l-4.24 5.24 -0.46 0.53H-220v0.89H-225.97z"/></svg>');
|
||||
}
|
||||
|
||||
// Formats
|
||||
|
||||
&.icon-format-pdf {
|
||||
width: 30px;
|
||||
height: 30px;
|
||||
.encoded-svg-background('<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="-3.363 -3.658 33 33" height="33px" width="33px" y="0px" x="0px" xml:space="preserve"><defs><style>.cls-1{fill:#4F9E4F;}</style></defs><path class="cls-1" d="M8.512,14.989c0.8-1.567,1.709-3.334,2.438-5.107l0,0l0.287-0.699 c-0.949-3.616-1.52-6.52-1.011-8.396l0,0C10.362,0.297,10.929,0,11.535,0l0,0l0.368,0.005h0.068c0.83-0.013,1.22,1.042,1.264,1.453 l0,0c0.073,0.684-0.242,1.839-0.242,1.839l0,0c0-0.467,0.018-1.221-0.276-1.873l0,0c-0.343-0.753-0.671-1.203-0.965-1.274l0,0 C11.604,0.25,11.46,0.455,11.411,0.85l0,0c-0.104,0.553-0.134,1.252-0.134,1.611l0,0c0,1.272,0.25,2.952,0.743,4.684l0,0 c0.093-0.269,0.174-0.526,0.24-0.768l0,0c0.101-0.38,0.743-2.9,0.743-2.9l0,0c0,0-0.162,3.354-0.388,4.371l0,0 c-0.049,0.215-0.103,0.427-0.158,0.644l0,0c0.812,2.268,2.121,4.292,3.68,5.75l0,0c0.615,0.575,1.393,1.038,2.128,1.461l0,0 c1.605-0.229,3.084-0.338,4.318-0.324l0,0c1.637,0.021,2.838,0.265,3.324,0.743l0,0c0.237,0.232,0.335,0.514,0.364,0.83l0,0 c0.007,0.122-0.053,0.41-0.069,0.482l0,0c0.018-0.088,0.018-0.519-1.298-0.938l0,0c-1.033-0.33-2.971-0.32-5.295-0.073l0,0 c2.688,1.315,5.308,1.969,6.138,1.577l0,0c0.203-0.1,0.448-0.437,0.448-0.437l0,0c0,0-0.146,0.665-0.252,0.831l0,0 c-0.134,0.18-0.396,0.376-0.646,0.44l0,0c-1.312,0.351-4.722-0.459-7.695-2.158l0,0c-3.322,0.489-6.972,1.394-9.896,2.354l0,0 c-2.874,5.036-5.036,7.35-6.793,6.47l0,0l-0.646-0.325c-0.263-0.149-0.303-0.516-0.242-0.813l0,0 c0.205-1.003,1.462-2.513,3.988-4.021l0,0c0.272-0.165,1.483-0.805,1.483-0.805l0,0c0,0-0.896,0.868-1.106,1.038l0,0 c-2.016,1.652-3.504,3.73-3.467,4.536l0,0l0.007,0.069C2.643,24.936,5.21,21.45,8.512,14.989 M9.559,15.525 c-0.551,1.038-1.09,2.001-1.588,2.886l0,0c2.752-1.153,5.715-1.892,8.535-2.416l0,0c-0.379-0.262-0.746-0.539-1.093-0.832l0,0 c-1.555-1.313-2.737-2.955-3.596-4.681l0,0C11.273,11.948,10.626,13.507,9.559,15.525" /></svg>');
|
||||
}
|
||||
&.icon-format-xlsx {
|
||||
width: 30px;
|
||||
height: 30px;
|
||||
.encoded-svg-background('<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="63" height="63" viewBox="16.287 32.45 63.000002 63" xml:space="preserve" ><defs><style>.cls-1{fill:#4f9e4f;}</style></defs><path class="cls-1" d="m 53.774,43.725 c 2.825,-0.2 5.663,-0.375 8.5,-0.512 -3.337,6.837 -6.688,13.675 -10.087,20.487 3.438,7 6.95,13.95 10.399,20.95 -3.012,-0.175 -6.012,-0.362 -9.024,-0.575 -2.125,-5.213 -4.713,-10.25 -6.237,-15.7 -1.7,5.075 -4.125,9.862 -6.075,14.838 -2.737,-0.038 -5.476,-0.15 -8.213,-0.263 3.212,-6.287 6.312,-12.624 9.624,-18.874 -2.813,-6.438 -5.899,-12.75 -8.8,-19.15 2.75,-0.163 5.5,-0.325 8.25,-0.475 1.862,4.888 3.9,9.712 5.438,14.725 1.65,-5.313 4.112,-10.313 6.225,-15.451 z" /></svg>');
|
||||
}
|
||||
&.icon-format-ods {
|
||||
width: 30px;
|
||||
height: 30px;
|
||||
.encoded-svg-background('<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 -54.11 193.631 193.63" height="193.63px" width="193.631px" y="0px" x="0px" xml:space="preserve"><defs><style>.cls-1{fill:#4F9E4F;}</style></defs><path d="M193.16,5.615V5.609c-0.334-0.173-0.671-0.334-1.005-0.497 c-5.356-2.586-11.256-4.287-17.525-4.88c-11.083-1.049-21.673,1.496-30.622,6.678c-6.13-3.477-13.071-5.741-20.542-6.448 c-10.298-0.974-20.17,1.16-28.697,5.629c-0.084,0.044-0.17,0.095-0.251,0.135c-0.207,0.162-0.347,0.414-0.347,0.697 c0,0.492,0.392,0.89,0.889,0.89c0.046,0,0.091-0.007,0.139-0.017c0.021-0.002,0.042-0.011,0.061-0.015 c4.586-0.848,9.368-1.088,14.243-0.627c13.684,1.293,25.609,5.521,33.975,15.011c0.437,0.455,0.822,0.427,1.266-0.024 c10.523-12.2,26.662-17.021,44.006-15.382c0.968,0.094,1.921,0.213,2.871,0.355c0.33,0.05,0.836,0.134,1.133,0.167 c0.572,0.063,0.88-0.397,0.88-0.891C193.629,6.056,193.485,5.776,193.16,5.615L193.16,5.615z" class="cls-1" /><path d="M173.054,48.544c-0.057-0.028-0.107-0.046-0.154-0.065 c-10.518-4.35-22.021-6.758-34.094-6.758c-19.293,0-37.154,6.127-51.757,16.524c-11.146-4.993-23.497-7.776-36.496-7.776 c-18.485,0-35.648,5.617-49.895,15.237c-0.047,0.029-0.095,0.066-0.149,0.104C0.205,66.044,0,66.418,0,66.848 c0,0.729,0.592,1.323,1.323,1.323c0.086,0,0.174-0.013,0.259-0.03c0.058-0.015,0.107-0.027,0.161-0.048 c8.166-2.456,16.832-3.791,25.798-3.791c23.836,0,45.083,5.634,61.08,20.681c0.038,0.028,0.071,0.065,0.111,0.104 c0.232,0.205,0.53,0.325,0.863,0.325c0.412,0,0.774-0.188,1.018-0.486c0.006,0.005,0.515-0.72,0.773-1.069 c16.246-22.217,43.03-33.172,72.845-33.172c2.129,0,4.246,0.08,6.338,0.225c0.602,0.047,1.873,0.144,1.902,0.144 c0.727,0,1.322-0.591,1.322-1.323C173.796,49.203,173.492,48.752,173.054,48.544L173.054,48.544z" class="cls-1" /></svg>');
|
||||
}
|
||||
&.icon-format-csv {
|
||||
width: 30px;
|
||||
height: 30px;
|
||||
.encoded-svg-background('<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 58 58" height="58px" width="58px" y="0px" x="0px" xml:space="preserve"><defs><style>.cls-1{fill:#4F9E4F;}</style></defs><rect height="1" width="9" class="cls-1" y="42.5" x="13.5" /><rect height="1" width="9" class="cls-1" y="38.5" x="13.5" /><rect height="1" width="9" class="cls-1" y="34.5" x="13.5" /><rect height="1" width="9" class="cls-1" y="30.5" x="13.5" /><rect height="1" width="9" class="cls-1" y="26.5" x="13.5" /><rect height="1" width="9" class="cls-1" y="22.5" x="13.5" /><rect height="1" width="9" class="cls-1" y="18.5" x="13.5" /><rect height="1" width="9" class="cls-1" y="14.5" x="13.5" /><rect height="1" width="9" class="cls-1" y="42.5" x="24.5" /><rect height="1" width="9" class="cls-1" y="38.5" x="24.5" /><rect height="1" width="9" class="cls-1" y="34.5" x="24.5" /><rect height="1" width="9" class="cls-1" y="30.5" x="24.5" /><rect height="1" width="9" class="cls-1" y="26.5" x="24.5" /><rect height="1" width="9" class="cls-1" y="22.5" x="24.5" /><rect height="1" width="9" class="cls-1" y="18.5" x="24.5" /><rect height="1" width="9" class="cls-1" y="14.5" x="24.5" /><rect height="1" width="9" class="cls-1" y="42.5" x="35.5" /><rect height="1" width="9" class="cls-1" y="38.5" x="35.5" /><rect height="1" width="9" class="cls-1" y="34.5" x="35.5" /><rect height="1" width="9" class="cls-1" y="30.5" x="35.5" /><rect height="1" width="9" class="cls-1" y="26.5" x="35.5" /><rect height="1" width="9" class="cls-1" y="22.5" x="35.5" /><rect height="1" width="9" class="cls-1" y="18.5" x="35.5" /><rect height="1" width="9" class="cls-1" y="14.5" x="35.5" /></svg>');
|
||||
}
|
||||
}
|
||||
|
||||
// Overwrite color for toolbar
|
||||
|
|
|
@ -5,17 +5,16 @@
|
|||
"private": true,
|
||||
"dependencies": {
|
||||
"lodash": "^4.0.0",
|
||||
"grunt": "0.4.5",
|
||||
"grunt-replace": "0.7.3",
|
||||
"grunt-html-minify": "0.3.1",
|
||||
"grunt": "^1.0.0",
|
||||
"grunt-replace": "^1.0.0",
|
||||
"grunt-text-replace": "0.3.11",
|
||||
"mocha": "1.18.2",
|
||||
"mocha": "^3.0.0",
|
||||
"chai": "1.9.1",
|
||||
"grunt-mocha": "0.4.11",
|
||||
"grunt-mocha": "^1.0.0",
|
||||
"grunt-jscoverage": "0.1.1",
|
||||
"grunt-contrib-less": "^1.0.0",
|
||||
"grunt-contrib-requirejs": "^0.4.4",
|
||||
"grunt-contrib-clean": "^0.6.0",
|
||||
"grunt-contrib-requirejs": "^1.0.0",
|
||||
"grunt-contrib-clean": "^1.0.0",
|
||||
"grunt-contrib-copy": "^0.8.0",
|
||||
"grunt-contrib-uglify": "^0.8.1",
|
||||
"grunt-contrib-concat": "^0.5.1",
|
||||
|
|
1
vendor/sockjs/sockjs.min.js
vendored
1
vendor/sockjs/sockjs.min.js
vendored
File diff suppressed because one or more lines are too long
Loading…
Reference in a new issue