Merge branch 'release/v7.2.0' into fix/pe-custom-path

This commit is contained in:
Julia Radzhabova 2022-08-17 11:45:52 +03:00
commit dbf81d215e
74 changed files with 1189 additions and 221 deletions

View file

@ -5,6 +5,7 @@
@import "../../../../common/main/resources/less/colors-table.less";
@import "../../../../common/main/resources/less/colors-table-classic.less";
@import "../../../../common/main/resources/less/colors-table-dark.less";
@import "../../../../common/main/resources/less/colors-table-dark-contrast.less";
// Core variables and mixins
//@import "../../../../../vendor/bootstrap/less/variables.less";

View file

@ -756,7 +756,7 @@ define([
'focus': onFocusDocName.bind(this),
'blur': function (e) {
me.imgCrypted && me.imgCrypted.toggleClass('hidden', false);
label[0].selectionStart = label[0].selectionEnd = 0;
Common.Utils.isGecko && (label[0].selectionStart = label[0].selectionEnd = 0);
if(!me.isSaveDocName) {
me.withoutExt = false;
me.setDocTitle(me.documentCaption);

View file

@ -514,6 +514,7 @@
background-color: transparent;
border: 0 none;
cursor: default;
.user-select(text);
&:hover:not(:disabled),&:focus{
box-shadow: 0 0 0 1px @highlight-header-button-hover-ie;

View file

@ -89,6 +89,8 @@ const PageCollaboration = inject('storeAppOptions', 'users')(observer(props => {
const { t } = useTranslation();
const _t = t('Common.Collaboration', {returnObjects: true});
const appOptions = props.storeAppOptions;
const isViewer = appOptions.isViewer;
return (
<View style={props.style} stackPages={true} routes={routes} url={props.page && `/${props.page}/`}>
<Page name="collab__main">
@ -112,7 +114,7 @@ const PageCollaboration = inject('storeAppOptions', 'users')(observer(props => {
<Icon slot="media" icon="icon-insert-comment"></Icon>
</ListItem>
}
{window.editorType === 'de' && (appOptions.canReview || appOptions.canViewReview) &&
{(window.editorType === 'de' && (appOptions.canReview || appOptions.canViewReview) && !isViewer) &&
<ListItem link={'/review/'} title={_t.textReview}>
<Icon slot="media" icon="icon-review"></Icon>
</ListItem>

View file

@ -636,7 +636,7 @@ const ViewComments = inject("storeComments", "storeAppOptions", "storeReview")(o
const _t = t('Common.Collaboration', {returnObjects: true});
const isAndroid = Device.android;
const displayMode = storeReview.displayMode;
const isViewer = storeAppOptions.isViewer;
const viewMode = !storeAppOptions.canComments;
const comments = storeComments.groupCollectionFilter || storeComments.collectionComments;
const isEdit = storeAppOptions.isEdit || storeAppOptions.isRestrictedEdit;
@ -677,8 +677,8 @@ const ViewComments = inject("storeComments", "storeAppOptions", "storeReview")(o
</div>
{isEdit && !viewMode &&
<div className='right'>
{(comment.editable && displayMode === 'markup' && !wsProps?.Objects) && <div className='comment-resolve' onClick={() => {onResolveComment(comment);}}><Icon icon={comment.resolved ? 'icon-resolve-comment check' : 'icon-resolve-comment'} /></div> }
{(displayMode === 'markup' && !wsProps?.Objects) &&
{(comment.editable && displayMode === 'markup' && !wsProps?.Objects) && <div className='comment-resolve' onClick={() => {!isViewer && onResolveComment(comment);}}><Icon icon={comment.resolved ? 'icon-resolve-comment check' : 'icon-resolve-comment'} /></div> }
{(displayMode === 'markup' && !wsProps?.Objects && !isViewer) &&
<div className='comment-menu'
onClick={() => {setComment(comment); openActionComment(true);}}>
<Icon icon='icon-menu-comment'/>
@ -708,7 +708,7 @@ const ViewComments = inject("storeComments", "storeAppOptions", "storeReview")(o
<div className='reply-date'>{reply.date}</div>
</div>
</div>
{isEdit && !viewMode && reply.editable &&
{isEdit && !viewMode && reply.editable && !isViewer &&
<div className='right'>
<div className='reply-menu'
onClick={() => {setComment(comment); setReply(reply); openActionReply(true);}}
@ -747,7 +747,7 @@ const CommentList = inject("storeComments", "storeAppOptions", "storeReview")(ob
const _t = t('Common.Collaboration', {returnObjects: true});
const isAndroid = Device.android;
const displayMode = storeReview.displayMode;
const isViewer = storeAppOptions.isViewer;
const viewMode = !storeAppOptions.canComments;
const isEdit = storeAppOptions.isEdit || storeAppOptions.isRestrictedEdit;
const comments = storeComments.showComments;
@ -787,7 +787,7 @@ const CommentList = inject("storeComments", "storeAppOptions", "storeReview")(ob
<Fragment>
<Toolbar position='bottom'>
{isEdit && !viewMode &&
<Link className={`btn-add-reply${wsProps?.Objects ? ' disabled' : ''}`} href='#' onClick={() => {onCommentMenuClick('addReply', comment);}}>{_t.textAddReply}</Link>
<Link className={`btn-add-reply${wsProps?.Objects || isViewer ? ' disabled' : ''}`} href='#' onClick={() => {onCommentMenuClick('addReply', comment);}}>{_t.textAddReply}</Link>
}
<div className='comment-navigation row'>
<Link href='#' onClick={onViewPrevComment}><Icon slot='media' icon='icon-prev'/></Link>
@ -808,8 +808,8 @@ const CommentList = inject("storeComments", "storeAppOptions", "storeReview")(ob
</div>
{isEdit && !viewMode &&
<div className='right'>
{(comment.editable && displayMode === 'markup' && !wsProps?.Objects) && <div className='comment-resolve' onClick={() => {onResolveComment(comment);}}><Icon icon={comment.resolved ? 'icon-resolve-comment check' : 'icon-resolve-comment'}/></div>}
{(displayMode === 'markup' && !wsProps?.Objects) &&
{(comment.editable && displayMode === 'markup' && !wsProps?.Objects) && <div className='comment-resolve' onClick={() => {!isViewer && onResolveComment(comment);}}><Icon icon={comment.resolved ? 'icon-resolve-comment check' : 'icon-resolve-comment'}/></div>}
{(displayMode === 'markup' && !wsProps?.Objects && !isViewer) &&
<div className='comment-menu'
onClick={() => {openActionComment(true);}}>
<Icon icon='icon-menu-comment'/>
@ -839,14 +839,14 @@ const CommentList = inject("storeComments", "storeAppOptions", "storeReview")(ob
<div className='reply-date'>{reply.date}</div>
</div>
</div>
{isEdit && !viewMode && reply.editable &&
<div className='right'>
<div className='reply-menu'
onClick={() => {setReply(reply); openActionReply(true);}}
>
<Icon icon='icon-menu-comment'/>
{isEdit && !viewMode && reply.editable && !isViewer &&
<div className='right'>
<div className='reply-menu'
onClick={() => {setReply(reply); openActionReply(true);}}
>
<Icon icon='icon-menu-comment'/>
</div>
</div>
</div>
}
</div>
<div slot='footer'>

View file

@ -92,6 +92,10 @@ body.theme-type-dark {
animation: flickerAnimation 2s infinite ease-in-out;
}
.framework7-initializing .page-content {
display: none;
}
@keyframes flickerAnimation {
0% { opacity:0.1; }
50% { opacity:1; }

View file

@ -47,6 +47,11 @@
.subnavbar {
.subnavbar-inner {
padding: 0;
.title {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
}
.icon-back {
color: @toolbar-icons;

View file

@ -1,25 +1,25 @@
let obj = !localStorage ? {id: 'theme-light', type: 'light'} : JSON.parse(localStorage.getItem("ui-theme"));
if ( !obj ) {
obj = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches ?
{id: 'theme-dark', type: 'dark'} : {id: 'theme-light', type: 'light'};
localStorage && localStorage.setItem("ui-theme", JSON.stringify(obj));
}
document.body.classList.add(`theme-type-${obj.type}`);
const load_stylesheet = reflink => {
let link = document.createElement( "link" );
link.href = reflink;
link.type = "text/css";
// link.type = "text/css";
link.rel = "stylesheet";
document.getElementsByTagName("head")[0].appendChild(link);
};
if ( !localStorage && localStorage.getItem('mode-direction') === 'rtl' ) {
document.body.classList.add('rtl');
load_stylesheet('./css/framework7-rtl.css')
document.body.classList.add('rtl');
} else {
load_stylesheet('./css/framework7.css')
}
let obj = !localStorage ? {id: 'theme-light', type: 'light'} : JSON.parse(localStorage.getItem("ui-theme"));
if ( !obj ) {
obj = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches ?
{id: 'theme-dark', type: 'dark'} : {id: 'theme-light', type: 'light'};
localStorage && localStorage.setItem("ui-theme", JSON.stringify(obj));
}
document.body.classList.add(`theme-type-${obj.type}`);

View file

@ -16,7 +16,7 @@
"DE.ApplicationController.errorFilePassProtect": "El fitxer està protegit amb contrasenya i no es pot obrir.",
"DE.ApplicationController.errorFileSizeExceed": "La mida del fitxer supera el límit establert per al servidor.<br>Contacteu amb l'administrador del servidor de documents per a obtenir més informació.",
"DE.ApplicationController.errorForceSave": "S'ha produït un error en desar el fitxer. Utilitzeu l'opció «Anomena i baixa» per desar el fitxer al disc dur de lordinador o torneu-ho a provar més endavant.",
"DE.ApplicationController.errorLoadingFont": "No s'han carregat les famílies tipogràfiques.<br>Contacteu amb l'administrador del servidor de documents.",
"DE.ApplicationController.errorLoadingFont": "No s'han carregat les lletres tipogràfiques.<br> Contacteu amb l'administrador del Servidor de Documents.",
"DE.ApplicationController.errorSubmit": "No s'ha pogut enviar.",
"DE.ApplicationController.errorTokenExpire": "El testimoni de seguretat del document ha caducat.<br>Contacteu amb l'administrador del servidor de documents.",
"DE.ApplicationController.errorUpdateVersionOnDisconnect": "S'ha restaurat la connexió a internet i la versió del fitxer ha canviat.<br>Abans de continuar treballant, heu de baixar el fitxer o copiar-ne el contingut per a assegurar-vos que no es perdi res i, després, torneu a carregar la pàgina.",

View file

@ -26,6 +26,7 @@
"DE.ApplicationController.scriptLoadError": "Կապը խիստ թույլ է, բաղադրիչների մի մասը չբեռնվեց։ Խնդրում ենք էջը թարմացնել։",
"DE.ApplicationController.textAnonymous": "Անանուն",
"DE.ApplicationController.textClear": "Մաքրել բոլոր դաշտերը",
"DE.ApplicationController.textCtrl": "Ctrl ստեղն",
"DE.ApplicationController.textGotIt": "Հասկանալի է",
"DE.ApplicationController.textGuest": "Հյուր",
"DE.ApplicationController.textLoadingDocument": "Փաստաթղթի բեռնում",

View file

@ -26,6 +26,7 @@
"DE.ApplicationController.scriptLoadError": "Sambungan terlalu perlahan, beberapa komponen tidak dapat dimuatkan. Sila muat semula halaman.",
"DE.ApplicationController.textAnonymous": "Tanpa Nama",
"DE.ApplicationController.textClear": "Kosongkan Semua Medan",
"DE.ApplicationController.textCtrl": "Ctrl",
"DE.ApplicationController.textGotIt": "Faham",
"DE.ApplicationController.textGuest": "Tetamu",
"DE.ApplicationController.textLoadingDocument": "Dokumen dimuatkan",

View file

@ -94,7 +94,7 @@
"DE.Controllers.ApplicationController.errorFilePassProtect": "El fitxer està protegit amb contrasenya i no es pot obrir.",
"DE.Controllers.ApplicationController.errorFileSizeExceed": "La mida del fitxer supera el límit establert pel servidor. Contacteu amb l'administrador del servidor de documents per obtenir més informació.",
"DE.Controllers.ApplicationController.errorForceSave": "S'ha produït un error en desar el fitxer. Utilitzeu l'opció \"Baixa-ho com a\" per desar el fitxer al disc dur de lordinador o torneu-ho a provar més endavant.",
"DE.Controllers.ApplicationController.errorLoadingFont": "No s'han carregat els tipus de lletra. <br>Contacteu amb l'administrador del servidor de documents.",
"DE.Controllers.ApplicationController.errorLoadingFont": "No s'han carregat les lletres tipogràfiques.<br> Contacteu amb l'administrador del Servidor de Documents.",
"DE.Controllers.ApplicationController.errorServerVersion": "S'ha actualitzat la versió de l'editor. Es tornarà a carregar la pàgina per aplicar els canvis.",
"DE.Controllers.ApplicationController.errorSessionAbsolute": "La sessió dedició del document ha caducat. Torneu a carregar la pàgina.",
"DE.Controllers.ApplicationController.errorSessionIdle": "Fa temps que no s'obre el document. Torneu a carregar la pàgina.",

View file

@ -33,6 +33,9 @@
"Common.UI.Calendar.textShortWednesday": "Kami",
"Common.UI.Calendar.textYears": "Tahun",
"Common.UI.SearchBar.textFind": "Cari",
"Common.UI.SearchBar.tipCloseSearch": "Tutup carian",
"Common.UI.SearchBar.tipNextResult": "Keputusan seterusnya",
"Common.UI.SearchBar.tipPreviousResult": "Keputusan sebelum",
"Common.UI.Themes.txtThemeClassicLight": "Klasik Cerah",
"Common.UI.Themes.txtThemeDark": "Gelap",
"Common.UI.Themes.txtThemeLight": "Ringan",
@ -56,6 +59,7 @@
"Common.Views.EmbedDialog.textTitle": "Dibenamkan",
"Common.Views.EmbedDialog.textWidth": "Lebar",
"Common.Views.EmbedDialog.txtCopy": "Salin ke papan klip",
"Common.Views.EmbedDialog.warnCopy": "Ralat Pelayar! Guna pintasan papan kekunci [Ctrl] + [C]",
"Common.Views.ImageFromUrlDialog.textUrl": "Tampal URL imej:",
"Common.Views.ImageFromUrlDialog.txtEmpty": "Medan ini diperlukan",
"Common.Views.ImageFromUrlDialog.txtNotUrl": "Medan ini perlu sebagai URL dalam format \"http://www.example.com\"",
@ -74,6 +78,7 @@
"Common.Views.SelectFileDlg.textTitle": "Pilih Sumber Data",
"Common.Views.ShareDialog.textTitle": "Kongsi Pautan",
"Common.Views.ShareDialog.txtCopy": "Salin ke papan klip",
"Common.Views.ShareDialog.warnCopy": "Ralat Pelayar! Guna pintasan papan kekunci [Ctrl] + [C]",
"DE.Controllers.ApplicationController.convertationErrorText": "Penukaran telah gagal.",
"DE.Controllers.ApplicationController.convertationTimeoutText": "Melebihi masa tamat penukaran.",
"DE.Controllers.ApplicationController.criticalErrorTitle": "Ralat",

View file

@ -59,7 +59,7 @@
"Common.Views.EmbedDialog.textTitle": "Встроить",
"Common.Views.EmbedDialog.textWidth": "Ширина",
"Common.Views.EmbedDialog.txtCopy": "Скопировать в буфер",
"Common.Views.EmbedDialog.warnCopy": "Browser's error! Use keyboard shortcut [Ctrl] + [C]",
"Common.Views.EmbedDialog.warnCopy": "Ошибка браузера! Воспользуйтесь комбинацией клавиш [Ctrl] + [C]",
"Common.Views.ImageFromUrlDialog.textUrl": "Вставьте URL изображения:",
"Common.Views.ImageFromUrlDialog.txtEmpty": "Это поле обязательно для заполнения",
"Common.Views.ImageFromUrlDialog.txtNotUrl": "Это поле должно быть URL-адресом в формате \"http://www.example.com\"",
@ -78,7 +78,7 @@
"Common.Views.SelectFileDlg.textTitle": "Выбрать источник данных",
"Common.Views.ShareDialog.textTitle": "Поделиться ссылкой",
"Common.Views.ShareDialog.txtCopy": "Скопировать в буфер",
"Common.Views.ShareDialog.warnCopy": "Browser's error! Use keyboard shortcut [Ctrl] + [C]",
"Common.Views.ShareDialog.warnCopy": "Ошибка браузера! Воспользуйтесь комбинацией клавиш [Ctrl] + [C]",
"DE.Controllers.ApplicationController.convertationErrorText": "Конвертация не удалась.",
"DE.Controllers.ApplicationController.convertationTimeoutText": "Превышено время ожидания конвертации.",
"DE.Controllers.ApplicationController.criticalErrorTitle": "Ошибка",

View file

@ -407,9 +407,7 @@ define([
this.view.$resultsContainer.show();
this.resultItems.forEach(function (item) {
me.view.$resultsContainer.append(item.el);
if (item.selected) {
$(item.el).addClass('selected');
}
$(item.el)[item.selected ? 'addClass' : 'removeClass']('selected');
$(item.el).on('click', function (el) {
me.api.asc_SelectSearchElement(item.id);
$('#search-results').find('.item').removeClass('selected');

View file

@ -1525,8 +1525,15 @@ define([
this.coreProps = (this.api) ? this.api.asc_getCoreProps() : null;
if (this.coreProps) {
var value = this.coreProps.asc_getCreated();
if (value)
this.lblDate.text(value.toLocaleString(this.mode.lang, {year: 'numeric', month: '2-digit', day: '2-digit'}) + ' ' + value.toLocaleString(this.mode.lang, {timeStyle: 'short'}));
if (value) {
var lang = (this.mode.lang || 'en').replace('_', '-').toLowerCase();
try {
this.lblDate.text(value.toLocaleString(lang, {year: 'numeric', month: '2-digit', day: '2-digit'}) + ' ' + value.toLocaleString(lang, {timeStyle: 'short'}));
} catch (e) {
lang = 'en';
this.lblDate.text(value.toLocaleString(lang, {year: 'numeric', month: '2-digit', day: '2-digit'}) + ' ' + value.toLocaleString(lang, {timeStyle: 'short'}));
}
}
this._ShowHideInfoItem(this.lblDate, !!value);
} else if (pdfProps)
this.updatePdfInfo(pdfProps);
@ -1544,8 +1551,16 @@ define([
if (props) {
var visible = false;
value = props.asc_getModified();
if (value)
this.lblModifyDate.text(value.toLocaleString(this.mode.lang, {year: 'numeric', month: '2-digit', day: '2-digit'}) + ' ' + value.toLocaleString(this.mode.lang, {timeStyle: 'short'}));
if (value) {
var lang = (this.mode.lang || 'en').replace('_', '-').toLowerCase();
try {
this.lblModifyDate.text(value.toLocaleString(lang, {year: 'numeric', month: '2-digit', day: '2-digit'}) + ' ' + value.toLocaleString(lang, {timeStyle: 'short'}));
} catch (e) {
lang = 'en';
this.lblModifyDate.text(value.toLocaleString(lang, {year: 'numeric', month: '2-digit', day: '2-digit'}) + ' ' + value.toLocaleString(lang, {timeStyle: 'short'}));
}
}
visible = this._ShowHideInfoItem(this.lblModifyDate, !!value) || visible;
value = props.asc_getLastModifiedBy();
if (value)
@ -1586,7 +1601,13 @@ define([
value = props.CreationDate;
if (value) {
value = new Date(value);
this.lblDate.text(value.toLocaleString(this.mode.lang, {year: 'numeric', month: '2-digit', day: '2-digit'}) + ' ' + value.toLocaleString(this.mode.lang, {timeStyle: 'short'}));
var lang = (this.mode.lang || 'en').replace('_', '-').toLowerCase();
try {
this.lblDate.text(value.toLocaleString(lang, {year: 'numeric', month: '2-digit', day: '2-digit'}) + ' ' + value.toLocaleString(lang, {timeStyle: 'short'}));
} catch (e) {
lang = 'en';
this.lblDate.text(value.toLocaleString(lang, {year: 'numeric', month: '2-digit', day: '2-digit'}) + ' ' + value.toLocaleString(lang, {timeStyle: 'short'}));
}
}
this._ShowHideInfoItem(this.lblDate, !!value);
@ -1594,7 +1615,13 @@ define([
value = props.ModDate;
if (value) {
value = new Date(value);
this.lblModifyDate.text(value.toLocaleString(this.mode.lang, {year: 'numeric', month: '2-digit', day: '2-digit'}) + ' ' + value.toLocaleString(this.mode.lang, {timeStyle: 'short'}));
var lang = (this.mode.lang || 'en').replace('_', '-').toLowerCase();
try {
this.lblModifyDate.text(value.toLocaleString(lang, {year: 'numeric', month: '2-digit', day: '2-digit'}) + ' ' + value.toLocaleString(lang, {timeStyle: 'short'}));
} catch (e) {
lang = 'en';
this.lblModifyDate.text(value.toLocaleString(lang, {year: 'numeric', month: '2-digit', day: '2-digit'}) + ' ' + value.toLocaleString(lang, {timeStyle: 'short'}));
}
}
visible = this._ShowHideInfoItem(this.lblModifyDate, !!value) || visible;
visible = this._ShowHideInfoItem(this.lblModifyBy, false) || visible;

View file

@ -248,6 +248,7 @@ define([
this.lockedControls.push(this.chRulers);
Common.Utils.lockControls(_set.disableOnStart, true, {array: this.lockedControls});
Common.NotificationCenter.on('app:ready', this.onAppReady.bind(this));
},
render: function (el) {
@ -273,6 +274,14 @@ define([
return this.$el;
},
onAppReady: function () {
this.btnNavigation.updateHint(this.tipHeadings);
this.btnFitToPage.updateHint(this.tipFitToPage);
this.btnFitToWidth.updateHint(this.tipFitToWidth);
this.btnInterfaceTheme.updateHint(this.tipInterfaceTheme);
this.btnDarkDocument.updateHint(this.tipDarkDocument);
},
show: function () {
Common.UI.BaseView.prototype.show.call(this);
this.fireEvent('show', this);
@ -313,7 +322,12 @@ define([
textStatusBar: 'Status Bar',
textAlwaysShowToolbar: 'Always show toolbar',
textRulers: 'Rulers',
textDarkDocument: 'Dark document'
textDarkDocument: 'Dark document',
tipHeadings: 'Headings',
tipFitToPage: 'Fit to page',
tipFitToWidth: 'Fit to width',
tipInterfaceTheme: 'Interface theme',
tipDarkDocument: 'Dark document'
}
}()), DE.Views.ViewTab || {}));
});

View file

@ -2918,6 +2918,11 @@
"DE.Views.ViewTab.textRulers": "Rulers",
"DE.Views.ViewTab.textStatusBar": "Status Bar",
"DE.Views.ViewTab.textZoom": "Zoom",
"DE.Views.ViewTab.tipHeadings": "Headings",
"DE.Views.ViewTab.tipFitToPage": "Fit to page",
"DE.Views.ViewTab.tipFitToWidth": "Fit to width",
"DE.Views.ViewTab.tipInterfaceTheme": "Interface theme",
"DE.Views.ViewTab.tipDarkDocument": "Dark document",
"DE.Views.WatermarkSettingsDialog.textAuto": "Auto",
"DE.Views.WatermarkSettingsDialog.textBold": "Bold",
"DE.Views.WatermarkSettingsDialog.textColor": "Text color",

View file

@ -196,6 +196,7 @@
"Common.UI.ThemeColorPalette.textStandartColors": "Ստանդարտ գույներ",
"Common.UI.ThemeColorPalette.textThemeColors": "Ոճի գույներ",
"Common.UI.Themes.txtThemeClassicLight": "Դասական լույս",
"Common.UI.Themes.txtThemeContrastDark": "Մութ հակադրություն",
"Common.UI.Themes.txtThemeDark": "Մուգ",
"Common.UI.Themes.txtThemeLight": "Լույս",
"Common.UI.Themes.txtThemeSystem": "Նույնը, ինչ համակարգը",
@ -211,6 +212,9 @@
"Common.UI.Window.yesButtonText": "Այո",
"Common.Utils.Metric.txtCm": "սմ",
"Common.Utils.Metric.txtPt": "կտ",
"Common.Utils.String.textAlt": "Alt ստեղն",
"Common.Utils.String.textCtrl": "Ctrl ստեղն",
"Common.Utils.String.textShift": "Shift ստեղն",
"Common.Views.About.txtAddress": "հասցե՝",
"Common.Views.About.txtLicensee": "ԼԻՑԵՆԶԻԱ",
"Common.Views.About.txtLicensor": "Լիցենզատու ",
@ -475,6 +479,7 @@
"Common.Views.SearchPanel.textReplace": "Փոխարինել",
"Common.Views.SearchPanel.textReplaceAll": "Փոխարինել բոլորը",
"Common.Views.SearchPanel.textReplaceWith": "Փոխարինել հետևյալով",
"Common.Views.SearchPanel.textSearchHasStopped": "Որոնումը դադարեցվել է",
"Common.Views.SearchPanel.textSearchResults": "Որոնման արդյունքներ՝ {0}/{1}",
"Common.Views.SearchPanel.textTooManyResults": "Այստեղ ցուցադրելու համար չափազանց շատ արդյունքներ կան",
"Common.Views.SearchPanel.textWholeWords": "Միայն ամբողջական բառերը",
@ -1779,6 +1784,7 @@
"DE.Views.FileMenuPanels.Settings.strPasteButton": "Ցուցադրել «Կպցնել ընտրանքներ» կոճակները`բովանդակությունը կպցնելիս",
"DE.Views.FileMenuPanels.Settings.strShowChanges": "Իրական ժամանակով գործակցության փոփոխություններ",
"DE.Views.FileMenuPanels.Settings.strShowComments": "Ցույց տալ մեկնաբանությունները տեքստում",
"DE.Views.FileMenuPanels.Settings.strShowOthersChanges": "Ցուցադրել այլ օգտատերերի կատարած փոփոխությունները",
"DE.Views.FileMenuPanels.Settings.strShowResolvedComments": "Ցույց տալ լուծված մեկնաբանությունները",
"DE.Views.FileMenuPanels.Settings.strStrict": "Խիստ",
"DE.Views.FileMenuPanels.Settings.strTheme": "Ինտերֆեյսի թեմա",
@ -2308,23 +2314,39 @@
"DE.Views.ParagraphSettingsAdvanced.textBottom": "Ներքև",
"DE.Views.ParagraphSettingsAdvanced.textCentered": "Կենտրոնացված",
"DE.Views.ParagraphSettingsAdvanced.textCharacterSpacing": "Միջնիշային տարածք",
"DE.Views.ParagraphSettingsAdvanced.textContext": "Համատեքստային",
"DE.Views.ParagraphSettingsAdvanced.textContextDiscret": "Համատեքստային և կամայական",
"DE.Views.ParagraphSettingsAdvanced.textContextHistDiscret": "Հմատեքստային, պատմական և կամայական",
"DE.Views.ParagraphSettingsAdvanced.textContextHistorical": "Համատեքստային և պատմական",
"DE.Views.ParagraphSettingsAdvanced.textDefault": "Սկզբնադիր սյունատ",
"DE.Views.ParagraphSettingsAdvanced.textDiscret": "Կամայական",
"DE.Views.ParagraphSettingsAdvanced.textEffects": "Էֆեկտներ",
"DE.Views.ParagraphSettingsAdvanced.textExact": "Ճշգրիտ",
"DE.Views.ParagraphSettingsAdvanced.textFirstLine": "Առաջին տող",
"DE.Views.ParagraphSettingsAdvanced.textHanging": "Ելուստ",
"DE.Views.ParagraphSettingsAdvanced.textHistorical": "Պատմական",
"DE.Views.ParagraphSettingsAdvanced.textHistoricalDiscret": "Պատմական և կամայական",
"DE.Views.ParagraphSettingsAdvanced.textJustified": "Լայնությամբ",
"DE.Views.ParagraphSettingsAdvanced.textLeader": "Առաջնորդ",
"DE.Views.ParagraphSettingsAdvanced.textLeft": "Ձախ",
"DE.Views.ParagraphSettingsAdvanced.textLevel": "Մակարդակ ",
"DE.Views.ParagraphSettingsAdvanced.textLigatures": "Կապեր",
"DE.Views.ParagraphSettingsAdvanced.textNone": "Ոչ մեկը",
"DE.Views.ParagraphSettingsAdvanced.textNoneSpecial": "(ոչ մեկը)",
"DE.Views.ParagraphSettingsAdvanced.textOpenType": "OpenType-ի առանձնահատկությունները",
"DE.Views.ParagraphSettingsAdvanced.textPosition": "Դիրք",
"DE.Views.ParagraphSettingsAdvanced.textRemove": "Ջնջել",
"DE.Views.ParagraphSettingsAdvanced.textRemoveAll": "Ջնջել բոլորը",
"DE.Views.ParagraphSettingsAdvanced.textRight": "Աջ",
"DE.Views.ParagraphSettingsAdvanced.textSet": "Հատկորոշել",
"DE.Views.ParagraphSettingsAdvanced.textSpacing": "Միջատարածք",
"DE.Views.ParagraphSettingsAdvanced.textStandard": "Միայն ստանդարտ",
"DE.Views.ParagraphSettingsAdvanced.textStandardContext": "Ստանդարտ և համատեքստային",
"DE.Views.ParagraphSettingsAdvanced.textStandardContextDiscret": "Ստանդարտ, Համատեքստային և Կամայական",
"DE.Views.ParagraphSettingsAdvanced.textStandardContextHist": "Ստանդարտ, Համատեքստային և Պատմական",
"DE.Views.ParagraphSettingsAdvanced.textStandardDiscret": "Ստանդարտ և կամայական",
"DE.Views.ParagraphSettingsAdvanced.textStandardHistDiscret": "Ստանդարտ, պատմական և կամայական",
"DE.Views.ParagraphSettingsAdvanced.textStandardHistorical": "Ստանդարտ և պատմական",
"DE.Views.ParagraphSettingsAdvanced.textTabCenter": "Կենտրոնով",
"DE.Views.ParagraphSettingsAdvanced.textTabLeft": "Ձախ",
"DE.Views.ParagraphSettingsAdvanced.textTabPosition": "Ներդիրի դիրքը",

View file

@ -1297,7 +1297,7 @@
"DE.Views.BookmarksDialog.textCopy": "コピー",
"DE.Views.BookmarksDialog.textDelete": "削除する",
"DE.Views.BookmarksDialog.textGetLink": "リンクを取得する",
"DE.Views.BookmarksDialog.textGoto": "移動する",
"DE.Views.BookmarksDialog.textGoto": "移動する",
"DE.Views.BookmarksDialog.textHidden": "隠しブックマーク",
"DE.Views.BookmarksDialog.textLocation": "位置",
"DE.Views.BookmarksDialog.textName": "名前",
@ -1720,12 +1720,12 @@
"DE.Views.FileMenu.btnPrintCaption": "印刷",
"DE.Views.FileMenu.btnProtectCaption": "保護する",
"DE.Views.FileMenu.btnRecentFilesCaption": "最近開いた...",
"DE.Views.FileMenu.btnRenameCaption": "名前の変更...",
"DE.Views.FileMenu.btnRenameCaption": "名前を変更する",
"DE.Views.FileMenu.btnReturnCaption": "文書に戻る",
"DE.Views.FileMenu.btnRightsCaption": "アクセス許可...",
"DE.Views.FileMenu.btnSaveAsCaption": "名前を付けて保存",
"DE.Views.FileMenu.btnSaveCaption": "保存",
"DE.Views.FileMenu.btnSaveCopyAsCaption": "コピーを別名で保存...",
"DE.Views.FileMenu.btnSaveCopyAsCaption": "コピーを別名で保存する",
"DE.Views.FileMenu.btnSettingsCaption": "詳細設定...",
"DE.Views.FileMenu.btnToEditCaption": "ドキュメントを編集",
"DE.Views.FileMenu.textDownload": "ダウンロード",
@ -2141,12 +2141,12 @@
"DE.Views.MailMergeEmailDlg.textAttachPdf": "PDFとして添付する",
"DE.Views.MailMergeEmailDlg.textFileName": "ファイル名",
"DE.Views.MailMergeEmailDlg.textFormat": "メール形式",
"DE.Views.MailMergeEmailDlg.textFrom": "から",
"DE.Views.MailMergeEmailDlg.textFrom": "差出人",
"DE.Views.MailMergeEmailDlg.textHTML": "HTML",
"DE.Views.MailMergeEmailDlg.textMessage": "メッセージ",
"DE.Views.MailMergeEmailDlg.textSubject": "件名",
"DE.Views.MailMergeEmailDlg.textTitle": "メールに送信する",
"DE.Views.MailMergeEmailDlg.textTo": "",
"DE.Views.MailMergeEmailDlg.textTo": "宛先",
"DE.Views.MailMergeEmailDlg.textWarning": "警告!",
"DE.Views.MailMergeEmailDlg.textWarningMsg": "「送信」ボタンをクリックするとメール送信を中止することはできません。",
"DE.Views.MailMergeSettings.downloadMergeTitle": "結合中",

View file

@ -176,6 +176,10 @@
"Common.UI.InputFieldBtnPassword.textHintHidePwd": "Sembunyikan kata laluan",
"Common.UI.InputFieldBtnPassword.textHintShowPwd": "Tunjuk kata laluan",
"Common.UI.SearchBar.textFind": "Cari",
"Common.UI.SearchBar.tipCloseSearch": "Tutup carian",
"Common.UI.SearchBar.tipNextResult": "Keputusan seterusnya",
"Common.UI.SearchBar.tipOpenAdvancedSettings": "Buka tetapan lanjutan",
"Common.UI.SearchBar.tipPreviousResult": "Keputusan sebelum",
"Common.UI.SearchDialog.textHighlight": "Keputusan Sorotan Penting",
"Common.UI.SearchDialog.textMatchCase": "Sensitif huruf",
"Common.UI.SearchDialog.textReplaceDef": "Masukkan teks gantian",
@ -188,9 +192,11 @@
"Common.UI.SearchDialog.txtBtnReplaceAll": "Gantikan Semua",
"Common.UI.SynchronizeTip.textDontShow": "Jangan tunjukkan mesej ini semula",
"Common.UI.SynchronizeTip.textSynchronize": "Dokumen telah ditukar dengan pengguna yang lain.<br>Sila klik untuk simpan perubahan anda dan muat semula kemas kini.",
"Common.UI.ThemeColorPalette.textRecentColors": "Warna Terkini",
"Common.UI.ThemeColorPalette.textStandartColors": "Warna Standard",
"Common.UI.ThemeColorPalette.textThemeColors": "Warna Tema",
"Common.UI.Themes.txtThemeClassicLight": "Klasik Cerah",
"Common.UI.Themes.txtThemeContrastDark": "Kontras Gelap",
"Common.UI.Themes.txtThemeDark": "Gelap",
"Common.UI.Themes.txtThemeLight": "Ringan",
"Common.UI.Themes.txtThemeSystem": "Sama seperti Sistem",
@ -206,6 +212,9 @@
"Common.UI.Window.yesButtonText": "Ya",
"Common.Utils.Metric.txtCm": "cm",
"Common.Utils.Metric.txtPt": "pt",
"Common.Utils.String.textAlt": "Alt",
"Common.Utils.String.textCtrl": "Ctrl",
"Common.Utils.String.textShift": "Anjak",
"Common.Views.About.txtAddress": "alamat ",
"Common.Views.About.txtLicensee": "LESENKAN",
"Common.Views.About.txtLicensor": "PEMBERI LESEN",
@ -286,6 +295,7 @@
"Common.Views.ExternalMergeEditor.textTitle": "Cantum Mel Penerima",
"Common.Views.ExternalOleEditor.textClose": "Tutup",
"Common.Views.ExternalOleEditor.textSave": "Simpan & Keluar",
"Common.Views.ExternalOleEditor.textTitle": "Editor Hamparan",
"Common.Views.Header.labelCoUsersDescr": "Pengguna yang mengedit fail:",
"Common.Views.Header.textAddFavorite": "Tanda sebagai kegemaran",
"Common.Views.Header.textAdvSettings": "Seting lanjutan",
@ -304,6 +314,7 @@
"Common.Views.Header.tipSave": "Simpan",
"Common.Views.Header.tipSearch": "Carian",
"Common.Views.Header.tipUndo": "Buat semula",
"Common.Views.Header.tipUsers": "Lihat Pengguna",
"Common.Views.Header.tipViewSettings": "Lihat seting",
"Common.Views.Header.tipViewUsers": "Lihat pengguna dan uruskan hak akses dokumen",
"Common.Views.Header.txtAccessRights": "Ubah hak akses",
@ -344,6 +355,7 @@
"Common.Views.PluginDlg.textLoading": "Memuatkan",
"Common.Views.Plugins.groupCaption": "Plug masuk",
"Common.Views.Plugins.strPlugins": "Plug masuk",
"Common.Views.Plugins.textClosePanel": "Tutup pasang masuk",
"Common.Views.Plugins.textLoading": "Memuatkan",
"Common.Views.Plugins.textStart": "Mulakan",
"Common.Views.Plugins.textStop": "Henti",
@ -458,11 +470,21 @@
"Common.Views.SaveAsDlg.textLoading": "Memuatkan",
"Common.Views.SaveAsDlg.textTitle": "Folder untuk simpan",
"Common.Views.SearchPanel.textCaseSensitive": "Sensitif huruf",
"Common.Views.SearchPanel.textCloseSearch": "Tutup carian",
"Common.Views.SearchPanel.textFind": "Cari",
"Common.Views.SearchPanel.textFindAndReplace": "Cari dan Ganti",
"Common.Views.SearchPanel.textMatchUsingRegExp": "Sepadan menggunakan ungkapan biasa",
"Common.Views.SearchPanel.textNoMatches": "Tiada padanan",
"Common.Views.SearchPanel.textNoSearchResults": "Tiada carian keputusan",
"Common.Views.SearchPanel.textReplace": "Gantikan",
"Common.Views.SearchPanel.textReplaceAll": "Gantikan Semua",
"Common.Views.SearchPanel.textReplaceWith": "Gantikan dengan",
"Common.Views.SearchPanel.textSearchHasStopped": "Carian telah dihentikan",
"Common.Views.SearchPanel.textSearchResults": "Keputusan carian: {0}/{1}",
"Common.Views.SearchPanel.textTooManyResults": "Terlalu banyak keputusan untuk dipaparkan di sini",
"Common.Views.SearchPanel.textWholeWords": "Seluruh perkataan sahaja",
"Common.Views.SearchPanel.tipNextResult": "Keputusan seterusnya",
"Common.Views.SearchPanel.tipPreviousResult": "Keputusan sebelum",
"Common.Views.SelectFileDlg.textLoading": "Memuatkan",
"Common.Views.SelectFileDlg.textTitle": "Pilih Sumber Data",
"Common.Views.SignDialog.textBold": "Tebal",
@ -530,6 +552,7 @@
"DE.Controllers.LeftMenu.txtCompatible": "Dokumen akan disimpan kepada format baharu. Ia akan membenarkan penggunaan semua ciri, tetapi mungkin menjejaskan talaletak dokumen.<br>Guna pilihan Compatibility pada seting lanjutan jika anda mahu menjadikan fail serasi dengan versi MS Word yang lama.",
"DE.Controllers.LeftMenu.txtUntitled": "Tanpa Tajuk",
"DE.Controllers.LeftMenu.warnDownloadAs": "Jika anda terus menyimpan dalam format ini semua ciri kecuali teks akan hilang.<br>Adakah anda pasti mahu teruskan?",
"DE.Controllers.LeftMenu.warnDownloadAsPdf": "{0} anda akan ditukar kepada format boleh diedit. Ini mungkin mengambil sedikit masa. Dokumen yang terhasil akan dioptimumkan untuk membolehkan anda mengedit teks, jadi ia mungkin tidak kelihatan sama seperti {0} asal, terutamanya jika fail asal mengandungi banyak grafik.",
"DE.Controllers.LeftMenu.warnDownloadAsRTF": "Jika anda terus menyimpan dalam format ini beberapa pemformatan mungkin akan hilang.<br>Adakah anda pasti mahu teruskan?",
"DE.Controllers.LeftMenu.warnReplaceString": "{0} adalah karakter yang tidak sah bagi medan gantian.",
"DE.Controllers.Main.applyChangesTextText": "Perubahan dimuatkan…",
@ -556,6 +579,7 @@
"DE.Controllers.Main.errorEditingDownloadas": "Terdapat ralat yang berlaku semasa bekerja dengan dokumen.<br>Gunakan pilihan 'Download as...' untuk menyimpan salinan fail sandaran ke pemacu keras komputer anda.",
"DE.Controllers.Main.errorEditingSaveas": "Terdapat ralat yang berlaku semasa bekerja dengan dokumen.<br>Gunakan pilihan 'Save as...' untuk menyimpan salinan fail sandaran ke pemacu keras komputer anda.",
"DE.Controllers.Main.errorEmailClient": "Tiada e-mel klien yang dijumpai.",
"DE.Controllers.Main.errorEmptyTOC": "Mula mencipta senarai kandungan dengan menggunakan gaya pengepala daripada galeri Gaya pada teks pilihan.",
"DE.Controllers.Main.errorFilePassProtect": "Fail dilindungi kata laluan dan tidak boleh dibuka.",
"DE.Controllers.Main.errorFileSizeExceed": "Saiz fail melebihi had ditetapkan untuk pelayan anda.<br>Sila, hubungi pentadbir Pelayan Dokumen anda untuk butiran.",
"DE.Controllers.Main.errorForceSave": "Terdapat ralat yang berlaku semasa menyimpan fail. Sila gunakan pilihan 'Download as' untuk menyimpan salinan fail sandaran ke pemacu keras komputer anda dan cuba semula nanti.",
@ -564,6 +588,7 @@
"DE.Controllers.Main.errorLoadingFont": "Fon tidak dimuatkan.<br>Sila hubungi pentadbir Pelayan Dokumen anda.",
"DE.Controllers.Main.errorMailMergeLoadFile": "Memuatkan dokumen telah gagal. Sila pilih fail yang berbeza.",
"DE.Controllers.Main.errorMailMergeSaveFile": "Gagal cantum",
"DE.Controllers.Main.errorNoTOC": "Tiada senarai kandungan untuk dikemas kini, Anda boleh masukkan satu daripada tab Rujukan.",
"DE.Controllers.Main.errorProcessSaveResult": "Gagal disimpan.",
"DE.Controllers.Main.errorServerVersion": "Versi editor telah dikemas kinikan. Halaman akan dimuat semula untuk menggunakan perubahan.",
"DE.Controllers.Main.errorSessionAbsolute": "Sesi pengeditan dokumen telah tamat tempoh. Sila muat semula halaman.",
@ -631,8 +656,10 @@
"DE.Controllers.Main.textPaidFeature": "Ciri Berbayar",
"DE.Controllers.Main.textReconnect": "Sambungan dipulihkan",
"DE.Controllers.Main.textRemember": "Ingat pilihan saya untuk semua fail",
"DE.Controllers.Main.textRememberMacros": "Ingati pilihan saya untuk semua makro",
"DE.Controllers.Main.textRenameError": "Nama pengguna tidak boleh kosong.",
"DE.Controllers.Main.textRenameLabel": "Masukkan nama untuk digunakan bagi kerjasama",
"DE.Controllers.Main.textRequestMacros": "Makro membuat permintaan ke URL. Adakah anda mahu membenarkan permintaan kepada %1?",
"DE.Controllers.Main.textShape": "Bentuk",
"DE.Controllers.Main.textStrict": "Mod tegas",
"DE.Controllers.Main.textTryUndoRedo": "Fungsi Buat asal/Buat semula dinyahdayakan bagi mod pengeditan bersama.<br>Klik butang 'Strict mode' untuk menukar kepada mod pengeditan Bersama Tegas untuk mengedit fail tanpa gangguan pengguna lain dan menghantar perubahan anda hanya selepas anda menyimpannya. Anda boleh bertukar di antara mod-mod pengeditan Bersama menngunakan seting Lanjutan editor.",
@ -910,6 +937,8 @@
"DE.Controllers.Search.notcriticalErrorTitle": "Amaran",
"DE.Controllers.Search.textNoTextFound": "Data yang andaa sedang cari tidak dijumpai. Sila laras pilihan carian.",
"DE.Controllers.Search.textReplaceSkipped": "Gantian telah dilakukan. {0} kejadian telah dilangkau.",
"DE.Controllers.Search.textReplaceSuccess": "Carian telah dilakukan. Kejadian {0} telah digantikan",
"DE.Controllers.Search.warnReplaceString": "{0} bukan aksara khas yang sah untuk Gantikan Dengan kotak.",
"DE.Controllers.Statusbar.textDisconnect": "<b>Sambungan telah hilang</b><br>Sedang cuba untuk menyambung. Sila semak seting sambungan.",
"DE.Controllers.Statusbar.textHasChanges": "Perubahan baharu telah dijejaki",
"DE.Controllers.Statusbar.textSetTrackChanges": "Anda berada dalam mod Jejak Perubahan",
@ -1181,6 +1210,7 @@
"DE.Controllers.Toolbar.txtSymbol_beth": "Bidaan",
"DE.Controllers.Toolbar.txtSymbol_bullet": "Bulet operator",
"DE.Controllers.Toolbar.txtSymbol_cap": "Persilangan",
"DE.Controllers.Toolbar.txtSymbol_cbrt": "Punca Kuasa Tiga",
"DE.Controllers.Toolbar.txtSymbol_cdots": "Elipsis mendatar pertengahan baris",
"DE.Controllers.Toolbar.txtSymbol_celsius": "Darjah Celsius",
"DE.Controllers.Toolbar.txtSymbol_chi": "Ci",
@ -1231,6 +1261,7 @@
"DE.Controllers.Toolbar.txtSymbol_phi": "Phi",
"DE.Controllers.Toolbar.txtSymbol_pi": "Pi",
"DE.Controllers.Toolbar.txtSymbol_plus": "Tambah",
"DE.Controllers.Toolbar.txtSymbol_pm": "Tambah Tolak",
"DE.Controllers.Toolbar.txtSymbol_propto": "Berkadaran Dengan",
"DE.Controllers.Toolbar.txtSymbol_psi": "Psi",
"DE.Controllers.Toolbar.txtSymbol_qdrt": "Punca kuasa empat",
@ -1566,6 +1597,7 @@
"DE.Views.DocumentHolder.txtDistribVert": "Menegak Tersendiri",
"DE.Views.DocumentHolder.txtEmpty": "(Kosong)",
"DE.Views.DocumentHolder.txtFractionLinear": "Ubah ke pecahan linear",
"DE.Views.DocumentHolder.txtFractionSkewed": "Tukar kepada pecahan terpencong",
"DE.Views.DocumentHolder.txtFractionStacked": "Ubah ke pecahan bertindan",
"DE.Views.DocumentHolder.txtGroup": "Kumpulan",
"DE.Views.DocumentHolder.txtGroupCharOver": "Aksara melebihi teks",
@ -1716,12 +1748,14 @@
"DE.Views.FileMenuPanels.DocumentInfo.txtPages": "Halaman",
"DE.Views.FileMenuPanels.DocumentInfo.txtPageSize": "Saiz Halaman",
"DE.Views.FileMenuPanels.DocumentInfo.txtParagraphs": "Perenggan",
"DE.Views.FileMenuPanels.DocumentInfo.txtPdfProducer": "Penerbit PDF",
"DE.Views.FileMenuPanels.DocumentInfo.txtPdfTagged": "PDF Bertag",
"DE.Views.FileMenuPanels.DocumentInfo.txtPdfVer": "Versi PDf",
"DE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "Lokasi",
"DE.Views.FileMenuPanels.DocumentInfo.txtRights": "Orang yang mempunyai hak",
"DE.Views.FileMenuPanels.DocumentInfo.txtSpaces": "Simbol dengan jarak",
"DE.Views.FileMenuPanels.DocumentInfo.txtStatistics": "Statistik",
"DE.Views.FileMenuPanels.DocumentInfo.txtSubject": "Subjek",
"DE.Views.FileMenuPanels.DocumentInfo.txtSymbols": "Simbol",
"DE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Tajuk",
"DE.Views.FileMenuPanels.DocumentInfo.txtUploaded": "Dimuat naik",
@ -1749,6 +1783,9 @@
"DE.Views.FileMenuPanels.Settings.strMacrosSettings": "Seting Makro",
"DE.Views.FileMenuPanels.Settings.strPasteButton": "Tunjukkan butang Pilihan Tampal di mana kandungan ditampalkan",
"DE.Views.FileMenuPanels.Settings.strShowChanges": "Perubahan Kerjasama Masa-sebenar",
"DE.Views.FileMenuPanels.Settings.strShowComments": "Tunjukkan komen dalam teks",
"DE.Views.FileMenuPanels.Settings.strShowOthersChanges": "Tunjukkan perubahan daripada pengguna lain",
"DE.Views.FileMenuPanels.Settings.strShowResolvedComments": "Tunjukkan komen yang diselesaikan",
"DE.Views.FileMenuPanels.Settings.strStrict": "Tegas",
"DE.Views.FileMenuPanels.Settings.strTheme": "Tema antara muka",
"DE.Views.FileMenuPanels.Settings.strUnit": "Unit Pengukuran",
@ -1772,8 +1809,11 @@
"DE.Views.FileMenuPanels.Settings.txtCm": "Sentimeter",
"DE.Views.FileMenuPanels.Settings.txtCollaboration": "Kerjasama",
"DE.Views.FileMenuPanels.Settings.txtDarkMode": "Hidupkan mod gelap dokumen",
"DE.Views.FileMenuPanels.Settings.txtEditingSaving": "Pengeditan dan menyimpan",
"DE.Views.FileMenuPanels.Settings.txtFastTip": "Pengeditan bersama masa nyata, Semua perubahan disimpan secara automatik.",
"DE.Views.FileMenuPanels.Settings.txtFitPage": "Muat kepada Halaman",
"DE.Views.FileMenuPanels.Settings.txtFitWidth": "Muat kepada Kelebaran",
"DE.Views.FileMenuPanels.Settings.txtHieroglyphs": "Hieroglif",
"DE.Views.FileMenuPanels.Settings.txtInch": "Inci",
"DE.Views.FileMenuPanels.Settings.txtLast": "Lihat Terakhir",
"DE.Views.FileMenuPanels.Settings.txtMac": "sebagai OS X",
@ -1783,12 +1823,17 @@
"DE.Views.FileMenuPanels.Settings.txtPt": "Mata",
"DE.Views.FileMenuPanels.Settings.txtRunMacros": "Mendayakan Semua",
"DE.Views.FileMenuPanels.Settings.txtRunMacrosDesc": "Mendayakan semua makro tanpa pemberitahuan",
"DE.Views.FileMenuPanels.Settings.txtShowTrackChanges": "Tunjukkan jejak perubahan",
"DE.Views.FileMenuPanels.Settings.txtSpellCheck": "Menyemak Ejaan",
"DE.Views.FileMenuPanels.Settings.txtStopMacros": "Nyahdayakan Semua",
"DE.Views.FileMenuPanels.Settings.txtStopMacrosDesc": "Nyahdayakan semua makro tanpa pemberitahuan",
"DE.Views.FileMenuPanels.Settings.txtStrictTip": "Guna butang “Simpan” untuk segerakkan perubahan yang anda dan orang lain lakukan",
"DE.Views.FileMenuPanels.Settings.txtUseAltKey": "Guna kunci Alt untuk navigasi pengguna",
"DE.Views.FileMenuPanels.Settings.txtUseOptionKey": "Guna kunci Pilihan untuk navigasi antara muka pengguna menggunakan papan kekunci",
"DE.Views.FileMenuPanels.Settings.txtWarnMacros": "Tunjuk Pemberitahuan",
"DE.Views.FileMenuPanels.Settings.txtWarnMacrosDesc": "Nyahdayakan semua makro dengan pemberitahuan",
"DE.Views.FileMenuPanels.Settings.txtWin": "sebagai Windows",
"DE.Views.FileMenuPanels.Settings.txtWorkspace": "Ruang kerja",
"DE.Views.FormSettings.textAlways": "Sentiasa",
"DE.Views.FormSettings.textAspect": "Nisbah aspek dikunci",
"DE.Views.FormSettings.textAtLeast": "sekurang-kurangnya",
@ -1835,6 +1880,7 @@
"DE.Views.FormSettings.textWidth": "Lebar sell",
"DE.Views.FormsTab.capBtnCheckBox": "Kotak semak",
"DE.Views.FormsTab.capBtnComboBox": "Kotak kombo",
"DE.Views.FormsTab.capBtnDownloadForm": "Muat turun sebagai oform",
"DE.Views.FormsTab.capBtnDropDown": "Juntai bawah",
"DE.Views.FormsTab.capBtnImage": "Imej",
"DE.Views.FormsTab.capBtnNext": "Medan seterusnya",
@ -1854,6 +1900,7 @@
"DE.Views.FormsTab.textSubmited": "Borang telah berjaya diserahkan",
"DE.Views.FormsTab.tipCheckBox": "Sisipkan kotak semak",
"DE.Views.FormsTab.tipComboBox": "Sisipkan kotak kombo",
"DE.Views.FormsTab.tipDownloadForm": "Muat turun fail sebagai dokumen OFORM yang boleh diisi",
"DE.Views.FormsTab.tipDropDown": "Sisipkan senarai juntai bawah",
"DE.Views.FormsTab.tipImageField": "Sisipkan imej",
"DE.Views.FormsTab.tipNextForm": "Pergi ke medan seterusnya",
@ -2014,6 +2061,7 @@
"DE.Views.LeftMenu.tipSupport": "Maklum Balas & Sokongan",
"DE.Views.LeftMenu.tipTitles": "Tajuk",
"DE.Views.LeftMenu.txtDeveloper": "MOD PEMAJU",
"DE.Views.LeftMenu.txtEditor": "Editor Dokumen",
"DE.Views.LeftMenu.txtLimit": "Had Akses",
"DE.Views.LeftMenu.txtTrial": "MOD PERCUBAAN",
"DE.Views.LeftMenu.txtTrialDev": "Mod Percubaan Pembina",
@ -2056,6 +2104,7 @@
"DE.Views.Links.textSwapNotes": "Tukar Nota kaki dan Nota hujung",
"DE.Views.Links.textUpdateAll": "Kemas kini keseluruhan jadual",
"DE.Views.Links.textUpdatePages": "Kemas kini nombor halaman sahaja",
"DE.Views.Links.tipAddText": "Termasuk pengepala dalam Senarai Kandungan",
"DE.Views.Links.tipBookmarks": "Cipta penanda buku",
"DE.Views.Links.tipCaption": "Sisipkan kapsyen",
"DE.Views.Links.tipContents": "Sisip senarai kandungan",
@ -2066,6 +2115,7 @@
"DE.Views.Links.tipTableFigures": "Sisip jadual rajah",
"DE.Views.Links.tipTableFiguresUpdate": "Kemas Kini Jadual Rajah",
"DE.Views.Links.titleUpdateTOF": "Kemas Kini Jadual Rajah",
"DE.Views.Links.txtDontShowTof": "Tidak Ditunjukkan dalam Senarai Kandungan",
"DE.Views.Links.txtLevel": "Tahap",
"DE.Views.ListSettingsDialog.textAuto": "Automatik",
"DE.Views.ListSettingsDialog.textCenter": "Pusat",
@ -2094,6 +2144,7 @@
"DE.Views.MailMergeEmailDlg.textFrom": "Dari",
"DE.Views.MailMergeEmailDlg.textHTML": "HTML",
"DE.Views.MailMergeEmailDlg.textMessage": "Mesej",
"DE.Views.MailMergeEmailDlg.textSubject": "Baris Subjek",
"DE.Views.MailMergeEmailDlg.textTitle": "Hantar ke E-mel",
"DE.Views.MailMergeEmailDlg.textTo": "Kepada",
"DE.Views.MailMergeEmailDlg.textWarning": "Amaran!",
@ -2123,6 +2174,7 @@
"DE.Views.MailMergeSettings.textReadMore": "Baca selanjutnya",
"DE.Views.MailMergeSettings.textSendMsg": "Semua mesej mel telah sedia dan akan dihantar keluar dalam sedikit masa.<br>Kelajuan mel bergantung kepada perkhidmatan mel anda.<br>Anda boleh terus bekerja dengan dokumen atau menutup ia. Selepas operasi tamat pemberitahuan akan dihantar ke alamat e-mel berdaftar anda.",
"DE.Views.MailMergeSettings.textTo": "Kepada",
"DE.Views.MailMergeSettings.txtFirst": "Kepada rekod pertama",
"DE.Views.MailMergeSettings.txtFromToError": "Nilai \"Daripada\" mestilah kurang daripada nilai \"Kepada\"",
"DE.Views.MailMergeSettings.txtLast": "Ke rekod akhir",
"DE.Views.MailMergeSettings.txtNext": "Ke rekod seterusnya",
@ -2130,6 +2182,7 @@
"DE.Views.MailMergeSettings.txtUntitled": "Tanpa Tajuk",
"DE.Views.MailMergeSettings.warnProcessMailMerge": "Telah gagal memulakan cantum",
"DE.Views.Navigation.strNavigate": "Pengepala",
"DE.Views.Navigation.txtClosePanel": "Tutup pengepala",
"DE.Views.Navigation.txtCollapse": "Runtuhkan semua",
"DE.Views.Navigation.txtDemote": "Turun aras",
"DE.Views.Navigation.txtEmpty": "Tidak ada pengepala di dalam dokumen.<br>Gunakan gaya pengepala ke teks supaya ia kelihatan di dalam senarai kandungan.",
@ -2140,10 +2193,14 @@
"DE.Views.Navigation.txtFontSize": "Saiz fon",
"DE.Views.Navigation.txtHeadingAfter": "Pengepala baharu selepas",
"DE.Views.Navigation.txtHeadingBefore": "Pengepala baharu sebelum",
"DE.Views.Navigation.txtLarge": "Besar",
"DE.Views.Navigation.txtMedium": "Medium",
"DE.Views.Navigation.txtNewHeading": "Subpengepala baharu",
"DE.Views.Navigation.txtPromote": "Naikkan aras",
"DE.Views.Navigation.txtSelect": "Pilih kandungan",
"DE.Views.Navigation.txtSettings": "Tetapan Pengepala",
"DE.Views.Navigation.txtSmall": "Kecil",
"DE.Views.Navigation.txtWrapHeadings": "Pengepala balut panjang",
"DE.Views.NoteSettingsDialog.textApply": "Guna",
"DE.Views.NoteSettingsDialog.textApplyTo": "Guna perubahan kepada",
"DE.Views.NoteSettingsDialog.textContinue": "Berterusan",
@ -2202,6 +2259,7 @@
"DE.Views.ParagraphSettings.strIndentsRightText": "Kanan",
"DE.Views.ParagraphSettings.strIndentsSpecial": "Khas",
"DE.Views.ParagraphSettings.strLineHeight": "Jarak Garis",
"DE.Views.ParagraphSettings.strParagraphSpacing": "Jarak Perenggan",
"DE.Views.ParagraphSettings.strSomeParagraphSpace": "Jangan tambah selang di antara perenggan bagi gaya yang sama",
"DE.Views.ParagraphSettings.strSpacingAfter": "Selepas",
"DE.Views.ParagraphSettings.strSpacingBefore": "Sebelum",
@ -2256,23 +2314,39 @@
"DE.Views.ParagraphSettingsAdvanced.textBottom": "Bawah",
"DE.Views.ParagraphSettingsAdvanced.textCentered": "Berpusat",
"DE.Views.ParagraphSettingsAdvanced.textCharacterSpacing": "Jarak Aksara",
"DE.Views.ParagraphSettingsAdvanced.textContext": "Kontekstual",
"DE.Views.ParagraphSettingsAdvanced.textContextDiscret": "Kontekstual dan Budi Bicara",
"DE.Views.ParagraphSettingsAdvanced.textContextHistDiscret": "Piawaian, Sejarah dan Budi Bicara",
"DE.Views.ParagraphSettingsAdvanced.textContextHistorical": "Kontekstual dan Sejarah",
"DE.Views.ParagraphSettingsAdvanced.textDefault": "Tab Lalai",
"DE.Views.ParagraphSettingsAdvanced.textDiscret": "Budi Bicara",
"DE.Views.ParagraphSettingsAdvanced.textEffects": "Kesan",
"DE.Views.ParagraphSettingsAdvanced.textExact": "Tepat sekali",
"DE.Views.ParagraphSettingsAdvanced.textFirstLine": "Garis pertama",
"DE.Views.ParagraphSettingsAdvanced.textHanging": "Gantung",
"DE.Views.ParagraphSettingsAdvanced.textHistorical": "Sejarah",
"DE.Views.ParagraphSettingsAdvanced.textHistoricalDiscret": "Sejarah dan Budi Bicara",
"DE.Views.ParagraphSettingsAdvanced.textJustified": "Dilaraskan",
"DE.Views.ParagraphSettingsAdvanced.textLeader": "Ketua",
"DE.Views.ParagraphSettingsAdvanced.textLeft": "Kiri",
"DE.Views.ParagraphSettingsAdvanced.textLevel": "Tahap",
"DE.Views.ParagraphSettingsAdvanced.textLigatures": "Ligatur",
"DE.Views.ParagraphSettingsAdvanced.textNone": "Tiada",
"DE.Views.ParagraphSettingsAdvanced.textNoneSpecial": "(tiada)",
"DE.Views.ParagraphSettingsAdvanced.textOpenType": "Ciri OpenType",
"DE.Views.ParagraphSettingsAdvanced.textPosition": "Kedudukan",
"DE.Views.ParagraphSettingsAdvanced.textRemove": "Alih keluar",
"DE.Views.ParagraphSettingsAdvanced.textRemoveAll": "Alih Keluar Semua",
"DE.Views.ParagraphSettingsAdvanced.textRight": "Kanan",
"DE.Views.ParagraphSettingsAdvanced.textSet": "Tentukan",
"DE.Views.ParagraphSettingsAdvanced.textSpacing": "Penjarakan",
"DE.Views.ParagraphSettingsAdvanced.textStandard": "Piawaian sahaja",
"DE.Views.ParagraphSettingsAdvanced.textStandardContext": "Piawaian dan Kontekstual",
"DE.Views.ParagraphSettingsAdvanced.textStandardContextDiscret": "Piawaian, Kontekstual dan Budi Bicara",
"DE.Views.ParagraphSettingsAdvanced.textStandardContextHist": "Piawaian, Kontekstual dan Sejarah",
"DE.Views.ParagraphSettingsAdvanced.textStandardDiscret": "Piawaian dan Budi Bicara",
"DE.Views.ParagraphSettingsAdvanced.textStandardHistDiscret": "Piawaian, Sejarah dan Budi Bicara",
"DE.Views.ParagraphSettingsAdvanced.textStandardHistorical": "Piawaian dan Sejarah",
"DE.Views.ParagraphSettingsAdvanced.textTabCenter": "Pusat",
"DE.Views.ParagraphSettingsAdvanced.textTabLeft": "Kiri",
"DE.Views.ParagraphSettingsAdvanced.textTabPosition": "Kedudukan Tab",
@ -2296,6 +2370,7 @@
"DE.Views.RightMenu.txtMailMergeSettings": "Seting cantum mel",
"DE.Views.RightMenu.txtParagraphSettings": "Seting perenggan",
"DE.Views.RightMenu.txtShapeSettings": "Seting bentuk",
"DE.Views.RightMenu.txtSignatureSettings": "Tetapan tandatangan",
"DE.Views.RightMenu.txtTableSettings": "Seting Jadual",
"DE.Views.RightMenu.txtTextArtSettings": "Seting Lukisan Teks",
"DE.Views.ShapeSettings.strBackground": "Warna latar belakang",
@ -2649,7 +2724,10 @@
"DE.Views.Toolbar.mniImageFromFile": "Imej daripada Fail",
"DE.Views.Toolbar.mniImageFromStorage": "Imej daripada Simpanan",
"DE.Views.Toolbar.mniImageFromUrl": "Imej daripada URL",
"DE.Views.Toolbar.mniInsertSSE": "Masukkan Hamparan",
"DE.Views.Toolbar.mniLowerCase": "huruf kecil",
"DE.Views.Toolbar.mniRemoveFooter": "Alih Keluar Pengaki",
"DE.Views.Toolbar.mniRemoveHeader": "Alih Keluar Pengepala",
"DE.Views.Toolbar.mniSentenceCase": "Huruf besar pada permulaan ayat.",
"DE.Views.Toolbar.mniTextToTable": "Menukar Teks ke Jadual",
"DE.Views.Toolbar.mniToggleCase": "hURUF tOGOL",

View file

@ -271,6 +271,7 @@
"Common.Views.Comments.textResolve": "Rozwiąż",
"Common.Views.Comments.textResolved": "Rozwiązany",
"Common.Views.Comments.textSort": "Sortuj komentarze",
"Common.Views.Comments.textViewResolved": "Nie masz uprawnień do ponownego otwarcia komentarza",
"Common.Views.Comments.txtEmpty": "Nie ma komentarzy w tym dokumencie.",
"Common.Views.CopyWarningDialog.textDontShow": "Nie pokazuj tej wiadomości ponownie",
"Common.Views.CopyWarningDialog.textMsg": "Kopiowanie, wycinanie i wklejanie za pomocą przycisków edytora i działań menu kontekstowego zostanie przeprowadzone tylko w tej karcie edytora.<br><br>Aby skopiować lub wkleić do lub z aplikacji poza kartą edytora, użyj następujących kombinacji klawiszy:",
@ -454,12 +455,14 @@
"Common.Views.ReviewPopover.textOpenAgain": "Otwórz ponownie",
"Common.Views.ReviewPopover.textReply": "Odpowiedz",
"Common.Views.ReviewPopover.textResolve": "Rozwiąż",
"Common.Views.ReviewPopover.textViewResolved": "Nie masz uprawnień do ponownego otwarcia komentarza",
"Common.Views.ReviewPopover.txtAccept": "Zaakceptuj",
"Common.Views.ReviewPopover.txtDeleteTip": "Usuń",
"Common.Views.ReviewPopover.txtEditTip": "Edytuj",
"Common.Views.ReviewPopover.txtReject": "Odrzuć",
"Common.Views.SaveAsDlg.textLoading": "Ładowanie",
"Common.Views.SaveAsDlg.textTitle": "Folder do zapisu",
"Common.Views.SearchPanel.textCaseSensitive": "Rozróżnienie wielkich i małych liter",
"Common.Views.SearchPanel.textCloseSearch": "Zamknij wyszukiwanie",
"Common.Views.SearchPanel.textFind": "Znajdź",
"Common.Views.SearchPanel.textFindAndReplace": "Znajdź i zamień",
@ -915,6 +918,8 @@
"DE.Controllers.Navigation.txtBeginning": "Początek dokumentu",
"DE.Controllers.Navigation.txtGotoBeginning": "Przejdź na początek dokumentu",
"DE.Controllers.Search.notcriticalErrorTitle": "Ostrzeżenie",
"DE.Controllers.Search.textNoTextFound": "Nie znaleziono danych, których szukasz. Proszę dostosuj opcje wyszukiwania.",
"DE.Controllers.Search.textReplaceSkipped": "Zastąpiono. {0} zdarzenia zostały pominięte.",
"DE.Controllers.Statusbar.textHasChanges": "Nowe zmiany zostały wyśledzone",
"DE.Controllers.Statusbar.textSetTrackChanges": "Jesteś w trybie śledzenia zmian",
"DE.Controllers.Statusbar.textTrackChanges": "Dokument jest otwarty przy włączonym trybie śledzenia zmian",
@ -1799,6 +1804,8 @@
"DE.Views.FileMenuPanels.Settings.txtWorkspace": "Obszar roboczy",
"DE.Views.FormSettings.textAlways": "Zawsze",
"DE.Views.FormSettings.textAspect": "Zachowaj proporcje",
"DE.Views.FormSettings.textAtLeast": "Co najmniej",
"DE.Views.FormSettings.textAuto": "Automatyczny",
"DE.Views.FormSettings.textAutofit": "Autodopasowanie",
"DE.Views.FormSettings.textBackgroundColor": "Kolor tła",
"DE.Views.FormSettings.textCheckbox": "Pole wyboru",
@ -1809,6 +1816,7 @@
"DE.Views.FormSettings.textDelete": "Usuń",
"DE.Views.FormSettings.textDisconnect": "Rozłączyć",
"DE.Views.FormSettings.textDropDown": "Lista rozwijana",
"DE.Views.FormSettings.textExact": "Dokładnie",
"DE.Views.FormSettings.textField": "Pole tekstowe",
"DE.Views.FormSettings.textFixed": "Pole stałego rozmiaru",
"DE.Views.FormSettings.textFromFile": "Z pliku",
@ -1906,6 +1914,7 @@
"DE.Views.ImageSettings.textCrop": "Przytnij",
"DE.Views.ImageSettings.textCropFill": "Wypełnij",
"DE.Views.ImageSettings.textCropFit": "Dopasuj",
"DE.Views.ImageSettings.textCropToShape": "Przytnij do kształtu",
"DE.Views.ImageSettings.textEdit": "Edytuj",
"DE.Views.ImageSettings.textEditObject": "Edytuj obiekt",
"DE.Views.ImageSettings.textFitMargins": "Dopasuj do marginesu",
@ -2012,6 +2021,7 @@
"DE.Views.LeftMenu.tipChat": "Czat",
"DE.Views.LeftMenu.tipComments": "Komentarze",
"DE.Views.LeftMenu.tipNavigation": "Nawigacja",
"DE.Views.LeftMenu.tipOutline": "Nagłówki",
"DE.Views.LeftMenu.tipPlugins": "Wtyczki",
"DE.Views.LeftMenu.tipSearch": "Szukaj",
"DE.Views.LeftMenu.tipSupport": "Opinie i wsparcie",
@ -2070,6 +2080,7 @@
"DE.Views.Links.tipTableFigures": "Wstaw spis ilustracji",
"DE.Views.Links.tipTableFiguresUpdate": "Odśwież listę ilustracji",
"DE.Views.Links.titleUpdateTOF": "Odśwież listę ilustracji",
"DE.Views.Links.txtLevel": "Poziom",
"DE.Views.ListSettingsDialog.textAuto": "Automatyczne",
"DE.Views.ListSettingsDialog.textCenter": "Do Środka",
"DE.Views.ListSettingsDialog.textLeft": "Do Lewej",
@ -2272,6 +2283,7 @@
"DE.Views.ParagraphSettingsAdvanced.textLeader": "Typ linii",
"DE.Views.ParagraphSettingsAdvanced.textLeft": "Lewy",
"DE.Views.ParagraphSettingsAdvanced.textLevel": "Poziom",
"DE.Views.ParagraphSettingsAdvanced.textLigatures": "Ligatury",
"DE.Views.ParagraphSettingsAdvanced.textNone": "Brak",
"DE.Views.ParagraphSettingsAdvanced.textNoneSpecial": "(brak)",
"DE.Views.ParagraphSettingsAdvanced.textPosition": "Położenie",
@ -2755,6 +2767,7 @@
"DE.Views.Toolbar.tipControls": "Wstaw kontrolki treści",
"DE.Views.Toolbar.tipCopy": "Kopiuj",
"DE.Views.Toolbar.tipCopyStyle": "Kopiuj styl",
"DE.Views.Toolbar.tipCut": "Wytnij",
"DE.Views.Toolbar.tipDateTime": "Wstaw aktualną datę i godzinę",
"DE.Views.Toolbar.tipDecFont": "Zmniejsz rozmiar czcionki",
"DE.Views.Toolbar.tipDecPrLeft": "Zmniejsz wcięcie",
@ -2795,6 +2808,7 @@
"DE.Views.Toolbar.tipRedo": "Ponów",
"DE.Views.Toolbar.tipSave": "Zapisz",
"DE.Views.Toolbar.tipSaveCoauth": "Zapisz swoje zmiany, aby inni użytkownicy mogli je zobaczyć.",
"DE.Views.Toolbar.tipSelectAll": "Wybierz wsyzstko",
"DE.Views.Toolbar.tipSendBackward": "Przenieś do tyłu",
"DE.Views.Toolbar.tipSendForward": "Przenieś do przodu",
"DE.Views.Toolbar.tipShowHiddenChars": "Znaki niedrukowane",

View file

@ -669,12 +669,14 @@
"txtScheme6": "Concourse",
"txtScheme7": "Equity",
"txtScheme8": "Flow",
"txtScheme9": "Foundry"
"txtScheme9": "Foundry",
"textMobileView": "Mobile View"
},
"Toolbar": {
"dlgLeaveMsgText": "You have unsaved changes. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.",
"dlgLeaveTitleText": "You leave the application",
"leaveButtonText": "Leave this Page",
"stayButtonText": "Stay on this page"
"stayButtonText": "Stay on this page",
"textOk": "OK"
}
}

View file

@ -3,11 +3,11 @@
"textAbout": "Perihal",
"textAddress": "Alamat",
"textBack": "Kembali",
"textEditor": "Editor Dokumen",
"textEmail": "E-mel",
"textPoweredBy": "Dikuasakan Oleh",
"textTel": "Tel",
"textVersion": "Versi",
"textEditor": "Document Editor"
"textVersion": "Versi"
},
"Add": {
"notcriticalErrorTitle": "Amaran",
@ -197,10 +197,10 @@
"textDoNotShowAgain": "Jangan tunjukkan semula",
"textNumberingValue": "Nilai Bernombor",
"textOk": "Okey",
"textRefreshEntireTable": "Segar semula keseluruhan jadual",
"textRefreshPageNumbersOnly": "Segar semula nombor halaman sahaja",
"textRows": "Baris",
"txtWarnUrl": "Mengklik pautan ini boleh membahayakan peranti dan data anda.<br>Adakah anda mahu meneruskan?",
"textRefreshEntireTable": "Refresh entire table",
"textRefreshPageNumbersOnly": "Refresh page numbers only"
"txtWarnUrl": "Mengklik pautan ini boleh membahayakan peranti dan data anda.<br>Adakah anda mahu meneruskan?"
},
"Edit": {
"notcriticalErrorTitle": "Amaran",
@ -215,6 +215,7 @@
"textAlign": "Jajar",
"textAllCaps": "Semua Huruf Besar",
"textAllowOverlap": "Benarkan pertindihan",
"textAmountOfLevels": "Amaun Tahap",
"textApril": "April",
"textAugust": "Ogos",
"textAuto": "Auto",
@ -237,6 +238,7 @@
"textClose": "Tutup",
"textColor": "Warna",
"textContinueFromPreviousSection": "Teruskan daripada bahagian sebelumnya",
"textCreateTextStyle": "Cipta gaya teks baharu",
"textCurrent": "Semasa",
"textCustomColor": "Warna Tersuai",
"textDecember": "Disember",
@ -252,6 +254,7 @@
"textEffects": "Kesan",
"textEmpty": "Kosong",
"textEmptyImgUrl": "Anda perlu menentukan imej URL.",
"textEnterTitleNewStyle": "Masuk tajuk bagi gaya baru",
"textFebruary": "Februari",
"textFill": "Isi",
"textFirstColumn": "Lajur Pertama",
@ -305,22 +308,27 @@
"textOrphanControl": "Kawalan Yatim",
"textPageBreakBefore": "Pemutus Halaman Sebelum",
"textPageNumbering": "Penomboran Halaman",
"textPageNumbers": "Nombor Halaman",
"textParagraph": "Perenggan",
"textParagraphStyle": "Gaya Perenggan",
"textPictureFromLibrary": "Gambar daripada Perpustakaan",
"textPictureFromURL": "Gambar daripada URL",
"textPt": "pt",
"textRefresh": "Segar semula",
"textRefreshEntireTable": "Segar semula keseluruhan jadual",
"textRefreshPageNumbersOnly": "Segar semula nombor halaman sahaja",
"textRemoveChart": "Alih Keluar Carta",
"textRemoveImage": "Alih Keluar Imej",
"textRemoveLink": "Alih Keluar Pautan",
"textRemoveShape": "Alih Keluar Bentuk",
"textRemoveTable": "Alih Keluar Jadual",
"textRemoveTableContent": "Alih keluar senarai kandungan",
"textReorder": "Order Semula",
"textRepeatAsHeaderRow": "Ulang sebagai Baris Pengepala",
"textReplace": "Gantikan",
"textReplaceImage": "Gantikan Imej",
"textResizeToFitContent": "Saiz Semula untuk Memuatkan Kandungan",
"textRightAlign": "Jajar Kanan",
"textSa": "Sa",
"textSameCreatedNewStyle": "Sama seperti gaya baharu dicipta",
"textScreenTip": "Petua Skrin",
@ -337,6 +345,7 @@
"textStandard": "Standard",
"textStartAt": "Mulakan pada",
"textStrikethrough": "Garis Lorek",
"textStructure": "Struktur",
"textStyle": "Gaya",
"textStyleOptions": "Pilihan Gaya",
"textStyles": "Gaya",
@ -356,15 +365,6 @@
"textType": "Jenis",
"textWe": "Kami",
"textWrap": "Balut",
"textAmountOfLevels": "Amount of Levels",
"textCreateTextStyle": "Create new text style",
"textEnterTitleNewStyle": "Enter title of a new style",
"textPageNumbers": "Page Numbers",
"textRefreshEntireTable": "Refresh entire table",
"textRefreshPageNumbersOnly": "Refresh page numbers only",
"textRemoveTableContent": "Remove table of contents",
"textRightAlign": "Right Align",
"textStructure": "Structure",
"textTableOfCont": "TOC"
},
"Error": {
@ -380,6 +380,7 @@
"errorDataRange": "Julat data tidak betul.",
"errorDefaultMessage": "Kod ralat: %1",
"errorEditingDownloadas": "Terdapat ralat yang berlaku semasa bekerja dengan dokumen.<br>Muat Turun dokumen untuk menyimpan salinan fail sandaran secara setempat.",
"errorEmptyTOC": "Mula mencipta senarai kandungan dengan menggunakan gaya pengepala daripada galeri Gaya pada teks pilihan.",
"errorFilePassProtect": "Fail dilindungi kata laluan dan tidak dapat dibuka.",
"errorFileSizeExceed": "Saiz fail melebihi had pelayan anda.<br>Sila, hubungi pentadbir anda.",
"errorKeyEncrypt": "Pemerihal kunci tidak diketahui.",
@ -387,6 +388,7 @@
"errorLoadingFont": "Fon tidak dimuatkan.<br>Sila hubungi pentadbir Pelayan Dokumen anda.",
"errorMailMergeLoadFile": "Memuatkan telah gagal",
"errorMailMergeSaveFile": "Gagal cantum",
"errorNoTOC": "Tiada senarai kandungan untuk dikemas kini, Anda boleh masukkan satu daripada tab Rujukan.",
"errorSessionAbsolute": "Sesi pengeditan dokumen telah tamat tempoh. Sila muat semula halaman.",
"errorSessionIdle": "Dokumen tidak diedit buat masa yang lama. Sila muat semula halaman.",
"errorSessionToken": "Sambungan kepada pelayan telah terganggu. Sila muat semula halaman.",
@ -405,9 +407,7 @@
"unknownErrorText": "Ralat tidak diketahui.",
"uploadImageExtMessage": "Format imej yang tidak diketahui.",
"uploadImageFileCountMessage": "Tiada Imej dimuat naik.",
"uploadImageSizeMessage": "Imej terlalu besar. Saiz maksimum adalah 25 MB.",
"errorEmptyTOC": "Start creating a table of contents by applying a heading style from the Styles gallery to the selected text.",
"errorNoTOC": "There's no table of contents to update. You can insert one from the References tab."
"uploadImageSizeMessage": "Imej terlalu besar. Saiz maksimum adalah 25 MB."
},
"LongActions": {
"applyChangesTextText": "Data dimuatkan…",
@ -529,6 +529,7 @@
"textRemember": "Ingat pilihan saya",
"textReplaceSkipped": "Gantian telah dilakukan. {0} kejadian telah dilangkau.",
"textReplaceSuccess": "Carian telah dilakukan. Kejadian digantikan: {0}",
"textRequestMacros": "Makro membuat permintaan ke URL. Adakah anda mahu membenarkan permintaan kepada %1?",
"textYes": "Ya",
"titleLicenseExp": "Lesen tamat tempoh",
"titleServerVersion": "Editor dikemas kini",
@ -540,8 +541,7 @@
"warnLicenseUsersExceeded": "Anda telah mencapai had pengguna untuk editor %1. Hubungi pentadbir anda untuk ketahui selanjutnya.",
"warnNoLicense": "Anda telah mencapai had pengguna untuk sambungan serentak kepada editor %1. Dokumen ini akan dibuka untuk dilihat sahaja. Hubungi pasukan jualan %1 untuk naik taraf terma peribadi.",
"warnNoLicenseUsers": "Anda telah mencapai had pengguna untuk editor %1. Hubungi pasukan jualan %1 untuk naik taraf terma peribadi.",
"warnProcessRightsChange": "Anda tidak mempunyai keizinan untuk edit fail ini.",
"textRequestMacros": "A macro makes a request to URL. Do you want to allow the request to the %1?"
"warnProcessRightsChange": "Anda tidak mempunyai keizinan untuk edit fail ini."
},
"Settings": {
"advDRMOptions": "Fail Dilindungi",
@ -581,6 +581,7 @@
"textDownloadRtf": "Jika anda terus menyimpan dalam format ini beberapa pemformatan mungkin akan hilang. Adakah anda pasti mahu meneruskan?",
"textDownloadTxt": "ika anda terus menyimpan dalam format ini semua ciri kecuali teks akan hilang. Adakah anda pasti mahu meneruskan?",
"textEmptyHeading": "Pengepala Kosong",
"textEmptyScreens": "Tiada pengepala di dalam dokumen. Gunakan gaya pengepala pada teks supaya ia kelihatan dalam senarai kandungan.",
"textEnableAll": "Mendayakan Semua",
"textEnableAllMacrosWithoutNotification": "Mendayakan semua makro tanpa pemberitahuan",
"textEncoding": "Pengekodan",
@ -616,6 +617,7 @@
"textPages": "Halaman",
"textPageSize": "Saiz Halaman",
"textParagraphs": "Perenggan",
"textPdfProducer": "Penerbit PDF",
"textPdfTagged": "PDF Bertag",
"textPdfVer": "Versi PDf",
"textPoint": "Mata",
@ -625,6 +627,7 @@
"textReplace": "Gantikan",
"textReplaceAll": "Gantikan Semua",
"textResolvedComments": "Komen Diselesaikan",
"textRestartApplication": "Mulakan semula aplikasi untuk perubahan tersebut berkuat kuasa",
"textRight": "Kanan",
"textRightToLeft": "Kanan ke Kiri",
"textSearch": "Carian",
@ -633,6 +636,7 @@
"textSpaces": "Jarak",
"textSpellcheck": "Menyemak Ejaan",
"textStatistic": "Statistik",
"textSubject": "Subjek",
"textSymbols": "Simbol",
"textTitle": "Tajuk",
"textTop": "Atas",
@ -665,11 +669,7 @@
"txtScheme6": "Konkos",
"txtScheme7": "Ekuiti",
"txtScheme8": "Aliran",
"txtScheme9": "Faundri",
"textEmptyScreens": "There are no headings in the document. Apply a headings style to the text so that it appears in the table of contents.",
"textPdfProducer": "PDF Producer",
"textRestartApplication": "Please restart the application for the changes to take effect",
"textSubject": "Subject"
"txtScheme9": "Faundri"
},
"Toolbar": {
"dlgLeaveMsgText": "Anda mempunyai perubahan yang tidak disimpan. Klik 'Stay on this Page' untuk menunggu autosimpan. Klik 'Leave this Page' untuk membuang semua perubahan yang tidak disimpan.",

View file

@ -59,9 +59,9 @@
"textTable": "表格",
"textTableContents": "目錄",
"textTableSize": "表格大小",
"txtNotUrl": "此字段應為格式為“ http://www.example.com”的URL。",
"textWithBlueLinks": "With Blue Links",
"textWithPageNumbers": "With Page Numbers"
"textWithBlueLinks": "帶有藍色連結",
"textWithPageNumbers": "帶有頁碼",
"txtNotUrl": "此字段應為格式為“ http://www.example.com”的URL。"
},
"Common": {
"Collaboration": {
@ -197,10 +197,10 @@
"textDoNotShowAgain": "不再顯示",
"textNumberingValue": "編號值",
"textOk": "確定",
"textRefreshEntireTable": "完整表格刷新",
"textRefreshPageNumbersOnly": "等級數量",
"textRows": "行列",
"txtWarnUrl": "這連結可能對您的設備和資料造成損害。<br> 您確定要繼續嗎?",
"textRefreshEntireTable": "Refresh entire table",
"textRefreshPageNumbersOnly": "Refresh page numbers only"
"txtWarnUrl": "這連結可能對您的設備和資料造成損害。<br> 您確定要繼續嗎?"
},
"Edit": {
"notcriticalErrorTitle": "警告",
@ -215,6 +215,7 @@
"textAlign": "對齊",
"textAllCaps": "全部大寫",
"textAllowOverlap": "允許重疊",
"textAmountOfLevels": "層級數量",
"textApril": "四月",
"textAugust": "八月",
"textAuto": "自動",
@ -237,6 +238,7 @@
"textClose": "關閉",
"textColor": "顏色",
"textContinueFromPreviousSection": "從上個部份繼續",
"textCreateTextStyle": "建立新的文字樣式",
"textCurrent": "當前",
"textCustomColor": "自訂顏色",
"textDecember": "十二月",
@ -252,6 +254,7 @@
"textEffects": "效果",
"textEmpty": "空",
"textEmptyImgUrl": "您必須輸入圖檔的URL.",
"textEnterTitleNewStyle": "輸入新樣式的標題",
"textFebruary": "二月",
"textFill": "填入",
"textFirstColumn": "第一欄",
@ -305,12 +308,15 @@
"textOrphanControl": "遺留功能控制",
"textPageBreakBefore": "分頁之前",
"textPageNumbering": "頁編碼",
"textPageNumbers": "頁碼",
"textParagraph": "段落",
"textParagraphStyle": "段落風格",
"textPictureFromLibrary": "來自圖庫的圖片",
"textPictureFromURL": "網址圖片",
"textPt": "pt",
"textRefresh": "刷新",
"textRefreshEntireTable": "完整表格刷新",
"textRefreshPageNumbersOnly": "等級數量",
"textRemoveChart": "刪除圖表",
"textRemoveImage": "移除圖片",
"textRemoveLink": "刪除連結",
@ -322,6 +328,7 @@
"textReplace": "取代",
"textReplaceImage": "取代圖片",
"textResizeToFitContent": "調整大小以適合內容",
"textRightAlign": "靠右對齊",
"textSa": "Sa",
"textSameCreatedNewStyle": "與新增風格相同",
"textScreenTip": "提示功能",
@ -338,6 +345,7 @@
"textStandard": "標準",
"textStartAt": "開始",
"textStrikethrough": "刪除線",
"textStructure": "結構",
"textStyle": "風格",
"textStyleOptions": "樣式選項",
"textStyles": "風格",
@ -345,6 +353,7 @@
"textSubscript": "下標",
"textSuperscript": "上標",
"textTable": "表格",
"textTableOfCont": "目錄",
"textTableOptions": "表格選項",
"textText": "文字",
"textTh": "Th",
@ -356,16 +365,7 @@
"textTu": "Tu",
"textType": "類型",
"textWe": "We",
"textWrap": "包覆",
"textAmountOfLevels": "Amount of Levels",
"textCreateTextStyle": "Create new text style",
"textEnterTitleNewStyle": "Enter title of a new style",
"textPageNumbers": "Page Numbers",
"textRefreshEntireTable": "Refresh entire table",
"textRefreshPageNumbersOnly": "Refresh page numbers only",
"textRightAlign": "Right Align",
"textStructure": "Structure",
"textTableOfCont": "TOC"
"textWrap": "包覆"
},
"Error": {
"convertationTimeoutText": "轉換逾時。",
@ -581,6 +581,7 @@
"textDownloadRtf": "以這個格式來儲存此文件的話,部份的文字排版效果將會遺失。您確定要繼續嗎?",
"textDownloadTxt": "若使用此格式來儲存這份文件的話,除了純文字以外,其他的文件功能將會失效。您確定要繼續嗎?",
"textEmptyHeading": "空標題",
"textEmptyScreens": "文件中沒有標題。將標題樣式應用於文字,使其顯示在目錄中。",
"textEnableAll": "全部啟用",
"textEnableAllMacrosWithoutNotification": "啟用所有不帶通知的巨集",
"textEncoding": "編碼方式",
@ -626,6 +627,7 @@
"textReplace": "取代",
"textReplaceAll": "取代全部",
"textResolvedComments": "已解決的註解",
"textRestartApplication": "請重新啟動應用程式以讓變更生效",
"textRight": "右",
"textRightToLeft": "右到左",
"textSearch": "搜尋",
@ -667,9 +669,7 @@
"txtScheme6": "大堂",
"txtScheme7": "產權",
"txtScheme8": "流程",
"txtScheme9": "鑄造廠",
"textEmptyScreens": "There are no headings in the document. Apply a headings style to the text so that it appears in the table of contents.",
"textRestartApplication": "Please restart the application for the changes to take effect"
"txtScheme9": "鑄造廠"
},
"Toolbar": {
"dlgLeaveMsgText": "您有未儲存的變更。點擊“留在此頁面”以等待自動儲存。點擊“離開此頁面”以放棄所有未儲存的變更。",

View file

@ -19,7 +19,8 @@ import EditorUIController from '../lib/patch';
users: stores.users,
isDisconnected: stores.users.isDisconnected,
displayMode: stores.storeReview.displayMode,
dataDoc: stores.storeDocumentInfo.dataDoc
dataDoc: stores.storeDocumentInfo.dataDoc,
isViewer: stores.storeAppOptions.isViewer
}))
class ContextMenu extends ContextMenuController {
constructor(props) {
@ -225,6 +226,7 @@ class ContextMenu extends ContextMenuController {
} else {
const { t } = this.props;
const _t = t("ContextMenu", { returnObjects: true });
f7.dialog.create({
title: t('Settings', {returnObjects: true}).notcriticalErrorTitle,
text : _t.txtWarnUrl,
@ -256,7 +258,7 @@ class ContextMenu extends ContextMenuController {
initMenuItems() {
if ( !Common.EditorApi ) return [];
const { isEdit, canFillForms, isDisconnected } = this.props;
const { isEdit, canFillForms, isDisconnected, isViewer } = this.props;
if (isEdit && EditorUIController.ContextMenu) {
return EditorUIController.ContextMenu.mapMenuItems(this);
@ -296,36 +298,36 @@ class ContextMenu extends ContextMenuController {
let itemsIcon = [],
itemsText = [];
if ( canCopy ) {
if (canCopy) {
itemsIcon.push({
event: 'copy',
icon: 'icon-copy'
});
}
if(!isDisconnected) {
if ( canFillForms && canCopy && !locked ) {
if (!isDisconnected) {
if (canFillForms && canCopy && !locked && !isViewer) {
itemsIcon.push({
event: 'cut',
icon: 'icon-cut'
});
}
if ( canFillForms && canCopy && !locked ) {
if (canFillForms && canCopy && !locked && !isViewer) {
itemsIcon.push({
event: 'paste',
icon: 'icon-paste'
});
}
if ( canViewComments && this.isComments ) {
if (canViewComments && this.isComments) {
itemsText.push({
caption: _t.menuViewComment,
event: 'viewcomment'
});
}
if (api.can_AddQuotedComment() !== false && canCoAuthoring && canComments && !locked && !(!isText && isObject)) {
if (api.can_AddQuotedComment() !== false && canCoAuthoring && canComments && !locked && !(!isText && isObject) && !isViewer) {
itemsText.push({
caption: _t.menuAddComment,
event: 'addcomment'
@ -333,14 +335,14 @@ class ContextMenu extends ContextMenuController {
}
}
if ( isLink ) {
if (isLink) {
itemsText.push({
caption: _t.menuOpenLink,
event: 'openlink'
});
}
if(inToc && isEdit) {
if(inToc && isEdit && !isViewer) {
itemsText.push({
caption: t('ContextMenu.textRefreshEntireTable'),
event: 'refreshEntireTable'

View file

@ -124,7 +124,7 @@ class MainController extends Component {
docInfo = new Asc.asc_CDocInfo();
docInfo.put_Id(data.doc.key);
docInfo.put_Url(data.doc.url);
docInfo.put_DirectUrl(data.doc.directUrl);
// docInfo.put_DirectUrl(data.doc.directUrl);
docInfo.put_Title(data.doc.title);
docInfo.put_Format(data.doc.fileType);
docInfo.put_VKey(data.doc.vkey);
@ -214,6 +214,7 @@ class MainController extends Component {
this.applyMode(storeAppOptions);
this.api.asc_addRestriction(Asc.c_oAscRestrictionType.View);
this.api.asc_LoadDocument();
this.api.Resize();
};

View file

@ -25,6 +25,7 @@ class SearchSettings extends SearchSettingsView {
const _t = t("Settings", {returnObjects: true});
const storeAppOptions = this.props.storeAppOptions;
const isEdit = storeAppOptions.isEdit;
const isViewer = storeAppOptions.isViewer;
const storeReview = this.props.storeReview;
const displayMode = storeReview.displayMode;
@ -39,7 +40,7 @@ class SearchSettings extends SearchSettingsView {
</Navbar>
<List>
<ListItem radio title={_t.textFind} name="find-replace-checkbox" checked={!this.state.useReplace} onClick={e => this.onFindReplaceClick('find')} />
{isEdit && displayMode === 'markup' ? [
{isEdit && displayMode === 'markup' && !isViewer ? [
<ListItem key="replace" radio title={_t.textFindAndReplace} name="find-replace-checkbox" checked={this.state.useReplace}
onClick={e => this.onFindReplaceClick('replace')} />,
<ListItem key="replace-all" radio title={_t.textFindAndReplaceAll} name="find-replace-checkbox" checked={this.state.isReplaceAll}

View file

@ -3,11 +3,14 @@ import { inject, observer } from 'mobx-react';
import { f7 } from 'framework7-react';
import { useTranslation } from 'react-i18next';
import ToolbarView from "../view/Toolbar";
import {storeAppOptions} from "../store/appOptions";
const ToolbarController = inject('storeAppOptions', 'users', 'storeReview', 'storeFocusObjects', 'storeToolbarSettings','storeDocumentInfo')(observer(props => {
const {t} = useTranslation();
const _t = t("Toolbar", { returnObjects: true });
const appOptions = props.storeAppOptions;
const isViewer = appOptions.isViewer;
const isMobileView = appOptions.isMobileView;
const isDisconnected = props.users.isDisconnected;
const displayMode = props.storeReview.displayMode;
const stateDisplayMode = displayMode == "final" || displayMode == "original" ? true : false;
@ -124,6 +127,28 @@ const ToolbarController = inject('storeAppOptions', 'users', 'storeReview', 'sto
Common.Gateway.requestEditRights();
};
const turnOffViewerMode = () => {
const api = Common.EditorApi.get();
appOptions.changeViewerMode();
api.asc_removeRestriction(Asc.c_oAscRestrictionType.View)
api.asc_addRestriction(Asc.c_oAscRestrictionType.None);
}
const turnOnViewerMode = () => {
const api = Common.EditorApi.get();
appOptions.changeViewerMode();
api.asc_addRestriction(Asc.c_oAscRestrictionType.View);
}
const changeMobileView = () => {
const api = Common.EditorApi.get();
appOptions.changeMobileView();
api.ChangeReaderMode();
}
return (
<ToolbarView openOptions={props.openOptions}
isEdit={appOptions.isEdit}
@ -144,6 +169,11 @@ const ToolbarController = inject('storeAppOptions', 'users', 'storeReview', 'sto
showEditDocument={showEditDocument}
onEditDocument={onEditDocument}
isDisconnected={isDisconnected}
isViewer={isViewer}
turnOffViewerMode={turnOffViewerMode}
turnOnViewerMode={turnOnViewerMode}
isMobileView={isMobileView}
changeMobileView={changeMobileView}
/>
)
}));

View file

@ -27,19 +27,6 @@ const Settings = props => {
}
};
const onReaderMode = () => {
const appOptions = props.storeAppOptions;
appOptions.changeReaderMode();
Common.EditorApi.get().ChangeReaderMode();
if (Device.phone) {
setTimeout(() => {
closeModal();
}, 1);
}
};
const onPrint = () => {
const api = Common.EditorApi.get();
@ -94,15 +81,27 @@ const Settings = props => {
}, 0);
};
const onChangeMobileView = () => {
const api = Common.EditorApi.get()
const appOptions = props.storeAppOptions;
appOptions.changeMobileView();
api.ChangeReaderMode();
if (Device.phone) {
closeModal();
}
}
return <SettingsView usePopover={!Device.phone}
openOptions={props.openOptions}
onclosed={props.onclosed}
onReaderMode={onReaderMode}
onPrint={onPrint}
showHelp={showHelp}
showFeedback={showFeedback}
onOrthographyCheck={onOrthographyCheck}
onDownloadOrigin={onDownloadOrigin}
onChangeMobileView={onChangeMobileView}
/>
};

View file

@ -53,5 +53,10 @@
}
}
}
// Reader mode
.back-reader-mode {
margin-left: 10px;
}
}

View file

@ -445,6 +445,23 @@
.encoded-svg-mask('<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M21 3H3V21H21V3ZM3 2H2V3V21V22H3H21H22V21V3V2H21H3ZM15.2929 8H9V7H16.5H17V7.5V15H16V8.70711L7.35355 17.3536L6.64645 16.6464L15.2929 8Z" fill="@{brandColor}"/></svg>');
}
// Reader mode
&.icon-edit-mode {
width: 24px;
height: 24px;
.encoded-svg-mask('<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path fill-rule="evenodd" clip-rule="evenodd" d="M21.5002 6.3L23.0002 4.8C23.0002 4.8 22.8002 3.6 22.1002 2.9C21.4002 2.1 20.2002 2 20.2002 2L18.7002 3.5L21.5002 6.3ZM20.3 6.30001L7.1 19.4L5.6 17.9L18.8 4.80001L18.1 4.10001L4.5 17.7L4 21L1 21V22H23V21L4 21L7.3 20.5L20.9 6.90001L20.3 6.30001Z" fill="@{brandColor}"/></svg>');
}
&.icon-mobile-view {
width: 24px;
height: 24px;
.encoded-svg-mask('<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path fill-rule="evenodd" clip-rule="evenodd" d="M7 3H17C17.5523 3 18 3.44772 18 4V20C18 20.5523 17.5523 21 17 21H7C6.44772 21 6 20.5523 6 20V4C6 3.44772 6.44772 3 7 3ZM5 4C5 2.89543 5.89543 2 7 2H17C18.1046 2 19 2.89543 19 4V20C19 21.1046 18.1046 22 17 22H7C5.89543 22 5 21.1046 5 20V4ZM9.5 19C9.22386 19 9 19.2239 9 19.5C9 19.7761 9.22386 20 9.5 20H14.5C14.7761 20 15 19.7761 15 19.5C15 19.2239 14.7761 19 14.5 19H9.5Z" fill="@{brandColor}"/></svg>')
}
&.icon-standard-view {
width: 24px;
height: 24px;
.encoded-svg-mask('<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path fill-rule="evenodd" clip-rule="evenodd" d="M7 1V3.5C7 3.77614 6.77614 4 6.5 4H4V3H6V1H7ZM17 3.5V1H18V3H20V4H17.5C17.2239 4 17 3.77614 17 3.5ZM17 20.5V23H18V21H20V20H17.5C17.2239 20 17 20.2239 17 20.5ZM7 20.5V23H6V21H4V20H6.5C6.77614 20 7 20.2239 7 20.5ZM16 6H8C7.44772 6 7 6.44772 7 7V17C7 17.5523 7.44772 18 8 18H16C16.5523 18 17 17.5523 17 17V7C17 6.44772 16.5523 6 16 6ZM8 5C6.89543 5 6 5.89543 6 7V17C6 18.1046 6.89543 19 8 19H16C17.1046 19 18 18.1046 18 17V7C18 5.89543 17.1046 5 16 5H8ZM9 8.5C9 8.22386 9.22386 8 9.5 8H14.5C14.7761 8 15 8.22386 15 8.5C15 8.77614 14.7761 9 14.5 9H9.5C9.22386 9 9 8.77614 9 8.5ZM9.5 11C9.22386 11 9 11.2239 9 11.5C9 11.7761 9.22386 12 9.5 12H14.5C14.7761 12 15 11.7761 15 11.5C15 11.2239 14.7761 11 14.5 11H9.5ZM9 14.5C9 14.2239 9.22386 14 9.5 14H14.5C14.7761 14 15 14.2239 15 14.5C15 14.7761 14.7761 15 14.5 15H9.5C9.22386 15 9 14.7761 9 14.5Z" fill="@{brandColor}"/></svg>');
}
// Comments
&.icon-menu-comment {
width: 30px;

View file

@ -63,10 +63,32 @@
.encoded-svg-mask('<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M7 12C7 13.6569 5.65685 15 4 15C2.34315 15 1 13.6569 1 12C1 10.3431 2.34315 9 4 9C5.65685 9 7 10.3431 7 12ZM15 12C15 13.6569 13.6569 15 12 15C10.3431 15 9 13.6569 9 12C9 10.3431 10.3431 9 12 9C13.6569 9 15 10.3431 15 12ZM20 15C21.6569 15 23 13.6569 23 12C23 10.3431 21.6569 9 20 9C18.3431 9 17 10.3431 17 12C17 13.6569 18.3431 15 20 15Z" fill="@{toolbar-tab-normal}"/></svg>', @toolbar-tab-normal);
}
&.icon-search {
width: 22px;
height: 22px;
width: 24px;
height: 24px;
.encoded-svg-mask('<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 22 22" fill="@{white}"><g><path d="M19.5,16.8L16,13.3c0.7-1.1,1.1-2.4,1.1-3.8C17,5.4,13.6,2,9.5,2S2,5.4,2,9.5S5.4,17,9.5,17c1.4,0,2.7-0.4,3.8-1.1l3.5,3.5c0.7,0.7,1.9,0.7,2.6,0C20.2,18.7,20.2,17.6,19.5,16.8z M9.5,15.3c-3.2,0-5.8-2.6-5.8-5.8s2.6-5.8,5.8-5.8s5.8,2.6,5.8,5.8S12.7,15.3,9.5,15.3z"/></g></svg>');
}
// Reader mode
&.icon-edit-mode {
width: 24px;
height: 24px;
.encoded-svg-mask('<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path fill-rule="evenodd" clip-rule="evenodd" d="M21.5002 6.3L23.0002 4.8C23.0002 4.8 22.8002 3.6 22.1002 2.9C21.4002 2.1 20.2002 2 20.2002 2L18.7002 3.5L21.5002 6.3ZM20.3 6.30001L7.1 19.4L5.6 17.9L18.8 4.80001L18.1 4.10001L4.5 17.7L4 21L1 21V22H23V21L4 21L7.3 20.5L20.9 6.90001L20.3 6.30001Z" fill="@{toolbar-icons}"/></svg>', @toolbar-icons);
}
&.icon-mobile-view {
width: 24px;
height: 24px;
.encoded-svg-mask('<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path fill-rule="evenodd" clip-rule="evenodd" d="M7 3H17C17.5523 3 18 3.44772 18 4V20C18 20.5523 17.5523 21 17 21H7C6.44772 21 6 20.5523 6 20V4C6 3.44772 6.44772 3 7 3ZM5 4C5 2.89543 5.89543 2 7 2H17C18.1046 2 19 2.89543 19 4V20C19 21.1046 18.1046 22 17 22H7C5.89543 22 5 21.1046 5 20V4ZM9.5 19C9.22386 19 9 19.2239 9 19.5C9 19.7761 9.22386 20 9.5 20H14.5C14.7761 20 15 19.7761 15 19.5C15 19.2239 14.7761 19 14.5 19H9.5Z" fill="@{toolbar-icons}"/></svg>', @toolbar-icons);
}
&.icon-standard-view {
width: 24px;
height: 24px;
.encoded-svg-mask('<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path fill-rule="evenodd" clip-rule="evenodd" d="M7 1V3.5C7 3.77614 6.77614 4 6.5 4H4V3H6V1H7ZM17 3.5V1H18V3H20V4H17.5C17.2239 4 17 3.77614 17 3.5ZM17 20.5V23H18V21H20V20H17.5C17.2239 20 17 20.2239 17 20.5ZM7 20.5V23H6V21H4V20H6.5C6.77614 20 7 20.2239 7 20.5ZM16 6H8C7.44772 6 7 6.44772 7 7V17C7 17.5523 7.44772 18 8 18H16C16.5523 18 17 17.5523 17 17V7C17 6.44772 16.5523 6 16 6ZM8 5C6.89543 5 6 5.89543 6 7V17C6 18.1046 6.89543 19 8 19H16C17.1046 19 18 18.1046 18 17V7C18 5.89543 17.1046 5 16 5H8ZM9 8.5C9 8.22386 9.22386 8 9.5 8H14.5C14.7761 8 15 8.22386 15 8.5C15 8.77614 14.7761 9 14.5 9H9.5C9.22386 9 9 8.77614 9 8.5ZM9.5 11C9.22386 11 9 11.2239 9 11.5C9 11.7761 9.22386 12 9.5 12H14.5C14.7761 12 15 11.7761 15 11.5C15 11.2239 14.7761 11 14.5 11H9.5ZM9 14.5C9 14.2239 9.22386 14 9.5 14H14.5C14.7761 14 15 14.2239 15 14.5C15 14.7761 14.7761 15 14.5 15H9.5C9.22386 15 9 14.7761 9 14.5Z" fill="@{toolbar-icons}"/></svg>', @toolbar-icons);
}
&.icon-back-reader-mode {
width: 24px;
height: 24px;
.encoded-svg-mask('<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M9 16.1719L19.5938 5.57812L21 6.98438L9 18.9844L3.42188 13.4062L4.82812 12L9 16.1719Z" fill="@{toolbar-icons}" /></svg>', @toolbar-icons);
}
}
}
i.icon {
@ -152,8 +174,14 @@
.encoded-svg-mask('<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M21 6H3V18H21V6ZM2 5V19H22V5H2Z" fill="black"/><path fill-rule="evenodd" clip-rule="evenodd" d="M2.66552 6.37165L3.33448 5.62835L12 13.3273L20.6655 5.62835L21.3345 6.37165L12 14.6727L2.66552 6.37165Z" fill="black"/><path fill-rule="evenodd" clip-rule="evenodd" d="M9.37629 11.3293L3.37629 18.3293L2.62371 17.6707L8.62371 10.6707L9.37629 11.3293Z" fill="black"/><path fill-rule="evenodd" clip-rule="evenodd" d="M15.3763 10.6707L21.3763 17.6707L20.6237 18.3293L14.6237 11.3293L15.3763 10.6707Z" fill="black"/></svg>');
}
// Edit
// Mobile View
&.icon-mobile-view {
width: 24px;
height: 24px;
.encoded-svg-mask('<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path fill-rule="evenodd" clip-rule="evenodd" d="M7 3H17C17.5523 3 18 3.44772 18 4V20C18 20.5523 17.5523 21 17 21H7C6.44772 21 6 20.5523 6 20V4C6 3.44772 6.44772 3 7 3ZM5 4C5 2.89543 5.89543 2 7 2H17C18.1046 2 19 2.89543 19 4V20C19 21.1046 18.1046 22 17 22H7C5.89543 22 5 21.1046 5 20V4ZM9.5 19C9.22386 19 9 19.2239 9 19.5C9 19.7761 9.22386 20 9.5 20H14.5C14.7761 20 15 19.7761 15 19.5C15 19.2239 14.7761 19 14.5 19H9.5Z" fill="@{brandColor}"/></svg>', @brandColor);
}
// Edit
&.icon-text-align-left {
width: 22px;
height: 22px;

View file

@ -92,6 +92,8 @@ class MainPage extends Component {
render() {
const appOptions = this.props.storeAppOptions;
// const isViewer = appOptions.isViewer;
// console.log(isViewer);
const config = appOptions.config;
let showLogo = !(appOptions.canBrandingExt && (config.customization && (config.customization.loaderName || config.customization.loaderLogo)));
@ -112,10 +114,13 @@ class MainPage extends Component {
window.open(`${__PUBLISHER_URL__}`, "_blank");
}}><Icon icon="icon-logo"></Icon></div>}
<Subnavbar>
<Toolbar openOptions={this.handleClickToOpenOptions} closeOptions={this.handleOptionsViewClosed}/>
<Toolbar openOptions={this.handleClickToOpenOptions}
closeOptions={this.handleOptionsViewClosed}/>
<Search useSuspense={false}/>
</Subnavbar>
</Navbar>
{/* Page content */}
<View id="editor_sdk">

View file

@ -23,12 +23,29 @@ export class storeAppOptions {
canBranding: observable,
isDocReady: observable,
changeDocReady: action
changeDocReady: action,
isViewer: observable,
changeViewerMode: action,
isMobileView: observable,
changeMobileView: action
});
}
isEdit = false;
isMobileView = false;
changeMobileView() {
this.isMobileView = !this.isMobileView;
}
isViewer = true;
changeViewerMode() {
this.isViewer = !this.isViewer;
}
canViewComments = false;
changeCanViewComments(value) {
this.canViewComments = value;

View file

@ -1,39 +1,60 @@
import React, {Fragment} from 'react';
import { useTranslation } from 'react-i18next';
import {NavLeft, NavRight, NavTitle, Link, Icon} from 'framework7-react';
import { Device } from '../../../../common/mobile/utils/device';
import EditorUIController from '../lib/patch'
const ToolbarView = props => {
const { t } = useTranslation();
const isDisconnected = props.isDisconnected;
const disableEditBtn = props.isObjectLocked || props.stateDisplayMode || props.disabledEditControls || isDisconnected;
const isViewer = props.isViewer;
const isMobileView = props.isMobileView;
const shortTitle = (title) => {
const arrDocTitle = title.split('.');
const ext = arrDocTitle[1];
const name = arrDocTitle[0];
if(name.length > 7 && Device.phone) {
let shortName = name.substring(0, 7);
return `${shortName}...${ext}`;
}
return title;
};
return (
<Fragment>
<NavLeft>
{props.isShowBack && <Link className={`btn-doc-back${props.disabledControls && ' disabled'}`} icon='icon-back' onClick={props.onBack}></Link>}
{Device.ios && props.isEdit && EditorUIController.getUndoRedo && EditorUIController.getUndoRedo({
{!isViewer && <Link text={Device.ios ? t("Toolbar.textOk") : ''} icon={Device.android ? 'icon-back-reader-mode' : null} className='back-reader-mode' onClick={() => props.turnOnViewerMode()}></Link>}
{(props.isShowBack && isViewer) && <Link className={`btn-doc-back${props.disabledControls && ' disabled'}`} icon='icon-back' onClick={props.onBack}></Link>}
{(Device.ios && props.isEdit && !isViewer) && EditorUIController.getUndoRedo && EditorUIController.getUndoRedo({
disabledUndo: !props.isCanUndo || isDisconnected,
disabledRedo: !props.isCanRedo || isDisconnected,
onUndoClick: props.onUndo,
onRedoClick: props.onRedo
})}
</NavLeft>
{!Device.phone && <NavTitle>{props.docTitle}</NavTitle>}
{(!Device.phone || isViewer) && <NavTitle>{shortTitle(props.docTitle)}</NavTitle>}
<NavRight>
{Device.android && props.isEdit && EditorUIController.getUndoRedo && EditorUIController.getUndoRedo({
{(Device.android && props.isEdit && !isViewer) && EditorUIController.getUndoRedo && EditorUIController.getUndoRedo({
disabledUndo: !props.isCanUndo,
disabledRedo: !props.isCanRedo,
onUndoClick: props.onUndo,
onRedoClick: props.onRedo
})}
{props.showEditDocument &&
{isViewer && <Link className={props.disabledControls ? 'disabled' : ''} icon={isMobileView ? 'icon-standard-view' : 'icon-mobile-view'} href={false} onClick={() => props.changeMobileView()}></Link>}
{(props.showEditDocument && !isViewer) &&
<Link className={props.disabledControls ? 'disabled' : ''} icon='icon-edit' href={false} onClick={props.onEditDocument}></Link>
}
{props.isEdit && EditorUIController.getToolbarOptions && EditorUIController.getToolbarOptions({
{props.isEdit && !isViewer && EditorUIController.getToolbarOptions && EditorUIController.getToolbarOptions({
disabled: disableEditBtn || props.disabledControls,
onEditClick: e => props.openOptions('edit'),
onAddClick: e => props.openOptions('add')
})}
{ Device.phone ? null : <Link className={(props.disabledControls || props.readerMode) && 'disabled'} icon='icon-search' searchbarEnable='.searchbar' href={false}></Link> }
{isViewer && <Link icon='icon-edit-mode' className={(props.disabledSettings || props.disabledControls || isDisconnected) && 'disabled'} href={false} onClick={() => props.turnOffViewerMode()}></Link>}
{Device.phone ? null : <Link className={(props.disabledControls || props.readerMode) && 'disabled'} icon='icon-search' searchbarEnable='.searchbar' href={false}></Link>}
{props.displayCollaboration && window.matchMedia("(min-width: 360px)").matches ? <Link className={props.disabledControls && 'disabled'} id='btn-coauth' href={false} icon='icon-collaboration' onClick={e => props.openOptions('coauth')}></Link> : null}
<Link className={(props.disabledSettings || props.disabledControls || isDisconnected) && 'disabled'} id='btn-settings' icon='icon-settings' href={false} onClick={e => props.openOptions('settings')}></Link>
</NavRight>

View file

@ -75,6 +75,7 @@ const routes = [
const SettingsList = inject("storeAppOptions", "storeReview")(observer(props => {
const { t } = useTranslation();
const _t = t('Settings', {returnObjects: true});
const appOptions = props.storeAppOptions;
const storeReview = props.storeReview;
const displayMode = storeReview.displayMode;
const navbar = <Navbar title={_t.textSettings}>
@ -105,11 +106,12 @@ const SettingsList = inject("storeAppOptions", "storeReview")(observer(props =>
}
// set mode
const appOptions = props.storeAppOptions;
const isViewer = appOptions.isViewer;
const isMobileView = appOptions.isMobileView;
let _isEdit = false,
_canDownload = false,
_canDownloadOrigin = false,
_canReader = false,
_canAbout = true,
_canHelp = true,
_canPrint = false;
@ -119,7 +121,6 @@ const SettingsList = inject("storeAppOptions", "storeReview")(observer(props =>
_canPrint = _canDownload = _canDownloadOrigin = false;
} else {
_isEdit = appOptions.isEdit;
_canReader = !appOptions.isEdit && !appOptions.isRestrictedEdit && appOptions.canReader;
_canDownload = appOptions.canDownload;
_canDownloadOrigin = appOptions.canDownloadOrigin;
_canPrint = appOptions.canPrint;
@ -137,7 +138,7 @@ const SettingsList = inject("storeAppOptions", "storeReview")(observer(props =>
{navbar}
<List>
{!props.inPopover &&
<ListItem disabled={appOptions.readerMode ? true : false} title={!_isEdit ? _t.textFind : _t.textFindAndReplace} link='#' searchbarEnable='.searchbar' onClick={closeModal} className='no-indicator'>
<ListItem title={!_isEdit || isViewer ? _t.textFind : _t.textFindAndReplace} link='#' searchbarEnable='.searchbar' onClick={closeModal} className='no-indicator'>
<Icon slot="media" icon="icon-search"></Icon>
</ListItem>
}
@ -154,26 +155,29 @@ const SettingsList = inject("storeAppOptions", "storeReview")(observer(props =>
<Icon slot="media" icon="icon-collaboration"></Icon>
</ListItem>
: null}
{_canReader &&
<ListItem title={_t.textReaderMode}> {/*ToDo*/}
<Icon slot="media" icon="icon-reader"></Icon>
<Toggle checked={appOptions.readerMode} onToggleChange={() => {props.onReaderMode()}}/>
</ListItem>
}
{Device.sailfish && _isEdit &&
<ListItem title={_t.textSpellcheck} onClick={() => {props.onOrthographyCheck()}} className='no-indicator' link="#">
<Icon slot="media" icon="icon-spellcheck"></Icon>
</ListItem>
}
{_isEdit &&
{!isViewer &&
<ListItem title={t('Settings.textMobileView')}>
<Icon slot="media" icon="icon-mobile-view"></Icon>
<Toggle checked={isMobileView} onToggleChange={() => props.onChangeMobileView()} />
</ListItem>
}
{(_isEdit && !isViewer) &&
<ListItem link="#" title={_t.textDocumentSettings} disabled={displayMode !== 'markup'}
onClick={onoptionclick.bind(this, '/document-settings/')}>
<Icon slot="media" icon="icon-doc-setup"></Icon>
</ListItem>
}
<ListItem title={_t.textApplicationSettings} link="#" onClick={onoptionclick.bind(this, "/application-settings/")}>
<Icon slot="media" icon="icon-app-settings"></Icon>
</ListItem>
{!isViewer &&
<ListItem title={_t.textApplicationSettings} link="#"
onClick={onoptionclick.bind(this, "/application-settings/")}>
<Icon slot="media" icon="icon-app-settings"></Icon>
</ListItem>
}
{_canDownload &&
<ListItem title={_t.textDownload} link="#" onClick={onoptionclick.bind(this, "/download/")}>
<Icon slot="media" icon="icon-download"></Icon>
@ -227,10 +231,10 @@ class SettingsView extends Component {
return (
show_popover ?
<Popover id="settings-popover" closeByOutsideClick={false} className="popover__titled" onPopoverClosed={() => this.props.onclosed()}>
<SettingsList inPopover={true} onOptionClick={this.onoptionclick} openOptions={this.props.openOptions} style={{height: '410px'}} onReaderMode={this.props.onReaderMode} onPrint={this.props.onPrint} showHelp={this.props.showHelp} showFeedback={this.props.showFeedback} onOrthographyCheck={this.props.onOrthographyCheck} onDownloadOrigin={this.props.onDownloadOrigin}/>
<SettingsList inPopover={true} onOptionClick={this.onoptionclick} openOptions={this.props.openOptions} style={{height: '410px'}} onChangeMobileView={this.props.onChangeMobileView} onPrint={this.props.onPrint} showHelp={this.props.showHelp} showFeedback={this.props.showFeedback} onOrthographyCheck={this.props.onOrthographyCheck} onDownloadOrigin={this.props.onDownloadOrigin}/>
</Popover> :
<Popup className="settings-popup" onPopupClosed={() => this.props.onclosed()}>
<SettingsList onOptionClick={this.onoptionclick} openOptions={this.props.openOptions} onReaderMode={this.props.onReaderMode} onPrint={this.props.onPrint} showHelp={this.props.showHelp} showFeedback={this.props.showFeedback} onOrthographyCheck={this.props.onOrthographyCheck} onDownloadOrigin={this.props.onDownloadOrigin}/>
<SettingsList onOptionClick={this.onoptionclick} openOptions={this.props.openOptions} onChangeMobileView={this.props.onChangeMobileView} onPrint={this.props.onPrint} showHelp={this.props.showHelp} showFeedback={this.props.showFeedback} onOrthographyCheck={this.props.onOrthographyCheck} onDownloadOrigin={this.props.onDownloadOrigin}/>
</Popup>
)
}

View file

@ -15,7 +15,7 @@
"PE.ApplicationController.errorFilePassProtect": "El fitxer està protegit amb contrasenya i no es pot obrir.",
"PE.ApplicationController.errorFileSizeExceed": "La mida del fitxer supera el límit establert per al servidor. <br>Contacteu amb l'administrador del servidor de documents per a obtenir més informació.",
"PE.ApplicationController.errorForceSave": "S'ha produït un error en desar el fitxer. Utilitzeu l'opció «Anomena i baixa» per a desar el fitxer al disc dur de lordinador o torneu-ho a provar més endavant.",
"PE.ApplicationController.errorLoadingFont": "No s'han carregat les famílies tipogràfiques. <br>Contacteu amb l'administrador del servidor de documents.",
"PE.ApplicationController.errorLoadingFont": "No s'han carregat les lletres tipogràfiques.<br> Contacteu amb l'administrador del Servidor de Documents.",
"PE.ApplicationController.errorTokenExpire": "El testimoni de seguretat del document ha caducat. <br>Contacteu amb l'administrador del servidor de documents.",
"PE.ApplicationController.errorUpdateVersionOnDisconnect": "S'ha restaurat la connexió a internet i la versió del fitxer ha canviat.<br>Abans de continuar treballant, heu de baixar el fitxer o copiar-ne el contingut per a assegurar-vos que no es perdi res i, després, torneu a carregar la pàgina.",
"PE.ApplicationController.errorUserDrop": "No es pot accedir al fitxer.",

View file

@ -366,9 +366,7 @@ define([
this.view.$resultsContainer.show();
this.resultItems.forEach(function (item) {
me.view.$resultsContainer.append(item.el);
if (item.selected) {
$(item.el).addClass('selected');
}
$(item.el)[item.selected ? 'addClass' : 'removeClass']('selected');
$(item.el).on('click', function (el) {
me.api.asc_SelectSearchElement(item.id);
$('#search-results').find('.item').removeClass('selected');

View file

@ -1215,8 +1215,15 @@ define([
this.coreProps = (this.api) ? this.api.asc_getCoreProps() : null;
if (this.coreProps) {
var value = this.coreProps.asc_getCreated();
if (value)
this.lblDate.text(value.toLocaleString(this.mode.lang, {year: 'numeric', month: '2-digit', day: '2-digit'}) + ' ' + value.toLocaleString(this.mode.lang, {timeStyle: 'short'}));
if (value) {
var lang = (this.mode.lang || 'en').replace('_', '-').toLowerCase();
try {
this.lblDate.text(value.toLocaleString(lang, {year: 'numeric', month: '2-digit', day: '2-digit'}) + ' ' + value.toLocaleString(lang, {timeStyle: 'short'}));
} catch (e) {
lang = 'en';
this.lblDate.text(value.toLocaleString(lang, {year: 'numeric', month: '2-digit', day: '2-digit'}) + ' ' + value.toLocaleString(lang, {timeStyle: 'short'}));
}
}
this._ShowHideInfoItem(this.lblDate, !!value);
}
},
@ -1241,8 +1248,15 @@ define([
if (props) {
var visible = false;
value = props.asc_getModified();
if (value)
this.lblModifyDate.text(value.toLocaleString(this.mode.lang, {year: 'numeric', month: '2-digit', day: '2-digit'}) + ' ' + value.toLocaleString(this.mode.lang, {timeStyle: 'short'}));
if (value) {
var lang = (this.mode.lang || 'en').replace('_', '-').toLowerCase();
try {
this.lblModifyDate.text(value.toLocaleString(lang, {year: 'numeric', month: '2-digit', day: '2-digit'}) + ' ' + value.toLocaleString(lang, {timeStyle: 'short'}));
} catch (e) {
lang = 'en';
this.lblModifyDate.text(value.toLocaleString(lang, {year: 'numeric', month: '2-digit', day: '2-digit'}) + ' ' + value.toLocaleString(lang, {timeStyle: 'short'}));
}
}
visible = this._ShowHideInfoItem(this.lblModifyDate, !!value) || visible;
value = props.asc_getLastModifiedBy();
if (value)

View file

@ -225,6 +225,8 @@ define([
dataHintOffset: 'small'
});
this.lockedControls.push(this.chNotes);
Common.NotificationCenter.on('app:ready', this.onAppReady.bind(this));
},
render: function (el) {
@ -249,6 +251,12 @@ define([
return this.$el;
},
onAppReady: function () {
this.btnFitToSlide.updateHint(this.tipFitToSlide);
this.btnFitToWidth.updateHint(this.tipFitToWidth);
this.btnInterfaceTheme.updateHint(this.tipInterfaceTheme);
},
show: function () {
Common.UI.BaseView.prototype.show.call(this);
this.fireEvent('show', this);
@ -283,7 +291,10 @@ define([
textStatusBar: 'Status Bar',
textAlwaysShowToolbar: 'Always show toolbar',
textRulers: 'Rulers',
textNotes: 'Notes'
textNotes: 'Notes',
tipFitToSlide: 'Fit to slide',
tipFitToWidth: 'Fit to width',
tipInterfaceTheme: 'Interface theme'
}
}()), PE.Views.ViewTab || {}));
});

View file

@ -2371,5 +2371,8 @@
"PE.Views.ViewTab.textNotes": "Notes",
"PE.Views.ViewTab.textRulers": "Rulers",
"PE.Views.ViewTab.textStatusBar": "Status Bar",
"PE.Views.ViewTab.textZoom": "Zoom"
"PE.Views.ViewTab.textZoom": "Zoom",
"PE.Views.ViewTab.tipFitToSlide": "Fit to slide",
"PE.Views.ViewTab.tipFitToWidth": "Fit to width",
"PE.Views.ViewTab.tipInterfaceTheme": "Interface theme"
}

View file

@ -283,6 +283,7 @@
"Common.UI.ThemeColorPalette.textStandartColors": "Ստանդարտ գույներ",
"Common.UI.ThemeColorPalette.textThemeColors": "Ոճի գույներ",
"Common.UI.Themes.txtThemeClassicLight": "Դասական լույս",
"Common.UI.Themes.txtThemeContrastDark": "Մութ հակադրություն",
"Common.UI.Themes.txtThemeDark": "Մուգ",
"Common.UI.Themes.txtThemeLight": "Լույս",
"Common.UI.Themes.txtThemeSystem": "Նույնը, ինչ համակարգը",
@ -298,6 +299,9 @@
"Common.UI.Window.yesButtonText": "Այո",
"Common.Utils.Metric.txtCm": "սմ",
"Common.Utils.Metric.txtPt": "կտ",
"Common.Utils.String.textAlt": "Alt ստեղն",
"Common.Utils.String.textCtrl": "Ctrl ստեղն",
"Common.Utils.String.textShift": "Shift ստեղն",
"Common.Views.About.txtAddress": "հասցե՝",
"Common.Views.About.txtLicensee": "ԼԻՑԵՆԶԻԱ",
"Common.Views.About.txtLicensor": "ԼԻՑԵՆԶԱՏՈՒ",
@ -548,6 +552,7 @@
"Common.Views.SearchPanel.textReplace": "Փոխարինել",
"Common.Views.SearchPanel.textReplaceAll": "Փոխարինել բոլորը",
"Common.Views.SearchPanel.textReplaceWith": "Փոխարինել հետևյալով",
"Common.Views.SearchPanel.textSearchHasStopped": "Որոնումը դադարեցվել է",
"Common.Views.SearchPanel.textSearchResults": "Որոնման արդյունքներ՝ {0}/{1}",
"Common.Views.SearchPanel.textTooManyResults": "Այստեղ ցուցադրելու համար չափազանց շատ արդյունքներ կան",
"Common.Views.SearchPanel.textWholeWords": "Միայն ամբողջական բառերը",
@ -1647,6 +1652,7 @@
"PE.Views.FileMenuPanels.Settings.strIgnoreWordsWithNumbers": "Անտեսել թվերով բառերը",
"PE.Views.FileMenuPanels.Settings.strMacrosSettings": "Մակրոների կարգավորումներ",
"PE.Views.FileMenuPanels.Settings.strPasteButton": "Ցուցադրել «Կպցնել ընտրանքներ» կոճակները`բովանդակությունը կպցնելիս",
"PE.Views.FileMenuPanels.Settings.strShowOthersChanges": "Ցուցադրել այլ օգտատերերի կատարած փոփոխությունները",
"PE.Views.FileMenuPanels.Settings.strStrict": "Խիստ",
"PE.Views.FileMenuPanels.Settings.strTheme": "Ինտերֆեյսի ոճ",
"PE.Views.FileMenuPanels.Settings.strUnit": "Չափման միավոր",

View file

@ -408,7 +408,7 @@
"Common.Views.Header.tipViewSettings": "表示の設定",
"Common.Views.Header.tipViewUsers": "ユーザーの表示とドキュメントのアクセス権の管理",
"Common.Views.Header.txtAccessRights": "アクセス許可の変更",
"Common.Views.Header.txtRename": "名前の変更",
"Common.Views.Header.txtRename": "名前を変更する",
"Common.Views.History.textCloseHistory": "履歴を閉じる",
"Common.Views.History.textHide": "折りたたみ",
"Common.Views.History.textHideAll": "変更の詳細を表示しない",
@ -1611,7 +1611,7 @@
"PE.Views.FileMenu.btnRightsCaption": "アクセス許可...",
"PE.Views.FileMenu.btnSaveAsCaption": "名前を付けて保存",
"PE.Views.FileMenu.btnSaveCaption": "保存する",
"PE.Views.FileMenu.btnSaveCopyAsCaption": "コピーを別名で保存...",
"PE.Views.FileMenu.btnSaveCopyAsCaption": "コピーを別名で保存する",
"PE.Views.FileMenu.btnSettingsCaption": "詳細設定...",
"PE.Views.FileMenu.btnToEditCaption": "プレゼンテーションの編集",
"PE.Views.FileMenuPanels.CreateNew.txtBlank": "新しいプレゼンテーション",

View file

@ -263,6 +263,10 @@
"Common.UI.InputFieldBtnPassword.textHintHidePwd": "Sembunyikan kata laluan",
"Common.UI.InputFieldBtnPassword.textHintShowPwd": "Tunjuk kata laluan",
"Common.UI.SearchBar.textFind": "Cari",
"Common.UI.SearchBar.tipCloseSearch": "Tutup carian",
"Common.UI.SearchBar.tipNextResult": "Keputusan seterusnya",
"Common.UI.SearchBar.tipOpenAdvancedSettings": "Buka tetapan lanjutan",
"Common.UI.SearchBar.tipPreviousResult": "Keputusan sebelum",
"Common.UI.SearchDialog.textHighlight": "Keputusan Sorotan Penting",
"Common.UI.SearchDialog.textMatchCase": "Sensitif huruf",
"Common.UI.SearchDialog.textReplaceDef": "Masukkan teks gantian",
@ -275,9 +279,11 @@
"Common.UI.SearchDialog.txtBtnReplaceAll": "Gantikan Semua",
"Common.UI.SynchronizeTip.textDontShow": "Jangan tunjukkan mesej ini semula",
"Common.UI.SynchronizeTip.textSynchronize": "Dokumen telah ditukar dengan pengguna yang lain.<br>Sila klik untuk simpan perubahan anda dan muat semula kemas kini.",
"Common.UI.ThemeColorPalette.textRecentColors": "Warna Terkini",
"Common.UI.ThemeColorPalette.textStandartColors": "Warna Standard",
"Common.UI.ThemeColorPalette.textThemeColors": "Warna Tema",
"Common.UI.Themes.txtThemeClassicLight": "Klasik Cerah",
"Common.UI.Themes.txtThemeContrastDark": "Kontras Gelap",
"Common.UI.Themes.txtThemeDark": "Gelap",
"Common.UI.Themes.txtThemeLight": "Ringan",
"Common.UI.Themes.txtThemeSystem": "Sama seperti Sistem",
@ -293,6 +299,9 @@
"Common.UI.Window.yesButtonText": "Ya",
"Common.Utils.Metric.txtCm": "cm",
"Common.Utils.Metric.txtPt": "pt",
"Common.Utils.String.textAlt": "Alt",
"Common.Utils.String.textCtrl": "Ctrl",
"Common.Utils.String.textShift": "Anjak",
"Common.Views.About.txtAddress": "alamat",
"Common.Views.About.txtLicensee": "LESENKAN",
"Common.Views.About.txtLicensor": "PEMBERI LESEN",
@ -370,6 +379,7 @@
"Common.Views.ExternalDiagramEditor.textTitle": "Editor Carta",
"Common.Views.ExternalOleEditor.textClose": "Tutup",
"Common.Views.ExternalOleEditor.textSave": "Simpan & Keluar",
"Common.Views.ExternalOleEditor.textTitle": "Editor Hamparan",
"Common.Views.Header.labelCoUsersDescr": "Pengguna yang mengedit fail:",
"Common.Views.Header.textAddFavorite": "Tanda sebagai kegemaran",
"Common.Views.Header.textAdvSettings": "Seting lanjutan",
@ -394,6 +404,7 @@
"Common.Views.Header.tipSearch": "Carian",
"Common.Views.Header.tipUndo": "Buat semula",
"Common.Views.Header.tipUndock": "Keluar dok ke tetingkap berasingan",
"Common.Views.Header.tipUsers": "Lihat Pengguna",
"Common.Views.Header.tipViewSettings": "Lihat seting",
"Common.Views.Header.tipViewUsers": "Lihat pengguna dan uruskan hak akses dokumen",
"Common.Views.Header.txtAccessRights": "Ubah hak akses",
@ -446,6 +457,7 @@
"Common.Views.PluginDlg.textLoading": "Memuatkan",
"Common.Views.Plugins.groupCaption": "Plug masuk",
"Common.Views.Plugins.strPlugins": "Plug masuk",
"Common.Views.Plugins.textClosePanel": "Tutup pasang masuk",
"Common.Views.Plugins.textLoading": "Memuatkan",
"Common.Views.Plugins.textStart": "Mulakan",
"Common.Views.Plugins.textStop": "Henti",
@ -531,11 +543,21 @@
"Common.Views.SaveAsDlg.textLoading": "Memuatkan",
"Common.Views.SaveAsDlg.textTitle": "Folder untuk simpan",
"Common.Views.SearchPanel.textCaseSensitive": "Sensitif huruf",
"Common.Views.SearchPanel.textCloseSearch": "Tutup carian",
"Common.Views.SearchPanel.textFind": "Cari",
"Common.Views.SearchPanel.textFindAndReplace": "Cari dan Ganti",
"Common.Views.SearchPanel.textMatchUsingRegExp": "Sepadan menggunakan ungkapan biasa",
"Common.Views.SearchPanel.textNoMatches": "Tiada padanan",
"Common.Views.SearchPanel.textNoSearchResults": "Tiada carian keputusan",
"Common.Views.SearchPanel.textReplace": "Gantikan",
"Common.Views.SearchPanel.textReplaceAll": "Gantikan Semua",
"Common.Views.SearchPanel.textReplaceWith": "Gantikan dengan",
"Common.Views.SearchPanel.textSearchHasStopped": "Carian telah dihentikan",
"Common.Views.SearchPanel.textSearchResults": "Keputusan carian: {0}/{1}",
"Common.Views.SearchPanel.textTooManyResults": "Terlalu banyak keputusan untuk dipaparkan di sini",
"Common.Views.SearchPanel.textWholeWords": "Seluruh perkataan sahaja",
"Common.Views.SearchPanel.tipNextResult": "Keputusan seterusnya",
"Common.Views.SearchPanel.tipPreviousResult": "Keputusan sebelum",
"Common.Views.SelectFileDlg.textLoading": "Memuatkan",
"Common.Views.SelectFileDlg.textTitle": "Pilih Sumber Data",
"Common.Views.SignDialog.textBold": "Tebal",
@ -691,8 +713,10 @@
"PE.Controllers.Main.textPaidFeature": "Ciri Berbayar",
"PE.Controllers.Main.textReconnect": "Sambungan dipulihkan",
"PE.Controllers.Main.textRemember": "Ingat pilihan saya untuk semua fail",
"PE.Controllers.Main.textRememberMacros": "Ingati pilihan saya untuk semua makro",
"PE.Controllers.Main.textRenameError": "Nama pengguna tidak boleh kosong.",
"PE.Controllers.Main.textRenameLabel": "Masukkan nama untuk digunakan bagi kerjasama",
"PE.Controllers.Main.textRequestMacros": "Makro membuat permintaan ke URL. Adakah anda mahu membenarkan permintaan kepada %1?",
"PE.Controllers.Main.textShape": "Bentuk",
"PE.Controllers.Main.textStrict": "Mod tegas",
"PE.Controllers.Main.textTryUndoRedo": "Fungsi Buat asal/Buat semula dinyahdayakan bagi mod pengeditan bersama.<br>Klik butang Strict mode untuk menukar kepada mod pengeditan Bersama Tegas untuk mengedit fail tanpa gangguan pengguna lain dan menghantar perubahan anda hanya selepas anda menyimpannya. Anda boleh bertukar di antara mod-mod pengeditan Bersama menngunakan seting Lanjutan editor.",
@ -974,6 +998,8 @@
"PE.Controllers.Search.notcriticalErrorTitle": "Amaran",
"PE.Controllers.Search.textNoTextFound": "Data yang andaa sedang cari tidak dijumpai. Sila laras pilihan carian.",
"PE.Controllers.Search.textReplaceSkipped": "Gantian telah dilakukan. {0} kejadian telah dilangkau.",
"PE.Controllers.Search.textReplaceSuccess": "Carian telah dilakukan. Kejadian {0} telah digantikan",
"PE.Controllers.Search.warnReplaceString": "{0} bukan aksara khas yang sah untuk Gantikan Dengan kotak.",
"PE.Controllers.Statusbar.textDisconnect": "<b>Sambungan telah hilang</b><br>Sedang cuba untuk menyambung. Sila semak seting sambungan.",
"PE.Controllers.Statusbar.zoomText": "Zum {0}%",
"PE.Controllers.Toolbar.confirmAddFontName": "Fon yang anda akan simpan tidak tersedia pada peranti semasa.<br>Gaya teks akan dipaparkan menggunakan satu daripada fon system, fon yang disimpan akan digunakan apabila ia tersedia.<br>Adakah anda mahu teruskan?",
@ -1233,6 +1259,7 @@
"PE.Controllers.Toolbar.txtSymbol_beth": "Bidaan",
"PE.Controllers.Toolbar.txtSymbol_bullet": "Bulet operator",
"PE.Controllers.Toolbar.txtSymbol_cap": "Persilangan",
"PE.Controllers.Toolbar.txtSymbol_cbrt": "Punca Kuasa Tiga",
"PE.Controllers.Toolbar.txtSymbol_cdots": "Elipsis mendatar pertengahan baris",
"PE.Controllers.Toolbar.txtSymbol_celsius": "Darjah Celsius",
"PE.Controllers.Toolbar.txtSymbol_chi": "Ci",
@ -1283,6 +1310,7 @@
"PE.Controllers.Toolbar.txtSymbol_phi": "Phi",
"PE.Controllers.Toolbar.txtSymbol_pi": "Pi",
"PE.Controllers.Toolbar.txtSymbol_plus": "Tambah",
"PE.Controllers.Toolbar.txtSymbol_pm": "Tambah Tolak",
"PE.Controllers.Toolbar.txtSymbol_propto": "Berkadaran Dengan",
"PE.Controllers.Toolbar.txtSymbol_psi": "Psi",
"PE.Controllers.Toolbar.txtSymbol_qdrt": "Punca kuasa empat",
@ -1321,6 +1349,7 @@
"PE.Views.Animation.strRewind": "Gulung semula",
"PE.Views.Animation.strStart": "Mulakan",
"PE.Views.Animation.strTrigger": "Pemangkin",
"PE.Views.Animation.textAutoPreview": "AutoPratonton",
"PE.Views.Animation.textMoreEffects": "Tunjuk Kesan Selanjutnya",
"PE.Views.Animation.textMoveEarlier": "Alih Lebih Awal",
"PE.Views.Animation.textMoveLater": "Alih Kemudian",
@ -1331,6 +1360,7 @@
"PE.Views.Animation.textOnClickSequence": "Pada Klik Jujukan",
"PE.Views.Animation.textStartAfterPrevious": "Selepas Sebelumnya",
"PE.Views.Animation.textStartOnClick": "Pada Klik",
"PE.Views.Animation.textStartWithPrevious": "Dengan Sebelum",
"PE.Views.Animation.textUntilEndOfSlide": "Hingga Ke Akhir Slaid",
"PE.Views.Animation.textUntilNextClick": "Hingga Klik Seterusnya",
"PE.Views.Animation.txtAddEffect": "Tambah animasi",
@ -1361,6 +1391,7 @@
"PE.Views.ChartSettingsAdvanced.textPosition": "Kedudukan",
"PE.Views.ChartSettingsAdvanced.textSize": "Saiz",
"PE.Views.ChartSettingsAdvanced.textTitle": "Carta Seting Lanjutan",
"PE.Views.ChartSettingsAdvanced.textTopLeftCorner": "Penjuru Kiri Atas",
"PE.Views.ChartSettingsAdvanced.textVertical": "Menegak",
"PE.Views.ChartSettingsAdvanced.textWidth": "Lebar",
"PE.Views.DateTimeDialog.confirmDefault": "Tetapkan format lalai bagi {0}: \"{1}\"",
@ -1483,6 +1514,7 @@
"PE.Views.DocumentHolder.txtDistribVert": "Menegak Tersendiri",
"PE.Views.DocumentHolder.txtDuplicateSlide": "Slaid Pendua",
"PE.Views.DocumentHolder.txtFractionLinear": "Ubah ke pecahan linear",
"PE.Views.DocumentHolder.txtFractionSkewed": "Tukar kepada pecahan terpencong",
"PE.Views.DocumentHolder.txtFractionStacked": "Ubah ke pecahan bertindan",
"PE.Views.DocumentHolder.txtGroup": "Kumpulan",
"PE.Views.DocumentHolder.txtGroupCharOver": "Aksara melebihi teks",
@ -1597,6 +1629,7 @@
"PE.Views.FileMenuPanels.DocumentInfo.txtOwner": "Pemilik",
"PE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "Lokasi",
"PE.Views.FileMenuPanels.DocumentInfo.txtRights": "Orang yang mempunyai hak",
"PE.Views.FileMenuPanels.DocumentInfo.txtSubject": "Subjek",
"PE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Tajuk",
"PE.Views.FileMenuPanels.DocumentInfo.txtUploaded": "Dimuat naik",
"PE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights": "Ubah hak akses",
@ -1619,6 +1652,7 @@
"PE.Views.FileMenuPanels.Settings.strIgnoreWordsWithNumbers": "Abaikan perkataan dengan nombor",
"PE.Views.FileMenuPanels.Settings.strMacrosSettings": "Seting Makro",
"PE.Views.FileMenuPanels.Settings.strPasteButton": "Tunjukkan butang Pilihan Tampal di mana kandungan ditampalkan",
"PE.Views.FileMenuPanels.Settings.strShowOthersChanges": "Tunjukkan perubahan daripada pengguna lain",
"PE.Views.FileMenuPanels.Settings.strStrict": "Tegas",
"PE.Views.FileMenuPanels.Settings.strTheme": "Tema antara muka",
"PE.Views.FileMenuPanels.Settings.strUnit": "Unit Pengukuran",
@ -1638,8 +1672,11 @@
"PE.Views.FileMenuPanels.Settings.txtCacheMode": "Mod Cache Lalai",
"PE.Views.FileMenuPanels.Settings.txtCm": "Sentimeter",
"PE.Views.FileMenuPanels.Settings.txtCollaboration": "Kerjasama",
"PE.Views.FileMenuPanels.Settings.txtEditingSaving": "Pengeditan dan menyimpan",
"PE.Views.FileMenuPanels.Settings.txtFastTip": "Pengeditan bersama masa nyata, Semua perubahan disimpan secara automatik.",
"PE.Views.FileMenuPanels.Settings.txtFitSlide": "Muat kepada Slaid",
"PE.Views.FileMenuPanels.Settings.txtFitWidth": "Muat kepada Kelebaran",
"PE.Views.FileMenuPanels.Settings.txtHieroglyphs": "Hieroglif",
"PE.Views.FileMenuPanels.Settings.txtInch": "Inci",
"PE.Views.FileMenuPanels.Settings.txtLast": "Lihat Terakhir",
"PE.Views.FileMenuPanels.Settings.txtMac": "sebagai OS X",
@ -1651,9 +1688,13 @@
"PE.Views.FileMenuPanels.Settings.txtSpellCheck": "Menyemak Ejaan",
"PE.Views.FileMenuPanels.Settings.txtStopMacros": "Nyahdayakan Semua",
"PE.Views.FileMenuPanels.Settings.txtStopMacrosDesc": "Nyahdayakan semua makro tanpa pemberitahuan",
"PE.Views.FileMenuPanels.Settings.txtStrictTip": "Guna butang “Simpan” untuk segerakkan perubahan yang anda dan orang lain lakukan",
"PE.Views.FileMenuPanels.Settings.txtUseAltKey": "Guna kunci Alt untuk navigasi pengguna",
"PE.Views.FileMenuPanels.Settings.txtUseOptionKey": "Guna kunci Pilihan untuk navigasi antara muka pengguna menggunakan papan kekunci",
"PE.Views.FileMenuPanels.Settings.txtWarnMacros": "Tunjuk Pemberitahuan",
"PE.Views.FileMenuPanels.Settings.txtWarnMacrosDesc": "Nyahdayakan semua makro dengan pemberitahuan",
"PE.Views.FileMenuPanels.Settings.txtWin": "sebagai Windows",
"PE.Views.FileMenuPanels.Settings.txtWorkspace": "Ruang kerja",
"PE.Views.HeaderFooterDialog.applyAllText": "Guna kepada Semua",
"PE.Views.HeaderFooterDialog.applyText": "Guna",
"PE.Views.HeaderFooterDialog.diffLanguage": "Anda tidak boleh guna format tarikh dalam Bahasa berbeza dari slaid induk.<br>Untuk mengubah induk, klik 'Apply to all' berbanding 'Apply'",
@ -1729,6 +1770,7 @@
"PE.Views.ImageSettingsAdvanced.textRotation": "Putaran",
"PE.Views.ImageSettingsAdvanced.textSize": "Saiz",
"PE.Views.ImageSettingsAdvanced.textTitle": "Imej Seting Lanjutan",
"PE.Views.ImageSettingsAdvanced.textTopLeftCorner": "Penjuru Kiri Atas",
"PE.Views.ImageSettingsAdvanced.textVertical": "Menegak",
"PE.Views.ImageSettingsAdvanced.textVertically": "Menegal",
"PE.Views.ImageSettingsAdvanced.textWidth": "Lebar",
@ -1741,10 +1783,12 @@
"PE.Views.LeftMenu.tipSupport": "Maklum Balas & Sokongan",
"PE.Views.LeftMenu.tipTitles": "Tajuk",
"PE.Views.LeftMenu.txtDeveloper": "MOD PEMAJU",
"PE.Views.LeftMenu.txtEditor": "Editor Persembahan",
"PE.Views.LeftMenu.txtLimit": "Had Akses",
"PE.Views.LeftMenu.txtTrial": "MOD PERCUBAAN",
"PE.Views.LeftMenu.txtTrialDev": "Mod Percubaan Pembina",
"PE.Views.ParagraphSettings.strLineHeight": "Jarak Garis",
"PE.Views.ParagraphSettings.strParagraphSpacing": "Jarak Perenggan",
"PE.Views.ParagraphSettings.strSpacingAfter": "Selepas",
"PE.Views.ParagraphSettings.strSpacingBefore": "Sebelum",
"PE.Views.ParagraphSettings.textAdvanced": "Tunjukkan seting lanjutan",
@ -1794,6 +1838,7 @@
"PE.Views.RightMenu.txtImageSettings": "Seting Imej",
"PE.Views.RightMenu.txtParagraphSettings": "Seting perenggan",
"PE.Views.RightMenu.txtShapeSettings": "Seting bentuk",
"PE.Views.RightMenu.txtSignatureSettings": "Tetapan tandatangan",
"PE.Views.RightMenu.txtSlideSettings": "Seting Slaid",
"PE.Views.RightMenu.txtTableSettings": "Seting Jadual",
"PE.Views.RightMenu.txtTextArtSettings": "Seting Lukisan Teks",
@ -1896,6 +1941,7 @@
"PE.Views.ShapeSettingsAdvanced.textTextBox": "Kotak Teks",
"PE.Views.ShapeSettingsAdvanced.textTitle": "Bentuk Seting Lanjutan",
"PE.Views.ShapeSettingsAdvanced.textTop": "Atas",
"PE.Views.ShapeSettingsAdvanced.textTopLeftCorner": "Penjuru Kiri Atas",
"PE.Views.ShapeSettingsAdvanced.textVertical": "Menegak",
"PE.Views.ShapeSettingsAdvanced.textVertically": "Menegal",
"PE.Views.ShapeSettingsAdvanced.textWeightArrows": "Berat & Anak Panah",
@ -2065,6 +2111,7 @@
"PE.Views.TableSettingsAdvanced.textSize": "Saiz",
"PE.Views.TableSettingsAdvanced.textTitle": "Jadual Seting Lanjutan",
"PE.Views.TableSettingsAdvanced.textTop": "Atas",
"PE.Views.TableSettingsAdvanced.textTopLeftCorner": "Penjuru Kiri Atas",
"PE.Views.TableSettingsAdvanced.textVertical": "Menegak",
"PE.Views.TableSettingsAdvanced.textWidth": "Lebar",
"PE.Views.TableSettingsAdvanced.textWidthSpaces": "Margin",
@ -2138,6 +2185,7 @@
"PE.Views.Toolbar.mniImageFromFile": "Imej daripada Fail",
"PE.Views.Toolbar.mniImageFromStorage": "Imej daripada Simpanan",
"PE.Views.Toolbar.mniImageFromUrl": "Imej daripada URL",
"PE.Views.Toolbar.mniInsertSSE": "Masukkan Hamparan",
"PE.Views.Toolbar.mniLowerCase": "huruf kecil",
"PE.Views.Toolbar.mniSentenceCase": "Huruf besar pada permulaan ayat.",
"PE.Views.Toolbar.mniSlideAdvanced": "Seting Lanjutan",

File diff suppressed because it is too large Load diff

View file

@ -640,12 +640,12 @@
"PE.Controllers.Main.errorDataEncrypted": "已收到加密的更改,無法解密。",
"PE.Controllers.Main.errorDataRange": "不正確的資料範圍",
"PE.Controllers.Main.errorDefaultMessage": "錯誤編號:%1",
"PE.Controllers.Main.errorEditingDownloadas": "在處理文檔期間發生錯誤。<br>使用“下載為...”選項將文件備份副本保存到計算機硬碟驅動器中。",
"PE.Controllers.Main.errorEditingSaveas": "使用文檔期間發生錯誤。<br>使用“另存為...”選項將文件備份副本保存到計算機硬碟驅動器中。",
"PE.Controllers.Main.errorEditingDownloadas": "在處理文檔期間發生錯誤。<br>使用\"下載為...\"選項將文件備份副本保存到計算機硬碟驅動器中。",
"PE.Controllers.Main.errorEditingSaveas": "使用文檔期間發生錯誤。<br>使用\"另存為...\"選項將文件備份副本保存到計算機硬碟驅動器中。",
"PE.Controllers.Main.errorEmailClient": "找不到電子郵件客戶端。",
"PE.Controllers.Main.errorFilePassProtect": "該文件受密碼保護,無法打開。",
"PE.Controllers.Main.errorFileSizeExceed": "此檔案超過這一主機限制的大小<br> 進一步資訊,請聯絡您的文件服務主機的管理者。",
"PE.Controllers.Main.errorForceSave": "保存文件時發生錯誤。請使用“下載為”選項將文件保存到電腦機硬碟中,或稍後再試。",
"PE.Controllers.Main.errorForceSave": "保存文件時發生錯誤。請使用\"下載為\"選項將文件保存到電腦機硬碟中,或稍後再試。",
"PE.Controllers.Main.errorKeyEncrypt": "未知密鑰描述符",
"PE.Controllers.Main.errorKeyExpire": "密鑰描述符已過期",
"PE.Controllers.Main.errorLoadingFont": "字體未加載。<br>請聯繫文件服務器管理員。",
@ -1391,6 +1391,7 @@
"PE.Views.ChartSettingsAdvanced.textPosition": "職務",
"PE.Views.ChartSettingsAdvanced.textSize": "大小",
"PE.Views.ChartSettingsAdvanced.textTitle": "圖表-進階設置",
"PE.Views.ChartSettingsAdvanced.textTopLeftCorner": "左上角",
"PE.Views.ChartSettingsAdvanced.textVertical": "垂直",
"PE.Views.ChartSettingsAdvanced.textWidth": "寬度",
"PE.Views.DateTimeDialog.confirmDefault": "設置{0}的預設格式:“ {1}”",
@ -1769,6 +1770,7 @@
"PE.Views.ImageSettingsAdvanced.textRotation": "旋轉",
"PE.Views.ImageSettingsAdvanced.textSize": "大小",
"PE.Views.ImageSettingsAdvanced.textTitle": "圖像-進階設置",
"PE.Views.ImageSettingsAdvanced.textTopLeftCorner": "左上角",
"PE.Views.ImageSettingsAdvanced.textVertical": "垂直",
"PE.Views.ImageSettingsAdvanced.textVertically": "垂直",
"PE.Views.ImageSettingsAdvanced.textWidth": "寬度",
@ -1781,6 +1783,7 @@
"PE.Views.LeftMenu.tipSupport": "反饋與支持",
"PE.Views.LeftMenu.tipTitles": "標題",
"PE.Views.LeftMenu.txtDeveloper": "開發者模式",
"PE.Views.LeftMenu.txtEditor": "簡報編輯器",
"PE.Views.LeftMenu.txtLimit": "限制存取",
"PE.Views.LeftMenu.txtTrial": "試用模式",
"PE.Views.LeftMenu.txtTrialDev": "試用開發人員模式",
@ -1938,6 +1941,7 @@
"PE.Views.ShapeSettingsAdvanced.textTextBox": "文字框",
"PE.Views.ShapeSettingsAdvanced.textTitle": "形狀 - 進階設定",
"PE.Views.ShapeSettingsAdvanced.textTop": "上方",
"PE.Views.ShapeSettingsAdvanced.textTopLeftCorner": "左上角",
"PE.Views.ShapeSettingsAdvanced.textVertical": "垂直",
"PE.Views.ShapeSettingsAdvanced.textVertically": "垂直",
"PE.Views.ShapeSettingsAdvanced.textWeightArrows": "重量和箭頭",
@ -2107,6 +2111,7 @@
"PE.Views.TableSettingsAdvanced.textSize": "大小",
"PE.Views.TableSettingsAdvanced.textTitle": "表格 - 進階設定",
"PE.Views.TableSettingsAdvanced.textTop": "上方",
"PE.Views.TableSettingsAdvanced.textTopLeftCorner": "左上角",
"PE.Views.TableSettingsAdvanced.textVertical": "垂直",
"PE.Views.TableSettingsAdvanced.textWidth": "寬度",
"PE.Views.TableSettingsAdvanced.textWidthSpaces": "邊框",

Binary file not shown.

After

Width:  |  Height:  |  Size: 661 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 741 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 928 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 563 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

View file

@ -150,7 +150,7 @@
"errorFileSizeExceed": "La mida del fitxer supera el límit del vostre servidor. <br>Contacteu amb l'administrador.",
"errorKeyEncrypt": "Descriptor de claus desconegut",
"errorKeyExpire": "El descriptor de claus ha caducat",
"errorLoadingFont": "No s'han carregat els tipus de lletra. <br>Contacteu amb l'administrador del servidor de documents.",
"errorLoadingFont": "No s'han carregat les lletres tipogràfiques.<br> Contacteu amb l'administrador del Servidor de Documents.",
"errorSessionAbsolute": "La sessió d'edició del document ha caducat. Torneu a carregar la pàgina.",
"errorSessionIdle": "Fa molt de temps que no s'edita el document. Torneu a carregar la pàgina.",
"errorSessionToken": "S'ha interromput la connexió amb el servidor. Torneu a carregar la pàgina.",
@ -311,9 +311,9 @@
"textFindAndReplace": "Cerca i substitueix",
"textFirstColumn": "Primera columna",
"textFirstSlide": "Primera diapositiva",
"textFontColor": "Color del tipus de lletra",
"textFontColors": "Colors del tipus de lletra",
"textFonts": "Tipus de lletra",
"textFontColor": "Color de la lletra",
"textFontColors": "Colors de la lletra",
"textFonts": "Lletra",
"textFromLibrary": "Imatge de la biblioteca",
"textFromURL": "Imatge de l'URL",
"textHeaderRow": "Fila de capçalera",

View file

@ -3,11 +3,11 @@
"textAbout": "Perihal",
"textAddress": "Alamat",
"textBack": "Kembali",
"textEditor": "Editor Persembahan",
"textEmail": "E-mel",
"textPoweredBy": "Dikuasakan Oleh",
"textTel": "Tel",
"textVersion": "Versi",
"textEditor": "Presentation Editor"
"textVersion": "Versi"
},
"Common": {
"Collaboration": {
@ -116,6 +116,7 @@
"textRemember": "Ingat pilihan saya",
"textReplaceSkipped": "Gantian telah dilakukan. {0} kejadian telah dilangkau.",
"textReplaceSuccess": "Carian telah dilakukan. Kejadian digantikan: {0}",
"textRequestMacros": "Makro membuat permintaan ke URL. Adakah anda mahu membenarkan permintaan kepada %1?",
"textYes": "Ya",
"titleLicenseExp": "Lesen tamat tempoh",
"titleServerVersion": "Editor dikemas kini",
@ -129,8 +130,7 @@
"warnLicenseUsersExceeded": "Anda telah mencapai had pengguna untuk editor %1. Hubungi pentadbir anda untuk ketahui selanjutnya.",
"warnNoLicense": "Anda telah mencapai had pengguna untuk sambungan serentak kepada editor %1. Dokumen ini akan dibuka untuk dilihat sahaja. Hubungi pasukan jualan %1 untuk naik taraf terma peribadi.",
"warnNoLicenseUsers": "Anda telah mencapai had pengguna untuk editor %1. Hubungi pasukan jualan %1 untuk naik taraf terma peribadi.",
"warnProcessRightsChange": "Anda tidak mempunyai keizinan untuk edit fail ini.",
"textRequestMacros": "A macro makes a request to URL. Do you want to allow the request to the %1?"
"warnProcessRightsChange": "Anda tidak mempunyai keizinan untuk edit fail ini."
}
},
"Error": {
@ -447,11 +447,14 @@
"textPrint": "Cetak",
"textReplace": "Gantikan",
"textReplaceAll": "Gantikan Semua",
"textRestartApplication": "Mulakan semula aplikasi untuk perubahan tersebut berkuat kuasa",
"textRTL": "RTL",
"textSearch": "Carian",
"textSettings": "Seting",
"textShowNotification": "Tunjuk Pemberitahuan",
"textSlideSize": "Saiz Slaid",
"textSpellcheck": "Menyemak Ejaan",
"textSubject": "Subjek",
"textTel": "Tel:",
"textTitle": "Tajuk",
"textUnitOfMeasurement": "Unit Pengukuran",
@ -478,10 +481,7 @@
"txtScheme6": "Konkos",
"txtScheme7": "Ekuiti",
"txtScheme8": "Aliran",
"txtScheme9": "Faundri",
"textRestartApplication": "Please restart the application for the changes to take effect",
"textRTL": "RTL",
"textSubject": "Subject"
"txtScheme9": "Faundri"
}
}
}

View file

@ -3,11 +3,11 @@
"textAbout": "關於",
"textAddress": "地址",
"textBack": "返回",
"textEditor": "簡報編輯器",
"textEmail": "電子郵件",
"textPoweredBy": "於支援",
"textTel": "電話",
"textVersion": "版本",
"textEditor": "Presentation Editor"
"textVersion": "版本"
},
"Common": {
"Collaboration": {
@ -447,6 +447,8 @@
"textPrint": "打印",
"textReplace": "取代",
"textReplaceAll": "全部替換",
"textRestartApplication": "請重新啟動應用程式以讓變更生效",
"textRTL": "從右至左",
"textSearch": "搜尋",
"textSettings": "設定",
"textShowNotification": "顯示通知",
@ -479,9 +481,7 @@
"txtScheme6": "大堂",
"txtScheme7": "產權",
"txtScheme8": "流程",
"txtScheme9": "鑄造廠",
"textRestartApplication": "Please restart the application for the changes to take effect",
"textRTL": "RTL"
"txtScheme9": "鑄造廠"
}
}
}

View file

@ -15,7 +15,7 @@
"SSE.ApplicationController.errorFilePassProtect": "El fitxer està protegit amb contrasenya i no es pot obrir.",
"SSE.ApplicationController.errorFileSizeExceed": "La mida del fitxer supera el límit establert per al servidor.<br>Contacteu amb l'administrador del servidor de documents per a obtenir més informació.",
"SSE.ApplicationController.errorForceSave": "S'ha produït un error en desar el fitxer. Utilitzeu l'opció «Anomena i baixa» per a desar el fitxer al disc dur de lordinador o torneu-ho a provar més endavant.",
"SSE.ApplicationController.errorLoadingFont": "No s'han carregat les famílies tipogràfiques.<br>Contacteu amb l'administrador del servidor de documents.",
"SSE.ApplicationController.errorLoadingFont": "No s'han carregat les lletres tipogràfiques.<br> Contacteu amb l'administrador del Servidor de Documents.",
"SSE.ApplicationController.errorTokenExpire": "El testimoni de seguretat del document ha caducat.<br>Contacteu amb l'administrador del servidor de documents.",
"SSE.ApplicationController.errorUpdateVersionOnDisconnect": "S'ha restaurat la connexió a internet i la versió del fitxer ha canviat.<br>Abans de continuar treballant, heu de baixar el fitxer o copiar-ne el contingut per a assegurar-vos que no es perdi res i, després, torneu a carregar la pàgina.",
"SSE.ApplicationController.errorUserDrop": "No es pot accedir al fitxer.",

View file

@ -1945,12 +1945,19 @@ define([
case Asc.c_oAscError.ID.FillAllRowsWarning:
var fill = errData[0],
have = errData[1],
fillWithSeparator = fill.toLocaleString(this.appOptions.lang);
lang = (this.appOptions.lang || 'en').replace('_', '-').toLowerCase(),
fillWithSeparator;
try {
fillWithSeparator = fill.toLocaleString(lang);
} catch (e) {
lang = 'en';
fillWithSeparator = fill.toLocaleString(lang);
}
if (this.appOptions.isDesktopApp && this.appOptions.isOffline) {
config.msg = fill > have ? Common.Utils.String.format(this.textFormulaFilledAllRowsWithEmpty, fillWithSeparator) : Common.Utils.String.format(this.textFormulaFilledAllRows, fillWithSeparator);
config.buttons = [{caption: this.textFillOtherRows, primary: true, value: 'fillOther'}, 'close'];
} else {
config.msg = fill >= have ? Common.Utils.String.format(this.textFormulaFilledFirstRowsOtherIsEmpty, fillWithSeparator) : Common.Utils.String.format(this.textFormulaFilledFirstRowsOtherHaveData, fillWithSeparator, (have - fill).toLocaleString(this.appOptions.lang));
config.msg = fill >= have ? Common.Utils.String.format(this.textFormulaFilledFirstRowsOtherIsEmpty, fillWithSeparator) : Common.Utils.String.format(this.textFormulaFilledFirstRowsOtherHaveData, fillWithSeparator, (have - fill).toLocaleString(lang));
config.buttons = ['ok'];
}
config.maxwidth = 400;

View file

@ -522,6 +522,7 @@ define([
this.view.$resultsContainer.show();
this.resultItems.forEach(function (item) {
var $item = $(item.el).appendTo($tableBody);
item.$el = $item;
if (item.selected) {
$item.addClass('selected');
}

View file

@ -1590,8 +1590,15 @@ SSE.Views.FileMenuPanels.RecentFiles = Common.UI.BaseView.extend({
this.coreProps = (this.api) ? this.api.asc_getCoreProps() : null;
if (this.coreProps) {
var value = this.coreProps.asc_getCreated();
if (value)
this.lblDate.text(value.toLocaleString(this.mode.lang, {year: 'numeric', month: '2-digit', day: '2-digit'}) + ' ' + value.toLocaleString(this.mode.lang, {timeStyle: 'short'}));
if (value) {
var lang = (this.mode.lang || 'en').replace('_', '-').toLowerCase();
try {
this.lblDate.text(value.toLocaleString(lang, {year: 'numeric', month: '2-digit', day: '2-digit'}) + ' ' + value.toLocaleString(lang, {timeStyle: 'short'}));
} catch (e) {
lang = 'en';
this.lblDate.text(value.toLocaleString(lang, {year: 'numeric', month: '2-digit', day: '2-digit'}) + ' ' + value.toLocaleString(lang, {timeStyle: 'short'}));
}
}
this._ShowHideInfoItem(this.lblDate, !!value);
}
},
@ -1616,8 +1623,15 @@ SSE.Views.FileMenuPanels.RecentFiles = Common.UI.BaseView.extend({
if (props) {
var visible = false;
value = props.asc_getModified();
if (value)
this.lblModifyDate.text(value.toLocaleString(this.mode.lang, {year: 'numeric', month: '2-digit', day: '2-digit'}) + ' ' + value.toLocaleString(this.mode.lang, {timeStyle: 'short'}));
if (value) {
var lang = (this.mode.lang || 'en').replace('_', '-').toLowerCase();
try {
this.lblModifyDate.text(value.toLocaleString(lang, {year: 'numeric', month: '2-digit', day: '2-digit'}) + ' ' + value.toLocaleString(lang, {timeStyle: 'short'}));
} catch (e) {
lang = 'en';
this.lblModifyDate.text(value.toLocaleString(lang, {year: 'numeric', month: '2-digit', day: '2-digit'}) + ' ' + value.toLocaleString(lang, {timeStyle: 'short'}));
}
}
visible = this._ShowHideInfoItem(this.lblModifyDate, !!value) || visible;
value = props.asc_getLastModifiedBy();
if (value)

View file

@ -353,6 +353,8 @@ define([
me.btnCloseView.updateHint(me.tipClose);
}
me.btnInterfaceTheme.updateHint(me.tipInterfaceTheme);
if (config.isEdit) {
me.btnFreezePanes.setMenu(new Common.UI.Menu({
items: [
@ -528,7 +530,8 @@ define([
textCombineSheetAndStatusBars: 'Combine sheet and status bars',
textAlwaysShowToolbar: 'Always show toolbar',
textInterfaceTheme: 'Interface theme',
textShowFrozenPanesShadow: 'Show frozen panes shadow'
textShowFrozenPanesShadow: 'Show frozen panes shadow',
tipInterfaceTheme: 'Interface theme'
}
}()), SSE.Views.ViewTab || {}));
});

View file

@ -438,8 +438,8 @@
"Common.Views.SignDialog.textTitle": "Signa el document",
"Common.Views.SignDialog.textUseImage": "o fes clic a \"Selecciona imatge\" per utilitzar una imatge com a signatura",
"Common.Views.SignDialog.textValid": "Vàlid des de %1 fins a %2",
"Common.Views.SignDialog.tipFontName": "Nom del tipus de lletra",
"Common.Views.SignDialog.tipFontSize": "Mida del tipus de lletra",
"Common.Views.SignDialog.tipFontName": "Nom de la lletra",
"Common.Views.SignDialog.tipFontSize": "Mida de la lletra",
"Common.Views.SignSettingsDialog.textAllowComment": "Permetre al signant afegir comentaris al quadre de diàleg de la signatura",
"Common.Views.SignSettingsDialog.textInfo": "Informació del signant",
"Common.Views.SignSettingsDialog.textInfoEmail": "Correu electrònic",
@ -459,7 +459,7 @@
"Common.Views.SymbolTableDialog.textEmSpace": "Espai llarg",
"Common.Views.SymbolTableDialog.textEnDash": "Guió curt",
"Common.Views.SymbolTableDialog.textEnSpace": "Espai curt",
"Common.Views.SymbolTableDialog.textFont": "Tipus de lletra",
"Common.Views.SymbolTableDialog.textFont": "Lletra",
"Common.Views.SymbolTableDialog.textNBHyphen": "Guió sense ruptura",
"Common.Views.SymbolTableDialog.textNBSpace": "Espai sense interrupció",
"Common.Views.SymbolTableDialog.textPilcrow": "Signe de calderó",
@ -552,7 +552,7 @@
"SSE.Controllers.DocumentHolder.txtEnds": "Acaba amb",
"SSE.Controllers.DocumentHolder.txtEquals": "És igual a",
"SSE.Controllers.DocumentHolder.txtEqualsToCellColor": "Igual al color de la cel·la",
"SSE.Controllers.DocumentHolder.txtEqualsToFontColor": "Igual al color del tipus de lletra",
"SSE.Controllers.DocumentHolder.txtEqualsToFontColor": "Igual al color de la lletra",
"SSE.Controllers.DocumentHolder.txtExpand": "Amplia i ordena",
"SSE.Controllers.DocumentHolder.txtExpandSort": "No s'ordenaran les dades que hi ha al costat de la selecció. ¿Vols ampliar la selecció per incloure les dades adjacents o bé vols continuar i ordenar només les cel·les seleccionades?",
"SSE.Controllers.DocumentHolder.txtFilterBottom": "Part inferior",
@ -739,7 +739,7 @@
"SSE.Controllers.Main.errorKeyEncrypt": "Descriptor de claus desconegut",
"SSE.Controllers.Main.errorKeyExpire": "El descriptor de claus ha caducat",
"SSE.Controllers.Main.errorLabledColumnsPivot": "Per crear una taula dinàmica, utilitza les dades que sorganitzen com una llista amb columnes etiquetades.",
"SSE.Controllers.Main.errorLoadingFont": "No s'han carregat els tipus de lletra.<br> Contacta amb l'administrador del Servidor de Documents.",
"SSE.Controllers.Main.errorLoadingFont": "No s'han carregat les lletres tipogràfiques.<br> Contacteu amb l'administrador del Servidor de Documents.",
"SSE.Controllers.Main.errorLocationOrDataRangeError": "La referència per a la ubicació o l'interval de dades no és vàlida.",
"SSE.Controllers.Main.errorLockedAll": "Aquesta operació no es pot fer perquè un altre usuari ha bloquejat el full.",
"SSE.Controllers.Main.errorLockedCellPivot": "No pots canviar les dades d'una taula dinàmica",
@ -1134,7 +1134,7 @@
"SSE.Controllers.Statusbar.textSheetViewTipFilters": "Ets en mode de vista del full. Els filtres només són visibles per a tu i per a aquells que encara són en aquesta vista.",
"SSE.Controllers.Statusbar.warnDeleteSheet": "Els fulls de càlcul seleccionats poden contenir dades. Segur que vols continuar?",
"SSE.Controllers.Statusbar.zoomText": "Zoom {0}%",
"SSE.Controllers.Toolbar.confirmAddFontName": "El tipus de lletra que desaràs no està disponible al dispositiu actual. <br>L'estil de text es mostrarà amb un dels tipus de lletra del sistema, el tipus de lletra desat s'utilitzarà quan estigui disponible. <br>Vols continuar?",
"SSE.Controllers.Toolbar.confirmAddFontName": "La lletra que desareu no està disponible al dispositiu actual. <br>L'estil de text es mostrarà amb una de les lletres del sistema, la lletra desada s'utilitzarà quan estigui disponible. <br>Voleu continuar?",
"SSE.Controllers.Toolbar.errorComboSeries": "Per crear un diagrama combinat, selecciona com a mínim dues sèries de dades.",
"SSE.Controllers.Toolbar.errorMaxRows": "ERROR! El nombre màxim de sèries de dades per gràfic és de 255",
"SSE.Controllers.Toolbar.errorStockChart": "L'ordre de fila no és correcte. Per crear un gràfic de valors, col·loca les dades del full en lordre següent: <br>preu dobertura, preu màxim, preu mínim, preu de tancament.",
@ -2050,7 +2050,7 @@
"SSE.Views.DocumentHolder.txtShowComment": "Mostra el comentari",
"SSE.Views.DocumentHolder.txtSort": "Ordena",
"SSE.Views.DocumentHolder.txtSortCellColor": "Color de la cel·la seleccionat a la part superior",
"SSE.Views.DocumentHolder.txtSortFontColor": "Color del tipus de lletra seleccionat a la part superior",
"SSE.Views.DocumentHolder.txtSortFontColor": "Color de la lletra seleccionat a la part superior",
"SSE.Views.DocumentHolder.txtSparklines": "Gràfics sparklines",
"SSE.Views.DocumentHolder.txtText": "Text",
"SSE.Views.DocumentHolder.txtTextAdvanced": "Configuració avançada del paràgraf",
@ -2131,7 +2131,7 @@
"SSE.Views.FileMenuPanels.MainSettingsGeneral.strDecimalSeparator": "Separador de decimals",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.strDictionaryLanguage": "Idioma del diccionari",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.strFast": "Ràpid",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.strFontRender": "Tipus de lletra suggerides",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.strFontRender": "Lletres suggerides",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.strFuncLocale": "Llenguatge de la fórmula",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.strFuncLocaleEx": "Exemple: SUM; MIN; MAX; COUNT",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.strIgnoreWordsInUPPERCASE": "Ignora les paraules en MAJÚSCULA",
@ -2464,8 +2464,8 @@
"SSE.Views.HeaderFooterDialog.textTime": "Hora",
"SSE.Views.HeaderFooterDialog.textTitle": "Configuració de capçalera/peu de pàgina",
"SSE.Views.HeaderFooterDialog.textUnderline": "Subratlla",
"SSE.Views.HeaderFooterDialog.tipFontName": "Tipus de lletra",
"SSE.Views.HeaderFooterDialog.tipFontSize": "Mida del tipus de lletra",
"SSE.Views.HeaderFooterDialog.tipFontName": "Lletra",
"SSE.Views.HeaderFooterDialog.tipFontSize": "Mida de la lletra",
"SSE.Views.HyperlinkSettingsDialog.strDisplay": "Visualització",
"SSE.Views.HyperlinkSettingsDialog.strLinkTo": "Enllaç a",
"SSE.Views.HyperlinkSettingsDialog.strRange": "Interval",
@ -2630,7 +2630,7 @@
"SSE.Views.ParagraphSettingsAdvanced.strIndentsSpacingBefore": "Abans",
"SSE.Views.ParagraphSettingsAdvanced.strIndentsSpecial": "Especial",
"SSE.Views.ParagraphSettingsAdvanced.strIndentsSpecialBy": "Per",
"SSE.Views.ParagraphSettingsAdvanced.strParagraphFont": "Tipus de lletra",
"SSE.Views.ParagraphSettingsAdvanced.strParagraphFont": "Lletra",
"SSE.Views.ParagraphSettingsAdvanced.strParagraphIndents": "Sagnia i espaiat",
"SSE.Views.ParagraphSettingsAdvanced.strSmallCaps": "Versaletes",
"SSE.Views.ParagraphSettingsAdvanced.strSpacing": "Espaiat",
@ -3136,7 +3136,7 @@
"SSE.Views.SortDialog.textDelete": "Suprimeix el nivell",
"SSE.Views.SortDialog.textDesc": "Descendent",
"SSE.Views.SortDialog.textDown": "Baixa de nivell",
"SSE.Views.SortDialog.textFontColor": "Color del tipus de lletra",
"SSE.Views.SortDialog.textFontColor": "Color de la lletra",
"SSE.Views.SortDialog.textLeft": "Esquerra",
"SSE.Views.SortDialog.textMoreCols": "(Més columnes...)",
"SSE.Views.SortDialog.textMoreRows": "(Més files...)",
@ -3479,7 +3479,7 @@
"SSE.Views.Toolbar.tipCopyStyle": "Copia l'estil",
"SSE.Views.Toolbar.tipCut": "Talla",
"SSE.Views.Toolbar.tipDecDecimal": "Disminueix els decimals",
"SSE.Views.Toolbar.tipDecFont": "Redueix la mida del tipus de lletra",
"SSE.Views.Toolbar.tipDecFont": "Redueix la mida de la lletra",
"SSE.Views.Toolbar.tipDeleteOpt": "Suprimeix cel·les",
"SSE.Views.Toolbar.tipDigStyleAccounting": "Estil de comptabilitat",
"SSE.Views.Toolbar.tipDigStyleCurrency": "Estil de moneda",
@ -3488,13 +3488,13 @@
"SSE.Views.Toolbar.tipEditChartData": "Selecciona dades",
"SSE.Views.Toolbar.tipEditChartType": "Canvia el tipus de gràfic",
"SSE.Views.Toolbar.tipEditHeader": "Edita la capçalera o el peu de pàgina",
"SSE.Views.Toolbar.tipFontColor": "Color del tipus de lletra",
"SSE.Views.Toolbar.tipFontName": "Tipus de lletra",
"SSE.Views.Toolbar.tipFontSize": "Mida del tipus de lletra",
"SSE.Views.Toolbar.tipFontColor": "Color de la lletra",
"SSE.Views.Toolbar.tipFontName": "Lletra",
"SSE.Views.Toolbar.tipFontSize": "Mida de la lletra",
"SSE.Views.Toolbar.tipImgAlign": "Alineació d'objectes",
"SSE.Views.Toolbar.tipImgGroup": "Agrupa objectes",
"SSE.Views.Toolbar.tipIncDecimal": "Augmenta els decimals",
"SSE.Views.Toolbar.tipIncFont": "Augmenta la mida del tipus de lletra",
"SSE.Views.Toolbar.tipIncFont": "Augmenta la mida de la lletra",
"SSE.Views.Toolbar.tipInsertChart": "Insereix un gràfic",
"SSE.Views.Toolbar.tipInsertChartSpark": "Insereix un gràfic",
"SSE.Views.Toolbar.tipInsertEquation": "Insereix una equació",

View file

@ -3679,6 +3679,7 @@
"SSE.Views.ViewTab.tipCreate": "Create sheet view",
"SSE.Views.ViewTab.tipFreeze": "Freeze panes",
"SSE.Views.ViewTab.tipSheetView": "Sheet view",
"SSE.Views.ViewTab.tipInterfaceTheme": "Interface theme",
"SSE.Views.WBProtection.hintAllowRanges": "Allow edit ranges",
"SSE.Views.WBProtection.hintProtectSheet": "Protect sheet",
"SSE.Views.WBProtection.hintProtectWB": "Protect workbook",

View file

@ -137,6 +137,7 @@
"Common.UI.ThemeColorPalette.textStandartColors": "Ստանդարտ գույներ",
"Common.UI.ThemeColorPalette.textThemeColors": "Ոճի գույներ",
"Common.UI.Themes.txtThemeClassicLight": "Դասական լույս",
"Common.UI.Themes.txtThemeContrastDark": "Մութ հակադրություն",
"Common.UI.Themes.txtThemeDark": "Մութ",
"Common.UI.Themes.txtThemeLight": "Լույս",
"Common.UI.Themes.txtThemeSystem": "Նույնը, ինչ համակարգը",
@ -152,6 +153,9 @@
"Common.UI.Window.yesButtonText": "Այո",
"Common.Utils.Metric.txtCm": "սմ",
"Common.Utils.Metric.txtPt": "կտ",
"Common.Utils.String.textAlt": "Alt ստեղն",
"Common.Utils.String.textCtrl": "Ctrl ստեղն",
"Common.Utils.String.textShift": "Shift ստեղն",
"Common.Views.About.txtAddress": "հասցե՝",
"Common.Views.About.txtLicensee": "ԼԻՑԵՆԶԻԱ",
"Common.Views.About.txtLicensor": "Լիցենզատու ",
@ -405,6 +409,7 @@
"Common.Views.SearchPanel.textReplaceAll": "Փոխարինել բոլորը",
"Common.Views.SearchPanel.textReplaceWith": "Փոխարինել հետևյալով",
"Common.Views.SearchPanel.textSearch": "Որոնել",
"Common.Views.SearchPanel.textSearchHasStopped": "Որոնումը դադարեցվել է",
"Common.Views.SearchPanel.textSearchOptions": "Որոնման ընտրանքներ",
"Common.Views.SearchPanel.textSearchResults": "Որոնման արդյունքներ՝ {0}/{1}",
"Common.Views.SearchPanel.textSelectDataRange": "Ընտրեք Տվյալների տիրույթ",
@ -534,6 +539,7 @@
"SSE.Controllers.DocumentHolder.txtColumn": "Սյունակ",
"SSE.Controllers.DocumentHolder.txtColumnAlign": "Սյունակի հավասարեցում",
"SSE.Controllers.DocumentHolder.txtContains": "Պարունակում է",
"SSE.Controllers.DocumentHolder.txtCopySuccess": "Հղումը պատճենված է clipboard-ին",
"SSE.Controllers.DocumentHolder.txtDataTableHint": "Վերադարձնում էաղյուսակի կամ աղյուսակի հատկորոշված սյունակների տվյալների բջիջները",
"SSE.Controllers.DocumentHolder.txtDecreaseArg": "Նվազեցնել արգումենտի չափը",
"SSE.Controllers.DocumentHolder.txtDeleteArg": "Ջնջել արգումենտը",
@ -2022,6 +2028,7 @@
"SSE.Views.DocumentHolder.txtFormula": "Տեղադրել գործառույթը",
"SSE.Views.DocumentHolder.txtFraction": "Կոտորակ",
"SSE.Views.DocumentHolder.txtGeneral": "Ընդհանուր",
"SSE.Views.DocumentHolder.txtGetLink": "Ստացեք այս տիրույթի հղումը",
"SSE.Views.DocumentHolder.txtGroup": "Խումբ",
"SSE.Views.DocumentHolder.txtHide": "Թաքցնել",
"SSE.Views.DocumentHolder.txtInsert": "Զետեղել",
@ -2120,6 +2127,7 @@
"SSE.Views.FileMenuPanels.DocumentRights.txtRights": "Իրավունքներ ունեցող անձինք",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.okButtonText": "Գործադրել",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.strCoAuthMode": "Համախմբագրման աշխատակարգ",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.strDateFormat1904": "Օգտագործեք 1904 թվականի ամսաթվի համակարգը",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.strDecimalSeparator": "Տասնորդական բաժանարար",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.strDictionaryLanguage": "Բառարանի լեզու",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.strFast": "Արագ",
@ -2134,6 +2142,7 @@
"SSE.Views.FileMenuPanels.MainSettingsGeneral.strRegSettings": "Տարածաշրջանային կարգավորումներ",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.strRegSettingsEx": "Օրինակ:",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.strShowComments": "Ցույց տալ մեկնաբանությունները թերթիկում",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.strShowOthersChanges": "Ցուցադրել այլ օգտատերերի կատարած փոփոխությունները",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.strShowResolvedComments": "Ցույց տալ լուծված մեկնաբանությունները",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.strStrict": "Խիստ",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.strTheme": "Ինտերֆեյսի թեմա",
@ -2156,6 +2165,7 @@
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtBg": "Բուլղարերեն",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtCa": "Կատալոներեն",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtCacheMode": "Հիշապահեստի լռելյայն աշխատաձև",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtCalculating": "Հաշվարկում",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtCm": "Սանտիմետր",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtCollaboration": "Համագործակցություն",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtCs": "Չեխերեն",
@ -3427,6 +3437,7 @@
"SSE.Views.Toolbar.textScaleCustom": "Հարմարեցված",
"SSE.Views.Toolbar.textSelection": "Ընթացիկ ընտրությունից",
"SSE.Views.Toolbar.textSetPrintArea": "Սահմանել տպման տարածքը",
"SSE.Views.Toolbar.textShowVA": "Ցուցադրել տեսանելի տարածությունը",
"SSE.Views.Toolbar.textStrikeout": "Վրագծում",
"SSE.Views.Toolbar.textSubscript": "Վարգիր",
"SSE.Views.Toolbar.textSubSuperscript": "Բաժանորդագրություն/Վերածանց",

View file

@ -3213,7 +3213,7 @@
"SSE.Views.Statusbar.itemMinimum": "最小",
"SSE.Views.Statusbar.itemMove": "移動",
"SSE.Views.Statusbar.itemProtect": "保護する",
"SSE.Views.Statusbar.itemRename": "名前の変更",
"SSE.Views.Statusbar.itemRename": "名前を変更する",
"SSE.Views.Statusbar.itemStatus": "保存の状況​​",
"SSE.Views.Statusbar.itemSum": "合計",
"SSE.Views.Statusbar.itemTabColor": "シート見出しの色",

View file

@ -117,6 +117,10 @@
"Common.UI.InputFieldBtnPassword.textHintHidePwd": "Sembunyikan kata laluan",
"Common.UI.InputFieldBtnPassword.textHintShowPwd": "Tunjuk kata laluan",
"Common.UI.SearchBar.textFind": "Cari",
"Common.UI.SearchBar.tipCloseSearch": "Tutup carian",
"Common.UI.SearchBar.tipNextResult": "Keputusan seterusnya",
"Common.UI.SearchBar.tipOpenAdvancedSettings": "Buka tetapan lanjutan",
"Common.UI.SearchBar.tipPreviousResult": "Keputusan sebelum",
"Common.UI.SearchDialog.textHighlight": "Keputusan Sorotan Penting",
"Common.UI.SearchDialog.textMatchCase": "Sensitif huruf",
"Common.UI.SearchDialog.textReplaceDef": "Masukkan teks gantian",
@ -129,9 +133,11 @@
"Common.UI.SearchDialog.txtBtnReplaceAll": "Gantikan Semua",
"Common.UI.SynchronizeTip.textDontShow": "Jangan tunjukkan mesej ini semula",
"Common.UI.SynchronizeTip.textSynchronize": "Dokumen telah ditukar dengan pengguna yang lain.<br>Sila klik untuk simpan perubahan anda dan muat semula kemas kini.",
"Common.UI.ThemeColorPalette.textRecentColors": "Warna Terkini",
"Common.UI.ThemeColorPalette.textStandartColors": "Warna Standard",
"Common.UI.ThemeColorPalette.textThemeColors": "Warna Tema",
"Common.UI.Themes.txtThemeClassicLight": "Klasik Cerah",
"Common.UI.Themes.txtThemeContrastDark": "Kontras Gelap",
"Common.UI.Themes.txtThemeDark": "Gelap",
"Common.UI.Themes.txtThemeLight": "Ringan",
"Common.UI.Themes.txtThemeSystem": "Sama seperti Sistem",
@ -147,6 +153,9 @@
"Common.UI.Window.yesButtonText": "Ya",
"Common.Utils.Metric.txtCm": "cm",
"Common.Utils.Metric.txtPt": "pt",
"Common.Utils.String.textAlt": "Alt",
"Common.Utils.String.textCtrl": "Ctrl",
"Common.Utils.String.textShift": "Anjak",
"Common.Views.About.txtAddress": "alamat ",
"Common.Views.About.txtLicensee": "LESENKAN",
"Common.Views.About.txtLicensor": "PEMBERI LESEN",
@ -238,6 +247,7 @@
"Common.Views.Header.tipSearch": "Carian",
"Common.Views.Header.tipUndo": "Buat semula",
"Common.Views.Header.tipUndock": "Keluar dok ke tetingkap berasingan",
"Common.Views.Header.tipUsers": "Lihat Pengguna",
"Common.Views.Header.tipViewSettings": "Lihat seting",
"Common.Views.Header.tipViewUsers": "Lihat pengguna dan uruskan hak akses dokumen",
"Common.Views.Header.txtAccessRights": "Ubah hak akses",
@ -295,6 +305,7 @@
"Common.Views.PluginDlg.textLoading": "Memuatkan",
"Common.Views.Plugins.groupCaption": "Plug masuk",
"Common.Views.Plugins.strPlugins": "Plug masuk",
"Common.Views.Plugins.textClosePanel": "Tutup pasang masuk",
"Common.Views.Plugins.textLoading": "Memuatkan",
"Common.Views.Plugins.textStart": "Mulakan",
"Common.Views.Plugins.textStop": "Henti",
@ -383,21 +394,35 @@
"Common.Views.SearchPanel.textByRows": "Mengikut baris",
"Common.Views.SearchPanel.textCaseSensitive": "Sensitif huruf",
"Common.Views.SearchPanel.textCell": "Sel",
"Common.Views.SearchPanel.textCloseSearch": "Tutup carian",
"Common.Views.SearchPanel.textFind": "Cari",
"Common.Views.SearchPanel.textFindAndReplace": "Cari dan Ganti",
"Common.Views.SearchPanel.textFormula": "Formula",
"Common.Views.SearchPanel.textFormulas": "Formula",
"Common.Views.SearchPanel.textItemEntireCell": "Keseluruhan kandungan sel",
"Common.Views.SearchPanel.textLookIn": "Cari Ke Dalam",
"Common.Views.SearchPanel.textMatchUsingRegExp": "Sepadan menggunakan ungkapan biasa",
"Common.Views.SearchPanel.textName": "Nama",
"Common.Views.SearchPanel.textNoMatches": "Tiada padanan",
"Common.Views.SearchPanel.textNoSearchResults": "Tiada carian keputusan",
"Common.Views.SearchPanel.textReplace": "Gantikan",
"Common.Views.SearchPanel.textReplaceAll": "Gantikan Semua",
"Common.Views.SearchPanel.textReplaceWith": "Gantikan dengan",
"Common.Views.SearchPanel.textSearch": "Carian",
"Common.Views.SearchPanel.textSearchHasStopped": "Carian telah dihentikan",
"Common.Views.SearchPanel.textSearchOptions": "Pilihan carian",
"Common.Views.SearchPanel.textSearchResults": "Keputusan carian: {0}/{1}",
"Common.Views.SearchPanel.textSelectDataRange": "Pilih Julat Data",
"Common.Views.SearchPanel.textSheet": "Helaian",
"Common.Views.SearchPanel.textSpecificRange": "Tunjukkan Kawasan Boleh Dilihat",
"Common.Views.SearchPanel.textTooManyResults": "Terlalu banyak keputusan untuk dipaparkan di sini",
"Common.Views.SearchPanel.textValue": "Nilai",
"Common.Views.SearchPanel.textValues": "Nilai",
"Common.Views.SearchPanel.textWholeWords": "Seluruh perkataan sahaja",
"Common.Views.SearchPanel.textWithin": "Di dalam",
"Common.Views.SearchPanel.textWorkbook": "Buku kerja",
"Common.Views.SearchPanel.tipNextResult": "Keputusan seterusnya",
"Common.Views.SearchPanel.tipPreviousResult": "Keputusan sebelum",
"Common.Views.SelectFileDlg.textLoading": "Memuatkan",
"Common.Views.SelectFileDlg.textTitle": "Pilih Sumber Data",
"Common.Views.SignDialog.textBold": "Tebal",
@ -514,6 +539,7 @@
"SSE.Controllers.DocumentHolder.txtColumn": "Lajur",
"SSE.Controllers.DocumentHolder.txtColumnAlign": "Penjajaran lajur",
"SSE.Controllers.DocumentHolder.txtContains": "Mengandungi",
"SSE.Controllers.DocumentHolder.txtCopySuccess": "Pautan disalin ke papan klip",
"SSE.Controllers.DocumentHolder.txtDataTableHint": "Kembalikan data sel bagi jadual atau lajur jadual tertentu",
"SSE.Controllers.DocumentHolder.txtDecreaseArg": "Kecilkan saiz argument",
"SSE.Controllers.DocumentHolder.txtDeleteArg": "Padam argument",
@ -532,6 +558,7 @@
"SSE.Controllers.DocumentHolder.txtFilterBottom": "Bawah",
"SSE.Controllers.DocumentHolder.txtFilterTop": "Atas",
"SSE.Controllers.DocumentHolder.txtFractionLinear": "Ubah ke pecahan linear",
"SSE.Controllers.DocumentHolder.txtFractionSkewed": "Tukar kepada pecahan terpencong",
"SSE.Controllers.DocumentHolder.txtFractionStacked": "Ubah ke pecahan bertindan",
"SSE.Controllers.DocumentHolder.txtGreater": "Lebih besar dari",
"SSE.Controllers.DocumentHolder.txtGreaterEquals": "Lebih besar dari atau sama dengan",
@ -679,6 +706,7 @@
"SSE.Controllers.Main.errorChangeOnProtectedSheet": "Sel atau carta yang anda cuba ubah ialah helaian dilindung.<br>Untuk membuat perubahan, nyahlindung helaian. Anda mungkin diminta untuk memasukkan kata laluan.",
"SSE.Controllers.Main.errorCoAuthoringDisconnect": "Pelayan sambungan hilang. Dokumen tidak dapat diedit buat masa sekarang.",
"SSE.Controllers.Main.errorConnectToServer": "Dokumen tidak dapat disimpan. Sila semak seting sambungan atau hubungi pentadbir anda.<br>Apabila anda klik butang OK, anda akan diminta untuk muat turun dokumen.",
"SSE.Controllers.Main.errorCopyMultiselectArea": "Perintah ini tidak boleh digunakan dengan berbilang pilihan.<br> Pilih julat tunggal dan cuba lagi.",
"SSE.Controllers.Main.errorCountArg": "Terdapat ralat dalam formula yang dimasukkan.<br>Nombor argumen yang tidak betul digunakan.",
"SSE.Controllers.Main.errorCountArgExceed": "Terdapat ralat dalam formula yang dimasukkan.<br>Bilangan argumen telah melebihi.",
"SSE.Controllers.Main.errorCreateDefName": "Julat nama sedia ada tidak boleh diedit dan yang baharu tidak boleh dicipta<br>pada masa sekarang kerana beberapa daripadanya sedang diedit.",
@ -805,8 +833,10 @@
"SSE.Controllers.Main.textPleaseWait": "Operasi ini mungkin mengambil lebih masa berbanding jangkaan. Sila, tunggu…",
"SSE.Controllers.Main.textReconnect": "Sambungan dipulihkan",
"SSE.Controllers.Main.textRemember": "Ingat pilihan saya untuk semua fail",
"SSE.Controllers.Main.textRememberMacros": "Ingati pilihan saya untuk semua makro",
"SSE.Controllers.Main.textRenameError": "Nama pengguna tidak boleh kosong.",
"SSE.Controllers.Main.textRenameLabel": "Masukkan nama untuk digunakan bagi kerjasama",
"SSE.Controllers.Main.textRequestMacros": "Makro membuat permintaan ke URL. Adakah anda mahu membenarkan permintaan kepada %1?",
"SSE.Controllers.Main.textShape": "Bentuk",
"SSE.Controllers.Main.textStrict": "Mod tegas",
"SSE.Controllers.Main.textTryUndoRedo": "Fungsi Buat asal/Buat semula dinyahdayakan bagi mod pengeditan bersama.<br>Klik butang Strict mode untuk menukar kepada mod pengeditan Bersama Tegas untuk mengedit fail tanpa gangguan pengguna lain dan menghantar perubahan anda hanya selepas anda menyimpannya. Anda boleh bertukar di antara mod-mod pengeditan Bersama menngunakan seting Lanjutan editor.",
@ -1095,6 +1125,7 @@
"SSE.Controllers.Search.textInvalidRange": "RALAT! Julat sel tidak sah",
"SSE.Controllers.Search.textNoTextFound": "Data yang andaa sedang cari tidak dijumpai. Sila laras pilihan carian.",
"SSE.Controllers.Search.textReplaceSkipped": "Gantian telah dilakukan. {0} kejadian telah dilangkau.",
"SSE.Controllers.Search.textReplaceSuccess": "Carian telah dilakukan. Kejadian {0} telah digantikan",
"SSE.Controllers.Statusbar.errorLastSheet": "Buku kerja mestilah mempunyai sekurang-kurangnya satu lembaran kerja yang kelihatan.",
"SSE.Controllers.Statusbar.errorRemoveSheet": "Tidak boleh memadam lembaran kerja.",
"SSE.Controllers.Statusbar.strSheet": "Helaian",
@ -1377,6 +1408,7 @@
"SSE.Controllers.Toolbar.txtSymbol_beth": "Bidaan",
"SSE.Controllers.Toolbar.txtSymbol_bullet": "Bulet operator",
"SSE.Controllers.Toolbar.txtSymbol_cap": "Persilangan",
"SSE.Controllers.Toolbar.txtSymbol_cbrt": "Punca Kuasa Tiga",
"SSE.Controllers.Toolbar.txtSymbol_cdots": "Elipsis mendatar pertengahan baris",
"SSE.Controllers.Toolbar.txtSymbol_celsius": "Darjah Celsius",
"SSE.Controllers.Toolbar.txtSymbol_chi": "Ci",
@ -1427,6 +1459,7 @@
"SSE.Controllers.Toolbar.txtSymbol_phi": "Phi",
"SSE.Controllers.Toolbar.txtSymbol_pi": "Pi",
"SSE.Controllers.Toolbar.txtSymbol_plus": "Tambah",
"SSE.Controllers.Toolbar.txtSymbol_pm": "Tambah Tolak",
"SSE.Controllers.Toolbar.txtSymbol_propto": "Berkadaran Dengan",
"SSE.Controllers.Toolbar.txtSymbol_psi": "Psi",
"SSE.Controllers.Toolbar.txtSymbol_qdrt": "Punca kuasa empat",
@ -1639,6 +1672,7 @@
"SSE.Views.ChartSettingsDlg.textAxisPos": "Kedudukan Paksi",
"SSE.Views.ChartSettingsDlg.textAxisSettings": "Seting Paksi",
"SSE.Views.ChartSettingsDlg.textAxisTitle": "Tajuk",
"SSE.Views.ChartSettingsDlg.textBase": "Asas",
"SSE.Views.ChartSettingsDlg.textBetweenTickMarks": "Di antara Tick Marks",
"SSE.Views.ChartSettingsDlg.textBillions": "Bilion",
"SSE.Views.ChartSettingsDlg.textBottom": "Bawah",
@ -1687,6 +1721,7 @@
"SSE.Views.ChartSettingsDlg.textLegendTop": "Atas",
"SSE.Views.ChartSettingsDlg.textLines": "Garis ",
"SSE.Views.ChartSettingsDlg.textLocationRange": "Julat Lokasi",
"SSE.Views.ChartSettingsDlg.textLogScale": "Skala Logaritma",
"SSE.Views.ChartSettingsDlg.textLow": "Rendah",
"SSE.Views.ChartSettingsDlg.textMajor": "Major",
"SSE.Views.ChartSettingsDlg.textMajorMinor": "Major dan Minor",
@ -1878,6 +1913,7 @@
"SSE.Views.DocumentHolder.bottomCellText": "Jajarkan Bawah",
"SSE.Views.DocumentHolder.bulletsText": "Bullet dan Penomboran,",
"SSE.Views.DocumentHolder.centerCellText": "Jajarkan Tengah",
"SSE.Views.DocumentHolder.chartDataText": "Pilih Data Carta",
"SSE.Views.DocumentHolder.chartText": "Seting Lanjutan Carta",
"SSE.Views.DocumentHolder.chartTypeText": "Ubah Jenis Carta",
"SSE.Views.DocumentHolder.deleteColumnText": "Lajur",
@ -1992,6 +2028,7 @@
"SSE.Views.DocumentHolder.txtFormula": "Sisipkan Fungsi",
"SSE.Views.DocumentHolder.txtFraction": "Pecahan",
"SSE.Views.DocumentHolder.txtGeneral": "Am",
"SSE.Views.DocumentHolder.txtGetLink": "Dapatkan pautan kepada julat ini",
"SSE.Views.DocumentHolder.txtGroup": "Kumpulan",
"SSE.Views.DocumentHolder.txtHide": "Sembunyikan",
"SSE.Views.DocumentHolder.txtInsert": "Sisipkan",
@ -2083,12 +2120,14 @@
"SSE.Views.FileMenuPanels.DocumentInfo.txtOwner": "Pemilik",
"SSE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "Lokasi",
"SSE.Views.FileMenuPanels.DocumentInfo.txtRights": "Orang yang mempunyai hak",
"SSE.Views.FileMenuPanels.DocumentInfo.txtSubject": "Subjek",
"SSE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Tajuk",
"SSE.Views.FileMenuPanels.DocumentInfo.txtUploaded": "Dimuat naik",
"SSE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights": "Ubah hak akses",
"SSE.Views.FileMenuPanels.DocumentRights.txtRights": "Orang yang mempunyai hak",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.okButtonText": "Guna",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.strCoAuthMode": "Mod Pengeditan-bersama",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.strDateFormat1904": "Guna system data 1904",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.strDecimalSeparator": "Pemisah perpuluhan",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.strDictionaryLanguage": "Bahasa kamus",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.strFast": "Pantas",
@ -2102,6 +2141,9 @@
"SSE.Views.FileMenuPanels.MainSettingsGeneral.strReferenceStyle": "Gaya Rujukan R1C1",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.strRegSettings": "Seting wilayah",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.strRegSettingsEx": "Contoh: ",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.strShowComments": "Tunjukkan komen dalam helaian",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.strShowOthersChanges": "Tunjukkan perubahan daripada pengguna lain",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.strShowResolvedComments": "Tunjukkan komen yang diselesaikan",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.strStrict": "Tegas",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.strTheme": "Tema antara muka",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.strThousandsSeparator": "Pemisah ribu",
@ -2123,14 +2165,17 @@
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtBg": "Bulgarian",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtCa": "Catalonia",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtCacheMode": "Mod Cache Lalai",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtCalculating": "Sedang Mengira",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtCm": "Sentimeter",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtCollaboration": "Kerjasama",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtCs": "Czech",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtDa": "Danish",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtDe": "Jerman",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtEditingSaving": "Pengeditan dan menyimpan",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtEl": "Greek",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtEn": "Bahasa Inggeris",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtEs": "Bahasa Sepanyol",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtFastTip": "Pengeditan bersama masa nyata, Semua perubahan disimpan secara automatik.",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtFi": "Finland",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtFr": "Perancis",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtHu": "Hungary",
@ -2150,6 +2195,7 @@
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPt": "Mata",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPtbr": "Portugis (Brazil)",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPtlang": "Portugis (Portugal)",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRegion": "Rantau",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRo": "Roman",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRu": "Rusia",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRunMacros": "Mendayakan Semua",
@ -2158,13 +2204,17 @@
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtSl": "Bahasa Slovenia",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtStopMacros": "Nyahdayakan Semua",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtStopMacrosDesc": "Nyahdayakan semua makro tanpa pemberitahuan",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtStrictTip": "Guna butang “Simpan” untuk segerakkan perubahan yang anda dan orang lain lakukan",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtSv": "Sweden",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtTr": "Turki",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtUk": "Ukraine",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtUseAltKey": "Guna kunci Alt untuk navigasi pengguna",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtUseOptionKey": "Guna kunci Pilihan untuk navigasi antara muka pengguna menggunakan papan kekunci",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtVi": "Vietnam",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWarnMacros": "Tunjuk Pemberitahuan",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWarnMacrosDesc": "Nyahdayakan semua makro dengan pemberitahuan",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWin": "sebagai Windows",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWorkspace": "Ruang kerja",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtZh": "Cina",
"SSE.Views.FileMenuPanels.ProtectDoc.notcriticalErrorTitle": "Amaran",
"SSE.Views.FileMenuPanels.ProtectDoc.strEncrypt": "Dengan kata laluan",
@ -2248,6 +2298,7 @@
"SSE.Views.FormatRulesEditDlg.textRelativeRef": "Anda tidak boleh menggunakan rujukan relatif dalam kriteria pemformatan bersyarat bagi skala warna, bar data dan set ikon.",
"SSE.Views.FormatRulesEditDlg.textReverse": "Tertib Songsang Ikon",
"SSE.Views.FormatRulesEditDlg.textRight2Left": "Kanan ke Kiri",
"SSE.Views.FormatRulesEditDlg.textRightBorders": "Sempadan Kanan",
"SSE.Views.FormatRulesEditDlg.textRule": "Peraturan",
"SSE.Views.FormatRulesEditDlg.textSameAs": "Sama seperti positif",
"SSE.Views.FormatRulesEditDlg.textSelectData": "Pilih Data",
@ -2483,6 +2534,7 @@
"SSE.Views.LeftMenu.tipSpellcheck": "Menyemak Ejaan",
"SSE.Views.LeftMenu.tipSupport": "Maklum Balas & Sokongan",
"SSE.Views.LeftMenu.txtDeveloper": "MOD PEMAJU",
"SSE.Views.LeftMenu.txtEditor": "Editor Hamparan",
"SSE.Views.LeftMenu.txtLimit": "Had Akses",
"SSE.Views.LeftMenu.txtTrial": "MOD PERCUBAAN",
"SSE.Views.LeftMenu.txtTrialDev": "Mod Percubaan Pembina",
@ -2558,6 +2610,7 @@
"SSE.Views.PageMarginsDialog.textTitle": "Margin",
"SSE.Views.PageMarginsDialog.textTop": "Atas",
"SSE.Views.ParagraphSettings.strLineHeight": "Jarak Garis",
"SSE.Views.ParagraphSettings.strParagraphSpacing": "Jarak Perenggan",
"SSE.Views.ParagraphSettings.strSpacingAfter": "Selepas",
"SSE.Views.ParagraphSettings.strSpacingBefore": "Sebelum",
"SSE.Views.ParagraphSettings.textAdvanced": "Tunjukkan seting lanjutan",
@ -2663,7 +2716,9 @@
"SSE.Views.PivotSettingsAdvanced.strLayout": "Nama dan Talaletak",
"SSE.Views.PivotSettingsAdvanced.textAlt": "Teks Berselang",
"SSE.Views.PivotSettingsAdvanced.textAltDescription": "Perihalan",
"SSE.Views.PivotSettingsAdvanced.textAltTip": "Perwakilan berasaskan teks alternatif bagi maklumat objek visual, yang akan dibacakan kepada orang yang mengalami masalah penglihatan atau kognitif untuk membantu mereka lebih memahami maklumat yang terdapat dalam imej, bentuk auto, carta atau jadual.",
"SSE.Views.PivotSettingsAdvanced.textAltTitle": "Tajuk",
"SSE.Views.PivotSettingsAdvanced.textAutofitColWidth": "Automuat lebar lajur semasa kemas kini",
"SSE.Views.PivotSettingsAdvanced.textDataRange": "Julat Tarikh",
"SSE.Views.PivotSettingsAdvanced.textDataSource": "Sumber Data",
"SSE.Views.PivotSettingsAdvanced.textDisplayFields": "Medan dalam laporan tapisan kawasan dipaparkan",
@ -2864,6 +2919,7 @@
"SSE.Views.RightMenu.txtPivotSettings": "Seting Jadual Pivot",
"SSE.Views.RightMenu.txtSettings": "Seting biasa",
"SSE.Views.RightMenu.txtShapeSettings": "Seting bentuk",
"SSE.Views.RightMenu.txtSignatureSettings": "Tetapan tandatangan",
"SSE.Views.RightMenu.txtSlicerSettings": "Seting Penghiris",
"SSE.Views.RightMenu.txtSparklineSettings": "Seting sparkline",
"SSE.Views.RightMenu.txtTableSettings": "Seting Jadual",
@ -3041,6 +3097,7 @@
"SSE.Views.SlicerSettingsAdvanced.textAbsolute": "Jangan alih atau saiz dengan sel",
"SSE.Views.SlicerSettingsAdvanced.textAlt": "Teks Berselang",
"SSE.Views.SlicerSettingsAdvanced.textAltDescription": "Perihalan",
"SSE.Views.SlicerSettingsAdvanced.textAltTip": "Perwakilan berasaskan teks alternatif bagi maklumat objek visual, yang akan dibacakan kepada orang yang mengalami masalah penglihatan atau kognitif untuk membantu mereka lebih memahami maklumat yang terdapat dalam imej, bentuk auto, carta atau jadual.",
"SSE.Views.SlicerSettingsAdvanced.textAltTitle": "Tajuk",
"SSE.Views.SlicerSettingsAdvanced.textAsc": "Meningkat",
"SSE.Views.SlicerSettingsAdvanced.textAZ": "A ke Z",
@ -3134,6 +3191,7 @@
"SSE.Views.Spellcheck.textIgnore": "Abaikan",
"SSE.Views.Spellcheck.textIgnoreAll": "Abaikan Semua",
"SSE.Views.Spellcheck.txtAddToDictionary": "Tambah Kepada Kamus",
"SSE.Views.Spellcheck.txtClosePanel": "Tutup ejaan",
"SSE.Views.Spellcheck.txtComplete": "Semak ejaan telah dilengkapkan",
"SSE.Views.Spellcheck.txtDictionaryLanguage": "Bahasa kamus",
"SSE.Views.Spellcheck.txtNextTip": "Pergi ke perkataan seterusnya",
@ -3232,6 +3290,7 @@
"SSE.Views.TableSettings.warnLongOperation": "Operasi yang anda akan lakukan mungkin mengambil lebih masa untuk lengkap.<br>Adakah anda pasti mahu teruskan?",
"SSE.Views.TableSettingsAdvanced.textAlt": "Teks Berselang",
"SSE.Views.TableSettingsAdvanced.textAltDescription": "Perihalan",
"SSE.Views.TableSettingsAdvanced.textAltTip": "Perwakilan berasaskan teks alternatif bagi maklumat objek visual, yang akan dibacakan kepada orang yang mengalami masalah penglihatan atau kognitif untuk membantu mereka lebih memahami maklumat yang terdapat dalam imej, bentuk auto, carta atau jadual.",
"SSE.Views.TableSettingsAdvanced.textAltTitle": "Tajuk",
"SSE.Views.TableSettingsAdvanced.textTitle": "Jadual Seting Lanjutan",
"SSE.Views.TextArtSettings.strBackground": "Warna latar belakang",
@ -3335,10 +3394,12 @@
"SSE.Views.Toolbar.textDiagDownBorder": "Sempadan Bawah Pepenjuru",
"SSE.Views.Toolbar.textDiagUpBorder": "Sempadan Atas Pepenjuru",
"SSE.Views.Toolbar.textDone": "Siap",
"SSE.Views.Toolbar.textEditVA": "Edit Kawasan Boleh Dilihat",
"SSE.Views.Toolbar.textEntireCol": "Keseluruhan Lajur",
"SSE.Views.Toolbar.textEntireRow": "Keseluruhan baris",
"SSE.Views.Toolbar.textFewPages": "halaman",
"SSE.Views.Toolbar.textHeight": "Ketinggian",
"SSE.Views.Toolbar.textHideVA": "Sembunyikan Kawasan Boleh Dilihat",
"SSE.Views.Toolbar.textHorizontal": "Teks Melintang",
"SSE.Views.Toolbar.textInsDown": "Anjakkan sel ke bawah",
"SSE.Views.Toolbar.textInsideBorders": "Dalam Sempadan",
@ -3369,12 +3430,14 @@
"SSE.Views.Toolbar.textPrintHeadings": "Pengepala Cetakan",
"SSE.Views.Toolbar.textPrintOptions": "Seting Cetakan",
"SSE.Views.Toolbar.textRight": "Kanan:",
"SSE.Views.Toolbar.textRightBorders": "Sempadan Kanan",
"SSE.Views.Toolbar.textRotateDown": "Putar Teks Ke Bawah",
"SSE.Views.Toolbar.textRotateUp": "Putar Teks Ke Atas",
"SSE.Views.Toolbar.textScale": "Skala",
"SSE.Views.Toolbar.textScaleCustom": "Tersuai",
"SSE.Views.Toolbar.textSelection": "Dari pilihan semasa",
"SSE.Views.Toolbar.textSetPrintArea": "Tetapkan Kawasan Cetakan",
"SSE.Views.Toolbar.textShowVA": "Tunjukkan Kawasan Boleh Dilihat",
"SSE.Views.Toolbar.textStrikeout": "Garis Lorek",
"SSE.Views.Toolbar.textSubscript": "Subskrip",
"SSE.Views.Toolbar.textSubSuperscript": "Subskrip/superskrip",
@ -3464,8 +3527,10 @@
"SSE.Views.Toolbar.tipSendBackward": "Hantar ke belakang",
"SSE.Views.Toolbar.tipSendForward": "Bawa Ke Hadapan",
"SSE.Views.Toolbar.tipSynchronize": "Dokumen telah ditukar dengan pengguna yang lain. Sila klik untuk simpan perubahan anda dan muat semula kemas kini.",
"SSE.Views.Toolbar.tipTextFormatting": "Lebih teks alat pemformatan",
"SSE.Views.Toolbar.tipTextOrientation": "Orientasi",
"SSE.Views.Toolbar.tipUndo": "Buat semula",
"SSE.Views.Toolbar.tipVisibleArea": "Kawasan Kelihatan",
"SSE.Views.Toolbar.tipWrap": "Balut teks",
"SSE.Views.Toolbar.txtAccounting": "Perakaunan",
"SSE.Views.Toolbar.txtAdditional": "Tambahan",

View file

@ -384,6 +384,8 @@
"Common.Views.ReviewPopover.txtEditTip": "Edytuj",
"Common.Views.SaveAsDlg.textLoading": "Ładowanie",
"Common.Views.SaveAsDlg.textTitle": "Folder do zapisu",
"Common.Views.SearchPanel.textByColumns": "Przez kolumny",
"Common.Views.SearchPanel.textByRows": "Przez wiersze",
"Common.Views.SearchPanel.textCaseSensitive": "Rozróżniana wielkość liter",
"Common.Views.SearchPanel.textCell": "Komórka",
"Common.Views.SearchPanel.textCloseSearch": "Zamknij wyszukiwanie",
@ -391,6 +393,8 @@
"Common.Views.SearchPanel.textFindAndReplace": "Znajdź i zamień",
"Common.Views.SearchPanel.textFormula": "Formuła",
"Common.Views.SearchPanel.textFormulas": "Formuły",
"Common.Views.SearchPanel.textItemEntireCell": "Cała zawartość komórki",
"Common.Views.SearchPanel.textLookIn": "Szukaj w",
"Common.Views.SearchPanel.textName": "Nazwa",
"Common.Views.SearchPanel.textNoMatches": "Brak dopasowań",
"Common.Views.SearchPanel.textNoSearchResults": "Brak wyników wyszukiwania",
@ -398,10 +402,14 @@
"Common.Views.SearchPanel.textReplaceAll": "Zamień wszystko",
"Common.Views.SearchPanel.textSearch": "Szukaj",
"Common.Views.SearchPanel.textSearchOptions": "Opcje wyszukiwania",
"Common.Views.SearchPanel.textSelectDataRange": "Wybierz zakres danych",
"Common.Views.SearchPanel.textSheet": "Arkusz",
"Common.Views.SearchPanel.textTooManyResults": "Jest zbyt dużo wyników, aby je tutaj wyświetlić",
"Common.Views.SearchPanel.textValue": "Wartość",
"Common.Views.SearchPanel.textValues": "Wartości",
"Common.Views.SearchPanel.textWholeWords": "Tylko całe słowa",
"Common.Views.SearchPanel.textWithin": "W ciągu",
"Common.Views.SearchPanel.textWorkbook": "Skoroszyt",
"Common.Views.SearchPanel.tipNextResult": "Następny wynik",
"Common.Views.SearchPanel.tipPreviousResult": "Wcześniejszy wynik",
"Common.Views.SelectFileDlg.textLoading": "Ładowanie",
@ -1093,6 +1101,9 @@
"SSE.Controllers.Print.textWarning": "Ostrzeżenie",
"SSE.Controllers.Print.txtCustom": "Niestandardowy",
"SSE.Controllers.Print.warnCheckMargings": "Marginesy są błędne",
"SSE.Controllers.Search.textInvalidRange": "BŁĄD! Niepoprawny zakres komórek",
"SSE.Controllers.Search.textNoTextFound": "Nie znaleziono danych, których szukasz. Proszę dostosuj opcje wyszukiwania.",
"SSE.Controllers.Search.textReplaceSkipped": "Zastąpiono. {0} zdarzenia zostały pominięte.",
"SSE.Controllers.Statusbar.errorLastSheet": "Skoroszyt musi zawierać co najmniej jeden widoczny arkusz roboczy.",
"SSE.Controllers.Statusbar.errorRemoveSheet": "Nie można usunąć arkusza.",
"SSE.Controllers.Statusbar.strSheet": "Arkusz",
@ -1597,6 +1608,7 @@
"SSE.Views.ChartDataRangeDialog.txtValues": "Wartości serii",
"SSE.Views.ChartDataRangeDialog.txtXValues": "Wartość X",
"SSE.Views.ChartDataRangeDialog.txtYValues": "Wartość Y",
"SSE.Views.ChartSettings.errorMaxRows": "Maksymalna liczba serii danych na wykres to 255.",
"SSE.Views.ChartSettings.strLineWeight": "Waga linii",
"SSE.Views.ChartSettings.strSparkColor": "Kolor",
"SSE.Views.ChartSettings.strTemplate": "Szablon",
@ -1618,6 +1630,7 @@
"SSE.Views.ChartSettings.textShow": "Pokaż",
"SSE.Views.ChartSettings.textSize": "Rozmiar",
"SSE.Views.ChartSettings.textStyle": "Styl",
"SSE.Views.ChartSettings.textSwitch": "Przełącz wiersz/kolumnę",
"SSE.Views.ChartSettings.textType": "Typ",
"SSE.Views.ChartSettings.textWidth": "Szerokość",
"SSE.Views.ChartSettingsDlg.errorMaxPoints": "BŁĄD! Maksymalna liczba punktów w serii na wykres to 4096.",
@ -1876,6 +1889,7 @@
"SSE.Views.DocumentHolder.bulletsText": "Kule i numeracja",
"SSE.Views.DocumentHolder.centerCellText": "Wyrównaj do środka",
"SSE.Views.DocumentHolder.chartText": "Zaawansowane ustawienia wykresu",
"SSE.Views.DocumentHolder.chartTypeText": "Zmień typ wykresu",
"SSE.Views.DocumentHolder.deleteColumnText": "Kolumna",
"SSE.Views.DocumentHolder.deleteRowText": "Wiersz",
"SSE.Views.DocumentHolder.deleteTableText": "Tabela",
@ -2078,10 +2092,12 @@
"SSE.Views.FileMenuPanels.MainSettingsGeneral.okButtonText": "Zatwierdź",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.strCoAuthMode": "Tryb współtworzenia",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.strDecimalSeparator": "Separator liczb dziesiętnych",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.strDictionaryLanguage": "Język słownika",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.strFast": "Szybki",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.strFontRender": "Podpowiedź czcionki",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.strFuncLocale": "Język formuły",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.strFuncLocaleEx": "Przykład: SUMA; MIN; MAX; LICZYĆ",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.strIgnoreWordsInUPPERCASE": "Ignoruj słowa pisane WIELKIMI LITERAMI",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.strIgnoreWordsWithNumbers": "Ignoruj słowa z liczbami",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.strMacrosSettings": "Ustawienia Makr",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.strPasteButton": "Pokaż przycisk opcji wklejania po wklejeniu zawartości",
@ -2103,6 +2119,7 @@
"SSE.Views.FileMenuPanels.MainSettingsGeneral.textForceSave": "Zapisywanie wersji pośrednich",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.textMinute": "Każda minuta",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.textRefStyle": "Styl linków",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtAutoCorrect": "Opcje Autokorekty...",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtBe": "Białoruski",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtBg": "Bułgarski",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtCa": "Kataloński",
@ -2130,6 +2147,7 @@
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtNb": "Norweski",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtNl": "Holenderski",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPl": "Polski",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtProofing": "Sprawdzanie",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPt": "Punkt",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPtbr": "Portugalski (Brazylia)",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPtlang": "Portugalski (Portugalia)",
@ -2470,6 +2488,7 @@
"SSE.Views.LeftMenu.tipSpellcheck": "Sprawdzanie pisowni",
"SSE.Views.LeftMenu.tipSupport": "Opinie i wsparcie",
"SSE.Views.LeftMenu.txtDeveloper": "TRYB DEWELOPERA",
"SSE.Views.LeftMenu.txtEditor": "Edytor arkusza kalkulacyjnego",
"SSE.Views.LeftMenu.txtLimit": "Ograniczony dostęp",
"SSE.Views.LeftMenu.txtTrial": "PRÓBNY TRYB",
"SSE.Views.LeftMenu.txtTrialDev": "Próbny tryb programisty",
@ -2760,7 +2779,11 @@
"SSE.Views.PrintWithPreview.txtCustom": "Własne",
"SSE.Views.PrintWithPreview.txtCustomOptions": "Opcje niestandardowe",
"SSE.Views.PrintWithPreview.txtEmptyTable": "Nie ma niczego do wydrukowania",
"SSE.Views.PrintWithPreview.txtFitCols": "Dopasuj rozmiary wszystkich kolumn na stronie",
"SSE.Views.PrintWithPreview.txtFitPage": "Dopasuj arkusz na jednej stronie",
"SSE.Views.PrintWithPreview.txtFitRows": "Dopasuj wszystkie wiersze na jednej stronie",
"SSE.Views.PrintWithPreview.txtHeaderFooterSettings": "Ustawienia nagłówka/stopki",
"SSE.Views.PrintWithPreview.txtIgnore": "Ignoruj obszar drukowania",
"SSE.Views.PrintWithPreview.txtLandscape": "Pozioma",
"SSE.Views.PrintWithPreview.txtLeft": "Lewy",
"SSE.Views.PrintWithPreview.txtMargins": "Marginesy",
@ -2771,11 +2794,15 @@
"SSE.Views.PrintWithPreview.txtPortrait": "Pionowa",
"SSE.Views.PrintWithPreview.txtPrint": "Drukuj",
"SSE.Views.PrintWithPreview.txtPrintGrid": "Drukuj siatkę",
"SSE.Views.PrintWithPreview.txtPrintHeadings": "Drukuj wiersze i kolumny",
"SSE.Views.PrintWithPreview.txtPrintRange": "Zakres wydruku",
"SSE.Views.PrintWithPreview.txtPrintTitles": "Wydrukuj tytuły",
"SSE.Views.PrintWithPreview.txtRepeat": "Powtarzać...",
"SSE.Views.PrintWithPreview.txtRepeatColumnsAtLeft": "Powtórz kolumny po lewej",
"SSE.Views.PrintWithPreview.txtRepeatRowsAtTop": "Powtórz wiersze z góry",
"SSE.Views.PrintWithPreview.txtRight": "Prawy",
"SSE.Views.PrintWithPreview.txtSave": "Zapisz",
"SSE.Views.PrintWithPreview.txtScaling": "Scalanie",
"SSE.Views.PrintWithPreview.txtSelection": "Zaznaczenie",
"SSE.Views.PrintWithPreview.txtSettingsOfSheet": "Ustawienia arkusza",
"SSE.Views.PrintWithPreview.txtSheet": "Arkusz: {0}",
@ -3346,6 +3373,7 @@
"SSE.Views.Toolbar.textPageMarginsCustom": "Niestandardowe marginesy",
"SSE.Views.Toolbar.textPortrait": "Pionowa",
"SSE.Views.Toolbar.textPrint": "Drukuj",
"SSE.Views.Toolbar.textPrintGridlines": "Drukuj siatkę",
"SSE.Views.Toolbar.textPrintOptions": "Ustawienia drukowania",
"SSE.Views.Toolbar.textRight": "Prawo:",
"SSE.Views.Toolbar.textRightBorders": "Prawe krawędzie",
@ -3394,6 +3422,7 @@
"SSE.Views.Toolbar.tipCondFormat": "Formatowanie warunkowe",
"SSE.Views.Toolbar.tipCopy": "Kopiuj",
"SSE.Views.Toolbar.tipCopyStyle": "Kopiuj styl",
"SSE.Views.Toolbar.tipCut": "Wytnij",
"SSE.Views.Toolbar.tipDecDecimal": "Zmniejsz ilość cyfr po przecinku",
"SSE.Views.Toolbar.tipDecFont": "Zmniejsz rozmiar czcionki",
"SSE.Views.Toolbar.tipDeleteOpt": "Usuń komórki",
@ -3439,6 +3468,7 @@
"SSE.Views.Toolbar.tipSave": "Zapisz",
"SSE.Views.Toolbar.tipSaveCoauth": "Zapisz swoje zmiany, aby inni użytkownicy mogli je zobaczyć.",
"SSE.Views.Toolbar.tipScale": "Skaluj do rozmiaru",
"SSE.Views.Toolbar.tipSelectAll": "Zaznacz wszystko",
"SSE.Views.Toolbar.tipSendBackward": "Przenieś do tyłu",
"SSE.Views.Toolbar.tipSendForward": "Przenieś do przodu",
"SSE.Views.Toolbar.tipSynchronize": "Dokument został zmieniony przez innego użytkownika. Kliknij, aby zapisać swoje zmiany i ponownie załadować zmiany.",
@ -3582,6 +3612,7 @@
"SSE.Views.ViewTab.textHeadings": "Nagłówki",
"SSE.Views.ViewTab.textInterfaceTheme": "Motyw interfejsu",
"SSE.Views.ViewTab.textManager": "Menadżer prezentacji",
"SSE.Views.ViewTab.textShowFrozenPanesShadow": "Pokaż cień dla zadokowanych obszarów",
"SSE.Views.ViewTab.textUnFreeze": "Odblokuj panele",
"SSE.Views.ViewTab.textZeros": "Wyświetl zera",
"SSE.Views.ViewTab.textZoom": "Powiększenie",

View file

@ -2718,6 +2718,7 @@
"SSE.Views.PivotSettingsAdvanced.textAltDescription": "Descrição",
"SSE.Views.PivotSettingsAdvanced.textAltTip": "A representação alternativa baseada em texto da informação do objeto visual, que será lida às pessoas com deficiências visuais ou cognitivas para as ajudar a compreender melhor a informação que existe na imagem, forma automática, gráfico ou tabela.",
"SSE.Views.PivotSettingsAdvanced.textAltTitle": "Título",
"SSE.Views.PivotSettingsAdvanced.textAutofitColWidth": "Ajustar automaticamente largura de coluna ao atualizar",
"SSE.Views.PivotSettingsAdvanced.textDataRange": "Intervalo de dados",
"SSE.Views.PivotSettingsAdvanced.textDataSource": "Fonte de dados",
"SSE.Views.PivotSettingsAdvanced.textDisplayFields": "Mostrar campos na área de filtros de relatórios",

View file

@ -410,9 +410,11 @@
"Common.Views.SearchPanel.textReplaceWith": "替換為",
"Common.Views.SearchPanel.textSearch": "搜尋",
"Common.Views.SearchPanel.textSearchHasStopped": "搜索已停止",
"Common.Views.SearchPanel.textSearchOptions": "搜索選項",
"Common.Views.SearchPanel.textSearchResults": "搜索结果:{0}/{1}",
"Common.Views.SearchPanel.textSelectDataRange": "選擇數據范圍",
"Common.Views.SearchPanel.textSheet": "表格",
"Common.Views.SearchPanel.textSpecificRange": "特定範圍",
"Common.Views.SearchPanel.textTooManyResults": "因數量過多而無法顯示部分結果",
"Common.Views.SearchPanel.textValue": "值",
"Common.Views.SearchPanel.textValues": "值",
@ -537,6 +539,7 @@
"SSE.Controllers.DocumentHolder.txtColumn": "欄",
"SSE.Controllers.DocumentHolder.txtColumnAlign": "欄位對準",
"SSE.Controllers.DocumentHolder.txtContains": "包含",
"SSE.Controllers.DocumentHolder.txtCopySuccess": "連結已複製到剪貼板",
"SSE.Controllers.DocumentHolder.txtDataTableHint": "回傳表格儲存格,或指定的表格儲存格",
"SSE.Controllers.DocumentHolder.txtDecreaseArg": "減小參數大小",
"SSE.Controllers.DocumentHolder.txtDeleteArg": "刪除參數",
@ -1120,6 +1123,7 @@
"SSE.Controllers.Print.txtCustom": "自訂",
"SSE.Controllers.Print.warnCheckMargings": "邊界錯誤",
"SSE.Controllers.Search.textInvalidRange": "錯誤!無效的單元格範圍",
"SSE.Controllers.Search.textNoTextFound": "找不到您一直在搜索的數據。請調整您的搜索選項。",
"SSE.Controllers.Search.textReplaceSkipped": "替換已完成。 {0}個事件被跳過。",
"SSE.Controllers.Search.textReplaceSuccess": "搜尋完成。 {0}個符合結果已被取代",
"SSE.Controllers.Statusbar.errorLastSheet": "工作簿必須至少具有一個可見的工作表。",
@ -1668,6 +1672,7 @@
"SSE.Views.ChartSettingsDlg.textAxisPos": "軸位置",
"SSE.Views.ChartSettingsDlg.textAxisSettings": "軸設定",
"SSE.Views.ChartSettingsDlg.textAxisTitle": "標題",
"SSE.Views.ChartSettingsDlg.textBase": "基礎",
"SSE.Views.ChartSettingsDlg.textBetweenTickMarks": "勾線之間",
"SSE.Views.ChartSettingsDlg.textBillions": "億",
"SSE.Views.ChartSettingsDlg.textBottom": "底部",
@ -1716,6 +1721,7 @@
"SSE.Views.ChartSettingsDlg.textLegendTop": "上方",
"SSE.Views.ChartSettingsDlg.textLines": "線",
"SSE.Views.ChartSettingsDlg.textLocationRange": "位置範圍",
"SSE.Views.ChartSettingsDlg.textLogScale": "對數尺度",
"SSE.Views.ChartSettingsDlg.textLow": "低",
"SSE.Views.ChartSettingsDlg.textMajor": "重大",
"SSE.Views.ChartSettingsDlg.textMajorMinor": "主要和次要",
@ -1907,6 +1913,7 @@
"SSE.Views.DocumentHolder.bottomCellText": "底部對齊",
"SSE.Views.DocumentHolder.bulletsText": "項目符和編號",
"SSE.Views.DocumentHolder.centerCellText": "中央對齊",
"SSE.Views.DocumentHolder.chartDataText": "選擇圖表資料",
"SSE.Views.DocumentHolder.chartText": "圖表進階設置",
"SSE.Views.DocumentHolder.chartTypeText": "變更圖表類型",
"SSE.Views.DocumentHolder.deleteColumnText": "欄",
@ -2021,6 +2028,7 @@
"SSE.Views.DocumentHolder.txtFormula": "插入功能",
"SSE.Views.DocumentHolder.txtFraction": "分數",
"SSE.Views.DocumentHolder.txtGeneral": "一般",
"SSE.Views.DocumentHolder.txtGetLink": "獲取此範圍的連結",
"SSE.Views.DocumentHolder.txtGroup": "群組",
"SSE.Views.DocumentHolder.txtHide": "隱藏",
"SSE.Views.DocumentHolder.txtInsert": "插入",
@ -2119,6 +2127,7 @@
"SSE.Views.FileMenuPanels.DocumentRights.txtRights": "有權利的人",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.okButtonText": "套用",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.strCoAuthMode": "共同編輯模式",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.strDateFormat1904": "使用1904日期系統",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.strDecimalSeparator": "小數點分隔符",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.strDictionaryLanguage": "字典語言",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.strFast": "快",
@ -2132,6 +2141,7 @@
"SSE.Views.FileMenuPanels.MainSettingsGeneral.strReferenceStyle": "R1C1參考樣式",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.strRegSettings": "區域設置",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.strRegSettingsEx": "例:",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.strShowComments": "在工作表中顯示注釋",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.strShowOthersChanges": "顯示其他用戶的更改",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.strShowResolvedComments": "顯示已解決的註釋",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.strStrict": "嚴格",
@ -2155,6 +2165,7 @@
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtBg": "保加利亞語",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtCa": "加泰羅尼亞語",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtCacheMode": "預設緩存模式",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtCalculating": "計算",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtCm": "公分",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtCollaboration": "協作",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtCs": "捷克語",
@ -2184,6 +2195,7 @@
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPt": "點",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPtbr": "葡萄牙語(巴西)",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPtlang": "葡萄牙語(葡萄牙)",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRegion": "區域",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRo": "羅馬尼亞語",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRu": "俄語",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRunMacros": "全部啟用",
@ -2706,6 +2718,7 @@
"SSE.Views.PivotSettingsAdvanced.textAltDescription": "描述",
"SSE.Views.PivotSettingsAdvanced.textAltTip": "視覺對象信息的替代基於文本的表示形式,將向有視力或認知障礙的人讀取,以幫助他們更好地理解圖像,自動成型,圖表或表格中包含的信息。",
"SSE.Views.PivotSettingsAdvanced.textAltTitle": "標題",
"SSE.Views.PivotSettingsAdvanced.textAutofitColWidth": "更新時自動調整列寬",
"SSE.Views.PivotSettingsAdvanced.textDataRange": "數據範圍",
"SSE.Views.PivotSettingsAdvanced.textDataSource": "數據源",
"SSE.Views.PivotSettingsAdvanced.textDisplayFields": "在報告過濾器區域中顯示字段",
@ -3178,6 +3191,7 @@
"SSE.Views.Spellcheck.textIgnore": "忽視",
"SSE.Views.Spellcheck.textIgnoreAll": "忽略所有",
"SSE.Views.Spellcheck.txtAddToDictionary": "添加到字典",
"SSE.Views.Spellcheck.txtClosePanel": "密集拼寫檢查",
"SSE.Views.Spellcheck.txtComplete": "拼寫檢查已完成",
"SSE.Views.Spellcheck.txtDictionaryLanguage": "字典語言",
"SSE.Views.Spellcheck.txtNextTip": "轉到下一個單詞",
@ -3380,10 +3394,12 @@
"SSE.Views.Toolbar.textDiagDownBorder": "對角向下邊界",
"SSE.Views.Toolbar.textDiagUpBorder": "對角上邊界",
"SSE.Views.Toolbar.textDone": "已完成",
"SSE.Views.Toolbar.textEditVA": "編輯可見區域",
"SSE.Views.Toolbar.textEntireCol": "整列",
"SSE.Views.Toolbar.textEntireRow": "整行",
"SSE.Views.Toolbar.textFewPages": "頁",
"SSE.Views.Toolbar.textHeight": "高度",
"SSE.Views.Toolbar.textHideVA": "隱藏可見區域",
"SSE.Views.Toolbar.textHorizontal": "橫軸上的文字",
"SSE.Views.Toolbar.textInsDown": "下移單元格",
"SSE.Views.Toolbar.textInsideBorders": "內部邊界",
@ -3421,6 +3437,7 @@
"SSE.Views.Toolbar.textScaleCustom": "自訂",
"SSE.Views.Toolbar.textSelection": "凍結當前選擇",
"SSE.Views.Toolbar.textSetPrintArea": "設置列印區域",
"SSE.Views.Toolbar.textShowVA": "顯示可見區域",
"SSE.Views.Toolbar.textStrikeout": "淘汰",
"SSE.Views.Toolbar.textSubscript": "下標",
"SSE.Views.Toolbar.textSubSuperscript": "下標/上標",
@ -3510,8 +3527,10 @@
"SSE.Views.Toolbar.tipSendBackward": "向後發送",
"SSE.Views.Toolbar.tipSendForward": "向前帶進",
"SSE.Views.Toolbar.tipSynchronize": "該文檔已被其他用戶更改。請單擊以保存您的更改並重新加載更新。",
"SSE.Views.Toolbar.tipTextFormatting": "更多文字格式化工具",
"SSE.Views.Toolbar.tipTextOrientation": "方向",
"SSE.Views.Toolbar.tipUndo": "復原",
"SSE.Views.Toolbar.tipVisibleArea": "可見區域",
"SSE.Views.Toolbar.tipWrap": "包覆文字",
"SSE.Views.Toolbar.txtAccounting": "會計",
"SSE.Views.Toolbar.txtAdditional": "額外功能",

View file

@ -435,7 +435,7 @@
"textFillColor": "Color d'emplenament",
"textFilterOptions": "Opcions de filtre",
"textFit": "Ajusta l'amplada",
"textFonts": "Tipus de lletra",
"textFonts": "Lletra",
"textFormat": "Format",
"textFraction": "Fracció",
"textFromLibrary": "Imatge de la biblioteca",

View file

@ -298,7 +298,7 @@
"textMoveBefore": "シートの前へ移動",
"textMoveToEnd": "(末尾へ移動)",
"textOk": "OK",
"textRename": "名前の変更",
"textRename": "名前を変更する",
"textRenameSheet": "このシートの名前を変更する",
"textSheet": "シート",
"textSheetName": "シートの名",

View file

@ -3,11 +3,11 @@
"textAbout": "Perihal",
"textAddress": "Alamat",
"textBack": "Kembali",
"textEditor": "Editor Hamparan",
"textEmail": "E-mel",
"textPoweredBy": "Dikuasakan Oleh",
"textTel": "Tel",
"textVersion": "Versi",
"textEditor": "Spreadsheet Editor"
"textVersion": "Versi"
},
"Common": {
"Collaboration": {
@ -154,6 +154,7 @@
"textRemember": "Ingat pilihan saya",
"textReplaceSkipped": "Gantian telah dilakukan. {0} kejadian telah dilangkau.",
"textReplaceSuccess": "Carian telah dilakukan. Kejadian digantikan: {0}",
"textRequestMacros": "Makro membuat permintaan ke URL. Adakah anda mahu membenarkan permintaan kepada %1?",
"textYes": "Ya",
"titleServerVersion": "Editor dikemas kini",
"titleUpdateVersion": "Perubahan versi",
@ -163,8 +164,7 @@
"warnLicenseUsersExceeded": "Anda telah mencapai had pengguna untuk editor %1. Hubungi pentadbir anda untuk ketahui selanjutnya.",
"warnNoLicense": "Anda telah mencapai had pengguna untuk sambungan serentak kepada editor %1. Dokumen ini akan dibuka untuk dilihat sahaja. Hubungi pasukan jualan %1 untuk naik taraf terma peribadi.",
"warnNoLicenseUsers": "Anda telah mencapai had pengguna untuk editor %1. Hubungi pasukan jualan %1 untuk naik taraf terma peribadi.",
"warnProcessRightsChange": "Anda tidak mempunyai keizinan untuk edit fail ini.",
"textRequestMacros": "A macro makes a request to URL. Do you want to allow the request to the %1?"
"warnProcessRightsChange": "Anda tidak mempunyai keizinan untuk edit fail ini."
}
},
"Error": {
@ -183,6 +183,7 @@
"errorChangeArray": "Anda tidak boleh mengubah bahagian tatasusunan.",
"errorChangeOnProtectedSheet": "Sel atau carta yang anda cuba ubah ialah helaian dilindung. Untuk membuat perubahan, nyahlindung helaian. Anda mungkin diminta untuk memasukkan kata laluan.",
"errorConnectToServer": "Tidak dapat menyimpan dok ini. Semak seting sambungan anda atau hubungi pentadbir.<br>Apabila anda klik OK, anda akan diminta untuk muat turun dokumennya.",
"errorCopyMultiselectArea": "Perintah ini tidak boleh digunakan dengan berbilang pilihan.<br> Pilih julat tunggal dan cuba lagi.",
"errorCountArg": "Terdapat ralat di dalam formula.<br>Bilangan argumen yang tidak sah.",
"errorCountArgExceed": "Terdapat ralat di dalam formula.<br>Bilangan argumen telah melebihi maksimum.",
"errorCreateDefName": "Julat nama sedia ada tidak boleh diedit dan yang baharu tidak boleh dicipta<br>pada masa sekarang kerana beberapa daripadanya sedang diedit.",
@ -237,8 +238,7 @@
"unknownErrorText": "Ralat tidak diketahui.",
"uploadImageExtMessage": "Format imej yang tidak diketahui.",
"uploadImageFileCountMessage": "Tiada Imej dimuat naik.",
"uploadImageSizeMessage": "Imej terlalu besar. Saiz maksimum adalah 25 MB.",
"errorCopyMultiselectArea": "This command cannot be used with multiple selections.<br>Select a single range and try again."
"uploadImageSizeMessage": "Imej terlalu besar. Saiz maksimum adalah 25 MB."
},
"LongActions": {
"advDRMPassword": "Kata laluan",
@ -633,6 +633,7 @@
"textReplace": "Gantikan",
"textReplaceAll": "Gantikan Semua",
"textResolvedComments": "Komen Diselesaikan",
"textRestartApplication": "Mulakan semula aplikasi untuk perubahan tersebut berkuat kuasa",
"textRight": "Kanan",
"textRightToLeft": "Kanan ke Kiri",
"textSearch": "Carian",
@ -645,6 +646,7 @@
"textSpreadsheetInfo": "Maklumat Hamparan",
"textSpreadsheetSettings": "Seting Hamparan",
"textSpreadsheetTitle": "Tajuk Hamparan",
"textSubject": "Subjek",
"textTel": "Tel",
"textTitle": "Tajuk",
"textTop": "Atas",
@ -686,9 +688,7 @@
"txtSemicolon": "Koma bertindih",
"txtSpace": "Jarak",
"txtTab": "Tab",
"warnDownloadAs": "Jika anda terus menyimpan dalam format ini semua ciri kecuali teks akan hilang.<br>Adakah anda pasti mahu teruskan?",
"textRestartApplication": "Please restart the application for the changes to take effect",
"textSubject": "Subject"
"warnDownloadAs": "Jika anda terus menyimpan dalam format ini semua ciri kecuali teks akan hilang.<br>Adakah anda pasti mahu teruskan?"
}
}
}

View file

@ -633,6 +633,7 @@
"textReplace": "取代",
"textReplaceAll": "全部替換",
"textResolvedComments": "已解決的評論",
"textRestartApplication": "請重新啟動應用程式以讓變更生效",
"textRight": "右",
"textRightToLeft": "右到左",
"textSearch": "搜尋",
@ -687,8 +688,7 @@
"txtSemicolon": "分號",
"txtSpace": "空間",
"txtTab": "標籤",
"warnDownloadAs": "如果繼續以這種格式保存,則除文本外的所有功能都將丟失。<br>確定要繼續嗎?",
"textRestartApplication": "Please restart the application for the changes to take effect"
"warnDownloadAs": "如果繼續以這種格式保存,則除文本外的所有功能都將丟失。<br>確定要繼續嗎?"
}
}
}