Merge pull request #1693 from ONLYOFFICE/feature/4-letters-lang
Feature/4 letters lang
This commit is contained in:
commit
56f050de03
|
@ -40,7 +40,8 @@ Common.Locale = new(function() {
|
|||
var loadcallback,
|
||||
apply = false,
|
||||
defLang = '{{DEFAULT_LANG}}',
|
||||
currentLang = defLang;
|
||||
currentLang = defLang,
|
||||
_4letterLangs = ['pt-pt', 'zh-tw'];
|
||||
|
||||
var _applyLocalization = function(callback) {
|
||||
try {
|
||||
|
@ -100,11 +101,16 @@ Common.Locale = new(function() {
|
|||
|
||||
var _requireLang = function (l) {
|
||||
typeof l != 'string' && (l = null);
|
||||
var lang = (l || _getUrlParameterByName('lang') || defLang).split(/[\-_]/)[0];
|
||||
var lang = (l || _getUrlParameterByName('lang') || defLang);
|
||||
var idx4Letters = _4letterLangs.indexOf(lang.replace('_', '-').toLowerCase()); // try to load 4 letters language
|
||||
lang = (idx4Letters<0) ? lang.split(/[\-_]/)[0] : _4letterLangs[idx4Letters];
|
||||
currentLang = lang;
|
||||
fetch('locale/' + lang + '.json')
|
||||
.then(function(response) {
|
||||
if (!response.ok) {
|
||||
if (idx4Letters>=0) { // try to load 2-letters language
|
||||
throw new Error('4letters error');
|
||||
}
|
||||
currentLang = defLang;
|
||||
if (lang != defLang)
|
||||
/* load default lang if fetch failed */
|
||||
|
@ -128,6 +134,12 @@ Common.Locale = new(function() {
|
|||
l10n = json || {};
|
||||
apply && _applyLocalization();
|
||||
}).catch(function(e) {
|
||||
if ( /4letters/.test(e) ) {
|
||||
return setTimeout(function(){
|
||||
_requireLang(lang.split(/[\-_]/)[0]);
|
||||
}, 0);
|
||||
}
|
||||
|
||||
if ( !/loaded/.test(e) && currentLang != defLang && defLang && defLang.length < 3 ) {
|
||||
return setTimeout(function(){
|
||||
_requireLang(defLang)
|
||||
|
|
50
apps/documenteditor/embed/locale/pt-PT.json
Normal file
50
apps/documenteditor/embed/locale/pt-PT.json
Normal file
|
@ -0,0 +1,50 @@
|
|||
{
|
||||
"common.view.modals.txtCopy": "Copiar para a área de transferência",
|
||||
"common.view.modals.txtEmbed": "Incorporar",
|
||||
"common.view.modals.txtHeight": "Altura",
|
||||
"common.view.modals.txtShare": "Partilhar ligação",
|
||||
"common.view.modals.txtWidth": "Largura",
|
||||
"DE.ApplicationController.convertationErrorText": "Falha na conversão.",
|
||||
"DE.ApplicationController.convertationTimeoutText": "Excedeu o tempo limite de conversão.",
|
||||
"DE.ApplicationController.criticalErrorTitle": "Erro",
|
||||
"DE.ApplicationController.downloadErrorText": "Falha ao descarregar.",
|
||||
"DE.ApplicationController.downloadTextText": "A descarregar documento…",
|
||||
"DE.ApplicationController.errorAccessDeny": "Está a tentar executar uma ação para a qual não tem permissão.<br>Contacte o administrador do servidor de documentos.",
|
||||
"DE.ApplicationController.errorDefaultMessage": "Código de erro: %1",
|
||||
"DE.ApplicationController.errorEditingDownloadas": "Ocorreu um erro ao trabalhar no documento.<br>Utilize a opção 'Descarregar como...' para guardar uma cópia do ficheiro no computador.",
|
||||
"DE.ApplicationController.errorFilePassProtect": "O documento está protegido por palavra-passe e não pode ser aberto.",
|
||||
"DE.ApplicationController.errorFileSizeExceed": "O tamanho do documento excede o limite do servidor.<br>Contacte o administrador do servidor de documentos para mais detalhes.",
|
||||
"DE.ApplicationController.errorForceSave": "Ocorreu um erro ao guardar o ficheiro. Utilize a opção 'Descarregar como' para guardar o ficheiro no computador ou tente novamente mais tarde.",
|
||||
"DE.ApplicationController.errorLoadingFont": "Tipos de letra não carregados.<br>Por favor contacte o administrador do servidor de documentos.",
|
||||
"DE.ApplicationController.errorSubmit": "Falha ao submeter.",
|
||||
"DE.ApplicationController.errorTokenExpire": "O token de segurança do documento expirou.<br>Entre em contacto com o administrador do Servidor de Documentos.",
|
||||
"DE.ApplicationController.errorUpdateVersionOnDisconnect": "A ligação à Internet foi restaurada e a versão do ficheiro foi alterada.<br>Antes de continuar o seu trabalho, descarregue o ficheiro ou copie o seu conteúdo para ter a certeza de que não perde os seus elementos e recarregue a página.",
|
||||
"DE.ApplicationController.errorUserDrop": "De momento, não é possível aceder ao ficheiro.",
|
||||
"DE.ApplicationController.notcriticalErrorTitle": "Aviso",
|
||||
"DE.ApplicationController.openErrorText": "Ocorreu um erro ao abrir o ficheiro.",
|
||||
"DE.ApplicationController.scriptLoadError": "A ligação está muito lenta e alguns dos componentes não foram carregados. Recarregue a página.",
|
||||
"DE.ApplicationController.textAnonymous": "Anónimo",
|
||||
"DE.ApplicationController.textClear": "Limpar todos os campos",
|
||||
"DE.ApplicationController.textGotIt": "Percebi",
|
||||
"DE.ApplicationController.textGuest": "Convidado",
|
||||
"DE.ApplicationController.textLoadingDocument": "A carregar documento",
|
||||
"DE.ApplicationController.textNext": "Próximo campo",
|
||||
"DE.ApplicationController.textOf": "de",
|
||||
"DE.ApplicationController.textRequired": "Preencha todos os campos obrigatório para poder submeter o formulário.",
|
||||
"DE.ApplicationController.textSubmit": "Submeter",
|
||||
"DE.ApplicationController.textSubmited": "<b>Formulário submetido com êxito</b><br>Clique para fechar a dica",
|
||||
"DE.ApplicationController.txtClose": "Fechar",
|
||||
"DE.ApplicationController.txtEmpty": "(Vazio)",
|
||||
"DE.ApplicationController.txtPressLink": "Prima Ctrl e clique na ligação",
|
||||
"DE.ApplicationController.unknownErrorText": "Erro desconhecido.",
|
||||
"DE.ApplicationController.unsupportedBrowserErrorText": "O seu navegador não é suportado.",
|
||||
"DE.ApplicationController.waitText": "Aguarde…",
|
||||
"DE.ApplicationView.txtDownload": "Descarregar",
|
||||
"DE.ApplicationView.txtDownloadDocx": "Descarregar como docx",
|
||||
"DE.ApplicationView.txtDownloadPdf": "Descarregar como pdf",
|
||||
"DE.ApplicationView.txtEmbed": "Incorporar",
|
||||
"DE.ApplicationView.txtFileLocation": "Abrir localização do ficheiro",
|
||||
"DE.ApplicationView.txtFullScreen": "Ecrã inteiro",
|
||||
"DE.ApplicationView.txtPrint": "Imprimir",
|
||||
"DE.ApplicationView.txtShare": "Partilhar"
|
||||
}
|
50
apps/documenteditor/embed/locale/zh-TW.json
Normal file
50
apps/documenteditor/embed/locale/zh-TW.json
Normal file
|
@ -0,0 +1,50 @@
|
|||
{
|
||||
"common.view.modals.txtCopy": "複製到剪貼板",
|
||||
"common.view.modals.txtEmbed": "嵌入",
|
||||
"common.view.modals.txtHeight": "高度",
|
||||
"common.view.modals.txtShare": "分享連結",
|
||||
"common.view.modals.txtWidth": "寬度",
|
||||
"DE.ApplicationController.convertationErrorText": "轉換失敗。",
|
||||
"DE.ApplicationController.convertationTimeoutText": "轉換逾時。",
|
||||
"DE.ApplicationController.criticalErrorTitle": "錯誤",
|
||||
"DE.ApplicationController.downloadErrorText": "下載失敗",
|
||||
"DE.ApplicationController.downloadTextText": "文件下載中...",
|
||||
"DE.ApplicationController.errorAccessDeny": "您嘗試進行未被授權的動作<br> 請聯繫您的文件主機(Document Server)的管理者。",
|
||||
"DE.ApplicationController.errorDefaultMessage": "錯誤編號:%1",
|
||||
"DE.ApplicationController.errorEditingDownloadas": "在處理文件檔期間發生錯誤。<br>使用“下載為...”選項將文件備份副本儲存到硬碟。",
|
||||
"DE.ApplicationController.errorFilePassProtect": "該文件受密碼保護,無法打開。",
|
||||
"DE.ApplicationController.errorFileSizeExceed": "此檔案超過這主機設定的限制的大小<br>想了解更多資訊,請聯絡您的文件服務主機(Document Server)的管理者。",
|
||||
"DE.ApplicationController.errorForceSave": "儲存文件檔時發生錯誤。請使用 “下載為” 選項將文件存到硬碟,或稍後再試。",
|
||||
"DE.ApplicationController.errorLoadingFont": "字體未載入。<br>請聯絡文件服務(Document Server)管理員。",
|
||||
"DE.ApplicationController.errorSubmit": "傳送失敗",
|
||||
"DE.ApplicationController.errorTokenExpire": "此文件安全憑證(Security Token)已過期。<br>請與您的Document Server管理員聯繫。",
|
||||
"DE.ApplicationController.errorUpdateVersionOnDisconnect": "網路連接已恢復,文件版本已更改。<br>在繼續工作之前,您需要下載文件或複制其內容以確保沒有資料遺失,然後重新整裡此頁面。",
|
||||
"DE.ApplicationController.errorUserDrop": "目前無法存取該文件。",
|
||||
"DE.ApplicationController.notcriticalErrorTitle": "警告",
|
||||
"DE.ApplicationController.openErrorText": "開啟檔案時發生錯誤",
|
||||
"DE.ApplicationController.scriptLoadError": "連接速度太慢,某些組件無法載入。請重新整理頁面。",
|
||||
"DE.ApplicationController.textAnonymous": "匿名",
|
||||
"DE.ApplicationController.textClear": "清除所有段落",
|
||||
"DE.ApplicationController.textGotIt": "我瞭解了",
|
||||
"DE.ApplicationController.textGuest": "訪客",
|
||||
"DE.ApplicationController.textLoadingDocument": "載入文件中",
|
||||
"DE.ApplicationController.textNext": "下一欄位",
|
||||
"DE.ApplicationController.textOf": "於",
|
||||
"DE.ApplicationController.textRequired": "填寫所有必填欄位以發送表單。",
|
||||
"DE.ApplicationController.textSubmit": "傳送",
|
||||
"DE.ApplicationController.textSubmited": "<b>表格傳送成功</b><br>點此關閉提示",
|
||||
"DE.ApplicationController.txtClose": "結束",
|
||||
"DE.ApplicationController.txtEmpty": "(空)",
|
||||
"DE.ApplicationController.txtPressLink": "按Ctrl並點擊連結",
|
||||
"DE.ApplicationController.unknownErrorText": "未知錯誤。",
|
||||
"DE.ApplicationController.unsupportedBrowserErrorText": "不支援您的瀏覽器",
|
||||
"DE.ApplicationController.waitText": "請耐心等待...",
|
||||
"DE.ApplicationView.txtDownload": "下載",
|
||||
"DE.ApplicationView.txtDownloadDocx": "下載及儲存為docx",
|
||||
"DE.ApplicationView.txtDownloadPdf": "下載及儲存為pdf",
|
||||
"DE.ApplicationView.txtEmbed": "嵌入",
|
||||
"DE.ApplicationView.txtFileLocation": "打開文件所在位置",
|
||||
"DE.ApplicationView.txtFullScreen": "全螢幕",
|
||||
"DE.ApplicationView.txtPrint": "列印",
|
||||
"DE.ApplicationView.txtShare": "分享"
|
||||
}
|
171
apps/documenteditor/forms/locale/pt-PT.json
Normal file
171
apps/documenteditor/forms/locale/pt-PT.json
Normal file
|
@ -0,0 +1,171 @@
|
|||
{
|
||||
"Common.UI.Calendar.textApril": "Abril",
|
||||
"Common.UI.Calendar.textAugust": "Agosto",
|
||||
"Common.UI.Calendar.textDecember": "Dezembro",
|
||||
"Common.UI.Calendar.textFebruary": "Fevereiro",
|
||||
"Common.UI.Calendar.textJanuary": "Janeiro",
|
||||
"Common.UI.Calendar.textJuly": "Julho",
|
||||
"Common.UI.Calendar.textJune": "Junho",
|
||||
"Common.UI.Calendar.textMarch": "Março",
|
||||
"Common.UI.Calendar.textMay": "Maio",
|
||||
"Common.UI.Calendar.textMonths": "Meses",
|
||||
"Common.UI.Calendar.textNovember": "Novembro",
|
||||
"Common.UI.Calendar.textOctober": "Outubro",
|
||||
"Common.UI.Calendar.textSeptember": "Setembro",
|
||||
"Common.UI.Calendar.textShortApril": "Abr",
|
||||
"Common.UI.Calendar.textShortAugust": "Ago",
|
||||
"Common.UI.Calendar.textShortDecember": "Dez",
|
||||
"Common.UI.Calendar.textShortFebruary": "Fev",
|
||||
"Common.UI.Calendar.textShortFriday": "Sex",
|
||||
"Common.UI.Calendar.textShortJanuary": "Jan",
|
||||
"Common.UI.Calendar.textShortJuly": "Jul",
|
||||
"Common.UI.Calendar.textShortJune": "Jun",
|
||||
"Common.UI.Calendar.textShortMarch": "Mar",
|
||||
"Common.UI.Calendar.textShortMay": "Mai",
|
||||
"Common.UI.Calendar.textShortMonday": "Seg",
|
||||
"Common.UI.Calendar.textShortNovember": "Nov",
|
||||
"Common.UI.Calendar.textShortOctober": "Out",
|
||||
"Common.UI.Calendar.textShortSaturday": "Sáb",
|
||||
"Common.UI.Calendar.textShortSeptember": "Set",
|
||||
"Common.UI.Calendar.textShortSunday": "Dom",
|
||||
"Common.UI.Calendar.textShortThursday": "Qui",
|
||||
"Common.UI.Calendar.textShortTuesday": "Ter",
|
||||
"Common.UI.Calendar.textShortWednesday": "Qua",
|
||||
"Common.UI.Calendar.textYears": "Anos",
|
||||
"Common.UI.Themes.txtThemeClassicLight": "Clássico claro",
|
||||
"Common.UI.Themes.txtThemeDark": "Escuro",
|
||||
"Common.UI.Themes.txtThemeLight": "Claro",
|
||||
"Common.UI.Window.cancelButtonText": "Cancelar",
|
||||
"Common.UI.Window.closeButtonText": "Fechar",
|
||||
"Common.UI.Window.noButtonText": "Não",
|
||||
"Common.UI.Window.okButtonText": "OK",
|
||||
"Common.UI.Window.textConfirmation": "Confirmação",
|
||||
"Common.UI.Window.textDontShow": "Não mostrar esta mensagem novamente",
|
||||
"Common.UI.Window.textError": "Erro",
|
||||
"Common.UI.Window.textInformation": "Informação",
|
||||
"Common.UI.Window.textWarning": "Aviso",
|
||||
"Common.UI.Window.yesButtonText": "Sim",
|
||||
"Common.Views.CopyWarningDialog.textDontShow": "Não mostrar esta mensagem novamente",
|
||||
"Common.Views.CopyWarningDialog.textMsg": "As ações de copiar, cortar e colar usando as ações do menu de contexto serão realizadas apenas neste separador do editor.<br><br>Para copiar ou colar de ou para aplicações fora do separador do editor, use as seguintes combinações de teclas:",
|
||||
"Common.Views.CopyWarningDialog.textTitle": "Ações de copiar, cortar e colar",
|
||||
"Common.Views.CopyWarningDialog.textToCopy": "para Copiar",
|
||||
"Common.Views.CopyWarningDialog.textToCut": "para Cortar",
|
||||
"Common.Views.CopyWarningDialog.textToPaste": "para Colar",
|
||||
"Common.Views.EmbedDialog.textHeight": "Altura",
|
||||
"Common.Views.EmbedDialog.textTitle": "Incorporar",
|
||||
"Common.Views.EmbedDialog.textWidth": "Largura",
|
||||
"Common.Views.EmbedDialog.txtCopy": "Copiar para a área de transferência",
|
||||
"Common.Views.EmbedDialog.warnCopy": "Erro do navegador! Use a tecla de atalho [Ctrl] + [C]",
|
||||
"Common.Views.ImageFromUrlDialog.textUrl": "Colar um URL de imagem:",
|
||||
"Common.Views.ImageFromUrlDialog.txtEmpty": "Este campo é obrigatório",
|
||||
"Common.Views.ImageFromUrlDialog.txtNotUrl": "Este campo deve ser um URL no formato \"http://www.example.com\"",
|
||||
"Common.Views.OpenDialog.closeButtonText": "Fechar ficheiro",
|
||||
"Common.Views.OpenDialog.txtEncoding": "Codificação",
|
||||
"Common.Views.OpenDialog.txtIncorrectPwd": "A palavra-passe está incorreta.",
|
||||
"Common.Views.OpenDialog.txtOpenFile": "Introduza a palavra-passe para abrir o ficheiro",
|
||||
"Common.Views.OpenDialog.txtPassword": "Palavra-passe",
|
||||
"Common.Views.OpenDialog.txtPreview": "Pré-visualizar",
|
||||
"Common.Views.OpenDialog.txtProtected": "Assim que introduzir a palavra-passe e abrir o ficheiro, a palavra-passe atual será reposta.",
|
||||
"Common.Views.OpenDialog.txtTitle": "Escolha opções para %1",
|
||||
"Common.Views.OpenDialog.txtTitleProtected": "Ficheiro protegido",
|
||||
"Common.Views.SaveAsDlg.textLoading": "A carregar",
|
||||
"Common.Views.SaveAsDlg.textTitle": "Pasta para guardar",
|
||||
"Common.Views.SelectFileDlg.textLoading": "A carregar",
|
||||
"Common.Views.SelectFileDlg.textTitle": "Selecionar fonte de dados",
|
||||
"Common.Views.ShareDialog.textTitle": "Partilhar ligação",
|
||||
"Common.Views.ShareDialog.txtCopy": "Copiar para a área de transferência",
|
||||
"Common.Views.ShareDialog.warnCopy": "Erro do navegador! Use a tecla de atalho [Ctrl] + [C]",
|
||||
"DE.Controllers.ApplicationController.convertationErrorText": "Falha na conversão.",
|
||||
"DE.Controllers.ApplicationController.convertationTimeoutText": "Excedeu o tempo limite de conversão.",
|
||||
"DE.Controllers.ApplicationController.criticalErrorTitle": "Erro",
|
||||
"DE.Controllers.ApplicationController.downloadErrorText": "Falha ao descarregar.",
|
||||
"DE.Controllers.ApplicationController.downloadTextText": "A descarregar documento...",
|
||||
"DE.Controllers.ApplicationController.errorAccessDeny": "Está a tentar executar uma ação para a qual não tem permissões.<br>Por favor contacte o administrador do servidor de documentos.",
|
||||
"DE.Controllers.ApplicationController.errorBadImageUrl": "O URL da imagem está incorreto",
|
||||
"DE.Controllers.ApplicationController.errorConnectToServer": "Não foi possível guardar o documento. Verifique as definições de ligação ou contacte o administrador.<br>Quando clicar no botão 'OK', ser-lhe-á pedido para descarregar o documento.",
|
||||
"DE.Controllers.ApplicationController.errorDataEncrypted": "Foram recebidas alterações cifradas que não puderam ser decifradas.",
|
||||
"DE.Controllers.ApplicationController.errorDefaultMessage": "Código do erro: %1",
|
||||
"DE.Controllers.ApplicationController.errorEditingDownloadas": "Ocorreu um erro ao trabalhar no documento.<br>Utilize a opção 'Descarregar como...' para guardar uma cópia do ficheiro no computador.",
|
||||
"DE.Controllers.ApplicationController.errorEditingSaveas": "Ocorreu um erro ao trabalhar no documento.<br>Utilize a opção 'Guardar como...' para guardar uma cópia do ficheiro no seu computador.",
|
||||
"DE.Controllers.ApplicationController.errorFilePassProtect": "O ficheiro está protegido por palavra-passe e não pode ser aberto.",
|
||||
"DE.Controllers.ApplicationController.errorFileSizeExceed": "O tamanho do ficheiro excede o limite do servidor.<br>Contacte o administrador do servidor de documentos para mais detalhes.",
|
||||
"DE.Controllers.ApplicationController.errorForceSave": "Ocorreu um erro ao guardar o ficheiro. Utilize a opção 'Descarregar como' para guardar o ficheiro no computador ou tente novamente mais tarde.",
|
||||
"DE.Controllers.ApplicationController.errorLoadingFont": "Os tipos de letra não foram carregados.<br>Contacte o administrador do servidor de documentos.",
|
||||
"DE.Controllers.ApplicationController.errorServerVersion": "A versão do editor foi atualizada. A página será recarregada para aplicar as alterações.",
|
||||
"DE.Controllers.ApplicationController.errorSessionAbsolute": "A sessão de edição expirou. Tente recarregar a página.",
|
||||
"DE.Controllers.ApplicationController.errorSessionIdle": "O documento não foi editado durante muito tempo. Por favor, recarregue a página.",
|
||||
"DE.Controllers.ApplicationController.errorSessionToken": "A ligação ao servidor foi interrompida. Tente recarregar a página.",
|
||||
"DE.Controllers.ApplicationController.errorSubmit": "Falha no envio.",
|
||||
"DE.Controllers.ApplicationController.errorToken": "O token do documento não está correctamente formado.<br>Por favor contacte o seu administrador do Servidor de Documentos.",
|
||||
"DE.Controllers.ApplicationController.errorTokenExpire": "O token de segurança do documento expirou.<br>Entre em contacto com o administrador do Servidor de Documentos.",
|
||||
"DE.Controllers.ApplicationController.errorUpdateVersion": "A versão do ficheiro foi alterada. A página será recarregada.",
|
||||
"DE.Controllers.ApplicationController.errorUpdateVersionOnDisconnect": "A ligação à Internet foi restaurada e a versão do ficheiro alterada.<br>Antes de continuar o seu trabalho, descarregue o ficheiro ou copie o seu conteúdo para ter a certeza de que não perde os seus elementos e recarregue a página.",
|
||||
"DE.Controllers.ApplicationController.errorUserDrop": "De momento, não é possível aceder ao ficheiro.",
|
||||
"DE.Controllers.ApplicationController.errorViewerDisconnect": "Ligação perdida. Ainda pode ver o documento mas<br>não o conseguirá descarregar até que a ligação seja restaurada e a página recarregada.",
|
||||
"DE.Controllers.ApplicationController.mniImageFromFile": "Imagem de um ficheiro",
|
||||
"DE.Controllers.ApplicationController.mniImageFromStorage": "Imagem de um armazenamento",
|
||||
"DE.Controllers.ApplicationController.mniImageFromUrl": "Imagem de um URL",
|
||||
"DE.Controllers.ApplicationController.notcriticalErrorTitle": "Aviso",
|
||||
"DE.Controllers.ApplicationController.openErrorText": "Ocorreu um erro ao abrir o ficheiro.",
|
||||
"DE.Controllers.ApplicationController.saveErrorText": "Ocorreu um erro ao guardar o ficheiro.",
|
||||
"DE.Controllers.ApplicationController.saveErrorTextDesktop": "Este ficheiro não pode ser guardado ou criado.<br>Os motivos podem ser: <br>1. O ficheiro é apenas de leitura. <br>2. O ficheiro está a ser editado por outro utilizador.<br>3. O disco está cheio ou corrompido.",
|
||||
"DE.Controllers.ApplicationController.scriptLoadError": "A ligação está muito lenta e alguns dos componentes não foram carregados. Tente recarregar a página.",
|
||||
"DE.Controllers.ApplicationController.textAnonymous": "Anónimo",
|
||||
"DE.Controllers.ApplicationController.textBuyNow": "Visitar website",
|
||||
"DE.Controllers.ApplicationController.textCloseTip": "Clique para fechar a dica.",
|
||||
"DE.Controllers.ApplicationController.textContactUs": "Contacte a equipa comercial",
|
||||
"DE.Controllers.ApplicationController.textGotIt": "Percebi",
|
||||
"DE.Controllers.ApplicationController.textGuest": "Convidado",
|
||||
"DE.Controllers.ApplicationController.textLoadingDocument": "A carregar documento",
|
||||
"DE.Controllers.ApplicationController.textNoLicenseTitle": "Limite de licença atingido",
|
||||
"DE.Controllers.ApplicationController.textOf": "de",
|
||||
"DE.Controllers.ApplicationController.textRequired": "Preencha todos os campos obrigatórios para enviar o formulário.",
|
||||
"DE.Controllers.ApplicationController.textSaveAs": "Guardar como PDF",
|
||||
"DE.Controllers.ApplicationController.textSaveAsDesktop": "Guardar como...",
|
||||
"DE.Controllers.ApplicationController.textSubmited": "<b>Formulário submetido com êxito</b><br>Clique para fechar a dica",
|
||||
"DE.Controllers.ApplicationController.titleLicenseExp": "Licença expirada",
|
||||
"DE.Controllers.ApplicationController.titleServerVersion": "Editor atualizado",
|
||||
"DE.Controllers.ApplicationController.titleUpdateVersion": "Versão alterada",
|
||||
"DE.Controllers.ApplicationController.txtArt": "O seu texto aqui",
|
||||
"DE.Controllers.ApplicationController.txtChoose": "Escolha um item",
|
||||
"DE.Controllers.ApplicationController.txtClickToLoad": "Clique para carregar a imagem",
|
||||
"DE.Controllers.ApplicationController.txtClose": "Fechar",
|
||||
"DE.Controllers.ApplicationController.txtEmpty": "(Vazio)",
|
||||
"DE.Controllers.ApplicationController.txtEnterDate": "Introduza uma data",
|
||||
"DE.Controllers.ApplicationController.txtPressLink": "Prima CTRL e clique na ligação",
|
||||
"DE.Controllers.ApplicationController.txtUntitled": "Sem título",
|
||||
"DE.Controllers.ApplicationController.unknownErrorText": "Erro desconhecido.",
|
||||
"DE.Controllers.ApplicationController.unsupportedBrowserErrorText": "O seu navegador não é suportado.",
|
||||
"DE.Controllers.ApplicationController.uploadImageExtMessage": "Formato de imagem desconhecido.",
|
||||
"DE.Controllers.ApplicationController.uploadImageSizeMessage": "A imagem é demasiado grande. O tamanho máximo é de 25 MB.",
|
||||
"DE.Controllers.ApplicationController.waitText": "Por favor, aguarde...",
|
||||
"DE.Controllers.ApplicationController.warnLicenseExceeded": "Atingiu o limite de ligações simultâneas a %1 editores. Este documento será aberto no modo de leitura.<br>Contacte o administrador para obter mais detalhes.",
|
||||
"DE.Controllers.ApplicationController.warnLicenseExp": "A sua licença expirou.<br>Deve atualizar a licença e recarregar a página.",
|
||||
"DE.Controllers.ApplicationController.warnLicenseLimitedNoAccess": "Licença expirada.<br>Não pode editar o documento.<br>Por favor contacte o administrador de sistemas.",
|
||||
"DE.Controllers.ApplicationController.warnLicenseLimitedRenewed": "Tem que renovar a sua licença.<br>A edição de documentos está limitada.<br>Contacte o administrador de sistemas para obter acesso completo.",
|
||||
"DE.Controllers.ApplicationController.warnLicenseUsersExceeded": "Atingiu o limite de %1 editores. Contacte o seu administrador para obter detalhes.",
|
||||
"DE.Controllers.ApplicationController.warnNoLicense": "Atingiu o limite de ligações simultâneas a %1 editores. Este documento será aberto no modo de leitura.<br>Contacte a equipa comercial %1 para saber mais sobre os termos de licenciamento.",
|
||||
"DE.Controllers.ApplicationController.warnNoLicenseUsers": "Atingiu o limite de %1 editores. Contacte a equipa comercial %1 para obter mais informações.",
|
||||
"DE.Views.ApplicationView.textClear": "Limpar todos os campos",
|
||||
"DE.Views.ApplicationView.textCopy": "Copiar",
|
||||
"DE.Views.ApplicationView.textCut": "Cortar",
|
||||
"DE.Views.ApplicationView.textFitToPage": "Ajustar à página",
|
||||
"DE.Views.ApplicationView.textFitToWidth": "Ajustar à largura",
|
||||
"DE.Views.ApplicationView.textNext": "Campo seguinte",
|
||||
"DE.Views.ApplicationView.textPaste": "Colar",
|
||||
"DE.Views.ApplicationView.textPrintSel": "Imprimir seleção",
|
||||
"DE.Views.ApplicationView.textRedo": "Refazer",
|
||||
"DE.Views.ApplicationView.textSubmit": "Enviar",
|
||||
"DE.Views.ApplicationView.textUndo": "Desfazer",
|
||||
"DE.Views.ApplicationView.textZoom": "Ampliação",
|
||||
"DE.Views.ApplicationView.txtDarkMode": "Modo escuro",
|
||||
"DE.Views.ApplicationView.txtDownload": "Descarregar",
|
||||
"DE.Views.ApplicationView.txtDownloadDocx": "Descarregar como docx",
|
||||
"DE.Views.ApplicationView.txtDownloadPdf": "Descarregar como pdf",
|
||||
"DE.Views.ApplicationView.txtEmbed": "Incorporar",
|
||||
"DE.Views.ApplicationView.txtFileLocation": "Abrir localização do ficheiro",
|
||||
"DE.Views.ApplicationView.txtFullScreen": "Ecrã completo",
|
||||
"DE.Views.ApplicationView.txtPrint": "Imprimir",
|
||||
"DE.Views.ApplicationView.txtShare": "Compartilhar",
|
||||
"DE.Views.ApplicationView.txtTheme": "Tema da interface"
|
||||
}
|
171
apps/documenteditor/forms/locale/zh-TW.json
Normal file
171
apps/documenteditor/forms/locale/zh-TW.json
Normal file
|
@ -0,0 +1,171 @@
|
|||
{
|
||||
"Common.UI.Calendar.textApril": "四月",
|
||||
"Common.UI.Calendar.textAugust": "八月",
|
||||
"Common.UI.Calendar.textDecember": "十二月",
|
||||
"Common.UI.Calendar.textFebruary": "二月",
|
||||
"Common.UI.Calendar.textJanuary": "一月",
|
||||
"Common.UI.Calendar.textJuly": "七月",
|
||||
"Common.UI.Calendar.textJune": "六月",
|
||||
"Common.UI.Calendar.textMarch": "三月",
|
||||
"Common.UI.Calendar.textMay": "五月",
|
||||
"Common.UI.Calendar.textMonths": "月",
|
||||
"Common.UI.Calendar.textNovember": "十一月",
|
||||
"Common.UI.Calendar.textOctober": "十月",
|
||||
"Common.UI.Calendar.textSeptember": "九月",
|
||||
"Common.UI.Calendar.textShortApril": "四月",
|
||||
"Common.UI.Calendar.textShortAugust": "八月",
|
||||
"Common.UI.Calendar.textShortDecember": "十二月",
|
||||
"Common.UI.Calendar.textShortFebruary": "二月",
|
||||
"Common.UI.Calendar.textShortFriday": "Fr",
|
||||
"Common.UI.Calendar.textShortJanuary": "一月",
|
||||
"Common.UI.Calendar.textShortJuly": "七月",
|
||||
"Common.UI.Calendar.textShortJune": "六月",
|
||||
"Common.UI.Calendar.textShortMarch": "三月",
|
||||
"Common.UI.Calendar.textShortMay": "五月",
|
||||
"Common.UI.Calendar.textShortMonday": "Mo",
|
||||
"Common.UI.Calendar.textShortNovember": "十一月",
|
||||
"Common.UI.Calendar.textShortOctober": "十月",
|
||||
"Common.UI.Calendar.textShortSaturday": "Sa",
|
||||
"Common.UI.Calendar.textShortSeptember": "九月",
|
||||
"Common.UI.Calendar.textShortSunday": "Su",
|
||||
"Common.UI.Calendar.textShortThursday": "th",
|
||||
"Common.UI.Calendar.textShortTuesday": "Tu",
|
||||
"Common.UI.Calendar.textShortWednesday": "We",
|
||||
"Common.UI.Calendar.textYears": "年",
|
||||
"Common.UI.Themes.txtThemeClassicLight": "傳統亮色",
|
||||
"Common.UI.Themes.txtThemeDark": "暗",
|
||||
"Common.UI.Themes.txtThemeLight": "光",
|
||||
"Common.UI.Window.cancelButtonText": "取消",
|
||||
"Common.UI.Window.closeButtonText": "關閉",
|
||||
"Common.UI.Window.noButtonText": "沒有",
|
||||
"Common.UI.Window.okButtonText": "確定",
|
||||
"Common.UI.Window.textConfirmation": "確認",
|
||||
"Common.UI.Window.textDontShow": "不再顯示此消息",
|
||||
"Common.UI.Window.textError": "錯誤",
|
||||
"Common.UI.Window.textInformation": "資訊",
|
||||
"Common.UI.Window.textWarning": "警告",
|
||||
"Common.UI.Window.yesButtonText": "是",
|
||||
"Common.Views.CopyWarningDialog.textDontShow": "不再顯示此消息",
|
||||
"Common.Views.CopyWarningDialog.textMsg": "使用右鍵選單動作的複製、剪下和貼上的動作將只在此編輯者工作表中執行。<br><br>要從編輯者工作表之外的應用程序中複製或貼上,請使用以下鍵盤組合:",
|
||||
"Common.Views.CopyWarningDialog.textTitle": "複製, 剪下, 與貼上之動作",
|
||||
"Common.Views.CopyWarningDialog.textToCopy": "複印",
|
||||
"Common.Views.CopyWarningDialog.textToCut": "切",
|
||||
"Common.Views.CopyWarningDialog.textToPaste": "粘貼",
|
||||
"Common.Views.EmbedDialog.textHeight": "\n高度",
|
||||
"Common.Views.EmbedDialog.textTitle": "嵌入",
|
||||
"Common.Views.EmbedDialog.textWidth": "寬度",
|
||||
"Common.Views.EmbedDialog.txtCopy": "複製到剪貼板",
|
||||
"Common.Views.EmbedDialog.warnCopy": "瀏覽器錯誤!使用鍵盤快捷鍵[Ctrl] + [C]",
|
||||
"Common.Views.ImageFromUrlDialog.textUrl": "粘貼圖片網址:",
|
||||
"Common.Views.ImageFromUrlDialog.txtEmpty": "這是必填欄",
|
||||
"Common.Views.ImageFromUrlDialog.txtNotUrl": "此段落應為\"http://www.example.com\"格式的網址",
|
||||
"Common.Views.OpenDialog.closeButtonText": "關閉檔案",
|
||||
"Common.Views.OpenDialog.txtEncoding": "編碼",
|
||||
"Common.Views.OpenDialog.txtIncorrectPwd": "密碼錯誤。",
|
||||
"Common.Views.OpenDialog.txtOpenFile": "輸入檔案密碼",
|
||||
"Common.Views.OpenDialog.txtPassword": "密碼",
|
||||
"Common.Views.OpenDialog.txtPreview": "預覽",
|
||||
"Common.Views.OpenDialog.txtProtected": "輸入密碼並打開文件後,該文件的當前密碼將被重置。",
|
||||
"Common.Views.OpenDialog.txtTitle": "選擇%1個選項",
|
||||
"Common.Views.OpenDialog.txtTitleProtected": "受保護的文件",
|
||||
"Common.Views.SaveAsDlg.textLoading": "載入中",
|
||||
"Common.Views.SaveAsDlg.textTitle": "儲存文件夾",
|
||||
"Common.Views.SelectFileDlg.textLoading": "載入中",
|
||||
"Common.Views.SelectFileDlg.textTitle": "選擇資料來源",
|
||||
"Common.Views.ShareDialog.textTitle": "分享連結",
|
||||
"Common.Views.ShareDialog.txtCopy": "複製到剪貼板",
|
||||
"Common.Views.ShareDialog.warnCopy": "瀏覽器錯誤!使用鍵盤快捷鍵[Ctrl] + [C]",
|
||||
"DE.Controllers.ApplicationController.convertationErrorText": "轉換失敗。",
|
||||
"DE.Controllers.ApplicationController.convertationTimeoutText": "轉換逾時。",
|
||||
"DE.Controllers.ApplicationController.criticalErrorTitle": "錯誤",
|
||||
"DE.Controllers.ApplicationController.downloadErrorText": "下載失敗",
|
||||
"DE.Controllers.ApplicationController.downloadTextText": "文件下載中...",
|
||||
"DE.Controllers.ApplicationController.errorAccessDeny": "您嘗試進行未被授權的動作<br> 請聯繫您的文件主機(Document Server)的管理者。",
|
||||
"DE.Controllers.ApplicationController.errorBadImageUrl": "不正確的圖像 URL",
|
||||
"DE.Controllers.ApplicationController.errorConnectToServer": "無法儲存該文檔。請檢查連接設置或與管理員聯繫。<br>單擊“確定”按鈕時,系統將提示您下載文檔。",
|
||||
"DE.Controllers.ApplicationController.errorDataEncrypted": "已收到加密的更改,無法解密。",
|
||||
"DE.Controllers.ApplicationController.errorDefaultMessage": "錯誤編號:%1",
|
||||
"DE.Controllers.ApplicationController.errorEditingDownloadas": "在處理文檔期間發生錯誤。<br>使用“下載為...”選項將文件備份副本儲存到電腦硬碟中。",
|
||||
"DE.Controllers.ApplicationController.errorEditingSaveas": "使用文檔期間發生錯誤。<br>使用“另存為...”選項將文件備份副本儲存到電腦硬碟中。",
|
||||
"DE.Controllers.ApplicationController.errorFilePassProtect": "該文件受密碼保護,無法打開。",
|
||||
"DE.Controllers.ApplicationController.errorFileSizeExceed": "此檔案超過這主機設定的限制的大小<br>想了解更多資訊,請聯絡您的文件服務主機(Document Server)的管理者。",
|
||||
"DE.Controllers.ApplicationController.errorForceSave": "儲存文件時發生錯誤。請使用“下載為”選項將文件儲存到電腦機硬碟中,或稍後再試。",
|
||||
"DE.Controllers.ApplicationController.errorLoadingFont": "字體未載入。<br>請聯絡文件服務(Document Server)管理員。",
|
||||
"DE.Controllers.ApplicationController.errorServerVersion": "編輯器版本已更新。該頁面將被重新加載以應用更改。",
|
||||
"DE.Controllers.ApplicationController.errorSessionAbsolute": "此文件編輯的會期已經過時。請重新載入此頁面。",
|
||||
"DE.Controllers.ApplicationController.errorSessionIdle": "此文件已經在編輯狀態有很長時間, 請重新載入此頁面。",
|
||||
"DE.Controllers.ApplicationController.errorSessionToken": "與服務器的連接已中斷。請重新加載頁面。",
|
||||
"DE.Controllers.ApplicationController.errorSubmit": "傳送失敗",
|
||||
"DE.Controllers.ApplicationController.errorToken": "文檔安全令牌的格式不正確。<br>請與您的Document Server管理員聯繫。",
|
||||
"DE.Controllers.ApplicationController.errorTokenExpire": "此文件安全憑證(Security Token)已過期。<br>請與您的Document Server管理員聯繫。",
|
||||
"DE.Controllers.ApplicationController.errorUpdateVersion": "文件版本已更改。該頁面將重新加載。",
|
||||
"DE.Controllers.ApplicationController.errorUpdateVersionOnDisconnect": "網路連接已恢復,文件版本已更改。<br>在繼續工作之前,您需要下載文件或複制其內容以確保沒有丟失,然後重新加載此頁面。",
|
||||
"DE.Controllers.ApplicationController.errorUserDrop": "目前無法存取該文件。",
|
||||
"DE.Controllers.ApplicationController.errorViewerDisconnect": "連線失敗。您仍然可以查看該檔案,<br>但在恢復連接並重新加載頁面之前將無法下載或列印該檔案。",
|
||||
"DE.Controllers.ApplicationController.mniImageFromFile": "圖片來自文件",
|
||||
"DE.Controllers.ApplicationController.mniImageFromStorage": "來自存儲的圖像",
|
||||
"DE.Controllers.ApplicationController.mniImageFromUrl": "來自網址的圖片",
|
||||
"DE.Controllers.ApplicationController.notcriticalErrorTitle": "警告",
|
||||
"DE.Controllers.ApplicationController.openErrorText": "開啟檔案時發生錯誤",
|
||||
"DE.Controllers.ApplicationController.saveErrorText": "儲存檔案時發生錯誤",
|
||||
"DE.Controllers.ApplicationController.saveErrorTextDesktop": "無法存檔或新增此文件。<br>可能的原因是:<br> 1。該文件是唯獨模式的。 <br> 2。該文件正在由其他帳戶編輯。 <br> 3。磁碟已滿或損壞。",
|
||||
"DE.Controllers.ApplicationController.scriptLoadError": "連接速度太慢,某些組件無法加載。請重新加載頁面。",
|
||||
"DE.Controllers.ApplicationController.textAnonymous": "匿名",
|
||||
"DE.Controllers.ApplicationController.textBuyNow": "訪問網站",
|
||||
"DE.Controllers.ApplicationController.textCloseTip": "點擊以關閉提示",
|
||||
"DE.Controllers.ApplicationController.textContactUs": "聯絡銷售人員",
|
||||
"DE.Controllers.ApplicationController.textGotIt": "我瞭解了",
|
||||
"DE.Controllers.ApplicationController.textGuest": "來賓",
|
||||
"DE.Controllers.ApplicationController.textLoadingDocument": "載入文件",
|
||||
"DE.Controllers.ApplicationController.textNoLicenseTitle": "達到許可限制",
|
||||
"DE.Controllers.ApplicationController.textOf": "於",
|
||||
"DE.Controllers.ApplicationController.textRequired": "填寫所有必填欄位以發送表單。",
|
||||
"DE.Controllers.ApplicationController.textSaveAs": "另存為PDF",
|
||||
"DE.Controllers.ApplicationController.textSaveAsDesktop": "另存新檔",
|
||||
"DE.Controllers.ApplicationController.textSubmited": "<b>表格傳送成功</b><br>點此關閉提示",
|
||||
"DE.Controllers.ApplicationController.titleLicenseExp": "證件過期",
|
||||
"DE.Controllers.ApplicationController.titleServerVersion": "編輯器已更新",
|
||||
"DE.Controllers.ApplicationController.titleUpdateVersion": "版本已更改",
|
||||
"DE.Controllers.ApplicationController.txtArt": "在這輸入文字",
|
||||
"DE.Controllers.ApplicationController.txtChoose": "選擇一個項目",
|
||||
"DE.Controllers.ApplicationController.txtClickToLoad": "點此讀取圖片",
|
||||
"DE.Controllers.ApplicationController.txtClose": "關閉",
|
||||
"DE.Controllers.ApplicationController.txtEmpty": "(空)",
|
||||
"DE.Controllers.ApplicationController.txtEnterDate": "輸入日期",
|
||||
"DE.Controllers.ApplicationController.txtPressLink": "按Ctrl並點擊連結",
|
||||
"DE.Controllers.ApplicationController.txtUntitled": "無標題",
|
||||
"DE.Controllers.ApplicationController.unknownErrorText": "未知錯誤。",
|
||||
"DE.Controllers.ApplicationController.unsupportedBrowserErrorText": "不支援您的瀏覽器",
|
||||
"DE.Controllers.ApplicationController.uploadImageExtMessage": "圖片格式未知。",
|
||||
"DE.Controllers.ApplicationController.uploadImageSizeMessage": "圖像超出最大大小限制。最大大小為25MB。",
|
||||
"DE.Controllers.ApplicationController.waitText": "請耐心等待...",
|
||||
"DE.Controllers.ApplicationController.warnLicenseExceeded": "您的系統已經達到同時編輯連線的 %1 編輯者。只能以檢視模式開啟此文件。<br> 進一步訊息, 請聯繫您的管理者。",
|
||||
"DE.Controllers.ApplicationController.warnLicenseExp": "您的授權證已過期.<br>請更新您的授權證並重新整理頁面。",
|
||||
"DE.Controllers.ApplicationController.warnLicenseLimitedNoAccess": "授權過期<br>您已沒有編輯文件功能的授權<br> 請與您的管理者聯繫。",
|
||||
"DE.Controllers.ApplicationController.warnLicenseLimitedRenewed": "授權證書需要更新<br> 您只有部分的文件編輯功能的存取權限<br>請與您的管理者聯繫來取得完整的存取權限。",
|
||||
"DE.Controllers.ApplicationController.warnLicenseUsersExceeded": "您已達到%1個編輯器的用戶限制。請與您的管理員聯繫以了解更多信息。",
|
||||
"DE.Controllers.ApplicationController.warnNoLicense": "您的系統已經達到同時編輯連線的 %1 編輯者。只能以檢視模式開啟此文件。<br> 請聯繫 %1 銷售團隊來取得個人升級的需求。",
|
||||
"DE.Controllers.ApplicationController.warnNoLicenseUsers": "您已達到%1個編輯器的用戶限制。與%1銷售團隊聯繫以了解個人升級條款。",
|
||||
"DE.Views.ApplicationView.textClear": "清除所有段落",
|
||||
"DE.Views.ApplicationView.textCopy": "複製",
|
||||
"DE.Views.ApplicationView.textCut": "剪下",
|
||||
"DE.Views.ApplicationView.textFitToPage": "切合至頁面",
|
||||
"DE.Views.ApplicationView.textFitToWidth": "切合至寬度",
|
||||
"DE.Views.ApplicationView.textNext": "下一欄位",
|
||||
"DE.Views.ApplicationView.textPaste": "貼上",
|
||||
"DE.Views.ApplicationView.textPrintSel": "列印選擇",
|
||||
"DE.Views.ApplicationView.textRedo": "重做",
|
||||
"DE.Views.ApplicationView.textSubmit": "傳送",
|
||||
"DE.Views.ApplicationView.textUndo": "復原",
|
||||
"DE.Views.ApplicationView.textZoom": "放大",
|
||||
"DE.Views.ApplicationView.txtDarkMode": "夜間模式",
|
||||
"DE.Views.ApplicationView.txtDownload": "下載",
|
||||
"DE.Views.ApplicationView.txtDownloadDocx": "下載及儲存為docx",
|
||||
"DE.Views.ApplicationView.txtDownloadPdf": "下載及儲存為pdf",
|
||||
"DE.Views.ApplicationView.txtEmbed": "嵌入",
|
||||
"DE.Views.ApplicationView.txtFileLocation": "打開文件所在位置",
|
||||
"DE.Views.ApplicationView.txtFullScreen": "全螢幕",
|
||||
"DE.Views.ApplicationView.txtPrint": "打印",
|
||||
"DE.Views.ApplicationView.txtShare": "分享",
|
||||
"DE.Views.ApplicationView.txtTheme": "介面主題"
|
||||
}
|
2854
apps/documenteditor/main/locale/pt-PT.json
Normal file
2854
apps/documenteditor/main/locale/pt-PT.json
Normal file
File diff suppressed because it is too large
Load diff
2857
apps/documenteditor/main/locale/zh-TW.json
Normal file
2857
apps/documenteditor/main/locale/zh-TW.json
Normal file
File diff suppressed because it is too large
Load diff
666
apps/documenteditor/mobile/locale/pt-PT.json
Normal file
666
apps/documenteditor/mobile/locale/pt-PT.json
Normal file
|
@ -0,0 +1,666 @@
|
|||
{
|
||||
"About": {
|
||||
"textAbout": "Acerca",
|
||||
"textAddress": "Endereço",
|
||||
"textBack": "Recuar",
|
||||
"textEmail": "E-mail",
|
||||
"textPoweredBy": "Desenvolvido por",
|
||||
"textTel": "Tel",
|
||||
"textVersion": "Versão"
|
||||
},
|
||||
"Add": {
|
||||
"notcriticalErrorTitle": "Aviso",
|
||||
"textAddLink": "Adicionar ligação",
|
||||
"textAddress": "Endereço",
|
||||
"textBack": "Recuar",
|
||||
"textBelowText": "Abaixo do texto",
|
||||
"textBottomOfPage": "Fundo da página",
|
||||
"textBreak": "Quebra",
|
||||
"textCancel": "Cancelar",
|
||||
"textCenterBottom": "Centrar abaixo",
|
||||
"textCenterTop": "Centrar acima",
|
||||
"textColumnBreak": "Quebra de colunas",
|
||||
"textColumns": "Colunas",
|
||||
"textComment": "Comentário",
|
||||
"textContinuousPage": "Página contínua",
|
||||
"textCurrentPosition": "Posição atual",
|
||||
"textDisplay": "Exibição",
|
||||
"textEmptyImgUrl": "Você precisa especificar uma URL de imagem.",
|
||||
"textEvenPage": "Página par",
|
||||
"textFootnote": "Nota de rodapé",
|
||||
"textFormat": "Formato",
|
||||
"textImage": "Imagem",
|
||||
"textImageURL": "URL da imagem",
|
||||
"textInsert": "Inserir",
|
||||
"textInsertFootnote": "Inserir nota de rodapé",
|
||||
"textInsertImage": "Inserir imagem",
|
||||
"textLeftBottom": "Esquerda inferior",
|
||||
"textLeftTop": "Esquerda superior",
|
||||
"textLink": "Ligação",
|
||||
"textLinkSettings": "Definições da ligação",
|
||||
"textLocation": "Localização",
|
||||
"textNextPage": "Página seguinte",
|
||||
"textOddPage": "Página ímpar",
|
||||
"textOk": "Ok",
|
||||
"textOther": "Outros",
|
||||
"textPageBreak": "Quebra de página",
|
||||
"textPageNumber": "Número de página",
|
||||
"textPictureFromLibrary": "Imagem da biblioteca",
|
||||
"textPictureFromURL": "Imagem de um URL",
|
||||
"textPosition": "Posição",
|
||||
"textRightBottom": "Direita inferior",
|
||||
"textRightTop": "Direita superior",
|
||||
"textRows": "Linhas",
|
||||
"textScreenTip": "Dica no ecrã",
|
||||
"textSectionBreak": "Quebra de secção",
|
||||
"textShape": "Forma",
|
||||
"textStartAt": "Iniciar em",
|
||||
"textTable": "Tabela",
|
||||
"textTableSize": "Tamanho da tabela",
|
||||
"txtNotUrl": "Este campo deve ser um URL no formato \"http://www.exemplo.com\"",
|
||||
"textTableContents": "Table of Contents",
|
||||
"textWithPageNumbers": "With Page Numbers",
|
||||
"textWithBlueLinks": "With Blue Links"
|
||||
},
|
||||
"Common": {
|
||||
"Collaboration": {
|
||||
"notcriticalErrorTitle": "Aviso",
|
||||
"textAccept": "Aceitar",
|
||||
"textAcceptAllChanges": "Aceitar todas as alterações",
|
||||
"textAddComment": "Adicionar comentário",
|
||||
"textAddReply": "Adicionar resposta",
|
||||
"textAllChangesAcceptedPreview": "Todas as alterações aceites (Pré-visualizar)",
|
||||
"textAllChangesEditing": "Todas as alterações (Editar)",
|
||||
"textAllChangesRejectedPreview": "Todas as alterações recusadas (Pré-visualizar)",
|
||||
"textAtLeast": "no mínimo",
|
||||
"textAuto": "auto",
|
||||
"textBack": "Recuar",
|
||||
"textBaseline": "Linha base",
|
||||
"textBold": "Negrito",
|
||||
"textBreakBefore": "Quebra de página antes",
|
||||
"textCancel": "Cancelar",
|
||||
"textCaps": "Tudo em maiúsculas",
|
||||
"textCenter": "Alinhar ao centro",
|
||||
"textChart": "Gráfico",
|
||||
"textCollaboration": "Colaboração",
|
||||
"textColor": "Cor do tipo de letra",
|
||||
"textComments": "Comentários",
|
||||
"textContextual": "Não adicionar intervalo entre parágrafos com o esmo estilo",
|
||||
"textDelete": "Eliminar",
|
||||
"textDeleteComment": "Eliminar comentário",
|
||||
"textDeleted": "Eliminada:",
|
||||
"textDeleteReply": "Eliminar resposta",
|
||||
"textDisplayMode": "Modo de exibição",
|
||||
"textDone": "Feito",
|
||||
"textDStrikeout": "Rasurado duplo",
|
||||
"textEdit": "Editar",
|
||||
"textEditComment": "Editar comentário",
|
||||
"textEditReply": "Editar resposta",
|
||||
"textEditUser": "Utilizadores que estão a editar o ficheiro:",
|
||||
"textEquation": "Equação",
|
||||
"textExact": "exatamente",
|
||||
"textFinal": "Final",
|
||||
"textFirstLine": "Primeira linha",
|
||||
"textFormatted": "Formatado",
|
||||
"textHighlight": "Cor de destaque",
|
||||
"textImage": "Imagem",
|
||||
"textIndentLeft": "Avanço à esquerda",
|
||||
"textIndentRight": "Avanço à direita",
|
||||
"textInserted": "Inserida:",
|
||||
"textItalic": "Itálico",
|
||||
"textJustify": "Alinhar justificado",
|
||||
"textKeepLines": "Manter as linhas juntas",
|
||||
"textKeepNext": "Manter com seguinte",
|
||||
"textLeft": "Alinhar à esquerda",
|
||||
"textLineSpacing": "Espaçamento entre linhas:",
|
||||
"textMarkup": "Marcação",
|
||||
"textMessageDeleteComment": "Tem a certeza de que deseja eliminar este comentário?",
|
||||
"textMessageDeleteReply": "Tem a certeza de que deseja eliminar esta resposta?",
|
||||
"textMultiple": "múltiplo",
|
||||
"textNoBreakBefore": "Sem quebra de página antes",
|
||||
"textNoChanges": "Não existem alterações.",
|
||||
"textNoComments": "Este documento não contém comentários",
|
||||
"textNoContextual": "Adicionar intervalo entre parágrafos com o mesmo estilo",
|
||||
"textNoKeepLines": "Não manter linhas juntas",
|
||||
"textNoKeepNext": "Não manter com seguinte",
|
||||
"textNot": "Não",
|
||||
"textNoWidow": "Não controlar órfãos",
|
||||
"textNum": "Alterar numeração",
|
||||
"textOk": "Ok",
|
||||
"textOriginal": "Original",
|
||||
"textParaDeleted": "Parágrafo Eliminado",
|
||||
"textParaFormatted": "Parágrafo formatado",
|
||||
"textParaInserted": "Parágrafo Inserido",
|
||||
"textParaMoveFromDown": "Movido para Baixo:",
|
||||
"textParaMoveFromUp": "Movido para Cima:",
|
||||
"textParaMoveTo": "Movido:",
|
||||
"textPosition": "Posição",
|
||||
"textReject": "Rejeitar",
|
||||
"textRejectAllChanges": "Rejeitar todas as alterações",
|
||||
"textReopen": "Reabrir",
|
||||
"textResolve": "Resolver",
|
||||
"textReview": "Rever",
|
||||
"textReviewChange": "Rever alteração",
|
||||
"textRight": "Alinhar à direita",
|
||||
"textShape": "Forma",
|
||||
"textShd": "Cor de fundo",
|
||||
"textSmallCaps": "Versaletes",
|
||||
"textSpacing": "Espaçamento",
|
||||
"textSpacingAfter": "Espaçamento depois",
|
||||
"textSpacingBefore": "Espaçamento antes",
|
||||
"textStrikeout": "Rasurado",
|
||||
"textSubScript": "Subscrito",
|
||||
"textSuperScript": "Sobrescrito",
|
||||
"textTableChanged": "As Definições da Tabela foram Alteradas",
|
||||
"textTableRowsAdd": "Linhas de Tabela Adicionadas",
|
||||
"textTableRowsDel": "Linhas de Tabela Eliminadas",
|
||||
"textTabs": "Alterar separadores",
|
||||
"textTrackChanges": "Rastreio de alterações",
|
||||
"textTryUndoRedo": "As funções Desfazer/Refazer estão desativadas no modo de co-edição rápida.",
|
||||
"textUnderline": "Sublinhado",
|
||||
"textUsers": "Utilizadores",
|
||||
"textWidow": "Controlo de órfãos"
|
||||
},
|
||||
"HighlightColorPalette": {
|
||||
"textNoFill": "Sem preenchimento"
|
||||
},
|
||||
"ThemeColorPalette": {
|
||||
"textCustomColors": "Cores personalizadas",
|
||||
"textStandartColors": "Cores padrão",
|
||||
"textThemeColors": "Cores do tema"
|
||||
}
|
||||
},
|
||||
"ContextMenu": {
|
||||
"errorCopyCutPaste": "As ações copiar, cortar e colar através do menu de contexto apenas serão executadas no documento atual.",
|
||||
"menuAddComment": "Adicionar comentário",
|
||||
"menuAddLink": "Adicionar ligação",
|
||||
"menuCancel": "Cancelar",
|
||||
"menuContinueNumbering": "Continuar numeração",
|
||||
"menuDelete": "Eliminar",
|
||||
"menuDeleteTable": "Eliminar tabela",
|
||||
"menuEdit": "Editar",
|
||||
"menuJoinList": "Juntar à lista anterior",
|
||||
"menuMerge": "Mesclar",
|
||||
"menuMore": "Mais",
|
||||
"menuOpenLink": "Abrir ligação",
|
||||
"menuReview": "Rever",
|
||||
"menuReviewChange": "Rever alteração",
|
||||
"menuSeparateList": "Lista distinta",
|
||||
"menuSplit": "Dividir",
|
||||
"menuStartNewList": "Iniciar nova lista",
|
||||
"menuStartNumberingFrom": "Definir valor de numeração",
|
||||
"menuViewComment": "Ver comentário",
|
||||
"textCancel": "Cancelar",
|
||||
"textColumns": "Colunas",
|
||||
"textCopyCutPasteActions": "Ações copiar, cortar e colar",
|
||||
"textDoNotShowAgain": "Não mostrar novamente",
|
||||
"textNumberingValue": "Valor de numeração",
|
||||
"textOk": "Ok",
|
||||
"textRows": "Linhas",
|
||||
"textRefreshEntireTable": "Refresh entire table",
|
||||
"textRefreshPageNumbersOnly": "Refresh page numbers only"
|
||||
},
|
||||
"Edit": {
|
||||
"notcriticalErrorTitle": "Aviso",
|
||||
"textActualSize": "Tamanho real",
|
||||
"textAddCustomColor": "Adicionar cor personalizada",
|
||||
"textAdditional": "Adicional",
|
||||
"textAdditionalFormatting": "Formatação adicional",
|
||||
"textAddress": "Endereço",
|
||||
"textAdvanced": "Avançado",
|
||||
"textAdvancedSettings": "Definições avançadas",
|
||||
"textAfter": "Após",
|
||||
"textAlign": "Alinhar",
|
||||
"textAllCaps": "Tudo em maiúsculas",
|
||||
"textAllowOverlap": "Permitir sobreposição",
|
||||
"textApril": "Abril",
|
||||
"textAugust": "Agosto",
|
||||
"textAuto": "Automático",
|
||||
"textAutomatic": "Automático",
|
||||
"textBack": "Recuar",
|
||||
"textBackground": "Fundo",
|
||||
"textBandedColumn": "Diferenciação de colunas",
|
||||
"textBandedRow": "Diferenciação de linhas",
|
||||
"textBefore": "Antes",
|
||||
"textBehind": "Atrás",
|
||||
"textBorder": "Contorno",
|
||||
"textBringToForeground": "Trazer para primeiro plano",
|
||||
"textBullets": "Marcas",
|
||||
"textBulletsAndNumbers": "Marcas e numeração",
|
||||
"textCellMargins": "Margens da célula",
|
||||
"textChart": "Gráfico",
|
||||
"textClose": "Fechar",
|
||||
"textColor": "Cor",
|
||||
"textContinueFromPreviousSection": "Continuar da secção anterior",
|
||||
"textCustomColor": "Cor personalizada",
|
||||
"textDecember": "Dezembro",
|
||||
"textDesign": "Design",
|
||||
"textDifferentFirstPage": "Primeira página diferente",
|
||||
"textDifferentOddAndEvenPages": "Páginas pares e ímpares diferentes",
|
||||
"textDisplay": "Exibição",
|
||||
"textDistanceFromText": "Distância a partir do texto",
|
||||
"textDoubleStrikethrough": "Rasurado duplo",
|
||||
"textEditLink": "Editar ligação",
|
||||
"textEffects": "Efeitos",
|
||||
"textEmpty": "Vazio",
|
||||
"textEmptyImgUrl": "Você precisa especificar uma URL de imagem.",
|
||||
"textFebruary": "Fevereiro",
|
||||
"textFill": "Preencher",
|
||||
"textFirstColumn": "Primeira coluna",
|
||||
"textFirstLine": "Primeira linha",
|
||||
"textFlow": "Fluxo",
|
||||
"textFontColor": "Cor do tipo de letra",
|
||||
"textFontColors": "Cores do tipo de letra",
|
||||
"textFonts": "Tipos de letra",
|
||||
"textFooter": "Rodapé",
|
||||
"textFr": "Sex",
|
||||
"textHeader": "Cabeçalho",
|
||||
"textHeaderRow": "Linha de cabeçalho",
|
||||
"textHighlightColor": "Cor de destaque",
|
||||
"textHyperlink": "Hiperligação",
|
||||
"textImage": "Imagem",
|
||||
"textImageURL": "URL da imagem",
|
||||
"textInFront": "À frente",
|
||||
"textInline": "Em Linha com o Texto",
|
||||
"textJanuary": "Janeiro",
|
||||
"textJuly": "Julho",
|
||||
"textJune": "Junho",
|
||||
"textKeepLinesTogether": "Manter as linhas juntas",
|
||||
"textKeepWithNext": "Manter com seguinte",
|
||||
"textLastColumn": "Última coluna",
|
||||
"textLetterSpacing": "Espaçamento entre letras",
|
||||
"textLineSpacing": "Espaçamento entre linhas",
|
||||
"textLink": "Ligação",
|
||||
"textLinkSettings": "Definições da ligação",
|
||||
"textLinkToPrevious": "Vincular ao anterior",
|
||||
"textMarch": "Março",
|
||||
"textMay": "Maio",
|
||||
"textMo": "Seg",
|
||||
"textMoveBackward": "Mover para trás",
|
||||
"textMoveForward": "Mover para frente",
|
||||
"textMoveWithText": "Mover com texto",
|
||||
"textNone": "Nenhum",
|
||||
"textNoStyles": "Sem estilos para este tipo de gráficos",
|
||||
"textNotUrl": "Este campo deve ser um URL no formato \"http://www.exemplo.com\"",
|
||||
"textNovember": "Novembro",
|
||||
"textNumbers": "Números",
|
||||
"textOctober": "Outubro",
|
||||
"textOk": "Ok",
|
||||
"textOpacity": "Opacidade",
|
||||
"textOptions": "Opções",
|
||||
"textOrphanControl": "Controlo de órfãos",
|
||||
"textPageBreakBefore": "Quebra de página antes",
|
||||
"textPageNumbering": "Numeração de páginas",
|
||||
"textParagraph": "Parágrafo",
|
||||
"textParagraphStyles": "Estilos de parágrafo",
|
||||
"textPictureFromLibrary": "Imagem da biblioteca",
|
||||
"textPictureFromURL": "Imagem de um URL",
|
||||
"textPt": "pt",
|
||||
"textRemoveChart": "Remover gráfico",
|
||||
"textRemoveImage": "Remover imagem",
|
||||
"textRemoveLink": "Remover ligação",
|
||||
"textRemoveShape": "Remover forma",
|
||||
"textRemoveTable": "Remover tabela",
|
||||
"textReorder": "Reordenar",
|
||||
"textRepeatAsHeaderRow": "Repetir como linha de cabeçalho",
|
||||
"textReplace": "Substituir",
|
||||
"textReplaceImage": "Substituir imagem",
|
||||
"textResizeToFitContent": "Ajustar ao conteúdo",
|
||||
"textSa": "Sáb",
|
||||
"textScreenTip": "Dica no ecrã",
|
||||
"textSelectObjectToEdit": "Selecionar objeto para editar",
|
||||
"textSendToBackground": "Enviar para plano de fundo",
|
||||
"textSeptember": "Setembro",
|
||||
"textSettings": "Configurações",
|
||||
"textShape": "Forma",
|
||||
"textSize": "Tamanho",
|
||||
"textSmallCaps": "Versaletes",
|
||||
"textSpaceBetweenParagraphs": "Espaçamento entre parágrafos",
|
||||
"textSquare": "Quadrado",
|
||||
"textStartAt": "Iniciar em",
|
||||
"textStrikethrough": "Rasurado",
|
||||
"textStyle": "Estilo",
|
||||
"textStyleOptions": "Opções de estilo",
|
||||
"textSu": "Dom",
|
||||
"textSubscript": "Subscrito",
|
||||
"textSuperscript": "Sobrescrito",
|
||||
"textTable": "Tabela",
|
||||
"textTableOptions": "Opções da tabela",
|
||||
"textText": "Texto",
|
||||
"textTh": "Qui",
|
||||
"textThrough": "Através",
|
||||
"textTight": "Justo",
|
||||
"textTopAndBottom": "Parte superior e inferior",
|
||||
"textTotalRow": "Total de linhas",
|
||||
"textTu": "Ter",
|
||||
"textType": "Tipo",
|
||||
"textWe": "Qua",
|
||||
"textWrap": "Moldar",
|
||||
"textTableOfCont": "TOC",
|
||||
"textPageNumbers": "Page Numbers",
|
||||
"textSimple": "Simple",
|
||||
"textRightAlign": "Right Align",
|
||||
"textLeader": "Leader",
|
||||
"textStructure": "Structure",
|
||||
"textRefresh": "Refresh",
|
||||
"textLevels": "Levels",
|
||||
"textRemoveTableContent": "Remove table of content",
|
||||
"textCurrent": "Current",
|
||||
"textOnline": "Online",
|
||||
"textClassic": "Classic",
|
||||
"textDistinctive": "Distinctive",
|
||||
"textCentered": "Centered",
|
||||
"textFormal": "Formal",
|
||||
"textStandard": "Standard",
|
||||
"textModern": "Modern",
|
||||
"textCancel": "Cancel",
|
||||
"textRefreshEntireTable": "Refresh entire table",
|
||||
"textRefreshPageNumbersOnly": "Refresh page numbers only",
|
||||
"textStyles": "Styles",
|
||||
"textAmountOfLevels": "Amount of Levels"
|
||||
},
|
||||
"Error": {
|
||||
"convertationTimeoutText": "Excedeu o tempo limite de conversão.",
|
||||
"criticalErrorExtText": "Clique em \"OK\" para voltar para a lista de documentos.",
|
||||
"criticalErrorTitle": "Erro",
|
||||
"downloadErrorText": "Falha ao descarregar.",
|
||||
"errorAccessDeny": "Está a tentar realizar uma ação para a qual não tem autorização.<br>Por favor, contacte o seu administrador.",
|
||||
"errorBadImageUrl": "URL inválido",
|
||||
"errorConnectToServer": "Não foi possível guardar o documento. Verifique as suas definições de rede ou contacte o administrador.<br>Ao clicar em Aceitar, poderá descarregar o documento.",
|
||||
"errorDatabaseConnection": "Erro externo.<br>Erro de ligação à base de dados. Contacte o suporte.",
|
||||
"errorDataEncrypted": "Foram recebidas alterações cifradas que não puderam ser decifradas.",
|
||||
"errorDataRange": "Intervalo de dados inválido.",
|
||||
"errorDefaultMessage": "Código do erro: %1",
|
||||
"errorEditingDownloadas": "Ocorreu um erro ao trabalhar o documento.<br>Descarregue o documento para guardar uma cópia local.",
|
||||
"errorFilePassProtect": "Este ficheiro está protegido por uma palavra-passe e não foi possível abri-lo. ",
|
||||
"errorFileSizeExceed": "O tamanho do ficheiro excede a limitação máxima do seu servidor.<br>Por favor, contacte o seu administrador.",
|
||||
"errorKeyEncrypt": "Descritor de chave desconhecido",
|
||||
"errorKeyExpire": "Descritor de chave expirado",
|
||||
"errorLoadingFont": "Tipos de letra não carregados.<br>Por favor contacte o administrador do servidor de documentos.",
|
||||
"errorMailMergeLoadFile": "O carregamento falhou",
|
||||
"errorMailMergeSaveFile": "Falha ao unir.",
|
||||
"errorSessionAbsolute": "A sessão de edição de documentos expirou. Por favor, volte a carregar a página.",
|
||||
"errorSessionIdle": "Há muito tempo que o documento não é editado. Por favor, volte a carregar a página.",
|
||||
"errorSessionToken": "A ligação ao servidor foi interrompida. Por favor, volte a carregar a página.",
|
||||
"errorStockChart": "Ordem das linhas incorreta. Para construir um gráfico de cotações, introduza os dados na folha com a seguinte ordem:<br> preço de abertura, preço máximo, preço mínimo, preço de fecho.",
|
||||
"errorUpdateVersionOnDisconnect": "A ligação à Internet foi restaurada e a versão do ficheiro alterada.<br>Antes de continuar o seu trabalho, descarregue o ficheiro ou copie o seu conteúdo para ter a certeza de que não perde os seus elementos e recarregue a página.",
|
||||
"errorUserDrop": "O ficheiro não pode ser acedido de momento.",
|
||||
"errorUsersExceed": "O número de usuários permitidos pelo plano de preços foi excedido",
|
||||
"errorViewerDisconnect": "Ligação perdida. Ainda pode ver o documento mas não será<br>possível descarregar ou imprimir o documento se a ligação não for restaurada e a página recarregada.",
|
||||
"notcriticalErrorTitle": "Aviso",
|
||||
"openErrorText": "Ocorreu um erro ao abrir o ficheiro",
|
||||
"saveErrorText": "Ocorreu um erro ao guardar o ficheiro",
|
||||
"scriptLoadError": "A ligação está demasiado lenta, não foi possível carregar alguns dos componentes. Por favor, recarregue a página. ",
|
||||
"splitDividerErrorText": "O número de linhas tem que ser um divisor de %1",
|
||||
"splitMaxColsErrorText": "O número de colunas tem que ser inferior a %1",
|
||||
"splitMaxRowsErrorText": "O número de linhas tem que ser inferior a %1",
|
||||
"unknownErrorText": "Erro desconhecido.",
|
||||
"uploadImageExtMessage": "Formato de imagem desconhecido.",
|
||||
"uploadImageFileCountMessage": "Nenhuma imagem carregada.",
|
||||
"uploadImageSizeMessage": "A imagem é demasiado grande. O tamanho máximo é de 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."
|
||||
},
|
||||
"LongActions": {
|
||||
"applyChangesTextText": "Carregando dados...",
|
||||
"applyChangesTitleText": "Carregando dados",
|
||||
"downloadMergeText": "A descarregar...",
|
||||
"downloadMergeTitle": "A descarregar",
|
||||
"downloadTextText": "A descarregar documento...",
|
||||
"downloadTitleText": "A descarregar documento",
|
||||
"loadFontsTextText": "Carregando dados...",
|
||||
"loadFontsTitleText": "Carregando dados",
|
||||
"loadFontTextText": "Carregando dados...",
|
||||
"loadFontTitleText": "Carregando dados",
|
||||
"loadImagesTextText": "Carregando imagens...",
|
||||
"loadImagesTitleText": "Carregando imagens",
|
||||
"loadImageTextText": "Carregando imagem...",
|
||||
"loadImageTitleText": "Carregando imagem",
|
||||
"loadingDocumentTextText": "Carregando documento...",
|
||||
"loadingDocumentTitleText": "Carregando documento",
|
||||
"mailMergeLoadFileText": "A carregar origem de dados...",
|
||||
"mailMergeLoadFileTitle": "A carregar origem de dados",
|
||||
"openTextText": "Abrindo documento...",
|
||||
"openTitleText": "Abrindo documento",
|
||||
"printTextText": "Imprimindo documento...",
|
||||
"printTitleText": "Imprimindo documento",
|
||||
"savePreparingText": "A preparar para guardar",
|
||||
"savePreparingTitle": "A preparar para guardar. Por favor aguarde...",
|
||||
"saveTextText": "Salvando documento...",
|
||||
"saveTitleText": "Salvando documento",
|
||||
"sendMergeText": "A enviar combinação...",
|
||||
"sendMergeTitle": "A enviar combinação",
|
||||
"textLoadingDocument": "Carregando documento",
|
||||
"txtEditingMode": "Definir modo de edição...",
|
||||
"uploadImageTextText": "Carregando imagem...",
|
||||
"uploadImageTitleText": "Carregando imagem",
|
||||
"waitText": "Por favor, aguarde..."
|
||||
},
|
||||
"Main": {
|
||||
"criticalErrorTitle": "Erro",
|
||||
"errorAccessDeny": "Está a tentar realizar uma ação para a qual não tem autorização.<br>Por favor, contacte o seu administrador.",
|
||||
"errorOpensource": "Utilizando a versão comunitária gratuita, pode abrir documentos apenas para visualização. Para aceder aos editores da web móvel, é necessária uma licença comercial.",
|
||||
"errorProcessSaveResult": "Salvamento falhou.",
|
||||
"errorServerVersion": "A versão do editor foi atualizada. A página será recarregada para aplicar as alterações.",
|
||||
"errorUpdateVersion": "A versão do arquivo foi alterada. A página será recarregada.",
|
||||
"leavePageText": "Existem alterações não guardadas. Clique 'Ficar na página' para guardar automaticamente. Clique 'Sair da página' para rejeitar todas as alterações.",
|
||||
"notcriticalErrorTitle": "Aviso",
|
||||
"SDK": {
|
||||
" -Section ": "-Secção",
|
||||
"above": "acima",
|
||||
"below": "abaixo",
|
||||
"Caption": "Legenda",
|
||||
"Choose an item": "Escolha um item",
|
||||
"Click to load image": "Clique para carregar a imagem",
|
||||
"Current Document": "Documento atual",
|
||||
"Diagram Title": "Título do gráfico",
|
||||
"endnote text": "Texto da nota final",
|
||||
"Enter a date": "Indique uma data",
|
||||
"Error! Bookmark not defined": "Erro! Marcador não definido.",
|
||||
"Error! Main Document Only": "Erro! Apenas documento principal.",
|
||||
"Error! No text of specified style in document": "Erro! Não existe texto com este estilo no documento.",
|
||||
"Error! Not a valid bookmark self-reference": "Erro! Não é uma auto-referência de marcador válida.",
|
||||
"Even Page ": "Página par",
|
||||
"First Page ": "Primeira página",
|
||||
"Footer": "Rodapé",
|
||||
"footnote text": "Texto da nota de rodapé",
|
||||
"Header": "Cabeçalho",
|
||||
"Heading 1": "Título 1",
|
||||
"Heading 2": "Título 2",
|
||||
"Heading 3": "Título 3",
|
||||
"Heading 4": "Título 4",
|
||||
"Heading 5": "Título 5",
|
||||
"Heading 6": "Título 6",
|
||||
"Heading 7": "Título 7",
|
||||
"Heading 8": "Título 8",
|
||||
"Heading 9": "Título 9",
|
||||
"Hyperlink": "Hiperligação",
|
||||
"Index Too Large": "Índice demasiado grande",
|
||||
"Intense Quote": "Citação forte",
|
||||
"Is Not In Table": "Não é uma tabela",
|
||||
"List Paragraph": "Parágrafo em lista",
|
||||
"Missing Argument": "Argumento em falta",
|
||||
"Missing Operator": "Operador em falta",
|
||||
"No Spacing": "Sem espaçamento",
|
||||
"No table of contents entries found": "Não existem títulos no documento. Aplique um estilo de título ao texto para que este apareça no índice remissivo.",
|
||||
"No table of figures entries found": "Não foi encontrada nenhuma entrada no índice de ilustrações.",
|
||||
"None": "Nenhum",
|
||||
"Normal": "Normal",
|
||||
"Number Too Large To Format": "Número Demasiado Grande para Formatar",
|
||||
"Odd Page ": "Página ímpar",
|
||||
"Quote": "Citação",
|
||||
"Same as Previous": "Igual à anterior",
|
||||
"Series": "Série",
|
||||
"Subtitle": "Subtítulo",
|
||||
"Syntax Error": "Erro de Sintaxe ",
|
||||
"Table Index Cannot be Zero": "O Índice da Tabela Não Pode Ser Zero",
|
||||
"Table of Contents": "Tabela de conteúdos",
|
||||
"table of figures": "Tabela de figuras",
|
||||
"The Formula Not In Table": "A Fórmula Não Está na Tabela",
|
||||
"Title": "Título",
|
||||
"TOC Heading": "Cabeçalho do Índice",
|
||||
"Type equation here": "Introduza a equação aqui",
|
||||
"Undefined Bookmark": "Marcador Não-Definido",
|
||||
"Unexpected End of Formula": "Fim Inesperado da Fórmula",
|
||||
"X Axis": "X Eixo XAS",
|
||||
"Y Axis": "Eixo Y",
|
||||
"Your text here": "O seu texto aqui",
|
||||
"Zero Divide": "Divisão por zero"
|
||||
},
|
||||
"textAnonymous": "Anónimo",
|
||||
"textBuyNow": "Visitar website",
|
||||
"textClose": "Fechar",
|
||||
"textContactUs": "Contacte a equipa comercial",
|
||||
"textCustomLoader": "Desculpe, não tem o direito de mudar o carregador. Contacte o nosso departamento de vendas para obter um orçamento.",
|
||||
"textGuest": "Convidado",
|
||||
"textHasMacros": "O ficheiro contém macros automáticas.<br>Deseja executar as macros?",
|
||||
"textNo": "Não",
|
||||
"textNoLicenseTitle": "Limite de licença atingido",
|
||||
"textNoTextFound": "Texto não encontrado",
|
||||
"textPaidFeature": "Funcionalidade paga",
|
||||
"textRemember": "Memorizar a minha escolha",
|
||||
"textReplaceSkipped": "A substituição foi realizada. {0} ocorrências foram ignoradas.",
|
||||
"textReplaceSuccess": "A pesquisa foi realizada. Ocorrências substituídas: {0}",
|
||||
"textYes": "Sim",
|
||||
"titleLicenseExp": "Licença expirada",
|
||||
"titleServerVersion": "Editor atualizado",
|
||||
"titleUpdateVersion": "Versão alterada",
|
||||
"warnLicenseExceeded": "Atingiu o limite de ligações simultâneas a %1 editores. Este documento será aberto apenas para visualização. Contacte o seu administrador para obter mais informações.",
|
||||
"warnLicenseExp": "A sua licença expirou. Por favor, atualize a sua licença e atualize a página.",
|
||||
"warnLicenseLimitedNoAccess": "La llicència ha caducat. No tens accés a la funció d'edició de documents. Contacta amb el teu administrador.",
|
||||
"warnLicenseLimitedRenewed": "A licença precisa ed ser renovada. Tem acesso limitado à funcionalidade de edição de documentos, .<br>Por favor contacte o seu administrador para ter acesso total",
|
||||
"warnLicenseUsersExceeded": "Atingiu o limite de %1 editores. Contacte o seu administrador para obter detalhes.",
|
||||
"warnNoLicense": "Atingiu o limite de ligações simultâneas a %1 editores. Este documento será aberto apenas para visualização. Contacte a %1 equipa de vendas para consultar os termos de atualização para si.",
|
||||
"warnNoLicenseUsers": "Atingiu o limite de %1 editores. Contacte a equipa comercial %1 para obter mais informações.",
|
||||
"warnProcessRightsChange": "Não tem autorização para editar este ficheiro."
|
||||
},
|
||||
"Settings": {
|
||||
"advDRMOptions": "Ficheiro protegido",
|
||||
"advDRMPassword": "Senha",
|
||||
"advTxtOptions": "Escolher opções TXT",
|
||||
"closeButtonText": "Fechar ficheiro",
|
||||
"notcriticalErrorTitle": "Aviso",
|
||||
"textAbout": "Acerca",
|
||||
"textApplication": "Aplicação",
|
||||
"textApplicationSettings": "Definições da aplicação",
|
||||
"textAuthor": "Autor",
|
||||
"textBack": "Recuar",
|
||||
"textBottom": "Inferior",
|
||||
"textCancel": "Cancelar",
|
||||
"textCaseSensitive": "Diferenciar maiúsculas/minúsculas",
|
||||
"textCentimeter": "Centímetro",
|
||||
"textChooseEncoding": "Escolha a codificação",
|
||||
"textChooseTxtOptions": "Escolher opções TXT",
|
||||
"textCollaboration": "Colaboração",
|
||||
"textColorSchemes": "Esquemas de cor",
|
||||
"textComment": "Comentário",
|
||||
"textComments": "Comentários",
|
||||
"textCommentsDisplay": "Exibição de comentários",
|
||||
"textCreated": "Criado",
|
||||
"textCustomSize": "Tamanho personalizado",
|
||||
"textDisableAll": "Desativar tudo",
|
||||
"textDisableAllMacrosWithNotification": "Desativar todas as macros com notificação",
|
||||
"textDisableAllMacrosWithoutNotification": "Desativar todas as macros sem notificação",
|
||||
"textDocumentInfo": "Informação do documento",
|
||||
"textDocumentSettings": "Definições do documento",
|
||||
"textDocumentTitle": "Título do documento",
|
||||
"textDone": "Feito",
|
||||
"textDownload": "Descarregar",
|
||||
"textDownloadAs": "Descarregar como",
|
||||
"textDownloadRtf": "Se continuar e guardar neste formato é possível perder alguma formatação.<br>Tem a certeza de que quer continuar?",
|
||||
"textDownloadTxt": "Se continuar e guardar neste formato é possível perder alguma formatação.<br>Tem a certeza de que quer continuar?",
|
||||
"textEnableAll": "Ativar tudo",
|
||||
"textEnableAllMacrosWithoutNotification": "Ativar todas as macros sem notificação",
|
||||
"textEncoding": "Codificação",
|
||||
"textFind": "Localizar",
|
||||
"textFindAndReplace": "Localizar e substituir",
|
||||
"textFindAndReplaceAll": "Localizar e substituir tudo",
|
||||
"textFormat": "Formato",
|
||||
"textHelp": "Ajuda",
|
||||
"textHiddenTableBorders": "Ocultar bordas da tabela",
|
||||
"textHighlightResults": "Destacar resultados",
|
||||
"textInch": "Polegada",
|
||||
"textLandscape": "Paisagem",
|
||||
"textLastModified": "Última modificação",
|
||||
"textLastModifiedBy": "Última modificação por",
|
||||
"textLeft": "Esquerda",
|
||||
"textLoading": "Carregando...",
|
||||
"textLocation": "Localização",
|
||||
"textMacrosSettings": "Definições de macros",
|
||||
"textMargins": "Margens",
|
||||
"textMarginsH": "As margens superior e inferior são muito grandes para a altura indicada",
|
||||
"textMarginsW": "As margens direita e esquerda são muito grandes para a largura indicada",
|
||||
"textNo": "Não",
|
||||
"textNoCharacters": "Caracteres não imprimíveis",
|
||||
"textNoTextFound": "Texto não encontrado",
|
||||
"textOk": "Ok",
|
||||
"textOpenFile": "Indique a palavra-passe para abrir o ficheiro",
|
||||
"textOrientation": "Orientação",
|
||||
"textOwner": "Proprietário",
|
||||
"textPages": "Páginas",
|
||||
"textPageSize": "Tamanho da página",
|
||||
"textParagraphs": "Parágrafos",
|
||||
"textPoint": "Ponto",
|
||||
"textPortrait": "Retrato",
|
||||
"textPrint": "Imprimir",
|
||||
"textReaderMode": "Modo de leitura",
|
||||
"textReplace": "Substituir",
|
||||
"textReplaceAll": "Substituir tudo",
|
||||
"textResolvedComments": "Comentários resolvidos",
|
||||
"textRight": "Direita",
|
||||
"textSearch": "Pesquisar",
|
||||
"textSettings": "Configurações",
|
||||
"textShowNotification": "Mostrar notificação",
|
||||
"textSpaces": "Espaços",
|
||||
"textSpellcheck": "Verificação ortográfica",
|
||||
"textStatistic": "Estatística",
|
||||
"textSubject": "Assunto",
|
||||
"textSymbols": "Símbolos",
|
||||
"textTitle": "Título",
|
||||
"textTop": "Parte superior",
|
||||
"textUnitOfMeasurement": "Unidade de medida",
|
||||
"textUploaded": "Carregado",
|
||||
"textWords": "Palavras",
|
||||
"textYes": "Sim",
|
||||
"txtDownloadTxt": "Descarregar TXT",
|
||||
"txtIncorrectPwd": "A Palavra-passe está incorreta",
|
||||
"txtOk": "Ok",
|
||||
"txtProtected": "Assim que introduzir uma palavra-passe e abrir o ficheiro, a palavra-passe atual será redefinida.",
|
||||
"txtScheme1": "Office",
|
||||
"txtScheme10": "Mediana",
|
||||
"txtScheme11": "Metro",
|
||||
"txtScheme12": "Módulo",
|
||||
"txtScheme13": "Opulento",
|
||||
"txtScheme14": "Balcão envidraçado",
|
||||
"txtScheme15": "Origem",
|
||||
"txtScheme16": "Papel",
|
||||
"txtScheme17": "Solstício",
|
||||
"txtScheme18": "Técnica",
|
||||
"txtScheme19": "Viagem",
|
||||
"txtScheme2": "Escala de cinza",
|
||||
"txtScheme20": "Urbano",
|
||||
"txtScheme21": "Verve",
|
||||
"txtScheme22": "Novo Escritório",
|
||||
"txtScheme3": "Ápice",
|
||||
"txtScheme4": "Aspeto",
|
||||
"txtScheme5": "Cívico",
|
||||
"txtScheme6": "Concurso",
|
||||
"txtScheme7": "Equidade",
|
||||
"txtScheme8": "Fluxo",
|
||||
"txtScheme9": "Fundição",
|
||||
"textFastWV": "Fast Web View",
|
||||
"textFeedback": "Feedback & Support",
|
||||
"textPdfTagged": "Tagged PDF",
|
||||
"textPdfVer": "PDF Version",
|
||||
"textNavigation": "Navigation",
|
||||
"textEmptyScreens": "There are no headings in the document. Apply a headings style to the text so that it appeas in the table of cotents.",
|
||||
"textBeginningDocument": "Beginning of document",
|
||||
"textEmptyHeading": "Empty Heading"
|
||||
},
|
||||
"Toolbar": {
|
||||
"dlgLeaveMsgText": "Existem alterações não guardadas. Clique 'Ficar na página' para guardar automaticamente. Clique 'Sair da página' para rejeitar todas as alterações.",
|
||||
"dlgLeaveTitleText": "Saiu da aplicação",
|
||||
"leaveButtonText": "Sair da página",
|
||||
"stayButtonText": "Ficar na página"
|
||||
}
|
||||
}
|
666
apps/documenteditor/mobile/locale/zh-TW.json
Normal file
666
apps/documenteditor/mobile/locale/zh-TW.json
Normal file
|
@ -0,0 +1,666 @@
|
|||
{
|
||||
"About": {
|
||||
"textAbout": "關於",
|
||||
"textAddress": "地址",
|
||||
"textBack": "返回",
|
||||
"textEmail": "電子郵件",
|
||||
"textPoweredBy": "於支援",
|
||||
"textTel": "電話",
|
||||
"textVersion": "版本"
|
||||
},
|
||||
"Add": {
|
||||
"notcriticalErrorTitle": "警告",
|
||||
"textAddLink": "新增連結",
|
||||
"textAddress": "地址",
|
||||
"textBack": "返回",
|
||||
"textBelowText": "下方文字",
|
||||
"textBottomOfPage": "頁底",
|
||||
"textBreak": "換頁",
|
||||
"textCancel": "取消",
|
||||
"textCenterBottom": "置中底部",
|
||||
"textCenterTop": "置中頂部",
|
||||
"textColumnBreak": "分欄符號",
|
||||
"textColumns": "欄",
|
||||
"textComment": "註解",
|
||||
"textContinuousPage": "連續頁面",
|
||||
"textCurrentPosition": "目前位置",
|
||||
"textDisplay": "顯示",
|
||||
"textEmptyImgUrl": "您必須輸入圖檔的URL.",
|
||||
"textEvenPage": "雙數頁",
|
||||
"textFootnote": "註腳",
|
||||
"textFormat": "格式",
|
||||
"textImage": "圖像",
|
||||
"textImageURL": "圖像 URL",
|
||||
"textInsert": "插入",
|
||||
"textInsertFootnote": "插入註腳",
|
||||
"textInsertImage": "插入圖片",
|
||||
"textLeftBottom": "左下",
|
||||
"textLeftTop": "左上",
|
||||
"textLink": "連結",
|
||||
"textLinkSettings": "連結設定",
|
||||
"textLocation": "位置",
|
||||
"textNextPage": "下一頁",
|
||||
"textOddPage": "奇數頁",
|
||||
"textOk": "確定",
|
||||
"textOther": "其它",
|
||||
"textPageBreak": "分頁符",
|
||||
"textPageNumber": "頁碼",
|
||||
"textPictureFromLibrary": "來自圖庫的圖片",
|
||||
"textPictureFromURL": "網址圖片",
|
||||
"textPosition": "位置",
|
||||
"textRightBottom": "右下",
|
||||
"textRightTop": "右上",
|
||||
"textRows": "行列",
|
||||
"textScreenTip": "提示功能",
|
||||
"textSectionBreak": "分節符",
|
||||
"textShape": "形狀",
|
||||
"textStartAt": "開始",
|
||||
"textTable": "表格",
|
||||
"textTableSize": "表格大小",
|
||||
"txtNotUrl": "此字段應為格式為“ http://www.example.com”的URL。",
|
||||
"textTableContents": "Table of Contents",
|
||||
"textWithPageNumbers": "With Page Numbers",
|
||||
"textWithBlueLinks": "With Blue Links"
|
||||
},
|
||||
"Common": {
|
||||
"Collaboration": {
|
||||
"notcriticalErrorTitle": "警告",
|
||||
"textAccept": "同意",
|
||||
"textAcceptAllChanges": "同意所有更改",
|
||||
"textAddComment": "新增註解",
|
||||
"textAddReply": "加入回應",
|
||||
"textAllChangesAcceptedPreview": "更改已全部接受(預覽)",
|
||||
"textAllChangesEditing": "全部的更改(編輯中)",
|
||||
"textAllChangesRejectedPreview": "全部更改被拒絕(預覽)",
|
||||
"textAtLeast": "至少",
|
||||
"textAuto": "自動",
|
||||
"textBack": "返回",
|
||||
"textBaseline": "基準線",
|
||||
"textBold": "粗體",
|
||||
"textBreakBefore": "分頁之前",
|
||||
"textCancel": "取消",
|
||||
"textCaps": "全部大寫",
|
||||
"textCenter": "居中對齊",
|
||||
"textChart": "圖表",
|
||||
"textCollaboration": "共同編輯",
|
||||
"textColor": "字體顏色",
|
||||
"textComments": "註解",
|
||||
"textContextual": "不要在同樣風格的文字段落間增加間隔數值",
|
||||
"textDelete": "刪除",
|
||||
"textDeleteComment": "刪除註解",
|
||||
"textDeleted": "已刪除:",
|
||||
"textDeleteReply": "刪除回覆",
|
||||
"textDisplayMode": "顯示模式",
|
||||
"textDone": "完成",
|
||||
"textDStrikeout": "雙刪除線",
|
||||
"textEdit": "編輯",
|
||||
"textEditComment": "編輯註解",
|
||||
"textEditReply": "編輯回覆",
|
||||
"textEditUser": "正在編輯文件的帳戶:",
|
||||
"textEquation": "公式",
|
||||
"textExact": "準確",
|
||||
"textFinal": "最後",
|
||||
"textFirstLine": "第一行",
|
||||
"textFormatted": "已格式化",
|
||||
"textHighlight": "熒光色選",
|
||||
"textImage": "圖像",
|
||||
"textIndentLeft": "向左內縮",
|
||||
"textIndentRight": "向右內縮",
|
||||
"textInserted": "已插入:",
|
||||
"textItalic": "斜體",
|
||||
"textJustify": "對齊",
|
||||
"textKeepLines": "保持線條一致",
|
||||
"textKeepNext": "跟著下一個",
|
||||
"textLeft": "對齊左側",
|
||||
"textLineSpacing": "行間距: ",
|
||||
"textMarkup": "標記",
|
||||
"textMessageDeleteComment": "確定要刪除此註解嗎?",
|
||||
"textMessageDeleteReply": "確定要刪除回覆嗎?",
|
||||
"textMultiple": "多項",
|
||||
"textNoBreakBefore": "之前沒有分頁符",
|
||||
"textNoChanges": "沒有變化。",
|
||||
"textNoComments": "此文件未包含註解",
|
||||
"textNoContextual": "加入間隔數值",
|
||||
"textNoKeepLines": "不要保持多個線條在一起",
|
||||
"textNoKeepNext": "不要與文字保持在一起",
|
||||
"textNot": "不",
|
||||
"textNoWidow": "無窗口控制",
|
||||
"textNum": "變更編號",
|
||||
"textOk": "確定",
|
||||
"textOriginal": "原始",
|
||||
"textParaDeleted": "段落已刪除",
|
||||
"textParaFormatted": "段落格式",
|
||||
"textParaInserted": "段落已插入",
|
||||
"textParaMoveFromDown": "已向下移動:",
|
||||
"textParaMoveFromUp": "已向上移動:",
|
||||
"textParaMoveTo": "已移動:",
|
||||
"textPosition": "位置",
|
||||
"textReject": "拒絕",
|
||||
"textRejectAllChanges": "拒絕所有更改",
|
||||
"textReopen": "重開",
|
||||
"textResolve": "解決",
|
||||
"textReview": "評論",
|
||||
"textReviewChange": "變更評論",
|
||||
"textRight": "對齊右側",
|
||||
"textShape": "形狀",
|
||||
"textShd": "背景顏色",
|
||||
"textSmallCaps": "小大寫",
|
||||
"textSpacing": "間距",
|
||||
"textSpacingAfter": "間距後",
|
||||
"textSpacingBefore": "間距前",
|
||||
"textStrikeout": "淘汰",
|
||||
"textSubScript": "下標",
|
||||
"textSuperScript": "上標",
|
||||
"textTableChanged": "表格設定已變更",
|
||||
"textTableRowsAdd": "已增加表格行數",
|
||||
"textTableRowsDel": "已刪除表格行數",
|
||||
"textTabs": "變更定位",
|
||||
"textTrackChanges": "跟蹤變化",
|
||||
"textTryUndoRedo": "在快速共同編輯模式下,撤消/重做功能被禁用。",
|
||||
"textUnderline": "底線",
|
||||
"textUsers": "使用者",
|
||||
"textWidow": "遺留文字控制"
|
||||
},
|
||||
"HighlightColorPalette": {
|
||||
"textNoFill": "沒有填充"
|
||||
},
|
||||
"ThemeColorPalette": {
|
||||
"textCustomColors": "自訂顏色",
|
||||
"textStandartColors": "標準顏色",
|
||||
"textThemeColors": "主題顏色"
|
||||
}
|
||||
},
|
||||
"ContextMenu": {
|
||||
"errorCopyCutPaste": "使用上下文選單進行的複制,剪切和粘貼操作將僅在當前文件內執行。",
|
||||
"menuAddComment": "新增註解",
|
||||
"menuAddLink": "新增連結",
|
||||
"menuCancel": "取消",
|
||||
"menuContinueNumbering": "繼續編號",
|
||||
"menuDelete": "刪除",
|
||||
"menuDeleteTable": "刪除表格",
|
||||
"menuEdit": "編輯",
|
||||
"menuJoinList": "加入上一個列表",
|
||||
"menuMerge": "合併",
|
||||
"menuMore": "更多",
|
||||
"menuOpenLink": "打開連結",
|
||||
"menuReview": "評論",
|
||||
"menuReviewChange": "變更評論",
|
||||
"menuSeparateList": "單獨的清單",
|
||||
"menuSplit": "分割",
|
||||
"menuStartNewList": "開始新清單",
|
||||
"menuStartNumberingFrom": "設定編號值",
|
||||
"menuViewComment": "查看註解",
|
||||
"textCancel": "取消",
|
||||
"textColumns": "欄",
|
||||
"textCopyCutPasteActions": "複製, 剪下, 與貼上之動作",
|
||||
"textDoNotShowAgain": "不再顯示",
|
||||
"textNumberingValue": "編號值",
|
||||
"textOk": "確定",
|
||||
"textRows": "行列",
|
||||
"textRefreshEntireTable": "Refresh entire table",
|
||||
"textRefreshPageNumbersOnly": "Refresh page numbers only"
|
||||
},
|
||||
"Edit": {
|
||||
"notcriticalErrorTitle": "警告",
|
||||
"textActualSize": "實際大小",
|
||||
"textAddCustomColor": "增加客制化顏色",
|
||||
"textAdditional": "額外功能",
|
||||
"textAdditionalFormatting": "額外格式化方式",
|
||||
"textAddress": "地址",
|
||||
"textAdvanced": "進階",
|
||||
"textAdvancedSettings": "進階設定",
|
||||
"textAfter": "之後",
|
||||
"textAlign": "對齊",
|
||||
"textAllCaps": "全部大寫",
|
||||
"textAllowOverlap": "允許重疊",
|
||||
"textApril": "四月",
|
||||
"textAugust": "八月",
|
||||
"textAuto": "自動",
|
||||
"textAutomatic": "自動",
|
||||
"textBack": "返回",
|
||||
"textBackground": "背景",
|
||||
"textBandedColumn": "分帶欄",
|
||||
"textBandedRow": "分帶列",
|
||||
"textBefore": "之前",
|
||||
"textBehind": "文字在後",
|
||||
"textBorder": "邊框",
|
||||
"textBringToForeground": "移到前景",
|
||||
"textBullets": "項目符號",
|
||||
"textBulletsAndNumbers": "符號項目與編號",
|
||||
"textCellMargins": "儲存格邊距",
|
||||
"textChart": "圖表",
|
||||
"textClose": "關閉",
|
||||
"textColor": "顏色",
|
||||
"textContinueFromPreviousSection": "從上個部份繼續",
|
||||
"textCustomColor": "自訂顏色",
|
||||
"textDecember": "十二月",
|
||||
"textDesign": "設計",
|
||||
"textDifferentFirstPage": "首頁不同",
|
||||
"textDifferentOddAndEvenPages": "單/雙數頁不同",
|
||||
"textDisplay": "顯示",
|
||||
"textDistanceFromText": "與文字的距離",
|
||||
"textDoubleStrikethrough": "雙刪除線",
|
||||
"textEditLink": "編輯連結",
|
||||
"textEffects": "效果",
|
||||
"textEmpty": "空",
|
||||
"textEmptyImgUrl": "您必須輸入圖檔的URL.",
|
||||
"textFebruary": "二月",
|
||||
"textFill": "填入",
|
||||
"textFirstColumn": "第一欄",
|
||||
"textFirstLine": "第一行",
|
||||
"textFlow": "流程",
|
||||
"textFontColor": "字體顏色",
|
||||
"textFontColors": "字體顏色",
|
||||
"textFonts": "字型",
|
||||
"textFooter": "頁尾",
|
||||
"textFr": "Fr",
|
||||
"textHeader": "標頭",
|
||||
"textHeaderRow": "頁首列",
|
||||
"textHighlightColor": "熒光色選",
|
||||
"textHyperlink": "超連結",
|
||||
"textImage": "圖像",
|
||||
"textImageURL": "圖像 URL",
|
||||
"textInFront": "文字在前",
|
||||
"textInline": "與文字排列",
|
||||
"textJanuary": "一月",
|
||||
"textJuly": "七月",
|
||||
"textJune": "六月",
|
||||
"textKeepLinesTogether": "保持線條一致",
|
||||
"textKeepWithNext": "跟著下一個",
|
||||
"textLastColumn": "最後一欄",
|
||||
"textLetterSpacing": "字母間距",
|
||||
"textLineSpacing": "行間距",
|
||||
"textLink": "連結",
|
||||
"textLinkSettings": "連結設定",
|
||||
"textLinkToPrevious": "連接到上一個",
|
||||
"textMarch": "三月",
|
||||
"textMay": "五月",
|
||||
"textMo": "Mo",
|
||||
"textMoveBackward": "向後移動",
|
||||
"textMoveForward": "向前移動",
|
||||
"textMoveWithText": "與文字移動",
|
||||
"textNone": "無",
|
||||
"textNoStyles": "這類圖表沒有對應的風格",
|
||||
"textNotUrl": "此字段應為格式為\"http://www.example.com\"的URL。",
|
||||
"textNovember": "十一月",
|
||||
"textNumbers": "號碼",
|
||||
"textOctober": "十月",
|
||||
"textOk": "確定",
|
||||
"textOpacity": "透明度",
|
||||
"textOptions": "選項",
|
||||
"textOrphanControl": "遺留功能控制",
|
||||
"textPageBreakBefore": "分頁之前",
|
||||
"textPageNumbering": "頁編碼",
|
||||
"textParagraph": "段落",
|
||||
"textParagraphStyles": "段落樣式",
|
||||
"textPictureFromLibrary": "來自圖庫的圖片",
|
||||
"textPictureFromURL": "網址圖片",
|
||||
"textPt": "pt",
|
||||
"textRemoveChart": "刪除圖表",
|
||||
"textRemoveImage": "移除圖片",
|
||||
"textRemoveLink": "刪除連結",
|
||||
"textRemoveShape": "刪除形狀",
|
||||
"textRemoveTable": "刪除表格",
|
||||
"textReorder": "重新排序",
|
||||
"textRepeatAsHeaderRow": "重複作為標題行",
|
||||
"textReplace": "取代",
|
||||
"textReplaceImage": "取代圖片",
|
||||
"textResizeToFitContent": "調整大小以適合內容",
|
||||
"textSa": "Sa",
|
||||
"textScreenTip": "提示功能",
|
||||
"textSelectObjectToEdit": "選擇要編輯的物件",
|
||||
"textSendToBackground": "傳送到背景",
|
||||
"textSeptember": "九月",
|
||||
"textSettings": "設定",
|
||||
"textShape": "形狀",
|
||||
"textSize": "大小",
|
||||
"textSmallCaps": "小大寫",
|
||||
"textSpaceBetweenParagraphs": "段落間空格",
|
||||
"textSquare": "正方形",
|
||||
"textStartAt": "開始",
|
||||
"textStrikethrough": "刪除線",
|
||||
"textStyle": "風格",
|
||||
"textStyleOptions": "樣式選項",
|
||||
"textSu": "Su",
|
||||
"textSubscript": "下標",
|
||||
"textSuperscript": "上標",
|
||||
"textTable": "表格",
|
||||
"textTableOptions": "表格選項",
|
||||
"textText": "文字",
|
||||
"textTh": "Th",
|
||||
"textThrough": "通過",
|
||||
"textTight": "緊",
|
||||
"textTopAndBottom": "頂部和底部",
|
||||
"textTotalRow": "總行數",
|
||||
"textTu": "Tu",
|
||||
"textType": "類型",
|
||||
"textWe": "We",
|
||||
"textWrap": "包覆",
|
||||
"textTableOfCont": "TOC",
|
||||
"textPageNumbers": "Page Numbers",
|
||||
"textSimple": "Simple",
|
||||
"textRightAlign": "Right Align",
|
||||
"textLeader": "Leader",
|
||||
"textStructure": "Structure",
|
||||
"textRefresh": "Refresh",
|
||||
"textLevels": "Levels",
|
||||
"textRemoveTableContent": "Remove table of content",
|
||||
"textCurrent": "Current",
|
||||
"textOnline": "Online",
|
||||
"textClassic": "Classic",
|
||||
"textDistinctive": "Distinctive",
|
||||
"textCentered": "Centered",
|
||||
"textFormal": "Formal",
|
||||
"textStandard": "Standard",
|
||||
"textModern": "Modern",
|
||||
"textCancel": "Cancel",
|
||||
"textRefreshEntireTable": "Refresh entire table",
|
||||
"textRefreshPageNumbersOnly": "Refresh page numbers only",
|
||||
"textStyles": "Styles",
|
||||
"textAmountOfLevels": "Amount of Levels"
|
||||
},
|
||||
"Error": {
|
||||
"convertationTimeoutText": "轉換逾時。",
|
||||
"criticalErrorExtText": "點擊\"好\"回到文件列表。",
|
||||
"criticalErrorTitle": "錯誤",
|
||||
"downloadErrorText": "下載失敗",
|
||||
"errorAccessDeny": "您正在嘗試執行您無權執行的動作。<br>請聯繫您的管理員。",
|
||||
"errorBadImageUrl": "不正確的圖像 URL",
|
||||
"errorConnectToServer": "儲存文件失敗。請檢查您的網路設定或聯絡您的帳號管理員。<br>點擊\"確定\"之後,可以下載該文件。",
|
||||
"errorDatabaseConnection": "外部錯誤<br>資料庫連結錯誤, 請聯絡技術支援。",
|
||||
"errorDataEncrypted": "已收到加密的更改,無法解密。",
|
||||
"errorDataRange": "不正確的資料範圍",
|
||||
"errorDefaultMessage": "錯誤編號:%1",
|
||||
"errorEditingDownloadas": "操作文件時發生錯誤<br>請將文件備份到本機端。",
|
||||
"errorFilePassProtect": "此文件使用密碼保護功能,無法開啟。",
|
||||
"errorFileSizeExceed": "此文件大小已超出主機之限制。<br>請聯絡您的帳戶管理員。",
|
||||
"errorKeyEncrypt": "未知密鑰描述符",
|
||||
"errorKeyExpire": "密鑰已過期",
|
||||
"errorLoadingFont": "字型未載入。<br>請聯絡文件服務(Document Server)管理員。",
|
||||
"errorMailMergeLoadFile": "載入失敗",
|
||||
"errorMailMergeSaveFile": "合併失敗。",
|
||||
"errorSessionAbsolute": "該文件編輯時效已欲期。請重新載入此頁面。",
|
||||
"errorSessionIdle": "無 該文件已經有一段時間沒有進行編輯了。 請重新載入頁面。",
|
||||
"errorSessionToken": "主機連線被中斷,請重新載入此頁面。",
|
||||
"errorStockChart": "行序錯誤。要建立股票圖表,請將數據按照以下順序工作表:<br> 開盤價、最高價、最低價、收盤價。 ",
|
||||
"errorUpdateVersionOnDisconnect": "網路連接已恢復,文件版本已更改。<br>在繼續工作之前,您需要下載文件或複制其內容以確保沒有資料遺失,然後重新整裡此頁面。",
|
||||
"errorUserDrop": "目前無法開始此文件。",
|
||||
"errorUsersExceed": "超出原服務計畫可允許的帳戶數量",
|
||||
"errorViewerDisconnect": "網路連線失敗。您可以繼續瀏覽這份文件,<br>在連線恢復前以及頁面重新加載之前,您無法下載或列印此文件。",
|
||||
"notcriticalErrorTitle": "警告",
|
||||
"openErrorText": "開啟文件時發生錯誤",
|
||||
"saveErrorText": "存檔時發生錯誤",
|
||||
"scriptLoadError": "連線速度過慢,某些組件無法加載。 請重新載入頁面。",
|
||||
"splitDividerErrorText": "行數必須是%1的除數",
|
||||
"splitMaxColsErrorText": "列數必須少於%1",
|
||||
"splitMaxRowsErrorText": "行數必須少於%1",
|
||||
"unknownErrorText": "未知錯誤。",
|
||||
"uploadImageExtMessage": "圖片格式未知。",
|
||||
"uploadImageFileCountMessage": "無上傳圖片。",
|
||||
"uploadImageSizeMessage": "圖像超出最大大小限制。最大為25MB。",
|
||||
"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."
|
||||
},
|
||||
"LongActions": {
|
||||
"applyChangesTextText": "載入資料中...",
|
||||
"applyChangesTitleText": "載入資料中",
|
||||
"downloadMergeText": "載入中...",
|
||||
"downloadMergeTitle": "載入中",
|
||||
"downloadTextText": "文件載入中...",
|
||||
"downloadTitleText": "文件載入中",
|
||||
"loadFontsTextText": "載入資料中...",
|
||||
"loadFontsTitleText": "載入資料中",
|
||||
"loadFontTextText": "載入資料中...",
|
||||
"loadFontTitleText": "載入資料中",
|
||||
"loadImagesTextText": "正在載入圖片...",
|
||||
"loadImagesTitleText": "正在載入圖片",
|
||||
"loadImageTextText": "正在載入圖片...",
|
||||
"loadImageTitleText": "正在載入圖片",
|
||||
"loadingDocumentTextText": "正在載入文件...",
|
||||
"loadingDocumentTitleText": "載入文件中",
|
||||
"mailMergeLoadFileText": "載入原始資料中...",
|
||||
"mailMergeLoadFileTitle": "載入原始資料中",
|
||||
"openTextText": "開啟文件中...",
|
||||
"openTitleText": "開啟文件中",
|
||||
"printTextText": "列印文件中...",
|
||||
"printTitleText": "列印文件",
|
||||
"savePreparingText": "準備儲存中",
|
||||
"savePreparingTitle": "正在準備儲存。請耐心等候...",
|
||||
"saveTextText": "儲存文件中...",
|
||||
"saveTitleText": "儲存文件",
|
||||
"sendMergeText": "發送合併中...",
|
||||
"sendMergeTitle": "發送合併",
|
||||
"textLoadingDocument": "載入文件中",
|
||||
"txtEditingMode": "設定編輯模式...",
|
||||
"uploadImageTextText": "正在上傳圖片...",
|
||||
"uploadImageTitleText": "上傳圖片中",
|
||||
"waitText": "請耐心等待..."
|
||||
},
|
||||
"Main": {
|
||||
"criticalErrorTitle": "錯誤",
|
||||
"errorAccessDeny": "您正在嘗試執行您無權執行的動作。<br>請聯繫您的管理員。",
|
||||
"errorOpensource": "在使用免費社群版本時,您只能瀏覽開啟的文件。欲使用移動版本的編輯功能,您需要付費的憑證。",
|
||||
"errorProcessSaveResult": "儲存失敗",
|
||||
"errorServerVersion": "編輯器版本已更新。該頁面將被重新加載以套用更改。",
|
||||
"errorUpdateVersion": "文件版本已更改。該頁面將重新加載。",
|
||||
"leavePageText": "您在此文件中有未儲存的變更。點擊“留在此頁面”以等待自動儲存。點擊“離開此頁面”以放棄所有未儲存的變更。",
|
||||
"notcriticalErrorTitle": "警告",
|
||||
"SDK": {
|
||||
" -Section ": "-欄",
|
||||
"above": "以上",
|
||||
"below": "之下",
|
||||
"Caption": "標題",
|
||||
"Choose an item": "選擇一個項目",
|
||||
"Click to load image": "點此讀取圖片",
|
||||
"Current Document": "當前文件",
|
||||
"Diagram Title": "圖表標題",
|
||||
"endnote text": "尾註文",
|
||||
"Enter a date": "輸入日期",
|
||||
"Error! Bookmark not defined": "錯誤!書籤未定義。",
|
||||
"Error! Main Document Only": "錯誤!僅限主文檔。",
|
||||
"Error! No text of specified style in document": "錯誤!指定的風格文件中沒有文字。",
|
||||
"Error! Not a valid bookmark self-reference": "錯誤!不是有效的書籤引用。",
|
||||
"Even Page ": "雙數頁",
|
||||
"First Page ": "第一頁",
|
||||
"Footer": "頁尾",
|
||||
"footnote text": "註腳文字",
|
||||
"Header": "標頭",
|
||||
"Heading 1": "標題 1",
|
||||
"Heading 2": "標題 2",
|
||||
"Heading 3": "標題 3",
|
||||
"Heading 4": "標題 4",
|
||||
"Heading 5": "標題 5",
|
||||
"Heading 6": "標題 6",
|
||||
"Heading 7": "標題 7",
|
||||
"Heading 8": "標題 8",
|
||||
"Heading 9": "標題 9",
|
||||
"Hyperlink": "超連結",
|
||||
"Index Too Large": "索引太大",
|
||||
"Intense Quote": "強烈引用",
|
||||
"Is Not In Table": "不在表格中",
|
||||
"List Paragraph": "段落列表",
|
||||
"Missing Argument": "無參數",
|
||||
"Missing Operator": "缺少運算符",
|
||||
"No Spacing": "沒有間距",
|
||||
"No table of contents entries found": "該文件中沒有標題。將標題風格套用於內文,以便出現在目錄中。",
|
||||
"No table of figures entries found": "沒有圖表目錄項目可用。",
|
||||
"None": "無",
|
||||
"Normal": "標準",
|
||||
"Number Too Large To Format": "數字太大而無法格式化",
|
||||
"Odd Page ": "奇數頁",
|
||||
"Quote": "引用",
|
||||
"Same as Previous": "與上一個相同",
|
||||
"Series": "系列",
|
||||
"Subtitle": "副標題",
|
||||
"Syntax Error": "語法錯誤",
|
||||
"Table Index Cannot be Zero": "表格之索引不能為零",
|
||||
"Table of Contents": "目錄",
|
||||
"table of figures": "圖表目錄",
|
||||
"The Formula Not In Table": "函數不在表格中",
|
||||
"Title": "標題",
|
||||
"TOC Heading": "目錄標題",
|
||||
"Type equation here": "在此輸入公式",
|
||||
"Undefined Bookmark": "未定義的書籤",
|
||||
"Unexpected End of Formula": "函數意外結束",
|
||||
"X Axis": "X 軸 XAS",
|
||||
"Y Axis": "Y軸",
|
||||
"Your text here": "在這輸入文字",
|
||||
"Zero Divide": "零分度"
|
||||
},
|
||||
"textAnonymous": "匿名",
|
||||
"textBuyNow": "瀏覽網站",
|
||||
"textClose": "關閉",
|
||||
"textContactUs": "聯絡銷售人員",
|
||||
"textCustomLoader": "很抱歉,您無權變更載入程序。 聯繫我們的業務部門取得報價。",
|
||||
"textGuest": "訪客",
|
||||
"textHasMacros": "此檔案包含自動巨集程式。<br>是否要運行這些巨集?",
|
||||
"textNo": "沒有",
|
||||
"textNoLicenseTitle": "已達到憑證的最高限制",
|
||||
"textNoTextFound": "找不到文字",
|
||||
"textPaidFeature": "付費功能",
|
||||
"textRemember": "記住我的選擇",
|
||||
"textReplaceSkipped": "替換已完成。 {0}已跳過。",
|
||||
"textReplaceSuccess": "搜尋已完成。已替換次數:{0}",
|
||||
"textYes": "是",
|
||||
"titleLicenseExp": "憑證過期",
|
||||
"titleServerVersion": "編輯器已更新",
|
||||
"titleUpdateVersion": "版本已更改",
|
||||
"warnLicenseExceeded": "您已達到同時連接到 %1 編輯器的限制。此文件將只提供檢視。請聯繫您的管理員以了解更多資訊。",
|
||||
"warnLicenseExp": "您的憑證已過期。請更新您的憑證,然後重新更新頁面。",
|
||||
"warnLicenseLimitedNoAccess": "憑證已過期。您無法使用文件編輯功能。請聯絡您的帳號管理員",
|
||||
"warnLicenseLimitedRenewed": "憑證需要續約。您目前只有文件編輯的部份功能。<br>欲使用完整功能,請聯絡您的帳號管理員。",
|
||||
"warnLicenseUsersExceeded": "您已達到%1個編輯器的用戶限制。請與您的管理員聯繫以了解更多信息。",
|
||||
"warnNoLicense": "您已達到同時連接到 %1 編輯器的限制。此文件將只提供檢視。有關個人升級條款,請聯繫 %1 業務團隊。",
|
||||
"warnNoLicenseUsers": "您已達到%1個編輯器的用戶限制。與%1銷售團隊聯繫以了解個人升級條款。",
|
||||
"warnProcessRightsChange": "您沒有編輯這個文件的權限。"
|
||||
},
|
||||
"Settings": {
|
||||
"advDRMOptions": "受保護的檔案",
|
||||
"advDRMPassword": "密碼",
|
||||
"advTxtOptions": "選擇文字選項",
|
||||
"closeButtonText": "關閉檔案",
|
||||
"notcriticalErrorTitle": "警告",
|
||||
"textAbout": "關於",
|
||||
"textApplication": "應用程式",
|
||||
"textApplicationSettings": "應用程式設定",
|
||||
"textAuthor": "作者",
|
||||
"textBack": "返回",
|
||||
"textBottom": "底部",
|
||||
"textCancel": "取消",
|
||||
"textCaseSensitive": "區分大小寫",
|
||||
"textCentimeter": "公分",
|
||||
"textChooseEncoding": "選擇編碼方式",
|
||||
"textChooseTxtOptions": "選擇文字選項",
|
||||
"textCollaboration": "共同編輯",
|
||||
"textColorSchemes": "色盤",
|
||||
"textComment": "註解",
|
||||
"textComments": "註解",
|
||||
"textCommentsDisplay": "顯示回應",
|
||||
"textCreated": "已建立",
|
||||
"textCustomSize": "自訂大小",
|
||||
"textDisableAll": "全部停用",
|
||||
"textDisableAllMacrosWithNotification": "停用所有帶通知的巨集",
|
||||
"textDisableAllMacrosWithoutNotification": "停用所有不帶通知的巨集",
|
||||
"textDocumentInfo": "文件資訊",
|
||||
"textDocumentSettings": "文件設定",
|
||||
"textDocumentTitle": "文件標題",
|
||||
"textDone": "完成",
|
||||
"textDownload": "下載",
|
||||
"textDownloadAs": "轉檔並下載",
|
||||
"textDownloadRtf": "以這個格式來儲存此文件的話,部份的文字排版效果將會遺失。您確定要繼續嗎?",
|
||||
"textDownloadTxt": "若使用此格式來儲存這份文件的話,除了純文字以外,其他的文件功能將會失效。您確定要繼續嗎?",
|
||||
"textEnableAll": "全部啟用",
|
||||
"textEnableAllMacrosWithoutNotification": "啟用所有不帶通知的巨集",
|
||||
"textEncoding": "編碼方式",
|
||||
"textFind": "尋找",
|
||||
"textFindAndReplace": "尋找與取代",
|
||||
"textFindAndReplaceAll": "尋找與全部取代",
|
||||
"textFormat": "格式",
|
||||
"textHelp": "輔助說明",
|
||||
"textHiddenTableBorders": "隱藏表格邊框",
|
||||
"textHighlightResults": "強調結果",
|
||||
"textInch": "吋",
|
||||
"textLandscape": "橫向方向",
|
||||
"textLastModified": "上一次更改",
|
||||
"textLastModifiedBy": "最後修改者",
|
||||
"textLeft": "左",
|
||||
"textLoading": "載入中...",
|
||||
"textLocation": "位置",
|
||||
"textMacrosSettings": "巨集設定",
|
||||
"textMargins": "邊界",
|
||||
"textMarginsH": "對於給定的頁面高度,上下邊距太高",
|
||||
"textMarginsW": "給定頁面寬度,左右頁邊距太寬",
|
||||
"textNo": "沒有",
|
||||
"textNoCharacters": "非印刷字符",
|
||||
"textNoTextFound": "找不到文字",
|
||||
"textOk": "確定",
|
||||
"textOpenFile": "輸入檔案密碼",
|
||||
"textOrientation": "方向",
|
||||
"textOwner": "擁有者",
|
||||
"textPages": "頁",
|
||||
"textPageSize": "頁面大小",
|
||||
"textParagraphs": "段落",
|
||||
"textPoint": "點",
|
||||
"textPortrait": "直向方向",
|
||||
"textPrint": "列印",
|
||||
"textReaderMode": "閱讀模式",
|
||||
"textReplace": "取代",
|
||||
"textReplaceAll": "取代全部",
|
||||
"textResolvedComments": "已解決的註解",
|
||||
"textRight": "右",
|
||||
"textSearch": "搜尋",
|
||||
"textSettings": "設定",
|
||||
"textShowNotification": "顯示通知",
|
||||
"textSpaces": "空格",
|
||||
"textSpellcheck": "拼字檢查",
|
||||
"textStatistic": "統計",
|
||||
"textSubject": "主旨",
|
||||
"textSymbols": "符號",
|
||||
"textTitle": "標題",
|
||||
"textTop": "上方",
|
||||
"textUnitOfMeasurement": "測量單位",
|
||||
"textUploaded": "\n已上傳",
|
||||
"textWords": "文字",
|
||||
"textYes": "是",
|
||||
"txtDownloadTxt": "下載 TXT",
|
||||
"txtIncorrectPwd": "密碼錯誤",
|
||||
"txtOk": "確定",
|
||||
"txtProtected": "在您輸入密碼並且開啟文件後,目前使用的密碼會被重設。",
|
||||
"txtScheme1": "辦公室",
|
||||
"txtScheme10": "中位數",
|
||||
"txtScheme11": " 地鐵",
|
||||
"txtScheme12": "模組",
|
||||
"txtScheme13": "豐富的",
|
||||
"txtScheme14": "Oriel",
|
||||
"txtScheme15": "來源",
|
||||
"txtScheme16": "紙",
|
||||
"txtScheme17": "冬至",
|
||||
"txtScheme18": "技術",
|
||||
"txtScheme19": "跋涉",
|
||||
"txtScheme2": "灰階",
|
||||
"txtScheme20": "市區",
|
||||
"txtScheme21": "感染力",
|
||||
"txtScheme22": "新的Office",
|
||||
"txtScheme3": "頂尖",
|
||||
"txtScheme4": "方面",
|
||||
"txtScheme5": "Civic",
|
||||
"txtScheme6": "大堂",
|
||||
"txtScheme7": "產權",
|
||||
"txtScheme8": "流程",
|
||||
"txtScheme9": "鑄造廠",
|
||||
"textFastWV": "Fast Web View",
|
||||
"textFeedback": "Feedback & Support",
|
||||
"textPdfTagged": "Tagged PDF",
|
||||
"textPdfVer": "PDF Version",
|
||||
"textNavigation": "Navigation",
|
||||
"textEmptyScreens": "There are no headings in the document. Apply a headings style to the text so that it appeas in the table of cotents.",
|
||||
"textBeginningDocument": "Beginning of document",
|
||||
"textEmptyHeading": "Empty Heading"
|
||||
},
|
||||
"Toolbar": {
|
||||
"dlgLeaveMsgText": "您有未儲存的變更。點擊“留在此頁面”以等待自動儲存。點擊“離開此頁面”以放棄所有未儲存的變更。",
|
||||
"dlgLeaveTitleText": "您離開應用程式",
|
||||
"leaveButtonText": "離開這個頁面",
|
||||
"stayButtonText": "保持此頁上"
|
||||
}
|
||||
}
|
38
apps/presentationeditor/embed/locale/pt-PT.json
Normal file
38
apps/presentationeditor/embed/locale/pt-PT.json
Normal file
|
@ -0,0 +1,38 @@
|
|||
{
|
||||
"common.view.modals.txtCopy": "Copiar para a área de transferência",
|
||||
"common.view.modals.txtEmbed": "Incorporar",
|
||||
"common.view.modals.txtHeight": "Altura",
|
||||
"common.view.modals.txtShare": "Partilhar ligação",
|
||||
"common.view.modals.txtWidth": "Largura",
|
||||
"PE.ApplicationController.convertationErrorText": "Falha na conversão.",
|
||||
"PE.ApplicationController.convertationTimeoutText": "Excedeu o tempo limite de conversão.",
|
||||
"PE.ApplicationController.criticalErrorTitle": "Erro",
|
||||
"PE.ApplicationController.downloadErrorText": "Falha ao descarregar.",
|
||||
"PE.ApplicationController.downloadTextText": "A descarregar apresentação…",
|
||||
"PE.ApplicationController.errorAccessDeny": "Está a tentar executar uma ação para a qual não tem permissão.<br>Contacte o administrador do servidor de documentos.",
|
||||
"PE.ApplicationController.errorDefaultMessage": "Código de erro: %1",
|
||||
"PE.ApplicationController.errorFilePassProtect": "O documento está protegido por palavra-passe e não pode ser aberto.",
|
||||
"PE.ApplicationController.errorFileSizeExceed": "O tamanho do documento excede o limite do servidor.<br>Contacte o administrador do servidor de documentos para mais detalhes.",
|
||||
"PE.ApplicationController.errorForceSave": "Ocorreu um erro ao guardar o ficheiro. Utilize a opção 'Descarregar como' para guardar o ficheiro no computador ou tente novamente mais tarde.",
|
||||
"PE.ApplicationController.errorLoadingFont": "Tipos de letra não carregados.<br>Por favor contacte o administrador do servidor de documentos.",
|
||||
"PE.ApplicationController.errorTokenExpire": "O token de segurança do documento expirou.<br>Entre em contacto com o administrador do Servidor de Documentos.",
|
||||
"PE.ApplicationController.errorUpdateVersionOnDisconnect": "A ligação à Internet foi restaurada e a versão do ficheiro foi alterada.<br>Antes de continuar o seu trabalho, descarregue o ficheiro ou copie o seu conteúdo para assegurar que nada seja perdido e depois recarregue esta página.",
|
||||
"PE.ApplicationController.errorUserDrop": "De momento, não é possível aceder ao ficheiro.",
|
||||
"PE.ApplicationController.notcriticalErrorTitle": "Aviso",
|
||||
"PE.ApplicationController.openErrorText": "Ocorreu um erro ao abrir o ficheiro.",
|
||||
"PE.ApplicationController.scriptLoadError": "A ligação está muito lenta e alguns dos componentes não foram carregados. Recarregue a página.",
|
||||
"PE.ApplicationController.textAnonymous": "Anónimo",
|
||||
"PE.ApplicationController.textGuest": "Convidado",
|
||||
"PE.ApplicationController.textLoadingDocument": "A carregar apresentação",
|
||||
"PE.ApplicationController.textOf": "de",
|
||||
"PE.ApplicationController.txtClose": "Fechar",
|
||||
"PE.ApplicationController.unknownErrorText": "Erro desconhecido.",
|
||||
"PE.ApplicationController.unsupportedBrowserErrorText": "O seu navegador não é suportado.",
|
||||
"PE.ApplicationController.waitText": "Aguarde…",
|
||||
"PE.ApplicationView.txtDownload": "Descarregar",
|
||||
"PE.ApplicationView.txtEmbed": "Incorporar",
|
||||
"PE.ApplicationView.txtFileLocation": "Abrir localização do ficheiro",
|
||||
"PE.ApplicationView.txtFullScreen": "Ecrã inteiro",
|
||||
"PE.ApplicationView.txtPrint": "Imprimir",
|
||||
"PE.ApplicationView.txtShare": "Partilhar"
|
||||
}
|
38
apps/presentationeditor/embed/locale/zh-TW.json
Normal file
38
apps/presentationeditor/embed/locale/zh-TW.json
Normal file
|
@ -0,0 +1,38 @@
|
|||
{
|
||||
"common.view.modals.txtCopy": "複製到剪貼板",
|
||||
"common.view.modals.txtEmbed": "嵌入",
|
||||
"common.view.modals.txtHeight": "\n高度",
|
||||
"common.view.modals.txtShare": "分享連結",
|
||||
"common.view.modals.txtWidth": "寬度",
|
||||
"PE.ApplicationController.convertationErrorText": "轉換失敗。",
|
||||
"PE.ApplicationController.convertationTimeoutText": "轉換逾時。",
|
||||
"PE.ApplicationController.criticalErrorTitle": "錯誤",
|
||||
"PE.ApplicationController.downloadErrorText": "下載失敗",
|
||||
"PE.ApplicationController.downloadTextText": "下載簡報中...",
|
||||
"PE.ApplicationController.errorAccessDeny": "您嘗試進行未被授權的動作<br> 請聯繫您的文件伺服器主機的管理者。",
|
||||
"PE.ApplicationController.errorDefaultMessage": "錯誤編號:%1",
|
||||
"PE.ApplicationController.errorFilePassProtect": "該文件受密碼保護,無法打開。",
|
||||
"PE.ApplicationController.errorFileSizeExceed": "此檔案超過這一主機限制的大小<br> 進一步資訊,請聯絡您的文件服務主機的管理者。",
|
||||
"PE.ApplicationController.errorForceSave": "保存文件時發生錯誤。請使用“下載為”選項將文件保存到電腦機硬碟中,或稍後再試。",
|
||||
"PE.ApplicationController.errorLoadingFont": "字體未加載。<br>請聯繫文件服務器管理員。",
|
||||
"PE.ApplicationController.errorTokenExpire": "此文件安全憑證(Security Token)已過期。<br>請與您的Document Server管理員聯繫。",
|
||||
"PE.ApplicationController.errorUpdateVersionOnDisconnect": "Internet連接已恢復,文件版本已更改。<br>在繼續工作之前,您需要下載文件或複制其內容以確保沒有丟失,然後重新加載此頁面。",
|
||||
"PE.ApplicationController.errorUserDrop": "目前無法存取該文件。",
|
||||
"PE.ApplicationController.notcriticalErrorTitle": "警告",
|
||||
"PE.ApplicationController.openErrorText": "開啟檔案時發生錯誤",
|
||||
"PE.ApplicationController.scriptLoadError": "連接速度太慢,某些組件無法加載。請重新加載頁面。",
|
||||
"PE.ApplicationController.textAnonymous": "匿名",
|
||||
"PE.ApplicationController.textGuest": "來賓帳戶",
|
||||
"PE.ApplicationController.textLoadingDocument": "正在載入簡報",
|
||||
"PE.ApplicationController.textOf": "於",
|
||||
"PE.ApplicationController.txtClose": "關閉",
|
||||
"PE.ApplicationController.unknownErrorText": "未知錯誤。",
|
||||
"PE.ApplicationController.unsupportedBrowserErrorText": "不支援您的瀏覽器",
|
||||
"PE.ApplicationController.waitText": "請耐心等待...",
|
||||
"PE.ApplicationView.txtDownload": "下載",
|
||||
"PE.ApplicationView.txtEmbed": "嵌入",
|
||||
"PE.ApplicationView.txtFileLocation": "打開文件所在位置",
|
||||
"PE.ApplicationView.txtFullScreen": "全螢幕",
|
||||
"PE.ApplicationView.txtPrint": "列印",
|
||||
"PE.ApplicationView.txtShare": "分享"
|
||||
}
|
2273
apps/presentationeditor/main/locale/pt-PT.json
Normal file
2273
apps/presentationeditor/main/locale/pt-PT.json
Normal file
File diff suppressed because it is too large
Load diff
2274
apps/presentationeditor/main/locale/zh-TW.json
Normal file
2274
apps/presentationeditor/main/locale/zh-TW.json
Normal file
File diff suppressed because it is too large
Load diff
479
apps/presentationeditor/mobile/locale/pt-PT.json
Normal file
479
apps/presentationeditor/mobile/locale/pt-PT.json
Normal file
|
@ -0,0 +1,479 @@
|
|||
{
|
||||
"About": {
|
||||
"textAbout": "Acerca",
|
||||
"textAddress": "Endereço",
|
||||
"textBack": "Recuar",
|
||||
"textEmail": "Email",
|
||||
"textPoweredBy": "Desenvolvido por",
|
||||
"textTel": "Tel",
|
||||
"textVersion": "Versão"
|
||||
},
|
||||
"Common": {
|
||||
"Collaboration": {
|
||||
"notcriticalErrorTitle": "Aviso",
|
||||
"textAddComment": "Adicionar comentário",
|
||||
"textAddReply": "Adicionar resposta",
|
||||
"textBack": "Voltar",
|
||||
"textCancel": "Cancelar",
|
||||
"textCollaboration": "Colaboração",
|
||||
"textComments": "Comentários",
|
||||
"textDeleteComment": "Eliminar comentário",
|
||||
"textDeleteReply": "Eliminar resposta",
|
||||
"textDone": "Concluído",
|
||||
"textEdit": "Editar",
|
||||
"textEditComment": "Editar comentário",
|
||||
"textEditReply": "Editar resposta",
|
||||
"textEditUser": "Utilizadores que estão a editar o ficheiro:",
|
||||
"textMessageDeleteComment": "Tem a certeza de que deseja eliminar este comentário?",
|
||||
"textMessageDeleteReply": "Tem a certeza de que deseja eliminar esta resposta?",
|
||||
"textNoComments": "Este documento não contém comentários",
|
||||
"textOk": "Ok",
|
||||
"textReopen": "Reabrir",
|
||||
"textResolve": "Resolver",
|
||||
"textTryUndoRedo": "As funções Desfazer/Refazer estão desativadas no modo de co-edição rápida.",
|
||||
"textUsers": "Utilizadores"
|
||||
},
|
||||
"HighlightColorPalette": {
|
||||
"textNoFill": "Sem preenchimento"
|
||||
},
|
||||
"ThemeColorPalette": {
|
||||
"textCustomColors": "Cores personalizadas",
|
||||
"textStandartColors": "Cores padrão",
|
||||
"textThemeColors": "Cores do tema"
|
||||
}
|
||||
},
|
||||
"ContextMenu": {
|
||||
"errorCopyCutPaste": "As ações copiar, cortar e colar através do menu de contexto apenas serão executadas no documento atual.",
|
||||
"menuAddComment": "Adicionar comentário",
|
||||
"menuAddLink": "Adicionar ligação",
|
||||
"menuCancel": "Cancelar",
|
||||
"menuDelete": "Eliminar",
|
||||
"menuDeleteTable": "Eliminar tabela",
|
||||
"menuEdit": "Editar",
|
||||
"menuMerge": "Mesclar",
|
||||
"menuMore": "Mais",
|
||||
"menuOpenLink": "Abrir ligação",
|
||||
"menuSplit": "Dividir",
|
||||
"menuViewComment": "Ver comentário",
|
||||
"textColumns": "Colunas",
|
||||
"textCopyCutPasteActions": "Ações copiar, cortar e colar",
|
||||
"textDoNotShowAgain": "Não mostrar novamente",
|
||||
"textRows": "Linhas"
|
||||
},
|
||||
"Controller": {
|
||||
"Main": {
|
||||
"advDRMOptions": "Ficheiro protegido",
|
||||
"advDRMPassword": "Senha",
|
||||
"closeButtonText": "Fechar ficheiro",
|
||||
"criticalErrorTitle": "Erro",
|
||||
"errorAccessDeny": "Está a tentar realizar uma ação para a qual não tem autorização.<br>Por favor, contacte o seu administrador.",
|
||||
"errorOpensource": "Utilizando a versão comunitária gratuita, pode abrir documentos apenas para visualização. Para aceder aos editores da web móvel, é necessária uma licença comercial.",
|
||||
"errorProcessSaveResult": "Salvamento falhou.",
|
||||
"errorServerVersion": "A versão do editor foi atualizada. A página será recarregada para aplicar as alterações.",
|
||||
"errorUpdateVersion": "A versão do arquivo foi alterada. A página será recarregada.",
|
||||
"leavePageText": "Tem alterações não guardadas neste documento. Clique em 'Ficar nesta página' para aguardar pelo guardar automaticamente. Clique em 'Deixar esta página' para se desfazer de todas as alterações não guardadas.",
|
||||
"notcriticalErrorTitle": "Aviso",
|
||||
"SDK": {
|
||||
"Chart": "Gráfico",
|
||||
"Click to add first slide": "Clique para adicionar o primeiro diapositivo",
|
||||
"Click to add notes": "Clique para adicionar notas",
|
||||
"ClipArt": "Clip Art",
|
||||
"Date and time": "Data e Hora",
|
||||
"Diagram": "Diagrama",
|
||||
"Diagram Title": "Título do gráfico",
|
||||
"Footer": "Rodapé",
|
||||
"Header": "Cabeçalho",
|
||||
"Image": "Imagem",
|
||||
"Loading": "Carregamento",
|
||||
"Media": "Multimédia",
|
||||
"None": "Nenhum",
|
||||
"Picture": "Imagem",
|
||||
"Series": "Série",
|
||||
"Slide number": "Número do diapositivo",
|
||||
"Slide subtitle": "Legenda do diapositivo",
|
||||
"Slide text": "Texto do diapositivo",
|
||||
"Slide title": "Título do diapositivo",
|
||||
"Table": "Tabela",
|
||||
"X Axis": "X Eixo XAS",
|
||||
"Y Axis": "Eixo Y",
|
||||
"Your text here": "O seu texto aqui"
|
||||
},
|
||||
"textAnonymous": "Anónimo",
|
||||
"textBuyNow": "Visitar website",
|
||||
"textClose": "Fechar",
|
||||
"textContactUs": "Contacte a equipa comercial",
|
||||
"textCustomLoader": "Desculpe, não tem o direito de mudar o carregador. Por favor, contacte o nosso departamento de vendas para obter um orçamento.",
|
||||
"textGuest": "Visitante",
|
||||
"textHasMacros": "O ficheiro contém macros automáticas.<br>Deseja executar as macros?",
|
||||
"textNo": "Não",
|
||||
"textNoLicenseTitle": "Limite de licença atingido",
|
||||
"textNoTextFound": "Texto não encontrado",
|
||||
"textOpenFile": "Introduza a palavra-passe para abrir o ficheiro",
|
||||
"textPaidFeature": "Funcionalidade paga",
|
||||
"textRemember": "Memorizar a minha escolha",
|
||||
"textReplaceSkipped": "A substituição foi realizada. {0} ocorrências foram ignoradas.",
|
||||
"textReplaceSuccess": "A pesquisa foi realizada. Ocorrências substituídas: {0}",
|
||||
"textYes": "Sim",
|
||||
"titleLicenseExp": "Licença expirada",
|
||||
"titleServerVersion": "Editor atualizado",
|
||||
"titleUpdateVersion": "Versão alterada",
|
||||
"txtIncorrectPwd": "A Palavra-passe está incorreta",
|
||||
"txtProtected": "Assim que introduzir a palavra-passe e abrir o ficheiro, a palavra-passe atual será reposta",
|
||||
"warnLicenseExceeded": "Atingiu o limite de ligações simultâneas a %1 editores. Este documento será aberto apenas para visualização. Contacte o seu administrador para obter mais informações.",
|
||||
"warnLicenseExp": "A sua licença expirou. Por favor, atualize-a e atualize a página.",
|
||||
"warnLicenseLimitedNoAccess": "A licença expirou. Não tem acesso à funcionalidade de edição de documentos. Por favor contacte o seu administrador.",
|
||||
"warnLicenseLimitedRenewed": "A licença precisa ed ser renovada. Tem acesso limitado à funcionalidade de edição de documentos, .<br>Por favor contacte o seu administrador para ter acesso total",
|
||||
"warnLicenseUsersExceeded": "Atingiu o limite de %1 editores. Contacte o seu administrador para obter detalhes.",
|
||||
"warnNoLicense": "Atingiu o limite de ligações simultâneas a %1 editores. Este documento será aberto apenas para visualização. Contacte a %1 equipa de vendas para consultar os termos de atualização para si.",
|
||||
"warnNoLicenseUsers": "Atingiu o limite de %1 editores. Contacte a equipa comercial %1 para obter mais informações.",
|
||||
"warnProcessRightsChange": "Não tem autorização para editar este ficheiro."
|
||||
}
|
||||
},
|
||||
"Error": {
|
||||
"convertationTimeoutText": "Tempo limite de conversão excedido.",
|
||||
"criticalErrorExtText": "Clique em \"OK\" para voltar para a lista de documentos.",
|
||||
"criticalErrorTitle": "Erro",
|
||||
"downloadErrorText": "Falha ao descarregar.",
|
||||
"errorAccessDeny": "Está a tentar realizar uma ação para a qual não tem autorização.<br>Por favor, contacte o seu administrador.",
|
||||
"errorBadImageUrl": "O URL da imagem está incorreto",
|
||||
"errorConnectToServer": "Não é possível guardar este documento. Verifique as definições de ligação ou entre em contato com o administrador. <br> Ao clicar no botão 'OK', será solicitado a descarregar o documento.",
|
||||
"errorDatabaseConnection": "Erro externo.<br>Erro de ligação à base de dados. Contacte o suporte.",
|
||||
"errorDataEncrypted": "Foram recebidas alterações cifradas que não puderam ser decifradas.",
|
||||
"errorDataRange": "Intervalo de dados incorreto.",
|
||||
"errorDefaultMessage": "Código de erro: %1",
|
||||
"errorEditingDownloadas": "Ocorreu um erro durante o trabalho com o documento. <br> Use a opção 'Descarregar' para guardar a cópia de segurança do ficheiro localmente.",
|
||||
"errorFilePassProtect": "Este ficheiro está protegido por uma palavra-passe e não foi possível abri-lo. ",
|
||||
"errorFileSizeExceed": "O tamanho do ficheiro excede a limitação máxima do seu servidor.<br>Por favor, contacte o seu administrador para obter mais informações.",
|
||||
"errorKeyEncrypt": "Descritor de chave desconhecido",
|
||||
"errorKeyExpire": "Descritor de chave expirado",
|
||||
"errorLoadingFont": "Tipos de letra não carregados.<br>Por favor contacte o administrador do servidor de documentos.",
|
||||
"errorSessionAbsolute": "A sessão de edição de documentos expirou. Por favor, volte a carregar a página.",
|
||||
"errorSessionIdle": "Há muito tempo que o documento não é editado. Por favor, volte a carregar a página.",
|
||||
"errorSessionToken": "A ligação ao servidor foi interrompida. Por favor, volte a carregar a página.",
|
||||
"errorStockChart": "Ordem das linhas incorreta. Para construir um gráfico de cotações, introduza os dados na folha com a seguinte ordem:<br> preço de abertura, preço máximo, preço mínimo, preço de fecho.",
|
||||
"errorUpdateVersionOnDisconnect": "A ligação com a Internet foi restaurada e a versão do ficheiro foi alterada. <br> Antes de continuar a trabalhar, descarregue o ficheiro ou copie o seu conteúdo para garantir que nada seja perdido e depois recarregue esta página.",
|
||||
"errorUserDrop": "O arquivo não pode ser acessado agora.",
|
||||
"errorUsersExceed": "O número de usuários permitidos pelo plano de preços foi excedido",
|
||||
"errorViewerDisconnect": "Ligação perdida. Ainda pode ver o documento mas não será<br>possível descarregar ou imprimir o documento se a ligação não for restaurada e a página recarregada.",
|
||||
"notcriticalErrorTitle": "Aviso",
|
||||
"openErrorText": "Ocorreu um erro ao abrir o ficheiro",
|
||||
"saveErrorText": "Ocorreu um erro ao guardar o ficheiro",
|
||||
"scriptLoadError": "A ligação está demasiado lenta, não foi possível carregar alguns dos componentes. Por favor, recarregue a página. ",
|
||||
"splitDividerErrorText": "O número de linhas tem que ser um divisor de %1",
|
||||
"splitMaxColsErrorText": "O número de colunas tem que ser inferior a %1",
|
||||
"splitMaxRowsErrorText": "O número de linhas tem que ser inferior a %1",
|
||||
"unknownErrorText": "Erro desconhecido.",
|
||||
"uploadImageExtMessage": "Formato de imagem desconhecido.",
|
||||
"uploadImageFileCountMessage": "Nenhuma imagem carregada.",
|
||||
"uploadImageSizeMessage": "A imagem é demasiado grande. O tamanho máximo é de 25 MB."
|
||||
},
|
||||
"LongActions": {
|
||||
"applyChangesTextText": "Carregando dados...",
|
||||
"applyChangesTitleText": "Carregando dados",
|
||||
"downloadTextText": "A descarregar documento...",
|
||||
"downloadTitleText": "A descarregar documento",
|
||||
"loadFontsTextText": "Carregando dados...",
|
||||
"loadFontsTitleText": "Carregando dados",
|
||||
"loadFontTextText": "Carregando dados...",
|
||||
"loadFontTitleText": "Carregando dados",
|
||||
"loadImagesTextText": "Carregando imagens...",
|
||||
"loadImagesTitleText": "Carregando imagens",
|
||||
"loadImageTextText": "Carregando imagem...",
|
||||
"loadImageTitleText": "Carregando imagem",
|
||||
"loadingDocumentTextText": "Carregando documento...",
|
||||
"loadingDocumentTitleText": "Carregando documento",
|
||||
"loadThemeTextText": "Carregando temas...",
|
||||
"loadThemeTitleText": "Carregando tema",
|
||||
"openTextText": "Abrindo documento...",
|
||||
"openTitleText": "Abrindo documento",
|
||||
"printTextText": "Imprimindo documento...",
|
||||
"printTitleText": "Imprimindo documento",
|
||||
"savePreparingText": "Preparando para salvar",
|
||||
"savePreparingTitle": "A preparar para guardar. Por favor aguarde...",
|
||||
"saveTextText": "Salvando documento...",
|
||||
"saveTitleText": "Salvando documento",
|
||||
"textLoadingDocument": "Carregando documento",
|
||||
"txtEditingMode": "Definir modo de edição...",
|
||||
"uploadImageTextText": "Carregando imagem...",
|
||||
"uploadImageTitleText": "Carregando imagem",
|
||||
"waitText": "Por favor aguarde..."
|
||||
},
|
||||
"Toolbar": {
|
||||
"dlgLeaveMsgText": "Tem alterações não guardadas neste documento. Clique em 'Ficar nesta página' para aguardar pelo guardar automaticamente. Clique em 'Deixar esta página' para se desfazer de todas as alterações não guardadas.",
|
||||
"dlgLeaveTitleText": "Saiu da aplicação",
|
||||
"leaveButtonText": "Sair da página",
|
||||
"stayButtonText": "Ficar na página"
|
||||
},
|
||||
"View": {
|
||||
"Add": {
|
||||
"notcriticalErrorTitle": "Aviso",
|
||||
"textAddLink": "Adicionar ligação",
|
||||
"textAddress": "Endereço",
|
||||
"textBack": "Voltar",
|
||||
"textCancel": "Cancelar",
|
||||
"textColumns": "Colunas",
|
||||
"textComment": "Comentário",
|
||||
"textDefault": "Texto selecionado",
|
||||
"textDisplay": "Mostrar",
|
||||
"textEmptyImgUrl": "É necessário especificar o URL da imagem.",
|
||||
"textExternalLink": "Ligação externa",
|
||||
"textFirstSlide": "Primeiro diapositivo",
|
||||
"textImage": "Imagem",
|
||||
"textImageURL": "URL da imagem",
|
||||
"textInsert": "Inserir",
|
||||
"textInsertImage": "Inserir imagem",
|
||||
"textLastSlide": "Último diapositivo",
|
||||
"textLink": "Ligação",
|
||||
"textLinkSettings": "Definições de ligação",
|
||||
"textLinkTo": "Ligação a",
|
||||
"textLinkType": "Tipo de ligação",
|
||||
"textNextSlide": "Diapositivo seguinte",
|
||||
"textOk": "Ok",
|
||||
"textOther": "Outros",
|
||||
"textPictureFromLibrary": "Imagem da biblioteca",
|
||||
"textPictureFromURL": "Imagem de um URL",
|
||||
"textPreviousSlide": "Diapositivo anterior",
|
||||
"textRows": "Linhas",
|
||||
"textScreenTip": "Dica no ecrã",
|
||||
"textShape": "Forma",
|
||||
"textSlide": "Diapositivo",
|
||||
"textSlideInThisPresentation": "Diapositivo nesta apresentação",
|
||||
"textSlideNumber": "Número do diapositivo",
|
||||
"textTable": "Tabela",
|
||||
"textTableSize": "Tamanho da tabela",
|
||||
"txtNotUrl": "Este campo deve ser um URL no formato \"http://www.exemplo.com\""
|
||||
},
|
||||
"Edit": {
|
||||
"notcriticalErrorTitle": "Aviso",
|
||||
"textActualSize": "Tamanho real",
|
||||
"textAddCustomColor": "Adicionar cor personalizada",
|
||||
"textAdditional": "Adicional",
|
||||
"textAdditionalFormatting": "Formatação adicional",
|
||||
"textAddress": "Endereço",
|
||||
"textAfter": "Depois",
|
||||
"textAlign": "Alinhar",
|
||||
"textAlignBottom": "Alinhar à parte inferior",
|
||||
"textAlignCenter": "Alinhar ao centro",
|
||||
"textAlignLeft": "Alinhar à esquerda",
|
||||
"textAlignMiddle": "Alinhar ao meio",
|
||||
"textAlignRight": "Alinhar à direita",
|
||||
"textAlignTop": "Alinhar à parte superior",
|
||||
"textAllCaps": "Tudo em maiúsculas",
|
||||
"textApplyAll": "Aplicar a todos os diapositivos",
|
||||
"textAuto": "Automático",
|
||||
"textAutomatic": "Automático",
|
||||
"textBack": "Voltar",
|
||||
"textBandedColumn": "Diferenciação de colunas",
|
||||
"textBandedRow": "Diferenciação de linhas",
|
||||
"textBefore": "Antes",
|
||||
"textBlack": "Através preto",
|
||||
"textBorder": "Borda",
|
||||
"textBottom": "Inferior",
|
||||
"textBottomLeft": "Inferior esquerdo",
|
||||
"textBottomRight": "Inferior direito",
|
||||
"textBringToForeground": "Trazer para primeiro plano",
|
||||
"textBullets": "Marcadores",
|
||||
"textBulletsAndNumbers": "Marcas e numeração",
|
||||
"textCaseSensitive": "Maiúsculas e Minúsculas",
|
||||
"textCellMargins": "Margens da célula",
|
||||
"textChart": "Gráfico",
|
||||
"textClock": "Relógio",
|
||||
"textClockwise": "Sentido horário",
|
||||
"textColor": "Cor",
|
||||
"textCounterclockwise": "Sentido anti-horário",
|
||||
"textCover": "Capa",
|
||||
"textCustomColor": "Cor personalizada",
|
||||
"textDefault": "Texto selecionado",
|
||||
"textDelay": "Atraso",
|
||||
"textDeleteSlide": "Eliminar diapositivo",
|
||||
"textDesign": "Design",
|
||||
"textDisplay": "Mostrar",
|
||||
"textDistanceFromText": "Distância do texto",
|
||||
"textDistributeHorizontally": "Distribuir horizontalmente",
|
||||
"textDistributeVertically": "Distribuir verticalmente",
|
||||
"textDone": "Concluído",
|
||||
"textDoubleStrikethrough": "Duplo rasurado",
|
||||
"textDuplicateSlide": "Duplicar diapositivo",
|
||||
"textDuration": "Duração",
|
||||
"textEditLink": "Editar ligação",
|
||||
"textEffect": "Efeito",
|
||||
"textEffects": "Efeitos",
|
||||
"textEmptyImgUrl": "É necessário especificar o URL da imagem.",
|
||||
"textExternalLink": "Ligação externa",
|
||||
"textFade": "Esmaecer",
|
||||
"textFill": "Preencher",
|
||||
"textFinalMessage": "Fim da pré-visualização de slide. Clique para sair.",
|
||||
"textFind": "Localizar",
|
||||
"textFindAndReplace": "Localizar e substituir",
|
||||
"textFirstColumn": "Primeira coluna",
|
||||
"textFirstSlide": "Primeiro diapositivo",
|
||||
"textFontColor": "Cor do tipo de letra",
|
||||
"textFontColors": "Cores do tipo de letra",
|
||||
"textFonts": "Tipos de letra",
|
||||
"textFromLibrary": "Imagem da biblioteca",
|
||||
"textFromURL": "Imagem de um URL",
|
||||
"textHeaderRow": "Linha de cabeçalho",
|
||||
"textHighlight": "Destacar resultados",
|
||||
"textHighlightColor": "Cor de destaque",
|
||||
"textHorizontalIn": "Horizontal para dentro",
|
||||
"textHorizontalOut": "Horizontal para fora",
|
||||
"textHyperlink": "Hiperligação",
|
||||
"textImage": "Imagem",
|
||||
"textImageURL": "URL da imagem",
|
||||
"textLastColumn": "Última coluna",
|
||||
"textLastSlide": "Último diapositivo",
|
||||
"textLayout": "Disposição",
|
||||
"textLeft": "Esquerda",
|
||||
"textLetterSpacing": "Espaçamento entre letras",
|
||||
"textLineSpacing": "Espaçamento entre linhas",
|
||||
"textLink": "Ligação",
|
||||
"textLinkSettings": "Definições de ligação",
|
||||
"textLinkTo": "Ligação a",
|
||||
"textLinkType": "Tipo de ligação",
|
||||
"textMoveBackward": "Mover para trás",
|
||||
"textMoveForward": "Mover para frente",
|
||||
"textNextSlide": "Diapositivo seguinte",
|
||||
"textNone": "Nenhum",
|
||||
"textNoStyles": "Sem estilos para este tipo de gráficos.",
|
||||
"textNoTextFound": "Texto não encontrado",
|
||||
"textNotUrl": "Este campo deve ser um URL no formato \"http://www.exemplo.com\"",
|
||||
"textNumbers": "Números",
|
||||
"textOk": "Ok",
|
||||
"textOpacity": "Opacidade",
|
||||
"textOptions": "Opções",
|
||||
"textPictureFromLibrary": "Imagem da biblioteca",
|
||||
"textPictureFromURL": "Imagem de um URL",
|
||||
"textPreviousSlide": "Diapositivo anterior",
|
||||
"textPt": "pt",
|
||||
"textPush": "Empurrar",
|
||||
"textRemoveChart": "Remover gráfico",
|
||||
"textRemoveImage": "Remover imagem",
|
||||
"textRemoveLink": "Remover ligação",
|
||||
"textRemoveShape": "Remover forma",
|
||||
"textRemoveTable": "Remover tabela",
|
||||
"textReorder": "Reordenar",
|
||||
"textReplace": "Substituir",
|
||||
"textReplaceAll": "Substituir tudo",
|
||||
"textReplaceImage": "Substituir imagem",
|
||||
"textRight": "Direita",
|
||||
"textScreenTip": "Dica no ecrã",
|
||||
"textSearch": "Pesquisar",
|
||||
"textSec": "s",
|
||||
"textSelectObjectToEdit": "Selecionar objeto para editar",
|
||||
"textSendToBackground": "Enviar para plano de fundo",
|
||||
"textShape": "Forma",
|
||||
"textSize": "Tamanho",
|
||||
"textSlide": "Diapositivo",
|
||||
"textSlideInThisPresentation": "Diapositivo nesta apresentação",
|
||||
"textSlideNumber": "Número do diapositivo",
|
||||
"textSmallCaps": "Versaletes",
|
||||
"textSmoothly": "Suavemente",
|
||||
"textSplit": "Dividir",
|
||||
"textStartOnClick": "Iniciar ao clicar",
|
||||
"textStrikethrough": "Rasurado",
|
||||
"textStyle": "Estilo",
|
||||
"textStyleOptions": "Opções de estilo",
|
||||
"textSubscript": "Subscrito",
|
||||
"textSuperscript": "Sobrescrito",
|
||||
"textTable": "Tabela",
|
||||
"textText": "Texto",
|
||||
"textTheme": "Tema",
|
||||
"textTop": "Parte superior",
|
||||
"textTopLeft": "Parte superior esquerda",
|
||||
"textTopRight": "Parte superior direita",
|
||||
"textTotalRow": "Total de linhas",
|
||||
"textTransitions": "Transições",
|
||||
"textType": "Tipo",
|
||||
"textUnCover": "Descobrir",
|
||||
"textVerticalIn": "Vertical para dentro",
|
||||
"textVerticalOut": "Vertical para fora",
|
||||
"textWedge": "Triangular",
|
||||
"textWipe": "Revelar",
|
||||
"textZoom": "Zoom",
|
||||
"textZoomIn": "Ampliar",
|
||||
"textZoomOut": "Reduzir",
|
||||
"textZoomRotate": "Zoom e Rotação"
|
||||
},
|
||||
"Settings": {
|
||||
"mniSlideStandard": "Padrão (4:3)",
|
||||
"mniSlideWide": "Ecrã panorâmico (16:9)",
|
||||
"textAbout": "Acerca",
|
||||
"textAddress": "endereço:",
|
||||
"textApplication": "Aplicação",
|
||||
"textApplicationSettings": "Definições da aplicação",
|
||||
"textAuthor": "Autor",
|
||||
"textBack": "Voltar",
|
||||
"textCaseSensitive": "Maiúsculas e Minúsculas",
|
||||
"textCentimeter": "Centímetro",
|
||||
"textCollaboration": "Colaboração",
|
||||
"textColorSchemes": "Esquemas de cor",
|
||||
"textComment": "Comentário",
|
||||
"textCreated": "Criado",
|
||||
"textDarkTheme": "Tema Escuro",
|
||||
"textDisableAll": "Desativar tudo",
|
||||
"textDisableAllMacrosWithNotification": "Desativar todas as macros com notificação",
|
||||
"textDisableAllMacrosWithoutNotification": "Desativar todas as macros sem notificação",
|
||||
"textDone": "Concluído",
|
||||
"textDownload": "Descarregar",
|
||||
"textDownloadAs": "Descarregar como...",
|
||||
"textEmail": "e-mail:",
|
||||
"textEnableAll": "Ativar tudo",
|
||||
"textEnableAllMacrosWithoutNotification": "Ativar todas as macros sem notificação",
|
||||
"textFind": "Localizar",
|
||||
"textFindAndReplace": "Localizar e substituir",
|
||||
"textFindAndReplaceAll": "Localizar e substituir tudo",
|
||||
"textHelp": "Ajuda",
|
||||
"textHighlight": "Destacar resultados",
|
||||
"textInch": "Polegada",
|
||||
"textLastModified": "Última modificação",
|
||||
"textLastModifiedBy": "Última modificação por",
|
||||
"textLoading": "Carregando...",
|
||||
"textLocation": "Localização",
|
||||
"textMacrosSettings": "Definições de macros",
|
||||
"textNoTextFound": "Texto não encontrado",
|
||||
"textOwner": "Proprietário",
|
||||
"textPoint": "Ponto",
|
||||
"textPoweredBy": "Desenvolvido por",
|
||||
"textPresentationInfo": "Informação da Apresentação",
|
||||
"textPresentationSettings": "Definições da apresentação",
|
||||
"textPresentationTitle": "Título da Apresentação",
|
||||
"textPrint": "Imprimir",
|
||||
"textReplace": "Substituir",
|
||||
"textReplaceAll": "Substituir tudo",
|
||||
"textSearch": "Pesquisar",
|
||||
"textSettings": "Configurações",
|
||||
"textShowNotification": "Mostrar notificação",
|
||||
"textSlideSize": "Tamanho do diapositivo",
|
||||
"textSpellcheck": "Verificação ortográfica",
|
||||
"textSubject": "Assunto",
|
||||
"textTel": "tel:",
|
||||
"textTitle": "Título",
|
||||
"textUnitOfMeasurement": "Unidade de medida",
|
||||
"textUploaded": "Carregado",
|
||||
"textVersion": "Versão",
|
||||
"txtScheme1": "Office",
|
||||
"txtScheme10": "Mediana",
|
||||
"txtScheme11": "Metro",
|
||||
"txtScheme12": "Módulo",
|
||||
"txtScheme13": "Opulento",
|
||||
"txtScheme14": "Balcão envidraçado",
|
||||
"txtScheme15": "Origem",
|
||||
"txtScheme16": "Papel",
|
||||
"txtScheme17": "Solstício",
|
||||
"txtScheme18": "Técnica",
|
||||
"txtScheme19": "Viagem",
|
||||
"txtScheme2": "Escala de cinza",
|
||||
"txtScheme20": "Urbano",
|
||||
"txtScheme21": "Verve",
|
||||
"txtScheme22": "Novo Escritório",
|
||||
"txtScheme3": "Ápice",
|
||||
"txtScheme4": "Aspecto",
|
||||
"txtScheme5": "Cívico",
|
||||
"txtScheme6": "Concurso",
|
||||
"txtScheme7": "Equidade",
|
||||
"txtScheme8": "Fluxo",
|
||||
"txtScheme9": "Fundição",
|
||||
"textFeedback": "Feedback & Support"
|
||||
}
|
||||
}
|
||||
}
|
479
apps/presentationeditor/mobile/locale/zh-TW.json
Normal file
479
apps/presentationeditor/mobile/locale/zh-TW.json
Normal file
|
@ -0,0 +1,479 @@
|
|||
{
|
||||
"About": {
|
||||
"textAbout": "關於",
|
||||
"textAddress": "地址",
|
||||
"textBack": "返回",
|
||||
"textEmail": "電子郵件",
|
||||
"textPoweredBy": "於支援",
|
||||
"textTel": "電話",
|
||||
"textVersion": "版本"
|
||||
},
|
||||
"Common": {
|
||||
"Collaboration": {
|
||||
"notcriticalErrorTitle": "警告",
|
||||
"textAddComment": "新增註解",
|
||||
"textAddReply": "加入回應",
|
||||
"textBack": "返回",
|
||||
"textCancel": "取消",
|
||||
"textCollaboration": "協作",
|
||||
"textComments": "評論",
|
||||
"textDeleteComment": "刪除評論",
|
||||
"textDeleteReply": "刪除回覆",
|
||||
"textDone": "完成",
|
||||
"textEdit": "編輯",
|
||||
"textEditComment": "編輯評論",
|
||||
"textEditReply": "編輯回覆",
|
||||
"textEditUser": "正在編輯文件的用戶:",
|
||||
"textMessageDeleteComment": "確定要刪除評論嗎?",
|
||||
"textMessageDeleteReply": "確定要刪除回覆嗎?",
|
||||
"textNoComments": "此文件未包含回應訊息",
|
||||
"textOk": "確定",
|
||||
"textReopen": "重開",
|
||||
"textResolve": "解決",
|
||||
"textTryUndoRedo": "在快速共同編輯模式下,撤消/重做功能被禁用。",
|
||||
"textUsers": "使用者"
|
||||
},
|
||||
"HighlightColorPalette": {
|
||||
"textNoFill": "沒有填充"
|
||||
},
|
||||
"ThemeColorPalette": {
|
||||
"textCustomColors": "自訂顏色",
|
||||
"textStandartColors": "標準顏色",
|
||||
"textThemeColors": "主題顏色"
|
||||
}
|
||||
},
|
||||
"ContextMenu": {
|
||||
"errorCopyCutPaste": "使用上下文選單進行的複制,剪切和粘貼操作將僅在當前文件內執行。",
|
||||
"menuAddComment": "新增註解",
|
||||
"menuAddLink": "新增連結",
|
||||
"menuCancel": "取消",
|
||||
"menuDelete": "刪除",
|
||||
"menuDeleteTable": "刪除表格",
|
||||
"menuEdit": "編輯",
|
||||
"menuMerge": "合併",
|
||||
"menuMore": "更多",
|
||||
"menuOpenLink": "打開連結",
|
||||
"menuSplit": "分裂",
|
||||
"menuViewComment": "查看評論",
|
||||
"textColumns": "欄",
|
||||
"textCopyCutPasteActions": "複製, 剪下, 與貼上之動作",
|
||||
"textDoNotShowAgain": "不再顯示",
|
||||
"textRows": "行列"
|
||||
},
|
||||
"Controller": {
|
||||
"Main": {
|
||||
"advDRMOptions": "受保護的文件",
|
||||
"advDRMPassword": "密碼",
|
||||
"closeButtonText": "關閉檔案",
|
||||
"criticalErrorTitle": "錯誤",
|
||||
"errorAccessDeny": "您正在嘗試執行您無權執行的動作。<br>請聯繫您的管理員。",
|
||||
"errorOpensource": "在使用免費社群版本時,您只能瀏覽開啟的文件。欲使用移動版本的編輯功能,您需要付費的憑證。",
|
||||
"errorProcessSaveResult": "儲存失敗",
|
||||
"errorServerVersion": "編輯器版本已更新。該頁面將被重新加載以應用更改。",
|
||||
"errorUpdateVersion": "文件版本已更改。該頁面將重新加載。",
|
||||
"leavePageText": "您在此文件中有未儲存的變更。點擊\"留在此頁面\"以等待自動儲存。點擊\"離開此頁面\"以放棄所有未儲存的變更。",
|
||||
"notcriticalErrorTitle": "警告",
|
||||
"SDK": {
|
||||
"Chart": "圖表",
|
||||
"Click to add first slide": "點擊以新增第一張簡報",
|
||||
"Click to add notes": "點擊添加筆記",
|
||||
"ClipArt": "剪貼畫",
|
||||
"Date and time": "日期和時間",
|
||||
"Diagram": "圖表",
|
||||
"Diagram Title": "圖表標題",
|
||||
"Footer": "頁尾",
|
||||
"Header": "標頭",
|
||||
"Image": "圖像",
|
||||
"Loading": "載入中",
|
||||
"Media": "媒體",
|
||||
"None": "無",
|
||||
"Picture": "圖片",
|
||||
"Series": "系列",
|
||||
"Slide number": "幻燈片頁碼",
|
||||
"Slide subtitle": "幻燈片副標題",
|
||||
"Slide text": "幻燈片字幕",
|
||||
"Slide title": "幻燈片標題",
|
||||
"Table": "表格",
|
||||
"X Axis": "X 軸 XAS",
|
||||
"Y Axis": "Y軸",
|
||||
"Your text here": "在這輸入文字"
|
||||
},
|
||||
"textAnonymous": "匿名",
|
||||
"textBuyNow": "訪問網站",
|
||||
"textClose": "關閉",
|
||||
"textContactUs": "聯絡銷售人員",
|
||||
"textCustomLoader": "很抱歉,您無權變更載入程序。 請聯繫我們的業務部門取得報價。",
|
||||
"textGuest": "來賓",
|
||||
"textHasMacros": "此檔案包含自動巨集程式。<br>是否要運行這些巨集?",
|
||||
"textNo": "沒有",
|
||||
"textNoLicenseTitle": "達到許可限制",
|
||||
"textNoTextFound": "找不到文字",
|
||||
"textOpenFile": "輸入檔案密碼",
|
||||
"textPaidFeature": "付費功能",
|
||||
"textRemember": "記住我的選擇",
|
||||
"textReplaceSkipped": "替換已完成。 {0}個事件被跳過。",
|
||||
"textReplaceSuccess": "搜索已完成。發生的事件已替換:{0}",
|
||||
"textYes": "是",
|
||||
"titleLicenseExp": "證件過期",
|
||||
"titleServerVersion": "編輯器已更新",
|
||||
"titleUpdateVersion": "版本已更改",
|
||||
"txtIncorrectPwd": "密碼錯誤",
|
||||
"txtProtected": "輸入密碼並打開文件後,該文件的當前密碼將被重置",
|
||||
"warnLicenseExceeded": "您已達到同時連接到 %1 編輯器的限制。此文件將只提供檢視。請聯繫您的管理員以了解更多資訊。",
|
||||
"warnLicenseExp": "您的授權已過期。請更新它並重新載入頁面。",
|
||||
"warnLicenseLimitedNoAccess": "授權過期。 您無法進入文件編輯功能。 請聯繫您的管理員。",
|
||||
"warnLicenseLimitedRenewed": "憑證需要續約。您目前只有文件編輯的部份功能。<br>欲使用完整功能,請聯絡您的帳號管理員。",
|
||||
"warnLicenseUsersExceeded": "您已達到%1個編輯器的用戶限制。請與您的管理員聯繫以了解更多信息。",
|
||||
"warnNoLicense": "您已達到同時連接到 %1 編輯器的限制。此文件將只提供檢視。有關個人升級條款,請聯繫 %1 業務團隊。",
|
||||
"warnNoLicenseUsers": "您已達到%1個編輯器的用戶限制。與%1銷售團隊聯繫以了解個人升級條款。",
|
||||
"warnProcessRightsChange": "您沒有編輯此文件的權限。"
|
||||
}
|
||||
},
|
||||
"Error": {
|
||||
"convertationTimeoutText": "轉換逾時。",
|
||||
"criticalErrorExtText": "點擊\"好\"回到文件列表。",
|
||||
"criticalErrorTitle": "錯誤",
|
||||
"downloadErrorText": "下載失敗",
|
||||
"errorAccessDeny": "您正在嘗試執行您無權執行的動作。<br>請聯繫您的管理員。",
|
||||
"errorBadImageUrl": "不正確的圖像 URL",
|
||||
"errorConnectToServer": "您已達到同時連接到 %1 編輯器的限制。此文件將只提供檢視。請聯繫您的管理員以了解更多資訊。",
|
||||
"errorDatabaseConnection": "外部錯誤<br> 資料庫連結錯誤, 請聯絡技術支援。",
|
||||
"errorDataEncrypted": "已收到加密的更改,無法解密。",
|
||||
"errorDataRange": "不正確的資料範圍",
|
||||
"errorDefaultMessage": "錯誤編號:%1",
|
||||
"errorEditingDownloadas": "處理文件檔時發生錯誤。<br>請使用\"下載\"來儲存一份備份檔案到本機端。",
|
||||
"errorFilePassProtect": "此文件使用密碼保護功能,無法開啟。",
|
||||
"errorFileSizeExceed": "檔案大小已超過了您的伺服器限制。<br>請聯繫您的管理員。",
|
||||
"errorKeyEncrypt": "未知密鑰描述符",
|
||||
"errorKeyExpire": "密鑰描述符已過期",
|
||||
"errorLoadingFont": "字體未載入。<br>請聯絡文件服務(Document Server)管理員。",
|
||||
"errorSessionAbsolute": "該文件編輯時效已欲期。請重新載入此頁面。",
|
||||
"errorSessionIdle": "無 該文件已經有一段時間沒有進行編輯了。 請重新載入頁面。",
|
||||
"errorSessionToken": "主機連線被中斷,請重新載入此頁面。",
|
||||
"errorStockChart": "行序錯誤。要建立股票圖表,請將數據按照以下順序工作表:<br> 開盤價、最高價、最低價、收盤價。",
|
||||
"errorUpdateVersionOnDisconnect": "網路連線已恢復,且文件版本已變更。<br>在您繼續工作之前,請下載文件或複製其內容以確保沒有任何內容遺失,之後重新載入本頁面。",
|
||||
"errorUserDrop": "目前無法存取該文件。",
|
||||
"errorUsersExceed": "超出了定價計劃所允許的用戶數量",
|
||||
"errorViewerDisconnect": "網路連線失敗。您可以繼續瀏覽這份文件,<br>在連線恢復前以及頁面重新加載之前,您無法下載或列印此文件。",
|
||||
"notcriticalErrorTitle": "警告",
|
||||
"openErrorText": "開啟文件時發生錯誤",
|
||||
"saveErrorText": "存檔時發生錯誤",
|
||||
"scriptLoadError": "連線速度過慢,某些組件無法加載。 請重新載入頁面。",
|
||||
"splitDividerErrorText": "行數必須是%1的除數",
|
||||
"splitMaxColsErrorText": "列數必須少於%1",
|
||||
"splitMaxRowsErrorText": "行數必須少於%1",
|
||||
"unknownErrorText": "未知錯誤。",
|
||||
"uploadImageExtMessage": "圖片格式未知。",
|
||||
"uploadImageFileCountMessage": "沒有上傳圖片。",
|
||||
"uploadImageSizeMessage": "圖像超出最大大小限制。最大大小為25MB。"
|
||||
},
|
||||
"LongActions": {
|
||||
"applyChangesTextText": "加載數據中...",
|
||||
"applyChangesTitleText": "加載數據中",
|
||||
"downloadTextText": "文件下載中...",
|
||||
"downloadTitleText": "文件下載中",
|
||||
"loadFontsTextText": "加載數據中...",
|
||||
"loadFontsTitleText": "加載數據中",
|
||||
"loadFontTextText": "加載數據中...",
|
||||
"loadFontTitleText": "加載數據中",
|
||||
"loadImagesTextText": "正在載入圖片...",
|
||||
"loadImagesTitleText": "正在載入圖片",
|
||||
"loadImageTextText": "正在載入圖片...",
|
||||
"loadImageTitleText": "正在載入圖片",
|
||||
"loadingDocumentTextText": "正在載入文件...",
|
||||
"loadingDocumentTitleText": "載入文件",
|
||||
"loadThemeTextText": "載入主題中...",
|
||||
"loadThemeTitleText": "載入主題中",
|
||||
"openTextText": "開啟文件中...",
|
||||
"openTitleText": "開啟文件中",
|
||||
"printTextText": "列印文件中...",
|
||||
"printTitleText": "列印文件",
|
||||
"savePreparingText": "準備保存",
|
||||
"savePreparingTitle": "正在準備保存。請耐心等待...",
|
||||
"saveTextText": "儲存文件...",
|
||||
"saveTitleText": "儲存文件",
|
||||
"textLoadingDocument": "載入文件",
|
||||
"txtEditingMode": "設定編輯模式...",
|
||||
"uploadImageTextText": "正在上傳圖片...",
|
||||
"uploadImageTitleText": "上載圖片",
|
||||
"waitText": "請耐心等待..."
|
||||
},
|
||||
"Toolbar": {
|
||||
"dlgLeaveMsgText": "您在此文件中有未儲存的變更。點擊\"留在此頁面\"以等待自動儲存。點擊\"離開此頁面\"以放棄所有未儲存的變更。",
|
||||
"dlgLeaveTitleText": "您離開應用程式",
|
||||
"leaveButtonText": "離開這個頁面",
|
||||
"stayButtonText": "保持此頁上"
|
||||
},
|
||||
"View": {
|
||||
"Add": {
|
||||
"notcriticalErrorTitle": "警告",
|
||||
"textAddLink": "新增連結",
|
||||
"textAddress": "地址",
|
||||
"textBack": "返回",
|
||||
"textCancel": "取消",
|
||||
"textColumns": "欄",
|
||||
"textComment": "評論",
|
||||
"textDefault": "所選文字",
|
||||
"textDisplay": "顯示",
|
||||
"textEmptyImgUrl": "您需要指定影像的 URL。",
|
||||
"textExternalLink": "外部連結",
|
||||
"textFirstSlide": "第一張幻燈片",
|
||||
"textImage": "圖像",
|
||||
"textImageURL": "圖像 URL",
|
||||
"textInsert": "插入",
|
||||
"textInsertImage": "插入圖片",
|
||||
"textLastSlide": "最後一張幻燈片",
|
||||
"textLink": "連結",
|
||||
"textLinkSettings": "連結設定",
|
||||
"textLinkTo": "連結至",
|
||||
"textLinkType": "鏈接類型",
|
||||
"textNextSlide": "下一張幻燈片",
|
||||
"textOk": "確定",
|
||||
"textOther": "其它",
|
||||
"textPictureFromLibrary": "圖片來自圖書館",
|
||||
"textPictureFromURL": "網址圖片",
|
||||
"textPreviousSlide": "上一張幻燈片",
|
||||
"textRows": "行列",
|
||||
"textScreenTip": "屏幕提示",
|
||||
"textShape": "形狀",
|
||||
"textSlide": "幻燈片",
|
||||
"textSlideInThisPresentation": "這個簡報中的投影片",
|
||||
"textSlideNumber": "幻燈片頁碼",
|
||||
"textTable": "表格",
|
||||
"textTableSize": "表格大小",
|
||||
"txtNotUrl": "此字段應為格式為“ http://www.example.com”的URL。"
|
||||
},
|
||||
"Edit": {
|
||||
"notcriticalErrorTitle": "警告",
|
||||
"textActualSize": "實際大小",
|
||||
"textAddCustomColor": "新增客制化顏色",
|
||||
"textAdditional": "額外",
|
||||
"textAdditionalFormatting": "額外格式化方式",
|
||||
"textAddress": "地址",
|
||||
"textAfter": "之後",
|
||||
"textAlign": "對齊",
|
||||
"textAlignBottom": "底部對齊",
|
||||
"textAlignCenter": "居中對齊",
|
||||
"textAlignLeft": "對齊左側",
|
||||
"textAlignMiddle": "中央對齊",
|
||||
"textAlignRight": "對齊右側",
|
||||
"textAlignTop": "上方對齊",
|
||||
"textAllCaps": "全部大寫",
|
||||
"textApplyAll": "應用於所有投影片",
|
||||
"textAuto": "自動",
|
||||
"textAutomatic": "自動",
|
||||
"textBack": "返回",
|
||||
"textBandedColumn": "分帶欄",
|
||||
"textBandedRow": "分帶列",
|
||||
"textBefore": "之前",
|
||||
"textBlack": "通過黑",
|
||||
"textBorder": "邊框",
|
||||
"textBottom": "底部",
|
||||
"textBottomLeft": "左下方",
|
||||
"textBottomRight": "右下方",
|
||||
"textBringToForeground": "移到前景執行",
|
||||
"textBullets": "項目符號",
|
||||
"textBulletsAndNumbers": "符號項目與編號",
|
||||
"textCaseSensitive": "區分大小寫",
|
||||
"textCellMargins": "儲存格邊距",
|
||||
"textChart": "圖表",
|
||||
"textClock": "時鐘",
|
||||
"textClockwise": "順時針",
|
||||
"textColor": "顏色",
|
||||
"textCounterclockwise": "逆時針",
|
||||
"textCover": "覆蓋",
|
||||
"textCustomColor": "自訂顏色",
|
||||
"textDefault": "所選文字",
|
||||
"textDelay": "延遲",
|
||||
"textDeleteSlide": "刪除幻燈片",
|
||||
"textDesign": "設計",
|
||||
"textDisplay": "顯示",
|
||||
"textDistanceFromText": "與文字的距離",
|
||||
"textDistributeHorizontally": "水平分佈",
|
||||
"textDistributeVertically": "垂直分佈",
|
||||
"textDone": "完成",
|
||||
"textDoubleStrikethrough": "雙刪除線",
|
||||
"textDuplicateSlide": "幻燈片複製",
|
||||
"textDuration": "持續時間",
|
||||
"textEditLink": "編輯連結",
|
||||
"textEffect": "效果",
|
||||
"textEffects": "作用",
|
||||
"textEmptyImgUrl": "您需要指定影像的 URL。",
|
||||
"textExternalLink": "外部連結",
|
||||
"textFade": "褪",
|
||||
"textFill": "填入",
|
||||
"textFinalMessage": "幻燈片預覽的結尾。單擊退出。",
|
||||
"textFind": "尋找",
|
||||
"textFindAndReplace": "尋找與取代",
|
||||
"textFirstColumn": "第一欄",
|
||||
"textFirstSlide": "第一張幻燈片",
|
||||
"textFontColor": "字體顏色",
|
||||
"textFontColors": "字體顏色",
|
||||
"textFonts": "字型",
|
||||
"textFromLibrary": "圖片來自圖書館",
|
||||
"textFromURL": "網址圖片",
|
||||
"textHeaderRow": "頁首列",
|
||||
"textHighlight": "強調結果",
|
||||
"textHighlightColor": "強調顏色",
|
||||
"textHorizontalIn": "水平輸入",
|
||||
"textHorizontalOut": "水平輸出",
|
||||
"textHyperlink": "超連結",
|
||||
"textImage": "圖像",
|
||||
"textImageURL": "圖像 URL",
|
||||
"textLastColumn": "最後一欄",
|
||||
"textLastSlide": "最後一張幻燈片",
|
||||
"textLayout": "佈局",
|
||||
"textLeft": "左",
|
||||
"textLetterSpacing": "字母間距",
|
||||
"textLineSpacing": "行間距",
|
||||
"textLink": "連結",
|
||||
"textLinkSettings": "連結設定",
|
||||
"textLinkTo": "連結至",
|
||||
"textLinkType": "鏈接類型",
|
||||
"textMoveBackward": "向後移動",
|
||||
"textMoveForward": "向前移動",
|
||||
"textNextSlide": "下一張幻燈片",
|
||||
"textNone": "無",
|
||||
"textNoStyles": "此類型的圖表沒有樣式。",
|
||||
"textNoTextFound": "找不到文字",
|
||||
"textNotUrl": "此字段應為格式為\"http://www.example.com\"的URL。",
|
||||
"textNumbers": "號碼",
|
||||
"textOk": "確定",
|
||||
"textOpacity": "透明度",
|
||||
"textOptions": "選項",
|
||||
"textPictureFromLibrary": "圖片來自圖書館",
|
||||
"textPictureFromURL": "網址圖片",
|
||||
"textPreviousSlide": "上一張幻燈片",
|
||||
"textPt": "pt",
|
||||
"textPush": "推",
|
||||
"textRemoveChart": "刪除圖表",
|
||||
"textRemoveImage": "移除圖片",
|
||||
"textRemoveLink": "刪除連結",
|
||||
"textRemoveShape": "去除形狀",
|
||||
"textRemoveTable": "刪除表",
|
||||
"textReorder": "重新排序",
|
||||
"textReplace": "取代",
|
||||
"textReplaceAll": "全部替換",
|
||||
"textReplaceImage": "替換圖片",
|
||||
"textRight": "右",
|
||||
"textScreenTip": "屏幕提示",
|
||||
"textSearch": "搜尋",
|
||||
"textSec": "秒",
|
||||
"textSelectObjectToEdit": "選擇要編輯的物件",
|
||||
"textSendToBackground": "傳送到背景",
|
||||
"textShape": "形狀",
|
||||
"textSize": "大小",
|
||||
"textSlide": "幻燈片",
|
||||
"textSlideInThisPresentation": "這個簡報中的投影片",
|
||||
"textSlideNumber": "幻燈片頁碼",
|
||||
"textSmallCaps": "小大寫",
|
||||
"textSmoothly": "順手",
|
||||
"textSplit": "分裂",
|
||||
"textStartOnClick": "點選後開始",
|
||||
"textStrikethrough": "刪除線",
|
||||
"textStyle": "樣式",
|
||||
"textStyleOptions": "樣式選項",
|
||||
"textSubscript": "下標",
|
||||
"textSuperscript": "上標",
|
||||
"textTable": "表格",
|
||||
"textText": "文字",
|
||||
"textTheme": "主題",
|
||||
"textTop": "上方",
|
||||
"textTopLeft": "左上方",
|
||||
"textTopRight": "右上方",
|
||||
"textTotalRow": "總行數",
|
||||
"textTransitions": "過渡",
|
||||
"textType": "類型",
|
||||
"textUnCover": "揭露",
|
||||
"textVerticalIn": "垂直輸入",
|
||||
"textVerticalOut": "垂直輸出",
|
||||
"textWedge": "楔",
|
||||
"textWipe": "擦拭",
|
||||
"textZoom": "放大",
|
||||
"textZoomIn": "放大",
|
||||
"textZoomOut": "縮小",
|
||||
"textZoomRotate": "放大和旋轉"
|
||||
},
|
||||
"Settings": {
|
||||
"mniSlideStandard": "標準(4:3)",
|
||||
"mniSlideWide": "寬銀幕(16:9)",
|
||||
"textAbout": "關於",
|
||||
"textAddress": "地址:",
|
||||
"textApplication": "應用程式",
|
||||
"textApplicationSettings": "應用程式設定",
|
||||
"textAuthor": "作者",
|
||||
"textBack": "返回",
|
||||
"textCaseSensitive": "區分大小寫",
|
||||
"textCentimeter": "公分",
|
||||
"textCollaboration": "協作",
|
||||
"textColorSchemes": "色盤",
|
||||
"textComment": "評論",
|
||||
"textCreated": "已建立",
|
||||
"textDarkTheme": "暗色主題",
|
||||
"textDisableAll": "全部停用",
|
||||
"textDisableAllMacrosWithNotification": "停用所有帶通知的巨集",
|
||||
"textDisableAllMacrosWithoutNotification": "停用所有不帶通知的巨集",
|
||||
"textDone": "完成",
|
||||
"textDownload": "下載",
|
||||
"textDownloadAs": "下載為...",
|
||||
"textEmail": "電子郵件:",
|
||||
"textEnableAll": "全部啟用",
|
||||
"textEnableAllMacrosWithoutNotification": "啟用所有不帶通知的巨集",
|
||||
"textFind": "尋找",
|
||||
"textFindAndReplace": "尋找與取代",
|
||||
"textFindAndReplaceAll": "尋找與全部取代",
|
||||
"textHelp": "輔助說明",
|
||||
"textHighlight": "強調結果",
|
||||
"textInch": "吋",
|
||||
"textLastModified": "上一次更改",
|
||||
"textLastModifiedBy": "最後修改者",
|
||||
"textLoading": "載入中...",
|
||||
"textLocation": "位置",
|
||||
"textMacrosSettings": "巨集設定",
|
||||
"textNoTextFound": "找不到文字",
|
||||
"textOwner": "擁有者",
|
||||
"textPoint": "點",
|
||||
"textPoweredBy": "於支援",
|
||||
"textPresentationInfo": "見報資訊",
|
||||
"textPresentationSettings": "簡報設定",
|
||||
"textPresentationTitle": "簡報標題",
|
||||
"textPrint": "打印",
|
||||
"textReplace": "取代",
|
||||
"textReplaceAll": "全部替換",
|
||||
"textSearch": "搜尋",
|
||||
"textSettings": "設定",
|
||||
"textShowNotification": "顯示通知",
|
||||
"textSlideSize": "幻燈片大小",
|
||||
"textSpellcheck": "拼字檢查",
|
||||
"textSubject": "主旨",
|
||||
"textTel": "電話",
|
||||
"textTitle": "標題",
|
||||
"textUnitOfMeasurement": "測量單位",
|
||||
"textUploaded": "\n已上傳",
|
||||
"textVersion": "版本",
|
||||
"txtScheme1": "辦公室",
|
||||
"txtScheme10": "中位數",
|
||||
"txtScheme11": " 地鐵",
|
||||
"txtScheme12": "模組",
|
||||
"txtScheme13": "豐富的",
|
||||
"txtScheme14": "凸窗",
|
||||
"txtScheme15": "起源",
|
||||
"txtScheme16": "紙",
|
||||
"txtScheme17": "冬至",
|
||||
"txtScheme18": "技術",
|
||||
"txtScheme19": "跋涉",
|
||||
"txtScheme2": "灰階",
|
||||
"txtScheme20": "市區",
|
||||
"txtScheme21": "感染力",
|
||||
"txtScheme22": "新的Office",
|
||||
"txtScheme3": "頂尖",
|
||||
"txtScheme4": "方面",
|
||||
"txtScheme5": "思域",
|
||||
"txtScheme6": "大堂",
|
||||
"txtScheme7": "產權",
|
||||
"txtScheme8": "流程",
|
||||
"txtScheme9": "鑄造廠",
|
||||
"textFeedback": "Feedback & Support"
|
||||
}
|
||||
}
|
||||
}
|
38
apps/spreadsheeteditor/embed/locale/pt-PT.json
Normal file
38
apps/spreadsheeteditor/embed/locale/pt-PT.json
Normal file
|
@ -0,0 +1,38 @@
|
|||
{
|
||||
"common.view.modals.txtCopy": "Copiar para a área de transferência",
|
||||
"common.view.modals.txtEmbed": "Incorporar",
|
||||
"common.view.modals.txtHeight": "Altura",
|
||||
"common.view.modals.txtShare": "Partilhar ligação",
|
||||
"common.view.modals.txtWidth": "Largura",
|
||||
"SSE.ApplicationController.convertationErrorText": "Falha na conversão.",
|
||||
"SSE.ApplicationController.convertationTimeoutText": "Excedeu o tempo limite de conversão.",
|
||||
"SSE.ApplicationController.criticalErrorTitle": "Erro",
|
||||
"SSE.ApplicationController.downloadErrorText": "Falha ao descarregar.",
|
||||
"SSE.ApplicationController.downloadTextText": "A descarregar folha de cálculo...",
|
||||
"SSE.ApplicationController.errorAccessDeny": "Está a tentar executar uma ação para a qual não tem permissão.<br>Contacte o administrador do servidor de documentos.",
|
||||
"SSE.ApplicationController.errorDefaultMessage": "Código de erro: %1",
|
||||
"SSE.ApplicationController.errorFilePassProtect": "O documento está protegido por palavra-passe e não pode ser aberto.",
|
||||
"SSE.ApplicationController.errorFileSizeExceed": "O tamanho do documento excede o limite do servidor.<br>Contacte o administrador do servidor de documentos para mais detalhes.",
|
||||
"SSE.ApplicationController.errorForceSave": "Ocorreu um erro ao guardar o ficheiro. Utilize a opção 'Descarregar como' para guardar o ficheiro no computador ou tente novamente mais tarde.",
|
||||
"SSE.ApplicationController.errorLoadingFont": "Tipos de letra não carregados.<br>Por favor contacte o administrador do servidor de documentos.",
|
||||
"SSE.ApplicationController.errorTokenExpire": "O token de segurança do documento expirou.<br>Entre em contacto com o administrador do Servidor de Documentos.",
|
||||
"SSE.ApplicationController.errorUpdateVersionOnDisconnect": "A ligação à Internet foi restaurada e a versão do ficheiro foi alterada.<br>Antes de continuar o seu trabalho, descarregue o ficheiro ou copie o seu conteúdo para ter a certeza de que não perde os seus elementos e depois recarregue esta página.",
|
||||
"SSE.ApplicationController.errorUserDrop": "De momento, não é possível aceder ao ficheiro.",
|
||||
"SSE.ApplicationController.notcriticalErrorTitle": "Aviso",
|
||||
"SSE.ApplicationController.openErrorText": "Ocorreu um erro ao abrir o ficheiro.",
|
||||
"SSE.ApplicationController.scriptLoadError": "A ligação está muito lenta e alguns dos componentes não foram carregados. Recarregue a página.",
|
||||
"SSE.ApplicationController.textAnonymous": "Anónimo",
|
||||
"SSE.ApplicationController.textGuest": "Convidado",
|
||||
"SSE.ApplicationController.textLoadingDocument": "A carregar folha de cálculo",
|
||||
"SSE.ApplicationController.textOf": "de",
|
||||
"SSE.ApplicationController.txtClose": "Fechar",
|
||||
"SSE.ApplicationController.unknownErrorText": "Erro desconhecido.",
|
||||
"SSE.ApplicationController.unsupportedBrowserErrorText": "O seu navegador não é suportado.",
|
||||
"SSE.ApplicationController.waitText": "Aguarde…",
|
||||
"SSE.ApplicationView.txtDownload": "Descarregar",
|
||||
"SSE.ApplicationView.txtEmbed": "Incorporar",
|
||||
"SSE.ApplicationView.txtFileLocation": "Abrir localização do ficheiro",
|
||||
"SSE.ApplicationView.txtFullScreen": "Ecrã inteiro",
|
||||
"SSE.ApplicationView.txtPrint": "Imprimir",
|
||||
"SSE.ApplicationView.txtShare": "Partilhar"
|
||||
}
|
38
apps/spreadsheeteditor/embed/locale/zh-TW.json
Normal file
38
apps/spreadsheeteditor/embed/locale/zh-TW.json
Normal file
|
@ -0,0 +1,38 @@
|
|||
{
|
||||
"common.view.modals.txtCopy": "複製到剪貼板",
|
||||
"common.view.modals.txtEmbed": "嵌入",
|
||||
"common.view.modals.txtHeight": "\n高度",
|
||||
"common.view.modals.txtShare": "分享連結",
|
||||
"common.view.modals.txtWidth": "寬度",
|
||||
"SSE.ApplicationController.convertationErrorText": "轉換失敗。",
|
||||
"SSE.ApplicationController.convertationTimeoutText": "轉換逾時。",
|
||||
"SSE.ApplicationController.criticalErrorTitle": "錯誤",
|
||||
"SSE.ApplicationController.downloadErrorText": "下載失敗",
|
||||
"SSE.ApplicationController.downloadTextText": "下載電子表格中...",
|
||||
"SSE.ApplicationController.errorAccessDeny": "您嘗試進行未被授權的動作<br> 請聯繫您的文件伺服器主機的管理者。",
|
||||
"SSE.ApplicationController.errorDefaultMessage": "錯誤編號:%1",
|
||||
"SSE.ApplicationController.errorFilePassProtect": "該文件受密碼保護,無法打開。",
|
||||
"SSE.ApplicationController.errorFileSizeExceed": "此檔案超過這一主機限制的大小<br> 進一步資訊,請聯絡您的文件服務主機的管理者。",
|
||||
"SSE.ApplicationController.errorForceSave": "保存文件時發生錯誤。請使用“下載為”選項將文件保存到電腦機硬碟中,或稍後再試。",
|
||||
"SSE.ApplicationController.errorLoadingFont": "字體未加載。<br>請聯繫文件服務器管理員。",
|
||||
"SSE.ApplicationController.errorTokenExpire": "此文件安全憑證(Security Token)已過期。<br>請與您的Document Server管理員聯繫。",
|
||||
"SSE.ApplicationController.errorUpdateVersionOnDisconnect": "Internet連接已恢復,文件版本已更改。<br>在繼續工作之前,您需要下載文件或複制其內容以確保沒有丟失,然後重新加載此頁面。",
|
||||
"SSE.ApplicationController.errorUserDrop": "目前無法存取該文件。",
|
||||
"SSE.ApplicationController.notcriticalErrorTitle": "警告",
|
||||
"SSE.ApplicationController.openErrorText": "開啟檔案時發生錯誤",
|
||||
"SSE.ApplicationController.scriptLoadError": "連接速度太慢,某些組件無法加載。請重新加載頁面。",
|
||||
"SSE.ApplicationController.textAnonymous": "匿名",
|
||||
"SSE.ApplicationController.textGuest": "來賓帳戶",
|
||||
"SSE.ApplicationController.textLoadingDocument": "加載電子表格",
|
||||
"SSE.ApplicationController.textOf": "於",
|
||||
"SSE.ApplicationController.txtClose": "關閉",
|
||||
"SSE.ApplicationController.unknownErrorText": "未知錯誤。",
|
||||
"SSE.ApplicationController.unsupportedBrowserErrorText": "不支援您的瀏覽器",
|
||||
"SSE.ApplicationController.waitText": "請耐心等待...",
|
||||
"SSE.ApplicationView.txtDownload": "下載",
|
||||
"SSE.ApplicationView.txtEmbed": "嵌入",
|
||||
"SSE.ApplicationView.txtFileLocation": "打開文件所在位置",
|
||||
"SSE.ApplicationView.txtFullScreen": "全螢幕",
|
||||
"SSE.ApplicationView.txtPrint": "列印",
|
||||
"SSE.ApplicationView.txtShare": "分享"
|
||||
}
|
3625
apps/spreadsheeteditor/main/locale/pt-PT.json
Normal file
3625
apps/spreadsheeteditor/main/locale/pt-PT.json
Normal file
File diff suppressed because it is too large
Load diff
3630
apps/spreadsheeteditor/main/locale/zh-TW.json
Normal file
3630
apps/spreadsheeteditor/main/locale/zh-TW.json
Normal file
File diff suppressed because it is too large
Load diff
686
apps/spreadsheeteditor/mobile/locale/pt-PT.json
Normal file
686
apps/spreadsheeteditor/mobile/locale/pt-PT.json
Normal file
|
@ -0,0 +1,686 @@
|
|||
{
|
||||
"About": {
|
||||
"textAbout": "Acerca",
|
||||
"textAddress": "Endereço",
|
||||
"textBack": "Recuar",
|
||||
"textEmail": "E-mail",
|
||||
"textPoweredBy": "Disponibilizado por",
|
||||
"textTel": "Tel",
|
||||
"textVersion": "Versão"
|
||||
},
|
||||
"Common": {
|
||||
"Collaboration": {
|
||||
"notcriticalErrorTitle": "Aviso",
|
||||
"textAddComment": "Adicionar comentário",
|
||||
"textAddReply": "Adicionar resposta",
|
||||
"textBack": "Recuar",
|
||||
"textCancel": "Cancelar",
|
||||
"textCollaboration": "Colaboração",
|
||||
"textComments": "Comentários",
|
||||
"textDeleteComment": "Eliminar comentário",
|
||||
"textDeleteReply": "Eliminar resposta",
|
||||
"textDone": "Realizado",
|
||||
"textEdit": "Editar",
|
||||
"textEditComment": "Editar comentário",
|
||||
"textEditReply": "Editar resposta",
|
||||
"textEditUser": "Utilizadores que estão a editar o ficheiro:",
|
||||
"textMessageDeleteComment": "Tem a certeza de que deseja eliminar este comentário?",
|
||||
"textMessageDeleteReply": "Tem a certeza de que deseja eliminar esta resposta?",
|
||||
"textNoComments": "Este documento não contém comentários",
|
||||
"textOk": "Ok",
|
||||
"textReopen": "Reabrir",
|
||||
"textResolve": "Resolver",
|
||||
"textTryUndoRedo": "As funções Desfazer/Refazer estão desativadas no modo de co-edição rápida.",
|
||||
"textUsers": "Utilizadores"
|
||||
},
|
||||
"ThemeColorPalette": {
|
||||
"textCustomColors": "Cores personalizadas",
|
||||
"textStandartColors": "Cores padrão",
|
||||
"textThemeColors": "Cores do tema"
|
||||
}
|
||||
},
|
||||
"ContextMenu": {
|
||||
"errorCopyCutPaste": "As ações de copiar, cortar e colar enquanto utiliza o menu de contexto serão apenas efetuadas no ficheiro atual.",
|
||||
"errorInvalidLink": "A referência da ligação não existe. Deve corrigir ou eliminar a ligação.",
|
||||
"menuAddComment": "Adicionar comentário",
|
||||
"menuAddLink": "Adicionar ligação",
|
||||
"menuCancel": "Cancelar",
|
||||
"menuCell": "Célula",
|
||||
"menuDelete": "Eliminar",
|
||||
"menuEdit": "Editar",
|
||||
"menuFreezePanes": "Congelar painéis",
|
||||
"menuHide": "Ocultar",
|
||||
"menuMerge": "Mesclar",
|
||||
"menuMore": "Mais",
|
||||
"menuOpenLink": "Abrir ligação",
|
||||
"menuShow": "Mostrar",
|
||||
"menuUnfreezePanes": "Libertar painéis",
|
||||
"menuUnmerge": "Desunir",
|
||||
"menuUnwrap": "Não moldar",
|
||||
"menuViewComment": "Ver comentário",
|
||||
"menuWrap": "Moldar",
|
||||
"notcriticalErrorTitle": "Aviso",
|
||||
"textCopyCutPasteActions": "Ações copiar, cortar e colar",
|
||||
"textDoNotShowAgain": "Não mostrar novamente",
|
||||
"warnMergeLostData": "Apenas os dados da célula superior esquerda permanecerá na célula mesclada.<br>Você tem certeza de que deseja continuar? "
|
||||
},
|
||||
"Controller": {
|
||||
"Main": {
|
||||
"criticalErrorTitle": "Erro",
|
||||
"errorAccessDeny": "Está a tentar realizar uma ação para a qual não tem autorização.<br>Por favor, contacte o seu administrador.",
|
||||
"errorOpensource": "Utilizando a versão comunitária gratuita, pode abrir documentos apenas para visualização. Para aceder aos editores da web móvel, é necessária uma licença comercial.",
|
||||
"errorProcessSaveResult": "Falha ao guardar.",
|
||||
"errorServerVersion": "A versão do editor foi atualizada. A página será carregada de novo para aplicar as alterações.",
|
||||
"errorUpdateVersion": "A versão do arquivo foi alterada. A página será recarregada.",
|
||||
"leavePageText": "Tem alterações não guardadas neste documento. Clique em 'Ficar nesta página' para aguardar pelo guardar automaticamente. Clique em 'Deixar esta página' para se desfazer de todas as alterações não guardadas.",
|
||||
"notcriticalErrorTitle": "Aviso",
|
||||
"SDK": {
|
||||
"txtAccent": "Destaque",
|
||||
"txtAll": "(Tudo)",
|
||||
"txtArt": "O seu texto aqui",
|
||||
"txtBlank": "(vazio)",
|
||||
"txtByField": "%1 de %2",
|
||||
"txtClearFilter": "Limpar filtro (Alt+C)",
|
||||
"txtColLbls": "Etiquetas da coluna",
|
||||
"txtColumn": "Coluna",
|
||||
"txtConfidential": "Confidencial",
|
||||
"txtDate": "Data",
|
||||
"txtDays": "Dias",
|
||||
"txtDiagramTitle": "Título do gráfico",
|
||||
"txtFile": "Ficheiro",
|
||||
"txtGrandTotal": "Total Geral",
|
||||
"txtGroup": "Grupo",
|
||||
"txtHours": "Horas",
|
||||
"txtMinutes": "Minutos",
|
||||
"txtMonths": "Meses",
|
||||
"txtMultiSelect": "Selecionar-Múltiplo (Alt+S)",
|
||||
"txtOr": "%1 ou %2",
|
||||
"txtPage": "Página",
|
||||
"txtPageOf": "Página %1 de %2",
|
||||
"txtPages": "Páginas",
|
||||
"txtPreparedBy": "Elaborado por",
|
||||
"txtPrintArea": "Área_de_Impressão",
|
||||
"txtQuarter": "Quart.",
|
||||
"txtQuarters": "Quartos",
|
||||
"txtRow": "Linha",
|
||||
"txtRowLbls": "Etiquetas das Linhas",
|
||||
"txtSeconds": "Segundos",
|
||||
"txtSeries": "Série",
|
||||
"txtStyle_Bad": "Mau",
|
||||
"txtStyle_Calculation": "Cálculos",
|
||||
"txtStyle_Check_Cell": "Verifique a célula",
|
||||
"txtStyle_Comma": "Vírgula",
|
||||
"txtStyle_Currency": "Moeda",
|
||||
"txtStyle_Explanatory_Text": "Texto explicativo",
|
||||
"txtStyle_Good": "Bom",
|
||||
"txtStyle_Heading_1": "Título 1",
|
||||
"txtStyle_Heading_2": "Título 2",
|
||||
"txtStyle_Heading_3": "Título 3",
|
||||
"txtStyle_Heading_4": "Título 4",
|
||||
"txtStyle_Input": "Introdução",
|
||||
"txtStyle_Linked_Cell": "Célula vinculada",
|
||||
"txtStyle_Neutral": "Neutro",
|
||||
"txtStyle_Normal": "Normal",
|
||||
"txtStyle_Note": "Nota",
|
||||
"txtStyle_Output": "Saída",
|
||||
"txtStyle_Percent": "Percentagem",
|
||||
"txtStyle_Title": "Título",
|
||||
"txtStyle_Total": "Total",
|
||||
"txtStyle_Warning_Text": "Texto de aviso",
|
||||
"txtTab": "Tab",
|
||||
"txtTable": "Tabela",
|
||||
"txtTime": "Hora",
|
||||
"txtValues": "Valores",
|
||||
"txtXAxis": "Eixo X",
|
||||
"txtYAxis": "Eixo Y",
|
||||
"txtYears": "Anos"
|
||||
},
|
||||
"textAnonymous": "Anónimo",
|
||||
"textBuyNow": "Visitar website",
|
||||
"textClose": "Fechar",
|
||||
"textContactUs": "Contacte a equipa comercial",
|
||||
"textCustomLoader": "Desculpe, não tem o direito de mudar o carregador. Por favor, contacte o nosso departamento de vendas para obter um orçamento.",
|
||||
"textGuest": "Convidado",
|
||||
"textHasMacros": "O ficheiro contém macros automáticas.<br>Deseja executar as macros?",
|
||||
"textNo": "Não",
|
||||
"textNoChoices": "Não há escolhas para preencher a célula.<br>Apenas os valores de texto da coluna podem ser selecionados para substituição.",
|
||||
"textNoLicenseTitle": "Limite de licença atingido",
|
||||
"textNoTextFound": "Texto não encontrado",
|
||||
"textOk": "Ok",
|
||||
"textPaidFeature": "Funcionalidade paga",
|
||||
"textRemember": "Memorizar a minha escolha",
|
||||
"textReplaceSkipped": "A substituição foi realizada. {0} ocorrências foram ignoradas.",
|
||||
"textReplaceSuccess": "A pesquisa foi realizada. Ocorrências substituídas: {0}",
|
||||
"textYes": "Sim",
|
||||
"titleServerVersion": "Editor atualizado",
|
||||
"titleUpdateVersion": "Versão alterada",
|
||||
"warnLicenseExceeded": "Atingiu o limite de ligações simultâneas a %1 editores. Este documento será aberto apenas para visualização. Contacte o seu administrador para obter mais informações.",
|
||||
"warnLicenseLimitedNoAccess": "La llicència ha caducat. No tens accés a la funció d'edició de documents. Contacta amb el teu administrador.",
|
||||
"warnLicenseLimitedRenewed": "A licença precisa ed ser renovada. Tem acesso limitado à funcionalidade de edição de documentos, .<br>Por favor contacte o seu administrador para ter acesso total",
|
||||
"warnLicenseUsersExceeded": "Atingiu o limite de %1 editores. Contacte o seu administrador para obter detalhes.",
|
||||
"warnNoLicense": "Atingiu o limite de ligações simultâneas a %1 editores. Este documento será aberto apenas para visualização. Contacte a %1 equipa de vendas para consultar os termos de atualização para si.",
|
||||
"warnNoLicenseUsers": "Atingiu o limite de %1 editores. Contacte a equipa comercial %1 para obter mais informações.",
|
||||
"warnProcessRightsChange": "Não tem autorização para editar este ficheiro."
|
||||
}
|
||||
},
|
||||
"Error": {
|
||||
"convertationTimeoutText": "Tempo limite de conversão excedido.",
|
||||
"criticalErrorExtText": "Clique em \"OK\" para voltar para a lista de documentos.",
|
||||
"criticalErrorTitle": "Erro",
|
||||
"downloadErrorText": "Falha ao descarregar.",
|
||||
"errorAccessDeny": "Está a tentar realizar uma ação para a qual não tem autorização.<br>Por favor, contacte o seu administrador.",
|
||||
"errorArgsRange": "Erro na fórmula.<br>Intervalo incorreto de argumentos.",
|
||||
"errorAutoFilterChange": "A operação não é permitida porque está a tentar deslocar células numa tabela da sua folha de cálculo.",
|
||||
"errorAutoFilterChangeFormatTable": "A operação não pôde ser feita para as células selecionadas, uma vez que não se pode mover uma parte de uma tabela.<br>Selecione outro intervalo de dados para que toda a tabela seja deslocada e tentar novamente.",
|
||||
"errorAutoFilterDataRange": "Não foi possível fazer a operação para o intervalo selecionado de células.<br>Selecione um intervalo de dados uniforme dentro ou fora da tabela e tente novamente.",
|
||||
"errorAutoFilterHiddenRange": "A operação não pode ser realizada porque a área contém células filtradas.<br>Por favor, escolha mostrar os elementos filtrados e tente novamente.",
|
||||
"errorBadImageUrl": "URL de imagem está incorreta",
|
||||
"errorCannotUseCommandProtectedSheet": "Não se pode utilizar este comando numa folha protegida. Para utilizar este comando, desproteja a folha. <br>Poderá ser-lhe solicitado que introduza uma palavra-passe.",
|
||||
"errorChangeArray": "Não se pode alterar parte de uma matriz.",
|
||||
"errorChangeOnProtectedSheet": "A célula ou gráfico que está a tentar mudar está numa folha protegida.<br>Para fazer uma mudança, desbloqueia a folha. Poderá ser-lhe solicitado que introduza uma palavra-passe.",
|
||||
"errorConnectToServer": "Não é possível guardar este documento. Verifique as definições de ligação ou entre em contato com o administrador. <br> Ao clicar no botão 'OK', será solicitado a descarregar o documento.",
|
||||
"errorCopyMultiselectArea": "Este comando não pode ser utilizado com várias seleções.<br>Selecionar uma única gama e tentar novamente.",
|
||||
"errorCountArg": "Erro na fórmula.<br>Número de argumentos inválido.",
|
||||
"errorCountArgExceed": "Erro na fórmula.<br>O número máximo de argumentos foi excedido.",
|
||||
"errorCreateDefName": "Os intervalos nomeados existentes não podem ser editados e os novos também não<br>podem ser editados porque alguns deles estão a ser editados.",
|
||||
"errorDatabaseConnection": "Erro externo.<br>Erro de ligação à base de dados. Contacte o suporte.",
|
||||
"errorDataEncrypted": "Foram recebidas alterações cifradas que não puderam ser decifradas.",
|
||||
"errorDataRange": "Intervalo de dados incorreto.",
|
||||
"errorDataValidate": "O valor introduzido não é válido.<br>Um utilizador restringiu os valores que podem ser utilizados neste campo.",
|
||||
"errorDefaultMessage": "Código de erro: %1",
|
||||
"errorEditingDownloadas": "Ocorreu um erro durante o trabalho com o documento. <br> Use a opção 'Descarregar' para guardar a cópia de segurança do ficheiro localmente.",
|
||||
"errorFilePassProtect": "Este ficheiro está protegido por uma palavra-passe e não foi possível abri-lo. ",
|
||||
"errorFileRequest": "Erro externo.<br>Pedido de ficheiro. Por favor, contacte o suporte.",
|
||||
"errorFileSizeExceed": "O tamanho do ficheiro excede a limitação máxima do seu servidor.<br>Por favor, contacte o seu administrador para obter mais informações.",
|
||||
"errorFileVKey": "Erro externo.<br>Chave de segurança incorreta. Por favor, contacte o suporte.",
|
||||
"errorFillRange": "Não foi possível preencher o intervalo selecionado de células.<br>Todas as células mescladas precisam ser do mesmo tamanho.",
|
||||
"errorFormulaName": "Erro na fórmula.<br>Nome da fórmula incorreto.",
|
||||
"errorFormulaParsing": "Erro interno durante a análise da fórmula.",
|
||||
"errorFrmlMaxLength": "Não pode adicionar esta fórmula uma vez que o seu comprimento excede o número permitido de caracteres.<br>Por favor, edite-a e tente novamente.",
|
||||
"errorFrmlMaxReference": "Não se pode introduzir esta fórmula porque tem demasiados valores,<br> referências de células, e/ou nomes.",
|
||||
"errorFrmlMaxTextLength": "Os valores de texto em fórmulas estão limitados a 255 caracteres.<br>Utilize a função CONCATENATE ou um operador de concatenação (&)",
|
||||
"errorFrmlWrongReferences": "A função refere-se a uma folha que não existe.<br>Por favor, verifique os dados e tente novamente.",
|
||||
"errorInvalidRef": "Introduza um nome correcto para a seleção ou uma referência válida para onde ir",
|
||||
"errorKeyEncrypt": "Descritor de chave desconhecido",
|
||||
"errorKeyExpire": "Descritor de chave expirado",
|
||||
"errorLoadingFont": "Tipos de letra não carregados.<br>Por favor contacte o administrador do servidor de documentos.",
|
||||
"errorLockedAll": "Não foi possível efetuar a ação porque a folha está bloqueada por outro utilizador.",
|
||||
"errorLockedCellPivot": "Não pode alterar dados dentro de uma tabela dinâmica.",
|
||||
"errorLockedWorksheetRename": "Não foi possível alterar o nome da folha porque o nome está a ser alterado por outro utilizador.",
|
||||
"errorMaxPoints": "O número máximo de pontos em série, por gráfico, é 4096.",
|
||||
"errorMoveRange": "Não pode alterar parte de uma célula unida",
|
||||
"errorMultiCellFormula": "Intervalo de fórmulas multi-célula não são permitidas em tabelas.",
|
||||
"errorOpenWarning": "O comprimento de uma das fórmulas do ficheiro excedeu<br> o número permitido de caracteres e foi removido.",
|
||||
"errorOperandExpected": "A sintaxe da função introduzida não está correta. Por favor, verifique se esqueceu um dos parênteses - '(' ou ')'.",
|
||||
"errorPasteMaxRange": "A área do copiar e do colar não corresponde. Por favor, selecione uma área do mesmo tamanho ou clique na primeira célula de uma linha para colar as células copiadas.",
|
||||
"errorPrintMaxPagesCount": "Infelizmente, não é possível imprimir mais de 1500 páginas de uma vez na versão atual do programa.<br>Esta restrição será eliminada nos próximos lançamentos.",
|
||||
"errorSessionAbsolute": "A sessão de edição de documentos expirou. Por favor, volte a carregar a página.",
|
||||
"errorSessionIdle": "Há muito tempo que o documento não é editado. Por favor, volte a carregar a página.",
|
||||
"errorSessionToken": "A ligação ao servidor foi interrompida. Por favor, volte a carregar a página.",
|
||||
"errorStockChart": "Ordem das linhas incorreta. Para construir um gráfico de cotações, introduza os dados na folha com a seguinte ordem:<br> preço de abertura, preço máximo, preço mínimo, preço de fecho.",
|
||||
"errorUnexpectedGuid": "Erro externo.<br>Guid Inesperado. Por favor, contacte o suporte.",
|
||||
"errorUpdateVersionOnDisconnect": "A ligação à Internet foi restaurada e a versão do ficheiro alterada.<br>Antes de continuar o seu trabalho, descarregue o ficheiro ou copie o seu conteúdo para ter a certeza de que não perde os seus elementos e recarregue a página.",
|
||||
"errorUserDrop": "O arquivo não pode ser acessado agora.",
|
||||
"errorUsersExceed": "O número de usuários permitidos pelo plano de preços foi excedido",
|
||||
"errorViewerDisconnect": "Ligação perdida. Ainda pode ver o documento mas não será<br>possível descarregar ou imprimir o documento se a ligação não for restaurada e a página recarregada.",
|
||||
"errorWrongBracketsCount": "Erro na fórmula.<br>Número errado de parenteses.",
|
||||
"errorWrongOperator": "Existe um erro na fórmula. Utilizou um operador inválido.<br>Por favor corrija o erro.",
|
||||
"notcriticalErrorTitle": "Aviso",
|
||||
"openErrorText": "Ocorreu um erro ao abrir o ficheiro",
|
||||
"pastInMergeAreaError": "Não pode alterar parte de uma célula unida",
|
||||
"saveErrorText": "Ocorreu um erro ao guardar o ficheiro",
|
||||
"scriptLoadError": "A ligação está demasiado lenta, não foi possível carregar alguns dos componentes. Por favor, recarregue a página. ",
|
||||
"textErrorPasswordIsNotCorrect": "A palavra-passe que introduziu não está correta.<br>Verifique se a tecla CAPS LOCK está desligada e não se esqueça de utilizar a capitalização correta.",
|
||||
"unknownErrorText": "Erro desconhecido.",
|
||||
"uploadImageExtMessage": "Formato de imagem desconhecido.",
|
||||
"uploadImageFileCountMessage": "Nenhuma imagem carregada.",
|
||||
"uploadImageSizeMessage": "A imagem é demasiado grande. O tamanho máximo é de 25 MB."
|
||||
},
|
||||
"LongActions": {
|
||||
"advDRMPassword": "Senha",
|
||||
"applyChangesTextText": "Carregando dados...",
|
||||
"applyChangesTitleText": "Carregando dados",
|
||||
"confirmMoveCellRange": "O intervalo de células de destino pode conter dados. Continuar a operação?",
|
||||
"confirmPutMergeRange": "Os dados de origem contêm células fundidas.<br>A união de células será anulada antes de serem coladas na tabela.",
|
||||
"confirmReplaceFormulaInTable": "As fórmulas na linha de cabeçalho serão removidas e convertidas para texto estático.<br> Deseja continuar?",
|
||||
"downloadTextText": "A descarregar documento...",
|
||||
"downloadTitleText": "A descarregar documento",
|
||||
"loadFontsTextText": "Carregando dados...",
|
||||
"loadFontsTitleText": "Carregando dados",
|
||||
"loadFontTextText": "Carregando dados...",
|
||||
"loadFontTitleText": "Carregando dados",
|
||||
"loadImagesTextText": "Carregando imagens...",
|
||||
"loadImagesTitleText": "Carregando imagens",
|
||||
"loadImageTextText": "Carregando imagem...",
|
||||
"loadImageTitleText": "Carregando imagem",
|
||||
"loadingDocumentTextText": "Carregando documento...",
|
||||
"loadingDocumentTitleText": "Carregando documento",
|
||||
"notcriticalErrorTitle": "Aviso",
|
||||
"openTextText": "Abrindo documento...",
|
||||
"openTitleText": "Abrindo documento",
|
||||
"printTextText": "Imprimindo documento...",
|
||||
"printTitleText": "Imprimindo documento",
|
||||
"savePreparingText": "Preparando para salvar",
|
||||
"savePreparingTitle": "A preparar para guardar. Por favor aguarde...",
|
||||
"saveTextText": "Salvando documento...",
|
||||
"saveTitleText": "Salvando documento",
|
||||
"textCancel": "Cancelar",
|
||||
"textErrorWrongPassword": "A palavra-passe que introduziu não está correta.",
|
||||
"textLoadingDocument": "Carregando documento",
|
||||
"textNo": "Não",
|
||||
"textOk": "Ok",
|
||||
"textUnlockRange": "Desbloquear Intervalo",
|
||||
"textUnlockRangeWarning": "O intervalo que está a tentar alterar está protegido por uma palavra-passe.",
|
||||
"textYes": "Sim",
|
||||
"txtEditingMode": "Definir modo de edição...",
|
||||
"uploadImageTextText": "Carregando imagem...",
|
||||
"uploadImageTitleText": "Carregando imagem",
|
||||
"waitText": "Por favor aguarde..."
|
||||
},
|
||||
"Statusbar": {
|
||||
"notcriticalErrorTitle": "Aviso",
|
||||
"textCancel": "Cancelar",
|
||||
"textDelete": "Eliminar",
|
||||
"textDuplicate": "Duplicar",
|
||||
"textErrNameExists": "Já existe uma folha de cálculo com este nome.",
|
||||
"textErrNameWrongChar": "O nome da folha não pode conter os caracteres: \\, /, *, ?, [, ], :",
|
||||
"textErrNotEmpty": "O nome da folha não pode estar vazio",
|
||||
"textErrorLastSheet": "O livro deve ter pelo menos uma folha de cálculo visível.",
|
||||
"textErrorRemoveSheet": "Não é possível eliminar a folha de trabalho.",
|
||||
"textHidden": "Oculto",
|
||||
"textHide": "Ocultar",
|
||||
"textMore": "Mais",
|
||||
"textMove": "Mover",
|
||||
"textMoveBefore": "Mover antes da folha",
|
||||
"textMoveToEnd": "(Mover para fim)",
|
||||
"textOk": "Ok",
|
||||
"textRename": "Renomear",
|
||||
"textRenameSheet": "Mudar nome da folha",
|
||||
"textSheet": "Folha",
|
||||
"textSheetName": "Nome da folha",
|
||||
"textUnhide": "Mostrar",
|
||||
"textWarnDeleteSheet": "A ficha de trabalho talvez tenha dados. Proceder à operação?",
|
||||
"textTabColor": "Tab Color"
|
||||
},
|
||||
"Toolbar": {
|
||||
"dlgLeaveMsgText": "Tem alterações não guardadas neste documento. Clique em 'Ficar nesta página' para aguardar pelo guardar automaticamente. Clique em 'Deixar esta página' para se desfazer de todas as alterações não guardadas.",
|
||||
"dlgLeaveTitleText": "Saiu da aplicação",
|
||||
"leaveButtonText": "Sair da página",
|
||||
"stayButtonText": "Ficar na página"
|
||||
},
|
||||
"View": {
|
||||
"Add": {
|
||||
"errorMaxRows": "ERRO! O número máximo de série de dados, por gráfico, é 255.",
|
||||
"errorStockChart": "Ordem das linhas incorreta. Para construir um gráfico de cotações, introduza os dados na folha com a seguinte ordem:<br> preço de abertura, preço máximo, preço mínimo, preço de fecho.",
|
||||
"notcriticalErrorTitle": "Aviso",
|
||||
"sCatDateAndTime": "Data e hora",
|
||||
"sCatEngineering": "Engenharia",
|
||||
"sCatFinancial": "Financeiras",
|
||||
"sCatInformation": "Informação",
|
||||
"sCatLogical": "Lógica",
|
||||
"sCatLookupAndReference": "Procura e referência",
|
||||
"sCatMathematic": "Matemática e trigonometria",
|
||||
"sCatStatistical": "Estatísticas",
|
||||
"sCatTextAndData": "Texto e Dados",
|
||||
"textAddLink": "Adicionar ligação",
|
||||
"textAddress": "Endereço",
|
||||
"textAllTableHint": "Retorna todo o conteúdo da tabela ou colunas especificadas da tabela, incluindo os cabeçalhos de coluna, dados e linhas totais",
|
||||
"textBack": "Recuar",
|
||||
"textCancel": "Cancelar",
|
||||
"textChart": "Gráfico",
|
||||
"textComment": "Comentário",
|
||||
"textDataTableHint": "Devolve as células de dados da tabela ou as colunas da tabela especificadas",
|
||||
"textDisplay": "Exibição",
|
||||
"textEmptyImgUrl": "É necessário especificar o URL da imagem.",
|
||||
"textExternalLink": "Ligação externa",
|
||||
"textFilter": "Filtro",
|
||||
"textFunction": "Função",
|
||||
"textGroups": "Categorias",
|
||||
"textHeadersTableHint": "Devolve os cabeçalhos das colunas para a tabela ou colunas de tabela especificadas",
|
||||
"textImage": "Imagem",
|
||||
"textImageURL": "URL da imagem",
|
||||
"textInsert": "Inserir",
|
||||
"textInsertImage": "Inserir imagem",
|
||||
"textInternalDataRange": "Intervalo de dados interno",
|
||||
"textInvalidRange": "ERRO! Intervalo de células inválido",
|
||||
"textLink": "Ligação",
|
||||
"textLinkSettings": "Definições da ligação",
|
||||
"textLinkType": "Tipo de ligação",
|
||||
"textOk": "Ok",
|
||||
"textOther": "Outro",
|
||||
"textPictureFromLibrary": "Imagem da biblioteca",
|
||||
"textPictureFromURL": "Imagem de um URL",
|
||||
"textRange": "Intervalo",
|
||||
"textRequired": "Necessário",
|
||||
"textScreenTip": "Dica no ecrã",
|
||||
"textSelectedRange": "Intervalo selecionado",
|
||||
"textShape": "Forma",
|
||||
"textSheet": "Folha",
|
||||
"textSortAndFilter": "Classificar e Filtrar",
|
||||
"textThisRowHint": "Escolher apenas esta linha de uma coluna específica",
|
||||
"textTotalsTableHint": "Devolve o total de linhas para a tabela ou coluna da tabela especificada",
|
||||
"txtExpand": "Expandir e Ordenar",
|
||||
"txtExpandSort": "Os dados adjacentes à seleção não serão classificados. Deseja expandir a seleção para incluir os dados adjacentes ou continuar com a ordenação apenas das células atualmente selecionadas?",
|
||||
"txtLockSort": "Os dados foram encontrados ao lado da sua seleção, mas não tem permissões suficientes para alterar essas células.<br>Deseja continuar com a seleção atual?",
|
||||
"txtNo": "Não",
|
||||
"txtNotUrl": "Este campo deve ser um URL no formato \"http://www.exemplo.com\"",
|
||||
"txtSorting": "A Ordenar",
|
||||
"txtSortSelected": "Ordenar o que está selecionado",
|
||||
"txtYes": "Sim"
|
||||
},
|
||||
"Edit": {
|
||||
"notcriticalErrorTitle": "Aviso",
|
||||
"textAccounting": "Contabilidade",
|
||||
"textActualSize": "Tamanho real",
|
||||
"textAddCustomColor": "Adicionar cor personalizada",
|
||||
"textAddress": "Endereço",
|
||||
"textAlign": "Alinhar",
|
||||
"textAlignBottom": "Alinhar em baixo",
|
||||
"textAlignCenter": "Alinhar ao centro",
|
||||
"textAlignLeft": "Alinhar à esquerda",
|
||||
"textAlignMiddle": "Alinhar ao meio",
|
||||
"textAlignRight": "Alinhar à direita",
|
||||
"textAlignTop": "Alinhar em cima",
|
||||
"textAllBorders": "Todos os contornos",
|
||||
"textAngleClockwise": "Ângulo no sentido horário",
|
||||
"textAngleCounterclockwise": "Ângulo no sentido antihorário",
|
||||
"textAuto": "Automático",
|
||||
"textAutomatic": "Automático",
|
||||
"textAxisCrosses": "Eixos cruzam",
|
||||
"textAxisOptions": "Opções dos eixos",
|
||||
"textAxisPosition": "Posição dos eixos",
|
||||
"textAxisTitle": "Título dos eixos",
|
||||
"textBack": "Recuar",
|
||||
"textBetweenTickMarks": "Entre marcas",
|
||||
"textBillions": "Milhar de milhões",
|
||||
"textBorder": "Contorno",
|
||||
"textBorderStyle": "Estilo do contorno",
|
||||
"textBottom": "Baixo",
|
||||
"textBottomBorder": "Contorno inferior",
|
||||
"textBringToForeground": "Trazer para primeiro plano",
|
||||
"textCell": "Célula",
|
||||
"textCellStyles": "Estilos de células",
|
||||
"textCenter": "Centro",
|
||||
"textChart": "Gráfico",
|
||||
"textChartTitle": "Título do gráfico",
|
||||
"textClearFilter": "Limpar filtro",
|
||||
"textColor": "Cor",
|
||||
"textCross": "Cruz",
|
||||
"textCrossesValue": "Valor das cruzes",
|
||||
"textCurrency": "Moeda",
|
||||
"textCustomColor": "Cor personalizada",
|
||||
"textDataLabels": "Etiquetas de dados",
|
||||
"textDate": "Data",
|
||||
"textDefault": "Intervalo selecionado",
|
||||
"textDeleteFilter": "Eliminar filtro",
|
||||
"textDesign": "Design",
|
||||
"textDiagonalDownBorder": "Borda inferior diagonal",
|
||||
"textDiagonalUpBorder": "Borda superior diagonal",
|
||||
"textDisplay": "Exibição",
|
||||
"textDisplayUnits": "Mostrar unidades",
|
||||
"textDollar": "Dólar",
|
||||
"textEditLink": "Editar ligação",
|
||||
"textEffects": "Efeitos",
|
||||
"textEmptyImgUrl": "É necessário especificar o URL da imagem.",
|
||||
"textEmptyItem": "{Vazio}",
|
||||
"textErrorMsg": "Você deve escolher no mínimo um valor",
|
||||
"textErrorTitle": "Aviso",
|
||||
"textEuro": "Euro",
|
||||
"textExternalLink": "Ligação externa",
|
||||
"textFill": "Preencher",
|
||||
"textFillColor": "Cor de preenchimento",
|
||||
"textFilterOptions": "Opções de filtro",
|
||||
"textFit": "Ajustar à largura",
|
||||
"textFonts": "Tipos de letra",
|
||||
"textFormat": "Formato",
|
||||
"textFraction": "Fração",
|
||||
"textFromLibrary": "Imagem da biblioteca",
|
||||
"textFromURL": "Imagem de um URL",
|
||||
"textGeneral": "Geral",
|
||||
"textGridlines": "Linhas da grelha",
|
||||
"textHigh": "Alto",
|
||||
"textHorizontal": "Horizontal",
|
||||
"textHorizontalAxis": "Eixo horizontal",
|
||||
"textHorizontalText": "Texto horizontal",
|
||||
"textHundredMil": "100 000 000",
|
||||
"textHundreds": "Centenas",
|
||||
"textHundredThousands": "100 000",
|
||||
"textHyperlink": "Hiperligação",
|
||||
"textImage": "Imagem",
|
||||
"textImageURL": "URL da imagem",
|
||||
"textIn": "Em",
|
||||
"textInnerBottom": "Parte inferior interna",
|
||||
"textInnerTop": "Parte superior interna",
|
||||
"textInsideBorders": "Bordas interiores",
|
||||
"textInsideHorizontalBorder": "Contorno horizontal interior",
|
||||
"textInsideVerticalBorder": "Contorno vertical interior",
|
||||
"textInteger": "Inteiro",
|
||||
"textInternalDataRange": "Intervalo de dados interno",
|
||||
"textInvalidRange": "Intervalo de células inválido",
|
||||
"textJustified": "Justificado",
|
||||
"textLabelOptions": "Opções de etiqueta",
|
||||
"textLabelPosition": "Posição da etiqueta",
|
||||
"textLayout": "Disposição",
|
||||
"textLeft": "Esquerda",
|
||||
"textLeftBorder": "Contorno esquerdo",
|
||||
"textLeftOverlay": "Sobreposição esquerda",
|
||||
"textLegend": "Legenda",
|
||||
"textLink": "Ligação",
|
||||
"textLinkSettings": "Definições da ligação",
|
||||
"textLinkType": "Tipo de ligação",
|
||||
"textLow": "Baixo",
|
||||
"textMajor": "Maior",
|
||||
"textMajorAndMinor": "Maior e Menor",
|
||||
"textMajorType": "Tipo principal",
|
||||
"textMaximumValue": "Valor máximo",
|
||||
"textMedium": "Médio",
|
||||
"textMillions": "Milhões",
|
||||
"textMinimumValue": "Valor mínimo",
|
||||
"textMinor": "Menor",
|
||||
"textMinorType": "Tipo menor",
|
||||
"textMoveBackward": "Mover para trás",
|
||||
"textMoveForward": "Mover para frente",
|
||||
"textNextToAxis": "Próximo ao eixo",
|
||||
"textNoBorder": "Sem contorno",
|
||||
"textNone": "Nenhum",
|
||||
"textNoOverlay": "Sem sobreposição",
|
||||
"textNotUrl": "Este campo deve ser um URL no formato \"http://www.exemplo.com\"",
|
||||
"textNumber": "Número",
|
||||
"textOk": "Ok",
|
||||
"textOnTickMarks": "Nas marcas de escala",
|
||||
"textOpacity": "Opacidade",
|
||||
"textOut": "Fora",
|
||||
"textOuterTop": "Fora do topo",
|
||||
"textOutsideBorders": "Bordas externas",
|
||||
"textOverlay": "Sobreposição",
|
||||
"textPercentage": "Percentagem",
|
||||
"textPictureFromLibrary": "Imagem da biblioteca",
|
||||
"textPictureFromURL": "Imagem de um URL",
|
||||
"textPound": "Libra",
|
||||
"textPt": "pt",
|
||||
"textRange": "Intervalo",
|
||||
"textRemoveChart": "Remover gráfico",
|
||||
"textRemoveImage": "Remover imagem",
|
||||
"textRemoveLink": "Remover ligação",
|
||||
"textRemoveShape": "Remover forma",
|
||||
"textReorder": "Reordenar",
|
||||
"textReplace": "Substituir",
|
||||
"textReplaceImage": "Substituir imagem",
|
||||
"textRequired": "Necessário",
|
||||
"textRight": "Direita",
|
||||
"textRightBorder": "Contorno direito",
|
||||
"textRightOverlay": "Sobreposição direita",
|
||||
"textRotated": "Rodado",
|
||||
"textRotateTextDown": "Rodar texto para baixo",
|
||||
"textRotateTextUp": "Rodar texto para cima",
|
||||
"textRouble": "Rublo",
|
||||
"textScientific": "Científico",
|
||||
"textScreenTip": "Dica no ecrã",
|
||||
"textSelectAll": "Selecionar tudo",
|
||||
"textSelectObjectToEdit": "Selecionar objeto para editar",
|
||||
"textSendToBackground": "Enviar para plano de fundo",
|
||||
"textSettings": "Configurações",
|
||||
"textShape": "Forma",
|
||||
"textSheet": "Folha",
|
||||
"textSize": "Tamanho",
|
||||
"textStyle": "Estilo",
|
||||
"textTenMillions": "10 000 000",
|
||||
"textTenThousands": "10 000",
|
||||
"textText": "Texto",
|
||||
"textTextColor": "Cor do texto",
|
||||
"textTextFormat": "Formato do texto",
|
||||
"textTextOrientation": "Orientação do texto",
|
||||
"textThick": "Espesso",
|
||||
"textThin": "Fino",
|
||||
"textThousands": "Milhares",
|
||||
"textTickOptions": "Opções de escala",
|
||||
"textTime": "Hora",
|
||||
"textTop": "Parte superior",
|
||||
"textTopBorder": "Contorno superior",
|
||||
"textTrillions": "Trilhões",
|
||||
"textType": "Tipo",
|
||||
"textValue": "Valor",
|
||||
"textValuesInReverseOrder": "Valores na ordem reversa",
|
||||
"textVertical": "Vertical",
|
||||
"textVerticalAxis": "Eixo vertical",
|
||||
"textVerticalText": "Texto vertical",
|
||||
"textWrapText": "Moldar texto",
|
||||
"textYen": "Iene",
|
||||
"txtNotUrl": "Este campo deve ser um URL no formato \"http://www.exemplo.com\"",
|
||||
"txtSortHigh2Low": "Ordenar do Maior para o Menor",
|
||||
"txtSortLow2High": "Ordenar do Menor para o Maior"
|
||||
},
|
||||
"Settings": {
|
||||
"advCSVOptions": "Escolher opções CSV",
|
||||
"advDRMEnterPassword": "A sua palavra-passe, por favor:",
|
||||
"advDRMOptions": "Ficheiro protegido",
|
||||
"advDRMPassword": "Senha",
|
||||
"closeButtonText": "Fechar ficheiro",
|
||||
"notcriticalErrorTitle": "Aviso",
|
||||
"textAbout": "Acerca",
|
||||
"textAddress": "Endereço",
|
||||
"textApplication": "Aplicação",
|
||||
"textApplicationSettings": "Definições da aplicação",
|
||||
"textAuthor": "Autor",
|
||||
"textBack": "Recuar",
|
||||
"textBottom": "Baixo",
|
||||
"textByColumns": "Por colunas",
|
||||
"textByRows": "Por linhas",
|
||||
"textCancel": "Cancelar",
|
||||
"textCentimeter": "Centímetro",
|
||||
"textChooseCsvOptions": "Escolher opções CSV",
|
||||
"textChooseDelimeter": "Escolher delimitador",
|
||||
"textChooseEncoding": "Escolha a codificação",
|
||||
"textCollaboration": "Colaboração",
|
||||
"textColorSchemes": "Esquemas de cor",
|
||||
"textComment": "Comentário",
|
||||
"textCommentingDisplay": "Exibição de comentários",
|
||||
"textComments": "Comentários",
|
||||
"textCreated": "Criado",
|
||||
"textCustomSize": "Tamanho personalizado",
|
||||
"textDarkTheme": "Tema Escuro",
|
||||
"textDelimeter": "Delimitador",
|
||||
"textDisableAll": "Desativar tudo",
|
||||
"textDisableAllMacrosWithNotification": "Desativar todas as macros com notificação",
|
||||
"textDisableAllMacrosWithoutNotification": "Desativar todas as macros sem notificação",
|
||||
"textDone": "Realizado",
|
||||
"textDownload": "Descarregar",
|
||||
"textDownloadAs": "Descarregar como",
|
||||
"textEmail": "E-mail",
|
||||
"textEnableAll": "Ativar tudo",
|
||||
"textEnableAllMacrosWithoutNotification": "Ativar todas as macros sem notificação",
|
||||
"textEncoding": "Codificação",
|
||||
"textExample": "Exemplo",
|
||||
"textFind": "Localizar",
|
||||
"textFindAndReplace": "Localizar e substituir",
|
||||
"textFindAndReplaceAll": "Localizar e substituir tudo",
|
||||
"textFormat": "Formato",
|
||||
"textFormulaLanguage": "Idioma das fórmulas",
|
||||
"textFormulas": "Fórmulas",
|
||||
"textHelp": "Ajuda",
|
||||
"textHideGridlines": "Ocultar linhas da grelha",
|
||||
"textHideHeadings": "Ocultar títulos",
|
||||
"textHighlightRes": "Destacar resultados",
|
||||
"textInch": "Polegada",
|
||||
"textLandscape": "Paisagem",
|
||||
"textLastModified": "Última modificação",
|
||||
"textLastModifiedBy": "Última modificação por",
|
||||
"textLeft": "Esquerda",
|
||||
"textLocation": "Localização",
|
||||
"textLookIn": "Olhar em",
|
||||
"textMacrosSettings": "Definições de macros",
|
||||
"textMargins": "Margens",
|
||||
"textMatchCase": "Diferenciar maiúsculas/minúsculas",
|
||||
"textMatchCell": "Corresponder à Célula",
|
||||
"textNoTextFound": "Texto não encontrado",
|
||||
"textOk": "Ok",
|
||||
"textOpenFile": "Introduza a palavra-passe para abrir o ficheiro",
|
||||
"textOrientation": "Orientação",
|
||||
"textOwner": "Proprietário",
|
||||
"textPoint": "Ponto",
|
||||
"textPortrait": "Retrato",
|
||||
"textPoweredBy": "Disponibilizado por",
|
||||
"textPrint": "Imprimir",
|
||||
"textR1C1Style": "Estilo L1C1",
|
||||
"textRegionalSettings": "Definições regionais",
|
||||
"textReplace": "Substituir",
|
||||
"textReplaceAll": "Substituir tudo",
|
||||
"textResolvedComments": "Comentários resolvidos",
|
||||
"textRight": "Direita",
|
||||
"textSearch": "Pesquisar",
|
||||
"textSearchBy": "Pesquisar",
|
||||
"textSearchIn": "Pesquisar em",
|
||||
"textSettings": "Configurações",
|
||||
"textSheet": "Folha",
|
||||
"textShowNotification": "Mostrar notificação",
|
||||
"textSpreadsheetFormats": "Formatos da folha de cálculo",
|
||||
"textSpreadsheetInfo": "Informação da folha de cálculo",
|
||||
"textSpreadsheetSettings": "Definições da folha de cálculo",
|
||||
"textSpreadsheetTitle": "Título da folha de cálculo",
|
||||
"textSubject": "Assunto",
|
||||
"textTel": "Tel",
|
||||
"textTitle": "Título",
|
||||
"textTop": "Parte superior",
|
||||
"textUnitOfMeasurement": "Unidade de medida",
|
||||
"textUploaded": "Carregado",
|
||||
"textValues": "Valores",
|
||||
"textVersion": "Versão",
|
||||
"textWorkbook": "Livro de trabalho",
|
||||
"txtColon": "Dois pontos",
|
||||
"txtComma": "Vírgula",
|
||||
"txtDelimiter": "Delimitador",
|
||||
"txtDownloadCsv": "Transferir CSV",
|
||||
"txtEncoding": "Codificação",
|
||||
"txtIncorrectPwd": "A Palavra-passe está incorreta",
|
||||
"txtOk": "Ok",
|
||||
"txtProtected": "Assim que introduzir a palavra-passe e abrir o ficheiro, a palavra-passe atual será reposta",
|
||||
"txtScheme1": "Office",
|
||||
"txtScheme10": "Mediana",
|
||||
"txtScheme11": "Metro",
|
||||
"txtScheme12": "Módulo",
|
||||
"txtScheme13": "Opulento",
|
||||
"txtScheme14": "Balcão envidraçado",
|
||||
"txtScheme15": "Origem",
|
||||
"txtScheme16": "Papel",
|
||||
"txtScheme17": "Solstício",
|
||||
"txtScheme18": "Técnica",
|
||||
"txtScheme19": "Viagem",
|
||||
"txtScheme2": "Escala de cinza",
|
||||
"txtScheme20": "Urbano",
|
||||
"txtScheme21": "Verve",
|
||||
"txtScheme22": "Novo Escritório",
|
||||
"txtScheme3": "Ápice",
|
||||
"txtScheme4": "Aspeto",
|
||||
"txtScheme5": "Cívico",
|
||||
"txtScheme6": "Concurso",
|
||||
"txtScheme7": "Equidade",
|
||||
"txtScheme8": "Fluxo",
|
||||
"txtScheme9": "Fundição",
|
||||
"txtSemicolon": "Ponto e vírgula",
|
||||
"txtSpace": "Espaço",
|
||||
"txtTab": "Tab",
|
||||
"warnDownloadAs": "Se você continuar salvando neste formato, todos os recursos exceto o texto serão perdidos.<br>Você tem certeza que quer continuar?",
|
||||
"textFeedback": "Feedback & Support"
|
||||
}
|
||||
}
|
||||
}
|
686
apps/spreadsheeteditor/mobile/locale/zh-TW.json
Normal file
686
apps/spreadsheeteditor/mobile/locale/zh-TW.json
Normal file
|
@ -0,0 +1,686 @@
|
|||
{
|
||||
"About": {
|
||||
"textAbout": "關於",
|
||||
"textAddress": "地址",
|
||||
"textBack": "返回",
|
||||
"textEmail": "電子郵件",
|
||||
"textPoweredBy": "於支援",
|
||||
"textTel": "電話",
|
||||
"textVersion": "版本"
|
||||
},
|
||||
"Common": {
|
||||
"Collaboration": {
|
||||
"notcriticalErrorTitle": "警告",
|
||||
"textAddComment": "新增註解",
|
||||
"textAddReply": "加入回覆",
|
||||
"textBack": "返回",
|
||||
"textCancel": "取消",
|
||||
"textCollaboration": "協作",
|
||||
"textComments": "評論",
|
||||
"textDeleteComment": "刪除評論",
|
||||
"textDeleteReply": "刪除回覆",
|
||||
"textDone": "已完成",
|
||||
"textEdit": "編輯",
|
||||
"textEditComment": "編輯評論",
|
||||
"textEditReply": "編輯回覆",
|
||||
"textEditUser": "正在編輯文件的用戶:",
|
||||
"textMessageDeleteComment": "確定要刪除評論嗎?",
|
||||
"textMessageDeleteReply": "確定要刪除回覆嗎?",
|
||||
"textNoComments": "此文件未包含回應訊息",
|
||||
"textOk": "確定",
|
||||
"textReopen": "重開",
|
||||
"textResolve": "解決",
|
||||
"textTryUndoRedo": "在快速共同編輯模式下,撤消/重做功能被禁用。",
|
||||
"textUsers": "使用者"
|
||||
},
|
||||
"ThemeColorPalette": {
|
||||
"textCustomColors": "自訂顏色",
|
||||
"textStandartColors": "標準顏色",
|
||||
"textThemeColors": "主題顏色"
|
||||
}
|
||||
},
|
||||
"ContextMenu": {
|
||||
"errorCopyCutPaste": "使用右鍵選單動作的複製、剪下和貼上的動作將只在目前的檔案中執行。",
|
||||
"errorInvalidLink": "連結引用不存在。請更正連結或將其刪除。",
|
||||
"menuAddComment": "新增註解",
|
||||
"menuAddLink": "新增連結",
|
||||
"menuCancel": "取消",
|
||||
"menuCell": "單元格",
|
||||
"menuDelete": "刪除",
|
||||
"menuEdit": "編輯",
|
||||
"menuFreezePanes": "凍結窗格",
|
||||
"menuHide": "隱藏",
|
||||
"menuMerge": "合併",
|
||||
"menuMore": "更多",
|
||||
"menuOpenLink": "打開連結",
|
||||
"menuShow": "顯示",
|
||||
"menuUnfreezePanes": "取消凍結窗格",
|
||||
"menuUnmerge": "取消合併",
|
||||
"menuUnwrap": "攤開",
|
||||
"menuViewComment": "查看評論",
|
||||
"menuWrap": "包覆",
|
||||
"notcriticalErrorTitle": "警告",
|
||||
"textCopyCutPasteActions": "複製, 剪下, 與貼上之動作",
|
||||
"textDoNotShowAgain": "不再顯示",
|
||||
"warnMergeLostData": "只有左上角單元格中的數據會保留。<br>繼續嗎?"
|
||||
},
|
||||
"Controller": {
|
||||
"Main": {
|
||||
"criticalErrorTitle": "錯誤",
|
||||
"errorAccessDeny": "您正在嘗試執行您無權執行的動作。<br>請聯繫您的管理員。",
|
||||
"errorOpensource": "在使用免費社群版本時,您只能瀏覽開啟的文件。欲使用移動版本的編輯功能,您需要付費的憑證。",
|
||||
"errorProcessSaveResult": "保存失敗。",
|
||||
"errorServerVersion": "編輯器版本已更新。該頁面將被重新加載以應用更改。",
|
||||
"errorUpdateVersion": "文件版本已更改。該頁面將重新加載。",
|
||||
"leavePageText": "您在此文件中有未儲存的變更。點擊\"留在此頁面\"以等待自動儲存。點擊\"離開此頁面\"以放棄所有未儲存的變更。",
|
||||
"notcriticalErrorTitle": "警告",
|
||||
"SDK": {
|
||||
"txtAccent": "強調",
|
||||
"txtAll": "(所有)",
|
||||
"txtArt": "在這輸入文字",
|
||||
"txtBlank": "(空白)",
|
||||
"txtByField": "第%1個,共%2個",
|
||||
"txtClearFilter": "清除過濾器(Alt + C)",
|
||||
"txtColLbls": "列標籤",
|
||||
"txtColumn": "欄",
|
||||
"txtConfidential": "機密",
|
||||
"txtDate": "日期",
|
||||
"txtDays": "日",
|
||||
"txtDiagramTitle": "圖表標題",
|
||||
"txtFile": "檔案",
|
||||
"txtGrandTotal": "累計",
|
||||
"txtGroup": "群組",
|
||||
"txtHours": "小時",
|
||||
"txtMinutes": "分鐘",
|
||||
"txtMonths": "月",
|
||||
"txtMultiSelect": "多選(Alt + S)",
|
||||
"txtOr": "1%或2%",
|
||||
"txtPage": "頁面",
|
||||
"txtPageOf": "第%1頁,共%2頁",
|
||||
"txtPages": "頁",
|
||||
"txtPreparedBy": "編制",
|
||||
"txtPrintArea": "列印區域",
|
||||
"txtQuarter": "季度",
|
||||
"txtQuarters": "季度",
|
||||
"txtRow": "行",
|
||||
"txtRowLbls": "行標籤",
|
||||
"txtSeconds": "秒數",
|
||||
"txtSeries": "系列",
|
||||
"txtStyle_Bad": "壞",
|
||||
"txtStyle_Calculation": "計算",
|
||||
"txtStyle_Check_Cell": "檢查單元格",
|
||||
"txtStyle_Comma": "逗號",
|
||||
"txtStyle_Currency": "貨幣",
|
||||
"txtStyle_Explanatory_Text": "解釋性文字",
|
||||
"txtStyle_Good": "好",
|
||||
"txtStyle_Heading_1": "標題 1",
|
||||
"txtStyle_Heading_2": "標題 2",
|
||||
"txtStyle_Heading_3": "標題 3",
|
||||
"txtStyle_Heading_4": "標題 4",
|
||||
"txtStyle_Input": "輸入",
|
||||
"txtStyle_Linked_Cell": "已連接的單元格",
|
||||
"txtStyle_Neutral": "中立",
|
||||
"txtStyle_Normal": "標準",
|
||||
"txtStyle_Note": "備註",
|
||||
"txtStyle_Output": "輸出量",
|
||||
"txtStyle_Percent": "百分",
|
||||
"txtStyle_Title": "標題",
|
||||
"txtStyle_Total": "總計",
|
||||
"txtStyle_Warning_Text": "警告文字",
|
||||
"txtTab": "標籤",
|
||||
"txtTable": "表格",
|
||||
"txtTime": "時間",
|
||||
"txtValues": "值",
|
||||
"txtXAxis": "X軸",
|
||||
"txtYAxis": "Y軸",
|
||||
"txtYears": "年"
|
||||
},
|
||||
"textAnonymous": "匿名",
|
||||
"textBuyNow": "訪問網站",
|
||||
"textClose": "關閉",
|
||||
"textContactUs": "聯絡銷售人員",
|
||||
"textCustomLoader": "很抱歉,您無權變更載入程序。 請聯繫我們的業務部門取得報價。",
|
||||
"textGuest": "來賓",
|
||||
"textHasMacros": "此檔案包含自動巨集程式。<br>是否要運行這些巨集?",
|
||||
"textNo": "沒有",
|
||||
"textNoChoices": "無法選擇要填充單元格的內容。<br>只能選擇列中的文本值進行替換。",
|
||||
"textNoLicenseTitle": "達到許可限制",
|
||||
"textNoTextFound": "找不到文字",
|
||||
"textOk": "確定",
|
||||
"textPaidFeature": "付費功能",
|
||||
"textRemember": "記住我的選擇",
|
||||
"textReplaceSkipped": "替換已完成。 {0}個事件被跳過。",
|
||||
"textReplaceSuccess": "搜索已完成。發生的事件已替換:{0}",
|
||||
"textYes": "是",
|
||||
"titleServerVersion": "編輯器已更新",
|
||||
"titleUpdateVersion": "版本已更改",
|
||||
"warnLicenseExceeded": "您已達到同時連接到 %1 編輯器的限制。此文件將只提供檢視。請聯繫您的管理員以了解更多資訊。",
|
||||
"warnLicenseLimitedNoAccess": "憑證已過期。您無法使用文件編輯功能。請聯絡您的帳號管理員",
|
||||
"warnLicenseLimitedRenewed": "憑證需要續約。您目前只有文件編輯的部份功能。<br>欲使用完整功能,請聯絡您的帳號管理員。",
|
||||
"warnLicenseUsersExceeded": "您已達到 %1 個編輯器的使用者限制。請聯繫您的管理員以了解更多資訊。",
|
||||
"warnNoLicense": "您已達到同時連接到 %1 編輯器的限制。此文件將只提供檢視。有關個人升級條款,請聯繫 %1 業務團隊。",
|
||||
"warnNoLicenseUsers": "您已達到%1個編輯器的用戶限制。與%1銷售團隊聯繫以了解個人升級條款。",
|
||||
"warnProcessRightsChange": "您沒有編輯此文件的權限。"
|
||||
}
|
||||
},
|
||||
"Error": {
|
||||
"convertationTimeoutText": "轉換逾時。",
|
||||
"criticalErrorExtText": "點擊\"好\"回到文件列表。",
|
||||
"criticalErrorTitle": "錯誤",
|
||||
"downloadErrorText": "下載失敗",
|
||||
"errorAccessDeny": "您正在嘗試執行您無權執行的動作。<br>請聯繫您的管理員。",
|
||||
"errorArgsRange": "公式中有錯誤。<br>不正確的引數範圍。",
|
||||
"errorAutoFilterChange": "不允許該動作,因為它試圖移動您的工作表上表格中的儲存格。",
|
||||
"errorAutoFilterChangeFormatTable": "無法對所選儲存格執行該動作,因為無法移動表格的一部分。<br>請選擇另一個資料範圍以便移動整個表格並重試。",
|
||||
"errorAutoFilterDataRange": "無法對選定的儲存格區域執行該動作。<br>請選擇工作表內部或外部的統一資料範圍並重試。",
|
||||
"errorAutoFilterHiddenRange": "無法執行該動作,因為該區域包含過濾的儲存格。<br>請取消隱藏過濾的元素並重試。",
|
||||
"errorBadImageUrl": "不正確的圖像 URL",
|
||||
"errorCannotUseCommandProtectedSheet": "您無法在受保護的工作表使用這個指令,若要使用這個指令,請取消保護該工作表。<br>您可能需要輸入密碼。",
|
||||
"errorChangeArray": "您不能更改數組的一部分。",
|
||||
"errorChangeOnProtectedSheet": "您嘗試變更的儲存格或圖表位於受保護的工作表上。 要進行變更,請取消工作表的保護。您將可能會被要求您輸入密碼。",
|
||||
"errorConnectToServer": "您已達到同時連接到 %1 編輯器的限制。此文件將只提供檢視。請聯繫您的管理員以了解更多資訊。",
|
||||
"errorCopyMultiselectArea": "此命令不能用於多個選擇。<br>選擇單個範圍,然後重試。",
|
||||
"errorCountArg": "公式中有錯誤。<br>無效的引數數字。",
|
||||
"errorCountArgExceed": "公式中有錯誤。<br>超過最大的引數數字。",
|
||||
"errorCreateDefName": "由於其中一些正在被編輯,因此目前無法編輯現有命名範圍,也無法創建新的命名範圍。",
|
||||
"errorDatabaseConnection": "外部錯誤<br>資料庫連結錯誤, 請聯絡技術支援。",
|
||||
"errorDataEncrypted": "已收到加密的更改,無法解密。",
|
||||
"errorDataRange": "不正確的資料範圍",
|
||||
"errorDataValidate": "您輸入的值無效。<br>用戶具有可以在此單元格中輸入的限制值。",
|
||||
"errorDefaultMessage": "錯誤編號:%1",
|
||||
"errorEditingDownloadas": "處理文件檔時發生錯誤。<br>請使用\"下載\"來儲存一份備份檔案到本機端。",
|
||||
"errorFilePassProtect": "此文件使用密碼保護功能,無法開啟。",
|
||||
"errorFileRequest": "外部錯誤。<br>檔案請求。請聯絡支援。",
|
||||
"errorFileSizeExceed": "檔案大小已超過了您的伺服器限制。<br>請聯繫您的管理員了解詳情。",
|
||||
"errorFileVKey": "外部錯誤。<br>錯誤的安全金鑰。請聯絡支援。",
|
||||
"errorFillRange": "無法填充所選的單元格範圍。<br>所有合併的單元格必須具有相同的大小。",
|
||||
"errorFormulaName": "公式中有錯誤。<br>錯誤的公式名稱。",
|
||||
"errorFormulaParsing": "公式分析時出現內部錯誤。",
|
||||
"errorFrmlMaxLength": "您無法添加此公式,因為它的長度超過了允許的字符數。<br>請編輯它,然後重試。",
|
||||
"errorFrmlMaxReference": "您無法輸入此公式,因為它具有太多的值,<br>單元格引用和/或名稱。",
|
||||
"errorFrmlMaxTextLength": "在公式中的文字數值有255字元的限制。<br>使用 CONCATENATE 函數或序連運算子(&)",
|
||||
"errorFrmlWrongReferences": "該函數引用了一個不存在的工作表。<br>請檢查內容並重試。",
|
||||
"errorInvalidRef": "輸入正確的選擇名稱或有效參考。",
|
||||
"errorKeyEncrypt": "未知密鑰描述符",
|
||||
"errorKeyExpire": "密鑰描述符已過期",
|
||||
"errorLoadingFont": "字體未載入。<br>請聯絡文件服務(Document Server)管理員。",
|
||||
"errorLockedAll": "該工作表已被另一位用戶鎖定,因此無法完成該操作。",
|
||||
"errorLockedCellPivot": "您不能在數據透視表中更改數據。",
|
||||
"errorLockedWorksheetRename": "該工作表目前無法重命名,因為它正在被其他用戶重命名",
|
||||
"errorMaxPoints": "每個圖表的最大串聯點數為4096。",
|
||||
"errorMoveRange": "無法改變合併儲存格內的一部分",
|
||||
"errorMultiCellFormula": "表中不允許使用多單元格數組公式。",
|
||||
"errorOpenWarning": "文件中的一個公式長度超過了<br>允許的字元數並已被移除。",
|
||||
"errorOperandExpected": "輸入的函數語法不正確。請檢查您是否遺漏了任何括號之一 - '(' 或 ')'。",
|
||||
"errorPasteMaxRange": "複製和貼上的區域不匹配。 請選擇一個相同大小的區域或點擊一行中的第一個儲存格以貼上已複製的儲存格。",
|
||||
"errorPrintMaxPagesCount": "不幸的是,在目前版本的程式中一次不可列印超過 1500 頁。<br>在即將發布的版本中將會取消此限制。",
|
||||
"errorSessionAbsolute": "該文件編輯時效已欲期。請重新載入此頁面。",
|
||||
"errorSessionIdle": "無 該文件已經有一段時間沒有進行編輯了。 請重新載入頁面。",
|
||||
"errorSessionToken": "主機連線被中斷,請重新載入此頁面。",
|
||||
"errorStockChart": "行序錯誤。要建立股票圖表,請將數據按照以下順序工作表:<br> 開盤價、最高價、最低價、收盤價。 ",
|
||||
"errorUnexpectedGuid": "外部錯誤。<br>未預期的導向。請聯絡支援。",
|
||||
"errorUpdateVersionOnDisconnect": "網路連接已恢復,文件版本已更改。<br>在繼續工作之前,您需要下載文件或複制其內容以確保沒有丟失,然後重新加載此頁面。",
|
||||
"errorUserDrop": "目前無法存取該文件。",
|
||||
"errorUsersExceed": "超出了定價計劃所允許的用戶數量",
|
||||
"errorViewerDisconnect": "網路連線失敗。您可以繼續瀏覽這份文件,<br>在連線恢復前以及頁面重新加載之前,您無法下載或列印此文件。",
|
||||
"errorWrongBracketsCount": "公式中有錯誤。<br>括號數字錯誤。",
|
||||
"errorWrongOperator": "輸入的公式中有錯誤。使用了錯誤的運算符。<br>請更正錯誤。",
|
||||
"notcriticalErrorTitle": "警告",
|
||||
"openErrorText": "開啟文件時發生錯誤",
|
||||
"pastInMergeAreaError": "無法改變合併儲存格內的一部分",
|
||||
"saveErrorText": "存檔時發生錯誤",
|
||||
"scriptLoadError": "連線速度過慢,某些組件無法加載。 請重新載入頁面。",
|
||||
"textErrorPasswordIsNotCorrect": "密碼錯誤。<br>核實蓋帽封鎖鍵關閉並且是肯定使用正確資本化。",
|
||||
"unknownErrorText": "未知錯誤。",
|
||||
"uploadImageExtMessage": "圖片格式未知。",
|
||||
"uploadImageFileCountMessage": "沒有上傳圖片。",
|
||||
"uploadImageSizeMessage": "圖像超出最大大小限制。最大大小為25MB。"
|
||||
},
|
||||
"LongActions": {
|
||||
"advDRMPassword": "密碼",
|
||||
"applyChangesTextText": "加載數據中...",
|
||||
"applyChangesTitleText": "加載數據中",
|
||||
"confirmMoveCellRange": "目標儲存格的範圍可以包含資料。繼續動作?",
|
||||
"confirmPutMergeRange": "資料來源包含合併的單元格。<br>它們在貼上到表格之前將被取消合併。",
|
||||
"confirmReplaceFormulaInTable": "標題行中的公式將被刪除並轉換為靜態文本。<br>是否繼續?",
|
||||
"downloadTextText": "文件下載中...",
|
||||
"downloadTitleText": "文件下載中",
|
||||
"loadFontsTextText": "加載數據中...",
|
||||
"loadFontsTitleText": "加載數據中",
|
||||
"loadFontTextText": "加載數據中...",
|
||||
"loadFontTitleText": "加載數據中",
|
||||
"loadImagesTextText": "正在載入圖片...",
|
||||
"loadImagesTitleText": "正在載入圖片",
|
||||
"loadImageTextText": "正在載入圖片...",
|
||||
"loadImageTitleText": "正在載入圖片",
|
||||
"loadingDocumentTextText": "正在載入文件...",
|
||||
"loadingDocumentTitleText": "載入文件",
|
||||
"notcriticalErrorTitle": "警告",
|
||||
"openTextText": "開啟文件中...",
|
||||
"openTitleText": "開啟文件中",
|
||||
"printTextText": "列印文件中...",
|
||||
"printTitleText": "列印文件",
|
||||
"savePreparingText": "準備保存",
|
||||
"savePreparingTitle": "正在準備保存。請耐心等待...",
|
||||
"saveTextText": "儲存文件...",
|
||||
"saveTitleText": "儲存文件",
|
||||
"textCancel": "取消",
|
||||
"textErrorWrongPassword": "密碼錯誤",
|
||||
"textLoadingDocument": "載入文件",
|
||||
"textNo": "沒有",
|
||||
"textOk": "確定",
|
||||
"textUnlockRange": "範圍解鎖",
|
||||
"textUnlockRangeWarning": "試圖改變的範圍受密碼保護。",
|
||||
"textYes": "是",
|
||||
"txtEditingMode": "設定編輯模式...",
|
||||
"uploadImageTextText": "正在上傳圖片...",
|
||||
"uploadImageTitleText": "上載圖片",
|
||||
"waitText": "請耐心等待..."
|
||||
},
|
||||
"Statusbar": {
|
||||
"notcriticalErrorTitle": "警告",
|
||||
"textCancel": "取消",
|
||||
"textDelete": "刪除",
|
||||
"textDuplicate": "重複複製",
|
||||
"textErrNameExists": "具有此名稱的工作表已存在。",
|
||||
"textErrNameWrongChar": "工作表名稱不能包含以下字符:\\,/,*,?,[,] 、:",
|
||||
"textErrNotEmpty": "表格名稱不能為空",
|
||||
"textErrorLastSheet": "工作簿必須至少有一個可見的工作表。",
|
||||
"textErrorRemoveSheet": "無法刪除工作表。",
|
||||
"textHidden": "隱長",
|
||||
"textHide": "隱藏",
|
||||
"textMore": "更多",
|
||||
"textMove": "移動",
|
||||
"textMoveBefore": "在工作表前移動",
|
||||
"textMoveToEnd": "(移至結尾)",
|
||||
"textOk": "確定",
|
||||
"textRename": "重新命名",
|
||||
"textRenameSheet": "重命名工作表",
|
||||
"textSheet": "表格",
|
||||
"textSheetName": "表格名稱",
|
||||
"textUnhide": "取消隱藏",
|
||||
"textWarnDeleteSheet": "工作表內可能有資料。 進行動作?",
|
||||
"textTabColor": "Tab Color"
|
||||
},
|
||||
"Toolbar": {
|
||||
"dlgLeaveMsgText": "您在此文件中有未儲存的變更。點擊\"留在此頁面\"以等待自動儲存。點擊\"離開此頁面\"以放棄所有未儲存的變更。",
|
||||
"dlgLeaveTitleText": "您離開應用程式。",
|
||||
"leaveButtonText": "離開這個頁面",
|
||||
"stayButtonText": "保持此頁上"
|
||||
},
|
||||
"View": {
|
||||
"Add": {
|
||||
"errorMaxRows": "錯誤!每個圖表的最大數據系列數為255。",
|
||||
"errorStockChart": "行序錯誤。要建立股票圖表,請將數據按照以下順序工作表:<br> 開盤價、最高價、最低價、收盤價。 ",
|
||||
"notcriticalErrorTitle": "警告",
|
||||
"sCatDateAndTime": "日期和時間",
|
||||
"sCatEngineering": "工程",
|
||||
"sCatFinancial": "金融",
|
||||
"sCatInformation": "資訊",
|
||||
"sCatLogical": "合邏輯",
|
||||
"sCatLookupAndReference": "查找和參考",
|
||||
"sCatMathematic": "數學和三角學",
|
||||
"sCatStatistical": "統計",
|
||||
"sCatTextAndData": "文字和數據",
|
||||
"textAddLink": "新增連結",
|
||||
"textAddress": "地址",
|
||||
"textAllTableHint": "回傳表格或指定表格列的全部內容包括列標題,資料和總行術",
|
||||
"textBack": "返回",
|
||||
"textCancel": "取消",
|
||||
"textChart": "圖表",
|
||||
"textComment": "評論",
|
||||
"textDataTableHint": "回傳表格儲存格,或指定的表格儲存格",
|
||||
"textDisplay": "顯示",
|
||||
"textEmptyImgUrl": "您需要指定影像的 URL。",
|
||||
"textExternalLink": "外部連結",
|
||||
"textFilter": "篩選條件",
|
||||
"textFunction": "功能",
|
||||
"textGroups": "分類",
|
||||
"textHeadersTableHint": "回傳表格列標題,或指定的表格列標題",
|
||||
"textImage": "圖像",
|
||||
"textImageURL": "圖像 URL",
|
||||
"textInsert": "插入",
|
||||
"textInsertImage": "插入圖片",
|
||||
"textInternalDataRange": "內部數據範圍",
|
||||
"textInvalidRange": "錯誤!無效的單元格範圍",
|
||||
"textLink": "連結",
|
||||
"textLinkSettings": "連結設定",
|
||||
"textLinkType": "鏈接類型",
|
||||
"textOk": "確定",
|
||||
"textOther": "其它",
|
||||
"textPictureFromLibrary": "圖片來自圖書館",
|
||||
"textPictureFromURL": "網址圖片",
|
||||
"textRange": "範圍",
|
||||
"textRequired": "需要",
|
||||
"textScreenTip": "屏幕提示",
|
||||
"textSelectedRange": "選擇範圍",
|
||||
"textShape": "形狀",
|
||||
"textSheet": "表格",
|
||||
"textSortAndFilter": "排序和過濾",
|
||||
"textThisRowHint": "在選定的列裡選擇這行",
|
||||
"textTotalsTableHint": "回傳表格或指定表格列的總行數",
|
||||
"txtExpand": "展開和排序",
|
||||
"txtExpandSort": "選擇項旁邊的數據將不會排序。您是否要擴展選擇範圍以包括相鄰數據,還是僅對當前選定的單元格進行排序?",
|
||||
"txtLockSort": "您選材的比鄰有數據,可您更改權限不足。<br>是否繼續當前選材?",
|
||||
"txtNo": "沒有",
|
||||
"txtNotUrl": "此字段應為格式為\"http://www.example.com\"的URL。",
|
||||
"txtSorting": "排序",
|
||||
"txtSortSelected": "排序已選擇項目",
|
||||
"txtYes": "是"
|
||||
},
|
||||
"Edit": {
|
||||
"notcriticalErrorTitle": "警告",
|
||||
"textAccounting": "會計",
|
||||
"textActualSize": "實際大小",
|
||||
"textAddCustomColor": "新增客制化顏色",
|
||||
"textAddress": "地址",
|
||||
"textAlign": "對齊",
|
||||
"textAlignBottom": "靠下對齊",
|
||||
"textAlignCenter": "置中對齊",
|
||||
"textAlignLeft": "靠左對齊",
|
||||
"textAlignMiddle": "至中對齊",
|
||||
"textAlignRight": "靠右對齊",
|
||||
"textAlignTop": "靠上對齊",
|
||||
"textAllBorders": "所有邊界",
|
||||
"textAngleClockwise": "順時針旋轉角度",
|
||||
"textAngleCounterclockwise": "逆時針旋轉角度",
|
||||
"textAuto": "自動",
|
||||
"textAutomatic": "自動",
|
||||
"textAxisCrosses": "軸十字",
|
||||
"textAxisOptions": "軸選項",
|
||||
"textAxisPosition": "軸位置",
|
||||
"textAxisTitle": "軸標題",
|
||||
"textBack": "返回",
|
||||
"textBetweenTickMarks": "勾線之間",
|
||||
"textBillions": "十億",
|
||||
"textBorder": "邊框",
|
||||
"textBorderStyle": "邊框風格",
|
||||
"textBottom": "底部",
|
||||
"textBottomBorder": "底部邊框",
|
||||
"textBringToForeground": "移到前景",
|
||||
"textCell": "單元格",
|
||||
"textCellStyles": "單元格樣式",
|
||||
"textCenter": "中心",
|
||||
"textChart": "圖表",
|
||||
"textChartTitle": "圖表標題",
|
||||
"textClearFilter": "清空篩選條件",
|
||||
"textColor": "顏色",
|
||||
"textCross": "交叉",
|
||||
"textCrossesValue": "交叉值",
|
||||
"textCurrency": "貨幣",
|
||||
"textCustomColor": "自訂顏色",
|
||||
"textDataLabels": "數據標籤",
|
||||
"textDate": "日期",
|
||||
"textDefault": "選擇範圍",
|
||||
"textDeleteFilter": "刪除過濾器",
|
||||
"textDesign": "設計",
|
||||
"textDiagonalDownBorder": "對角向下邊界",
|
||||
"textDiagonalUpBorder": "對角上邊界",
|
||||
"textDisplay": "顯示",
|
||||
"textDisplayUnits": "顯示單位",
|
||||
"textDollar": "美元",
|
||||
"textEditLink": "編輯連結",
|
||||
"textEffects": "效果",
|
||||
"textEmptyImgUrl": "您需要指定影像的 URL。",
|
||||
"textEmptyItem": "{空白}",
|
||||
"textErrorMsg": "您必須選擇至少一個值",
|
||||
"textErrorTitle": "警告",
|
||||
"textEuro": "歐元",
|
||||
"textExternalLink": "外部連結",
|
||||
"textFill": "填入",
|
||||
"textFillColor": "填色",
|
||||
"textFilterOptions": "過濾器選項",
|
||||
"textFit": "適合寬度",
|
||||
"textFonts": "字型",
|
||||
"textFormat": "格式",
|
||||
"textFraction": "分數",
|
||||
"textFromLibrary": "圖片來自圖書館",
|
||||
"textFromURL": "網址圖片",
|
||||
"textGeneral": "一般",
|
||||
"textGridlines": "網格線",
|
||||
"textHigh": "高",
|
||||
"textHorizontal": "水平的",
|
||||
"textHorizontalAxis": "橫軸",
|
||||
"textHorizontalText": "橫軸上的文字",
|
||||
"textHundredMil": "100 000 000",
|
||||
"textHundreds": "幾百個",
|
||||
"textHundredThousands": "100 000",
|
||||
"textHyperlink": "超連結",
|
||||
"textImage": "圖像",
|
||||
"textImageURL": "圖像 URL",
|
||||
"textIn": "在",
|
||||
"textInnerBottom": "內底",
|
||||
"textInnerTop": "內頂",
|
||||
"textInsideBorders": "內部邊界",
|
||||
"textInsideHorizontalBorder": "內部水平邊框",
|
||||
"textInsideVerticalBorder": "內部垂直邊框",
|
||||
"textInteger": "整數",
|
||||
"textInternalDataRange": "內部數據範圍",
|
||||
"textInvalidRange": "無效的單元格範圍",
|
||||
"textJustified": "合理的",
|
||||
"textLabelOptions": "標籤選項",
|
||||
"textLabelPosition": "標籤位置",
|
||||
"textLayout": "佈局",
|
||||
"textLeft": "左",
|
||||
"textLeftBorder": "左邊框",
|
||||
"textLeftOverlay": "左側覆蓋",
|
||||
"textLegend": "傳說",
|
||||
"textLink": "連結",
|
||||
"textLinkSettings": "連結設定",
|
||||
"textLinkType": "鏈接類型",
|
||||
"textLow": "低",
|
||||
"textMajor": "重大",
|
||||
"textMajorAndMinor": "主要和次要",
|
||||
"textMajorType": "主要類型",
|
||||
"textMaximumValue": "最大值",
|
||||
"textMedium": "中",
|
||||
"textMillions": "百萬",
|
||||
"textMinimumValue": "最低值",
|
||||
"textMinor": "次要",
|
||||
"textMinorType": "次要類",
|
||||
"textMoveBackward": "向後移動",
|
||||
"textMoveForward": "向前移動",
|
||||
"textNextToAxis": "軸旁",
|
||||
"textNoBorder": "無邊界",
|
||||
"textNone": "無",
|
||||
"textNoOverlay": "無覆蓋",
|
||||
"textNotUrl": "此字段應為格式為\"http://www.example.com\"的URL。",
|
||||
"textNumber": "數字",
|
||||
"textOk": "確定",
|
||||
"textOnTickMarks": "在勾標上",
|
||||
"textOpacity": "透明度",
|
||||
"textOut": "外",
|
||||
"textOuterTop": "外上",
|
||||
"textOutsideBorders": "境外",
|
||||
"textOverlay": "覆蓋",
|
||||
"textPercentage": "百分比",
|
||||
"textPictureFromLibrary": "圖片來自圖書館",
|
||||
"textPictureFromURL": "網址圖片",
|
||||
"textPound": "英鎊",
|
||||
"textPt": "pt",
|
||||
"textRange": "範圍",
|
||||
"textRemoveChart": "刪除圖表",
|
||||
"textRemoveImage": "移除圖片",
|
||||
"textRemoveLink": "刪除連結",
|
||||
"textRemoveShape": "去除形狀",
|
||||
"textReorder": "重新排序",
|
||||
"textReplace": "取代",
|
||||
"textReplaceImage": "替換圖片",
|
||||
"textRequired": "需要",
|
||||
"textRight": "右",
|
||||
"textRightBorder": "右邊界",
|
||||
"textRightOverlay": "右側覆蓋",
|
||||
"textRotated": "已旋轉",
|
||||
"textRotateTextDown": "向下旋轉文字",
|
||||
"textRotateTextUp": "向上旋轉文字",
|
||||
"textRouble": "盧布",
|
||||
"textScientific": "科學的",
|
||||
"textScreenTip": "屏幕提示",
|
||||
"textSelectAll": "全選",
|
||||
"textSelectObjectToEdit": "選擇要編輯的物件",
|
||||
"textSendToBackground": "傳送到背景",
|
||||
"textSettings": "設定",
|
||||
"textShape": "形狀",
|
||||
"textSheet": "表格",
|
||||
"textSize": "大小",
|
||||
"textStyle": "樣式",
|
||||
"textTenMillions": "10 000 000",
|
||||
"textTenThousands": "10 000",
|
||||
"textText": "文字",
|
||||
"textTextColor": "文字顏色",
|
||||
"textTextFormat": "文字格式",
|
||||
"textTextOrientation": "文字方向",
|
||||
"textThick": "粗",
|
||||
"textThin": "細",
|
||||
"textThousands": "千",
|
||||
"textTickOptions": "勾號選項",
|
||||
"textTime": "時間",
|
||||
"textTop": "上方",
|
||||
"textTopBorder": "上邊框",
|
||||
"textTrillions": "兆",
|
||||
"textType": "類型",
|
||||
"textValue": "值",
|
||||
"textValuesInReverseOrder": "值倒序",
|
||||
"textVertical": "垂直",
|
||||
"textVerticalAxis": "垂直軸",
|
||||
"textVerticalText": "垂直文字",
|
||||
"textWrapText": "包覆文字",
|
||||
"textYen": "日圓",
|
||||
"txtNotUrl": "此字段應為格式為\"http://www.example.com\"的URL。",
|
||||
"txtSortHigh2Low": "最高到最低排序",
|
||||
"txtSortLow2High": "從最低到最高排序"
|
||||
},
|
||||
"Settings": {
|
||||
"advCSVOptions": "選擇CSV選項",
|
||||
"advDRMEnterPassword": "請輸入您的密碼:",
|
||||
"advDRMOptions": "受保護的文件",
|
||||
"advDRMPassword": "密碼",
|
||||
"closeButtonText": "關閉檔案",
|
||||
"notcriticalErrorTitle": "警告",
|
||||
"textAbout": "關於",
|
||||
"textAddress": "地址",
|
||||
"textApplication": "應用程式",
|
||||
"textApplicationSettings": "應用程式設定",
|
||||
"textAuthor": "作者",
|
||||
"textBack": "返回",
|
||||
"textBottom": "底部",
|
||||
"textByColumns": "按列",
|
||||
"textByRows": "按行",
|
||||
"textCancel": "取消",
|
||||
"textCentimeter": "公分",
|
||||
"textChooseCsvOptions": "選擇CSV選項",
|
||||
"textChooseDelimeter": "選擇分隔符號",
|
||||
"textChooseEncoding": "選擇編碼方式",
|
||||
"textCollaboration": "協作",
|
||||
"textColorSchemes": "色盤",
|
||||
"textComment": "評論",
|
||||
"textCommentingDisplay": "評論顯示",
|
||||
"textComments": "評論",
|
||||
"textCreated": "已建立",
|
||||
"textCustomSize": "自訂大小",
|
||||
"textDarkTheme": "暗色主題",
|
||||
"textDelimeter": "分隔符號",
|
||||
"textDisableAll": "全部停用",
|
||||
"textDisableAllMacrosWithNotification": "以提示停用全部巨集",
|
||||
"textDisableAllMacrosWithoutNotification": "不用提示停用全部巨集",
|
||||
"textDone": "已完成",
|
||||
"textDownload": "下載",
|
||||
"textDownloadAs": "下載成",
|
||||
"textEmail": "電子郵件",
|
||||
"textEnableAll": "全部啟用",
|
||||
"textEnableAllMacrosWithoutNotification": "不用提示啟用全部巨集",
|
||||
"textEncoding": "編碼",
|
||||
"textExample": "例",
|
||||
"textFind": "尋找",
|
||||
"textFindAndReplace": "尋找與取代",
|
||||
"textFindAndReplaceAll": "尋找與全部取代",
|
||||
"textFormat": "格式",
|
||||
"textFormulaLanguage": "公式語言",
|
||||
"textFormulas": "公式",
|
||||
"textHelp": "輔助說明",
|
||||
"textHideGridlines": "隱藏網格線",
|
||||
"textHideHeadings": "隱藏標題",
|
||||
"textHighlightRes": "強調結果",
|
||||
"textInch": "吋",
|
||||
"textLandscape": "景觀",
|
||||
"textLastModified": "上一次更改",
|
||||
"textLastModifiedBy": "最後修改者",
|
||||
"textLeft": "左",
|
||||
"textLocation": "位置",
|
||||
"textLookIn": "探望",
|
||||
"textMacrosSettings": "巨集設定",
|
||||
"textMargins": "邊界",
|
||||
"textMatchCase": "相符",
|
||||
"textMatchCell": "匹配單元",
|
||||
"textNoTextFound": "找不到文字",
|
||||
"textOk": "確定",
|
||||
"textOpenFile": "輸入檔案密碼",
|
||||
"textOrientation": "方向",
|
||||
"textOwner": "擁有者",
|
||||
"textPoint": "點",
|
||||
"textPortrait": "肖像",
|
||||
"textPoweredBy": "於支援",
|
||||
"textPrint": "打印",
|
||||
"textR1C1Style": "R1C1參考樣式",
|
||||
"textRegionalSettings": "區域設置",
|
||||
"textReplace": "取代",
|
||||
"textReplaceAll": "全部替換",
|
||||
"textResolvedComments": "已解決的評論",
|
||||
"textRight": "右",
|
||||
"textSearch": "搜尋",
|
||||
"textSearchBy": "搜尋",
|
||||
"textSearchIn": "搜尋",
|
||||
"textSettings": "設定",
|
||||
"textSheet": "表格",
|
||||
"textShowNotification": "顯示通知",
|
||||
"textSpreadsheetFormats": "電子表格格式",
|
||||
"textSpreadsheetInfo": "試算表資訊",
|
||||
"textSpreadsheetSettings": "試算表設定",
|
||||
"textSpreadsheetTitle": "試算表標題",
|
||||
"textSubject": "主旨",
|
||||
"textTel": "電話",
|
||||
"textTitle": "標題",
|
||||
"textTop": "上方",
|
||||
"textUnitOfMeasurement": "測量單位",
|
||||
"textUploaded": "\n已上傳",
|
||||
"textValues": "值",
|
||||
"textVersion": "版本",
|
||||
"textWorkbook": "工作簿",
|
||||
"txtColon": "冒號",
|
||||
"txtComma": "逗號",
|
||||
"txtDelimiter": "分隔符號",
|
||||
"txtDownloadCsv": "下載CSV",
|
||||
"txtEncoding": "編碼",
|
||||
"txtIncorrectPwd": "密碼錯誤",
|
||||
"txtOk": "確定",
|
||||
"txtProtected": "輸入密碼並打開文件後,該文件的當前密碼將被重置",
|
||||
"txtScheme1": "辦公室",
|
||||
"txtScheme10": "中位數",
|
||||
"txtScheme11": " 地鐵",
|
||||
"txtScheme12": "模組",
|
||||
"txtScheme13": "豐富的",
|
||||
"txtScheme14": "凸窗",
|
||||
"txtScheme15": "起源",
|
||||
"txtScheme16": "紙",
|
||||
"txtScheme17": "冬至",
|
||||
"txtScheme18": "技術",
|
||||
"txtScheme19": "跋涉",
|
||||
"txtScheme2": "灰階",
|
||||
"txtScheme20": "市區",
|
||||
"txtScheme21": "感染力",
|
||||
"txtScheme22": "新的Office",
|
||||
"txtScheme3": "頂尖",
|
||||
"txtScheme4": "方面",
|
||||
"txtScheme5": "思域",
|
||||
"txtScheme6": "大堂",
|
||||
"txtScheme7": "產權",
|
||||
"txtScheme8": "流程",
|
||||
"txtScheme9": "鑄造廠",
|
||||
"txtSemicolon": "分號",
|
||||
"txtSpace": "空間",
|
||||
"txtTab": "標籤",
|
||||
"warnDownloadAs": "如果繼續以這種格式保存,則除文本外的所有功能都將丟失。<br>確定要繼續嗎?",
|
||||
"textFeedback": "Feedback & Support"
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue