Merge branch 'release/v6.4.0' into develop

This commit is contained in:
Julia Radzhabova 2021-07-28 00:03:49 +03:00
commit d767fa5399
154 changed files with 6797 additions and 3765 deletions

View file

@ -114,7 +114,8 @@ define([
Common.Gateway.requestRestore(record.get('revision')); Common.Gateway.requestRestore(record.get('revision'));
else { else {
this.isFromSelectRevision = record.get('revision'); this.isFromSelectRevision = record.get('revision');
this.api.asc_DownloadAs(new Asc.asc_CDownloadOptions(Asc.c_oAscFileType.DOCX, true)); var fileType = Asc.c_oAscFileType[(record.get('fileType') || '').toUpperCase()] || Asc.c_oAscFileType.DOCX;
this.api.asc_DownloadAs(new Asc.asc_CDownloadOptions(fileType, true));
} }
return; return;
} }

View file

@ -74,7 +74,8 @@ define([
isVisible: true, isVisible: true,
allowSelected: true, allowSelected: true,
selected: false, selected: false,
serverVersion: 0 serverVersion: 0,
fileType: 'docx'
} }
} }
}); });

View file

@ -157,10 +157,10 @@
} }
.revision-restore { .revision-restore {
color: @text-normal-ie; color: @text-normal-pressed-ie;
color: @text-normal; color: @text-normal-pressed;
border-bottom: @scaled-one-px-value-ie dotted @text-normal-ie; border-bottom: @scaled-one-px-value-ie dotted @text-normal-pressed-ie;
border-bottom: @scaled-one-px-value dotted @text-normal; border-bottom: @scaled-one-px-value dotted @text-normal-pressed;
height: 16px; height: 16px;
margin-top: 5px; margin-top: 5px;
white-space: pre-wrap; white-space: pre-wrap;

View file

@ -45,7 +45,7 @@ const StandartColors = ({ options, standartColors, onColorClick, curColor }) =>
) )
}; };
const CustomColors = ({ options, customColors, onColorClick, curColor }) => { const CustomColors = ({ options, customColors, isTypeColors, onColorClick, curColor }) => {
const colors = customColors.length > 0 ? customColors : []; const colors = customColors.length > 0 ? customColors : [];
const emptyItems = []; const emptyItems = [];
if (colors.length < options.customcolors) { if (colors.length < options.customcolors) {
@ -64,7 +64,7 @@ const CustomColors = ({ options, customColors, onColorClick, curColor }) => {
{colors && colors.length > 0 && colors.map((color, index) => { {colors && colors.length > 0 && colors.map((color, index) => {
return( return(
<a key={`dc-${index}`} <a key={`dc-${index}`}
className={curColor && curColor === color && index === indexCurColor ? 'active' : ''} className={curColor && curColor === color && index === indexCurColor && !isTypeColors ? 'active' : ''}
style={{background: `#${color}`}} style={{background: `#${color}`}}
onClick={() => {onColorClick(color)}} onClick={() => {onColorClick(color)}}
></a> ></a>
@ -100,6 +100,7 @@ const ThemeColorPalette = props => {
themeColors[row].push(effect); themeColors[row].push(effect);
}); });
const standartColors = Common.Utils.ThemeColor.getStandartColors(); const standartColors = Common.Utils.ThemeColor.getStandartColors();
let isTypeColors = standartColors.some( value => value === curColor );
// custom color // custom color
let customColors = props.customColors; let customColors = props.customColors;
if (customColors.length < 1) { if (customColors.length < 1) {
@ -120,7 +121,7 @@ const ThemeColorPalette = props => {
</ListItem> </ListItem>
<ListItem className='dynamic-colors'> <ListItem className='dynamic-colors'>
<div>{ _t.textCustomColors }</div> <div>{ _t.textCustomColors }</div>
<CustomColors options={options} customColors={customColors} onColorClick={props.changeColor} curColor={curColor}/> <CustomColors options={options} isTypeColors={isTypeColors} customColors={customColors} onColorClick={props.changeColor} curColor={curColor}/>
</ListItem> </ListItem>
</List> </List>
</div> </div>

View file

@ -155,8 +155,7 @@
} }
function encodeUrlParam(str) { function encodeUrlParam(str) {
return str.replace(/&/g, '&amp;') return str.replace(/"/g, '&quot;')
.replace(/"/g, '&quot;')
.replace(/'/g, '&#39;') .replace(/'/g, '&#39;')
.replace(/</g, '&lt;') .replace(/</g, '&lt;')
.replace(/>/g, '&gt;'); .replace(/>/g, '&gt;');

View file

@ -148,8 +148,7 @@
} }
function encodeUrlParam(str) { function encodeUrlParam(str) {
return str.replace(/&/g, '&amp;') return str.replace(/"/g, '&quot;')
.replace(/"/g, '&quot;')
.replace(/'/g, '&#39;') .replace(/'/g, '&#39;')
.replace(/</g, '&lt;') .replace(/</g, '&lt;')
.replace(/>/g, '&gt;'); .replace(/>/g, '&gt;');

View file

@ -225,8 +225,7 @@
} }
function encodeUrlParam(str) { function encodeUrlParam(str) {
return str.replace(/&/g, '&amp;') return str.replace(/"/g, '&quot;')
.replace(/"/g, '&quot;')
.replace(/'/g, '&#39;') .replace(/'/g, '&#39;')
.replace(/</g, '&lt;') .replace(/</g, '&lt;')
.replace(/>/g, '&gt;'); .replace(/>/g, '&gt;');

View file

@ -217,8 +217,7 @@
} }
function encodeUrlParam(str) { function encodeUrlParam(str) {
return str.replace(/&/g, '&amp;') return str.replace(/"/g, '&quot;')
.replace(/"/g, '&quot;')
.replace(/'/g, '&#39;') .replace(/'/g, '&#39;')
.replace(/</g, '&lt;') .replace(/</g, '&lt;')
.replace(/>/g, '&gt;'); .replace(/>/g, '&gt;');

View file

@ -625,6 +625,11 @@ DE.ApplicationController = new(function(){
message = me.errorEditingDownloadas; message = me.errorEditingDownloadas;
break; break;
case Asc.c_oAscError.ID.ForceSaveButton:
case Asc.c_oAscError.ID.ForceSaveTimeout:
message = me.errorForceSave;
break;
default: default:
message = me.errorDefaultMessage.replace('%1', id); message = me.errorDefaultMessage.replace('%1', id);
break; break;
@ -806,6 +811,7 @@ DE.ApplicationController = new(function(){
textGuest: 'Guest', textGuest: 'Guest',
textAnonymous: 'Anonymous', textAnonymous: 'Anonymous',
textRequired: 'Fill all required fields to send form.', textRequired: 'Fill all required fields to send form.',
textGotIt: 'Got it' textGotIt: 'Got it',
errorForceSave: "An error occurred while saving the file. Please use the 'Download as' option to save the file to your computer hard drive or try again later."
} }
})(); })();

View file

@ -19,10 +19,14 @@
"DE.ApplicationController.errorUserDrop": "Ara no es pot accedir al fitxer.", "DE.ApplicationController.errorUserDrop": "Ara no es pot accedir al fitxer.",
"DE.ApplicationController.notcriticalErrorTitle": "Avis", "DE.ApplicationController.notcriticalErrorTitle": "Avis",
"DE.ApplicationController.scriptLoadError": "La connexió és massa lenta, alguns dels components no shan pogut carregar. Torneu a carregar la pàgina.", "DE.ApplicationController.scriptLoadError": "La connexió és massa lenta, alguns dels components no shan pogut carregar. Torneu a carregar la pàgina.",
"DE.ApplicationController.textAnonymous": "Anònim",
"DE.ApplicationController.textClear": "Esborrar tots els camps", "DE.ApplicationController.textClear": "Esborrar tots els camps",
"DE.ApplicationController.textGotIt": "Ho tinc",
"DE.ApplicationController.textGuest": "Convidat",
"DE.ApplicationController.textLoadingDocument": "Carregant document", "DE.ApplicationController.textLoadingDocument": "Carregant document",
"DE.ApplicationController.textNext": "Següent camp", "DE.ApplicationController.textNext": "Següent camp",
"DE.ApplicationController.textOf": "de", "DE.ApplicationController.textOf": "de",
"DE.ApplicationController.textRequired": "Ompli tots els camps requerits per enviar el formulari.",
"DE.ApplicationController.textSubmit": "Enviar", "DE.ApplicationController.textSubmit": "Enviar",
"DE.ApplicationController.textSubmited": "<b>Formulari enviat amb èxit</b><br>Faci clic per a tancar el consell", "DE.ApplicationController.textSubmited": "<b>Formulari enviat amb èxit</b><br>Faci clic per a tancar el consell",
"DE.ApplicationController.txtClose": "Tancar", "DE.ApplicationController.txtClose": "Tancar",

View file

@ -19,10 +19,14 @@
"DE.ApplicationController.errorUserDrop": "Der Zugriff auf diese Datei ist nicht möglich.", "DE.ApplicationController.errorUserDrop": "Der Zugriff auf diese Datei ist nicht möglich.",
"DE.ApplicationController.notcriticalErrorTitle": "Warnung", "DE.ApplicationController.notcriticalErrorTitle": "Warnung",
"DE.ApplicationController.scriptLoadError": "Die Verbindung ist zu langsam, einige der Komponenten konnten nicht geladen werden. Bitte laden Sie die Seite erneut.", "DE.ApplicationController.scriptLoadError": "Die Verbindung ist zu langsam, einige der Komponenten konnten nicht geladen werden. Bitte laden Sie die Seite erneut.",
"DE.ApplicationController.textAnonymous": "Anonym",
"DE.ApplicationController.textClear": "Alle Felder löschen", "DE.ApplicationController.textClear": "Alle Felder löschen",
"DE.ApplicationController.textGotIt": "OK",
"DE.ApplicationController.textGuest": "Gast",
"DE.ApplicationController.textLoadingDocument": "Dokument wird geladen...", "DE.ApplicationController.textLoadingDocument": "Dokument wird geladen...",
"DE.ApplicationController.textNext": "Nächstes Feld", "DE.ApplicationController.textNext": "Nächstes Feld",
"DE.ApplicationController.textOf": "von", "DE.ApplicationController.textOf": "von",
"DE.ApplicationController.textRequired": "Füllen Sie alle erforderlichen Felder aus, um das Formular zu senden.",
"DE.ApplicationController.textSubmit": "Senden", "DE.ApplicationController.textSubmit": "Senden",
"DE.ApplicationController.textSubmited": "<b>Das Formular wurde erfolgreich abgesendet</b><br>Klicken Sie hier, um den Tipp auszublenden", "DE.ApplicationController.textSubmited": "<b>Das Formular wurde erfolgreich abgesendet</b><br>Klicken Sie hier, um den Tipp auszublenden",
"DE.ApplicationController.txtClose": "Schließen", "DE.ApplicationController.txtClose": "Schließen",

View file

@ -19,10 +19,14 @@
"DE.ApplicationController.errorUserDrop": "Δεν είναι δυνατή η πρόσβαση στο αρχείο αυτήν τη στιγμή.", "DE.ApplicationController.errorUserDrop": "Δεν είναι δυνατή η πρόσβαση στο αρχείο αυτήν τη στιγμή.",
"DE.ApplicationController.notcriticalErrorTitle": "Προειδοποίηση", "DE.ApplicationController.notcriticalErrorTitle": "Προειδοποίηση",
"DE.ApplicationController.scriptLoadError": "Η σύνδεση είναι πολύ αργή, δεν ήταν δυνατή η φόρτωση ορισμένων στοιχείων. Φορτώστε ξανά τη σελίδα.", "DE.ApplicationController.scriptLoadError": "Η σύνδεση είναι πολύ αργή, δεν ήταν δυνατή η φόρτωση ορισμένων στοιχείων. Φορτώστε ξανά τη σελίδα.",
"DE.ApplicationController.textAnonymous": "Ανώνυμος",
"DE.ApplicationController.textClear": "Εκκαθάριση Όλων των Πεδίων", "DE.ApplicationController.textClear": "Εκκαθάριση Όλων των Πεδίων",
"DE.ApplicationController.textGotIt": "Ελήφθη",
"DE.ApplicationController.textGuest": "Επισκέπτης",
"DE.ApplicationController.textLoadingDocument": "Φόρτωση εγγράφου", "DE.ApplicationController.textLoadingDocument": "Φόρτωση εγγράφου",
"DE.ApplicationController.textNext": "Επόμενο Πεδίο", "DE.ApplicationController.textNext": "Επόμενο Πεδίο",
"DE.ApplicationController.textOf": "του", "DE.ApplicationController.textOf": "του",
"DE.ApplicationController.textRequired": "Συμπληρώστε όλα τα απαιτούμενα πεδία για την αποστολή της φόρμας.",
"DE.ApplicationController.textSubmit": "Υποβολή", "DE.ApplicationController.textSubmit": "Υποβολή",
"DE.ApplicationController.textSubmited": "<b>Η φόρμα υποβλήθηκε με επιτυχία</b><br>Κάντε κλικ για να κλείσετε τη συμβουλή ", "DE.ApplicationController.textSubmited": "<b>Η φόρμα υποβλήθηκε με επιτυχία</b><br>Κάντε κλικ για να κλείσετε τη συμβουλή ",
"DE.ApplicationController.txtClose": "Κλείσιμο", "DE.ApplicationController.txtClose": "Κλείσιμο",

View file

@ -17,6 +17,7 @@
"DE.ApplicationController.errorSubmit": "Submit failed.", "DE.ApplicationController.errorSubmit": "Submit failed.",
"DE.ApplicationController.errorUpdateVersionOnDisconnect": "Internet connection has been restored, and the file version has been changed.<br>Before you can continue working, you need to download the file or copy its content to make sure nothing is lost, and then reload this page.", "DE.ApplicationController.errorUpdateVersionOnDisconnect": "Internet connection has been restored, and the file version has been changed.<br>Before you can continue working, you need to download the file or copy its content to make sure nothing is lost, and then reload this page.",
"DE.ApplicationController.errorUserDrop": "The file cannot be accessed right now.", "DE.ApplicationController.errorUserDrop": "The file cannot be accessed right now.",
"DE.ApplicationController.errorForceSave": "An error occurred while saving the file. Please use the 'Download as' option to save the file to your computer hard drive or try again later.",
"DE.ApplicationController.notcriticalErrorTitle": "Warning", "DE.ApplicationController.notcriticalErrorTitle": "Warning",
"DE.ApplicationController.scriptLoadError": "The connection is too slow, some of the components could not be loaded. Please reload the page.", "DE.ApplicationController.scriptLoadError": "The connection is too slow, some of the components could not be loaded. Please reload the page.",
"DE.ApplicationController.textAnonymous": "Anonymous", "DE.ApplicationController.textAnonymous": "Anonymous",

View file

@ -19,10 +19,14 @@
"DE.ApplicationController.errorUserDrop": "No se puede acceder al archivo en este momento.", "DE.ApplicationController.errorUserDrop": "No se puede acceder al archivo en este momento.",
"DE.ApplicationController.notcriticalErrorTitle": "Aviso", "DE.ApplicationController.notcriticalErrorTitle": "Aviso",
"DE.ApplicationController.scriptLoadError": "La conexión a Internet es demasiado lenta, algunos de los componentes no se han podido cargar. Por favor, recargue la página.", "DE.ApplicationController.scriptLoadError": "La conexión a Internet es demasiado lenta, algunos de los componentes no se han podido cargar. Por favor, recargue la página.",
"DE.ApplicationController.textAnonymous": "Anónimo",
"DE.ApplicationController.textClear": "Borrar todos los campos", "DE.ApplicationController.textClear": "Borrar todos los campos",
"DE.ApplicationController.textGotIt": "Entiendo",
"DE.ApplicationController.textGuest": "Invitado",
"DE.ApplicationController.textLoadingDocument": "Cargando documento", "DE.ApplicationController.textLoadingDocument": "Cargando documento",
"DE.ApplicationController.textNext": "Campo siguiente", "DE.ApplicationController.textNext": "Campo siguiente",
"DE.ApplicationController.textOf": "de", "DE.ApplicationController.textOf": "de",
"DE.ApplicationController.textRequired": "Rellene todos los campos obligatorios para enviar el formulario.",
"DE.ApplicationController.textSubmit": "Enviar", "DE.ApplicationController.textSubmit": "Enviar",
"DE.ApplicationController.textSubmited": "<b>Formulario enviado con éxito</b><br>Haga clic para cerrar el consejo", "DE.ApplicationController.textSubmited": "<b>Formulario enviado con éxito</b><br>Haga clic para cerrar el consejo",
"DE.ApplicationController.txtClose": "Cerrar", "DE.ApplicationController.txtClose": "Cerrar",

View file

@ -19,10 +19,14 @@
"DE.ApplicationController.errorUserDrop": "Impossible d'accéder au fichier.", "DE.ApplicationController.errorUserDrop": "Impossible d'accéder au fichier.",
"DE.ApplicationController.notcriticalErrorTitle": "Avertissement", "DE.ApplicationController.notcriticalErrorTitle": "Avertissement",
"DE.ApplicationController.scriptLoadError": "La connexion est trop lente, certains éléments ne peuvent pas être chargés. Veuillez recharger la page.", "DE.ApplicationController.scriptLoadError": "La connexion est trop lente, certains éléments ne peuvent pas être chargés. Veuillez recharger la page.",
"DE.ApplicationController.textAnonymous": "Anonyme",
"DE.ApplicationController.textClear": "Effacer tous les champs", "DE.ApplicationController.textClear": "Effacer tous les champs",
"DE.ApplicationController.textGotIt": "C'est compris",
"DE.ApplicationController.textGuest": "Invité",
"DE.ApplicationController.textLoadingDocument": "Chargement du document", "DE.ApplicationController.textLoadingDocument": "Chargement du document",
"DE.ApplicationController.textNext": "Champ suivant", "DE.ApplicationController.textNext": "Champ suivant",
"DE.ApplicationController.textOf": "de", "DE.ApplicationController.textOf": "de",
"DE.ApplicationController.textRequired": "Veuillez remplir tous les champs obligatoires avant d'envoyer le formulaire.",
"DE.ApplicationController.textSubmit": "Soumettre ", "DE.ApplicationController.textSubmit": "Soumettre ",
"DE.ApplicationController.textSubmited": "<b>Le formulaire a été soumis avec succès</b><br>Cliquez ici pour fermer l'astuce", "DE.ApplicationController.textSubmited": "<b>Le formulaire a été soumis avec succès</b><br>Cliquez ici pour fermer l'astuce",
"DE.ApplicationController.txtClose": "Fermer", "DE.ApplicationController.txtClose": "Fermer",

View file

@ -11,20 +11,33 @@
"DE.ApplicationController.downloadTextText": "Document wordt gedownload...", "DE.ApplicationController.downloadTextText": "Document wordt gedownload...",
"DE.ApplicationController.errorAccessDeny": "U probeert een actie uit te voeren waarvoor u geen rechten hebt.<br>Neem contact op met de beheerder van de documentserver.", "DE.ApplicationController.errorAccessDeny": "U probeert een actie uit te voeren waarvoor u geen rechten hebt.<br>Neem contact op met de beheerder van de documentserver.",
"DE.ApplicationController.errorDefaultMessage": "Foutcode: %1", "DE.ApplicationController.errorDefaultMessage": "Foutcode: %1",
"DE.ApplicationController.errorEditingDownloadas": "Er is een fout ontstaan tijdens het werken met het document.<br>Gebruik de 'Opslaan als...' optie om het bestand als back-upkopie op te slaan op uw computer.",
"DE.ApplicationController.errorFilePassProtect": "Het bestand is beschermd met een wachtwoord en kan niet worden geopend.", "DE.ApplicationController.errorFilePassProtect": "Het bestand is beschermd met een wachtwoord en kan niet worden geopend.",
"DE.ApplicationController.errorFileSizeExceed": "De bestandsgrootte overschrijdt de limiet die is ingesteld voor uw server. <br>Neem contact op met uw Document Server-beheerder voor details.", "DE.ApplicationController.errorFileSizeExceed": "De bestandsgrootte overschrijdt de limiet die is ingesteld voor uw server. <br>Neem contact op met uw Document Server-beheerder voor details.",
"DE.ApplicationController.errorSubmit": "Verzenden mislukt. ",
"DE.ApplicationController.errorUpdateVersionOnDisconnect": "De internetverbinding is hersteld en de bestandsversie is gewijzigd. <br>Voordat u verder kunt werken, moet u het bestand downloaden of de inhoud kopiëren om er zeker van te zijn dat er niets verloren gaat, en deze pagina vervolgens opnieuw laden.", "DE.ApplicationController.errorUpdateVersionOnDisconnect": "De internetverbinding is hersteld en de bestandsversie is gewijzigd. <br>Voordat u verder kunt werken, moet u het bestand downloaden of de inhoud kopiëren om er zeker van te zijn dat er niets verloren gaat, en deze pagina vervolgens opnieuw laden.",
"DE.ApplicationController.errorUserDrop": "Toegang tot het bestand is op dit moment niet mogelijk.", "DE.ApplicationController.errorUserDrop": "Toegang tot het bestand is op dit moment niet mogelijk.",
"DE.ApplicationController.notcriticalErrorTitle": "Waarschuwing", "DE.ApplicationController.notcriticalErrorTitle": "Waarschuwing",
"DE.ApplicationController.scriptLoadError": "De verbinding is te langzaam, sommige componenten konden niet geladen worden. Laad de pagina opnieuw.", "DE.ApplicationController.scriptLoadError": "De verbinding is te langzaam, sommige componenten konden niet geladen worden. Laad de pagina opnieuw.",
"DE.ApplicationController.textAnonymous": "Anoniem",
"DE.ApplicationController.textClear": "Wis Alle Velden",
"DE.ApplicationController.textGotIt": "OK",
"DE.ApplicationController.textGuest": "Gast",
"DE.ApplicationController.textLoadingDocument": "Document wordt geladen", "DE.ApplicationController.textLoadingDocument": "Document wordt geladen",
"DE.ApplicationController.textNext": "Volgend veld ",
"DE.ApplicationController.textOf": "van", "DE.ApplicationController.textOf": "van",
"DE.ApplicationController.textRequired": "Vul alle verplichte velden in om het formulier te verzenden.",
"DE.ApplicationController.textSubmit": "Verzenden ",
"DE.ApplicationController.textSubmited": "<b>Formulier succesvol ingediend</b><br>Klik om de tip te sluiten",
"DE.ApplicationController.txtClose": "Sluiten", "DE.ApplicationController.txtClose": "Sluiten",
"DE.ApplicationController.unknownErrorText": "Onbekende fout.", "DE.ApplicationController.unknownErrorText": "Onbekende fout.",
"DE.ApplicationController.unsupportedBrowserErrorText": "Uw browser wordt niet ondersteund.", "DE.ApplicationController.unsupportedBrowserErrorText": "Uw browser wordt niet ondersteund.",
"DE.ApplicationController.waitText": "Een moment geduld", "DE.ApplicationController.waitText": "Een moment geduld",
"DE.ApplicationView.txtDownload": "Downloaden", "DE.ApplicationView.txtDownload": "Downloaden",
"DE.ApplicationView.txtDownloadDocx": "Downloaden als docx",
"DE.ApplicationView.txtDownloadPdf": "Downloaden als PDF",
"DE.ApplicationView.txtEmbed": "Invoegen", "DE.ApplicationView.txtEmbed": "Invoegen",
"DE.ApplicationView.txtFileLocation": "Open bestandslocatie",
"DE.ApplicationView.txtFullScreen": "Volledig scherm", "DE.ApplicationView.txtFullScreen": "Volledig scherm",
"DE.ApplicationView.txtPrint": "Afdrukken", "DE.ApplicationView.txtPrint": "Afdrukken",
"DE.ApplicationView.txtShare": "Delen" "DE.ApplicationView.txtShare": "Delen"

View file

@ -19,10 +19,14 @@
"DE.ApplicationController.errorUserDrop": "O arquivo não pode ser acessado agora.", "DE.ApplicationController.errorUserDrop": "O arquivo não pode ser acessado agora.",
"DE.ApplicationController.notcriticalErrorTitle": "Aviso", "DE.ApplicationController.notcriticalErrorTitle": "Aviso",
"DE.ApplicationController.scriptLoadError": "A conexão está muito lenta, e alguns dos componentes não puderam ser carregados. Por favor, recarregue a página.", "DE.ApplicationController.scriptLoadError": "A conexão está muito lenta, e alguns dos componentes não puderam ser carregados. Por favor, recarregue a página.",
"DE.ApplicationController.textAnonymous": "Anônimo",
"DE.ApplicationController.textClear": "Limpar todos os campos", "DE.ApplicationController.textClear": "Limpar todos os campos",
"DE.ApplicationController.textGotIt": "Entendi",
"DE.ApplicationController.textGuest": "Convidado(a)",
"DE.ApplicationController.textLoadingDocument": "Carregando documento", "DE.ApplicationController.textLoadingDocument": "Carregando documento",
"DE.ApplicationController.textNext": "Próximo campo", "DE.ApplicationController.textNext": "Próximo campo",
"DE.ApplicationController.textOf": "de", "DE.ApplicationController.textOf": "de",
"DE.ApplicationController.textRequired": "Preencha todos os campos obrigatórios para enviar o formulário.",
"DE.ApplicationController.textSubmit": "Enviar", "DE.ApplicationController.textSubmit": "Enviar",
"DE.ApplicationController.textSubmited": "<b>Formulário apresentado com sucesso</b>>br>Click para fechar a ponta", "DE.ApplicationController.textSubmited": "<b>Formulário apresentado com sucesso</b>>br>Click para fechar a ponta",
"DE.ApplicationController.txtClose": "Fechar", "DE.ApplicationController.txtClose": "Fechar",

View file

@ -11,20 +11,33 @@
"DE.ApplicationController.downloadTextText": "Descărcarea documentului...", "DE.ApplicationController.downloadTextText": "Descărcarea documentului...",
"DE.ApplicationController.errorAccessDeny": "Nu aveți dreptul să efectuați acțiunea pe care doriți.<br>Contactați administratorul dumneavoastră de Server Documente.", "DE.ApplicationController.errorAccessDeny": "Nu aveți dreptul să efectuați acțiunea pe care doriți.<br>Contactați administratorul dumneavoastră de Server Documente.",
"DE.ApplicationController.errorDefaultMessage": "Codul de eroare: %1", "DE.ApplicationController.errorDefaultMessage": "Codul de eroare: %1",
"DE.ApplicationController.errorEditingDownloadas": "S-a produs o eroare în timpul editării documentului.<br>Pentru copierea de rezervă pe PC utilizați opțiunea Descărcare ca...",
"DE.ApplicationController.errorFilePassProtect": "Fișierul este protejat cu parolă și deaceea nu poate fi deschis.", "DE.ApplicationController.errorFilePassProtect": "Fișierul este protejat cu parolă și deaceea nu poate fi deschis.",
"DE.ApplicationController.errorFileSizeExceed": "Dimensiunea fișierului depășește limita permisă de serverul Dvs.<br>Pentru detalii, contactați administratorul dumneavoastră de Server Documente.", "DE.ApplicationController.errorFileSizeExceed": "Dimensiunea fișierului depășește limita permisă de serverul Dvs.<br>Pentru detalii, contactați administratorul dumneavoastră de Server Documente.",
"DE.ApplicationController.errorSubmit": "Remiterea eșuată.",
"DE.ApplicationController.errorUpdateVersionOnDisconnect": "Conexiunea la Internet s-a restabilit și versiunea fișierului s-a schimbat.<br>Înainte de a continua, fișierul trebuie descărcat sau conținutul fișierului copiat ca să vă asigurați că nimic nu e pierdut, apoi reîmprospătați această pagină.", "DE.ApplicationController.errorUpdateVersionOnDisconnect": "Conexiunea la Internet s-a restabilit și versiunea fișierului s-a schimbat.<br>Înainte de a continua, fișierul trebuie descărcat sau conținutul fișierului copiat ca să vă asigurați că nimic nu e pierdut, apoi reîmprospătați această pagină.",
"DE.ApplicationController.errorUserDrop": "Fișierul nu poate fi accesat deocamdată.", "DE.ApplicationController.errorUserDrop": "Fișierul nu poate fi accesat deocamdată.",
"DE.ApplicationController.notcriticalErrorTitle": "Avertisment", "DE.ApplicationController.notcriticalErrorTitle": "Avertisment",
"DE.ApplicationController.scriptLoadError": "Conexeunea e prea lentă și unele elemente nu se încarcă. Încercați să reîmprospătati pagina.", "DE.ApplicationController.scriptLoadError": "Conexeunea e prea lentă și unele elemente nu se încarcă. Încercați să reîmprospătati pagina.",
"DE.ApplicationController.textAnonymous": "Anonim",
"DE.ApplicationController.textClear": "Goleşte toate câmpurile",
"DE.ApplicationController.textGotIt": "Am înțeles",
"DE.ApplicationController.textGuest": "Invitat",
"DE.ApplicationController.textLoadingDocument": "Încărcare document", "DE.ApplicationController.textLoadingDocument": "Încărcare document",
"DE.ApplicationController.textNext": "Câmpul următor",
"DE.ApplicationController.textOf": "din", "DE.ApplicationController.textOf": "din",
"DE.ApplicationController.textRequired": "Toate câmpurile din formular trebuie completate înainte de a-l trimite.",
"DE.ApplicationController.textSubmit": "Remitere",
"DE.ApplicationController.textSubmited": "<b>Formularul a fost remis cu succes</b><br>Faceţi clic pentru a închide sfatul",
"DE.ApplicationController.txtClose": "Închidere", "DE.ApplicationController.txtClose": "Închidere",
"DE.ApplicationController.unknownErrorText": "Eroare Necunoscut.", "DE.ApplicationController.unknownErrorText": "Eroare necunoscută.",
"DE.ApplicationController.unsupportedBrowserErrorText": "Browserul nu este compatibil.", "DE.ApplicationController.unsupportedBrowserErrorText": "Browserul nu este compatibil.",
"DE.ApplicationController.waitText": "Vă rugăm să așteptați...", "DE.ApplicationController.waitText": "Vă rugăm să așteptați...",
"DE.ApplicationView.txtDownload": "Descărcare", "DE.ApplicationView.txtDownload": "Descărcare",
"DE.ApplicationView.txtDownloadDocx": "Descărcare ca docx",
"DE.ApplicationView.txtDownloadPdf": "Descărcare ca pdf",
"DE.ApplicationView.txtEmbed": "Încorporare", "DE.ApplicationView.txtEmbed": "Încorporare",
"DE.ApplicationView.txtFileLocation": "Deschidere locația fișierului",
"DE.ApplicationView.txtFullScreen": "Ecran complet", "DE.ApplicationView.txtFullScreen": "Ecran complet",
"DE.ApplicationView.txtPrint": "Imprimare", "DE.ApplicationView.txtPrint": "Imprimare",
"DE.ApplicationView.txtShare": "Partajează" "DE.ApplicationView.txtShare": "Partajează"

View file

@ -19,10 +19,14 @@
"DE.ApplicationController.errorUserDrop": "该文件现在无法访问。", "DE.ApplicationController.errorUserDrop": "该文件现在无法访问。",
"DE.ApplicationController.notcriticalErrorTitle": "警告", "DE.ApplicationController.notcriticalErrorTitle": "警告",
"DE.ApplicationController.scriptLoadError": "连接速度过慢,部分组件无法被加载。请重新加载页面。", "DE.ApplicationController.scriptLoadError": "连接速度过慢,部分组件无法被加载。请重新加载页面。",
"DE.ApplicationController.textAnonymous": "匿名",
"DE.ApplicationController.textClear": "清除所有字段", "DE.ApplicationController.textClear": "清除所有字段",
"DE.ApplicationController.textGotIt": "知道了",
"DE.ApplicationController.textGuest": "访客",
"DE.ApplicationController.textLoadingDocument": "文件加载中…", "DE.ApplicationController.textLoadingDocument": "文件加载中…",
"DE.ApplicationController.textNext": "下一域", "DE.ApplicationController.textNext": "下一域",
"DE.ApplicationController.textOf": "的", "DE.ApplicationController.textOf": "的",
"DE.ApplicationController.textRequired": "要发送表单,请填写所有必填项目。",
"DE.ApplicationController.textSubmit": "提交", "DE.ApplicationController.textSubmit": "提交",
"DE.ApplicationController.textSubmited": "<b>表单成功地被提交了</b><br>点击以关闭贴士", "DE.ApplicationController.textSubmited": "<b>表单成功地被提交了</b><br>点击以关闭贴士",
"DE.ApplicationController.txtClose": "关闭", "DE.ApplicationController.txtClose": "关闭",

View file

@ -155,7 +155,8 @@ define([
var collection = this.getApplication().getCollection('Common.Collections.Comments'), var collection = this.getApplication().getCollection('Common.Collections.Comments'),
resolved = Common.Utils.InternalSettings.get("de-settings-resolvedcomment"); resolved = Common.Utils.InternalSettings.get("de-settings-resolvedcomment");
for (var i = 0; i < collection.length; ++i) { for (var i = 0; i < collection.length; ++i) {
if (collection.at(i).get('userid') !== this.mode.user.id && (resolved || !collection.at(i).get('resolved'))) { var comment = collection.at(i);
if (!comment.get('hide') && comment.get('userid') !== this.mode.user.id && (resolved || !comment.get('resolved'))) {
this.leftMenu.markCoauthOptions('comments', true); this.leftMenu.markCoauthOptions('comments', true);
break; break;
} }
@ -698,14 +699,14 @@ define([
onApiAddComment: function(id, data) { onApiAddComment: function(id, data) {
var resolved = Common.Utils.InternalSettings.get("de-settings-resolvedcomment"); var resolved = Common.Utils.InternalSettings.get("de-settings-resolvedcomment");
if (data && data.asc_getUserId() !== this.mode.user.id && (resolved || !data.asc_getSolved())) if (data && data.asc_getUserId() !== this.mode.user.id && (resolved || !data.asc_getSolved()) && AscCommon.UserInfoParser.canViewComment(data.asc_getUserName()))
this.leftMenu.markCoauthOptions('comments'); this.leftMenu.markCoauthOptions('comments');
}, },
onApiAddComments: function(data) { onApiAddComments: function(data) {
var resolved = Common.Utils.InternalSettings.get("de-settings-resolvedcomment"); var resolved = Common.Utils.InternalSettings.get("de-settings-resolvedcomment");
for (var i = 0; i < data.length; ++i) { for (var i = 0; i < data.length; ++i) {
if (data[i].asc_getUserId() !== this.mode.user.id && (resolved || !data[i].asc_getSolved())) { if (data[i].asc_getUserId() !== this.mode.user.id && (resolved || !data[i].asc_getSolved()) && AscCommon.UserInfoParser.canViewComment(data.asc_getUserName())) {
this.leftMenu.markCoauthOptions('comments'); this.leftMenu.markCoauthOptions('comments');
break; break;
} }

View file

@ -629,7 +629,8 @@ define([
selected: (opts.data.currentVersion == version.version), selected: (opts.data.currentVersion == version.version),
canRestore: this.appOptions.canHistoryRestore && (ver < versions.length-1), canRestore: this.appOptions.canHistoryRestore && (ver < versions.length-1),
isExpanded: true, isExpanded: true,
serverVersion: version.serverVersion serverVersion: version.serverVersion,
fileType: 'docx'
})); }));
if (opts.data.currentVersion == version.version) { if (opts.data.currentVersion == version.version) {
currentVersion = arrVersions[arrVersions.length-1]; currentVersion = arrVersions[arrVersions.length-1];
@ -679,7 +680,8 @@ define([
canRestore: this.appOptions.canHistoryRestore && this.appOptions.canDownload, canRestore: this.appOptions.canHistoryRestore && this.appOptions.canDownload,
isRevision: false, isRevision: false,
isVisible: true, isVisible: true,
serverVersion: version.serverVersion serverVersion: version.serverVersion,
fileType: 'docx'
})); }));
arrColors.push(user.get('colorval')); arrColors.push(user.get('colorval'));
} }

View file

@ -143,6 +143,9 @@ define([
this.lockedControls.push(this.txtPlaceholder); this.lockedControls.push(this.txtPlaceholder);
this.txtPlaceholder.on('changed:after', this.onPlaceholderChanged.bind(this)); this.txtPlaceholder.on('changed:after', this.onPlaceholderChanged.bind(this));
this.txtPlaceholder.on('inputleave', function(){ me.fireEvent('editcomplete', me);}); this.txtPlaceholder.on('inputleave', function(){ me.fireEvent('editcomplete', me);});
this.txtPlaceholder.cmpEl.on('focus', 'input.form-control', function() {
setTimeout(function(){me.txtPlaceholder._input && me.txtPlaceholder._input.select();}, 1);
});
this.textareaHelp = new Common.UI.TextareaField({ this.textareaHelp = new Common.UI.TextareaField({
el : $markup.findById('#form-txt-help'), el : $markup.findById('#form-txt-help'),
@ -1089,6 +1092,7 @@ define([
}, },
onSelectItem: function(listView, itemView, record) { onSelectItem: function(listView, itemView, record) {
if (!record) return;
this.txtNewValue.setValue(record.get('name')); this.txtNewValue.setValue(record.get('name'));
this._state.listValue = record.get('name'); this._state.listValue = record.get('name');
this._state.listIndex = undefined; this._state.listIndex = undefined;

View file

@ -1384,6 +1384,7 @@ define([ 'text!documenteditor/main/app/template/ParagraphSettingsAdvanced.tem
}, },
onSelectTab: function(lisvView, itemView, record) { onSelectTab: function(lisvView, itemView, record) {
if (!record) return;
var rawData = {}, var rawData = {},
isViewSelect = _.isFunction(record.toJSON); isViewSelect = _.isFunction(record.toJSON);

View file

@ -225,8 +225,7 @@
} }
function encodeUrlParam(str) { function encodeUrlParam(str) {
return str.replace(/&/g, '&amp;') return str.replace(/"/g, '&quot;')
.replace(/"/g, '&quot;')
.replace(/'/g, '&#39;') .replace(/'/g, '&#39;')
.replace(/</g, '&lt;') .replace(/</g, '&lt;')
.replace(/>/g, '&gt;'); .replace(/>/g, '&gt;');

View file

@ -197,8 +197,7 @@
} }
function encodeUrlParam(str) { function encodeUrlParam(str) {
return str.replace(/&/g, '&amp;') return str.replace(/"/g, '&quot;')
.replace(/"/g, '&quot;')
.replace(/'/g, '&#39;') .replace(/'/g, '&#39;')
.replace(/</g, '&lt;') .replace(/</g, '&lt;')
.replace(/>/g, '&gt;'); .replace(/>/g, '&gt;');

View file

@ -199,8 +199,7 @@
return urlParams; return urlParams;
} }
function encodeUrlParam(str) { function encodeUrlParam(str) {
return str.replace(/&/g, '&amp;') return str.replace(/"/g, '&quot;')
.replace(/"/g, '&quot;')
.replace(/'/g, '&#39;') .replace(/'/g, '&#39;')
.replace(/</g, '&lt;') .replace(/</g, '&lt;')
.replace(/>/g, '&gt;'); .replace(/>/g, '&gt;');

View file

@ -218,8 +218,7 @@
} }
function encodeUrlParam(str) { function encodeUrlParam(str) {
return str.replace(/&/g, '&amp;') return str.replace(/"/g, '&quot;')
.replace(/"/g, '&quot;')
.replace(/'/g, '&#39;') .replace(/'/g, '&#39;')
.replace(/</g, '&lt;') .replace(/</g, '&lt;')
.replace(/>/g, '&gt;'); .replace(/>/g, '&gt;');

View file

@ -1737,6 +1737,9 @@
"DE.Views.FileMenuPanels.Settings.txtWarnMacros": "Mostra la Notificació", "DE.Views.FileMenuPanels.Settings.txtWarnMacros": "Mostra la Notificació",
"DE.Views.FileMenuPanels.Settings.txtWarnMacrosDesc": "Desactiveu totes les macros amb una notificació", "DE.Views.FileMenuPanels.Settings.txtWarnMacrosDesc": "Desactiveu totes les macros amb una notificació",
"DE.Views.FileMenuPanels.Settings.txtWin": "com Windows", "DE.Views.FileMenuPanels.Settings.txtWin": "com Windows",
"DE.Views.FormSettings.textAlways": "Sempre",
"DE.Views.FormSettings.textAspect": "Blocar relació d'aspecte",
"DE.Views.FormSettings.textAutofit": "AutoAjustar",
"DE.Views.FormSettings.textCheckbox": "\nCasella de selecció", "DE.Views.FormSettings.textCheckbox": "\nCasella de selecció",
"DE.Views.FormSettings.textColor": "Color Vora", "DE.Views.FormSettings.textColor": "Color Vora",
"DE.Views.FormSettings.textComb": "Pinta de caràcters", "DE.Views.FormSettings.textComb": "Pinta de caràcters",
@ -1755,16 +1758,21 @@
"DE.Views.FormSettings.textKey": "Clau", "DE.Views.FormSettings.textKey": "Clau",
"DE.Views.FormSettings.textLock": "Bloqueja", "DE.Views.FormSettings.textLock": "Bloqueja",
"DE.Views.FormSettings.textMaxChars": "Límit de caràcters", "DE.Views.FormSettings.textMaxChars": "Límit de caràcters",
"DE.Views.FormSettings.textMulti": "Camp multilínia",
"DE.Views.FormSettings.textNever": "Mai",
"DE.Views.FormSettings.textNoBorder": "Sense vora", "DE.Views.FormSettings.textNoBorder": "Sense vora",
"DE.Views.FormSettings.textPlaceholder": "Marcador de posició", "DE.Views.FormSettings.textPlaceholder": "Marcador de posició",
"DE.Views.FormSettings.textRadiobox": "Botó d'opció", "DE.Views.FormSettings.textRadiobox": "Botó d'opció",
"DE.Views.FormSettings.textRequired": "Requerit", "DE.Views.FormSettings.textRequired": "Requerit",
"DE.Views.FormSettings.textScale": "Quan escalar",
"DE.Views.FormSettings.textSelectImage": "Seleccionar imatge", "DE.Views.FormSettings.textSelectImage": "Seleccionar imatge",
"DE.Views.FormSettings.textTip": "Consell", "DE.Views.FormSettings.textTip": "Consell",
"DE.Views.FormSettings.textTipAdd": "Afegeir nou valor", "DE.Views.FormSettings.textTipAdd": "Afegeir nou valor",
"DE.Views.FormSettings.textTipDelete": "Suprimeix el valor", "DE.Views.FormSettings.textTipDelete": "Suprimeix el valor",
"DE.Views.FormSettings.textTipDown": "Mou avall", "DE.Views.FormSettings.textTipDown": "Mou avall",
"DE.Views.FormSettings.textTipUp": "Mou amunt", "DE.Views.FormSettings.textTipUp": "Mou amunt",
"DE.Views.FormSettings.textTooBig": "La Imatge és Massa Gran",
"DE.Views.FormSettings.textTooSmall": "La Imatge és Massa Petita",
"DE.Views.FormSettings.textUnlock": "Desbloquejar", "DE.Views.FormSettings.textUnlock": "Desbloquejar",
"DE.Views.FormSettings.textValue": "Opcions de valor", "DE.Views.FormSettings.textValue": "Opcions de valor",
"DE.Views.FormSettings.textWidth": "Ample de cel·la", "DE.Views.FormSettings.textWidth": "Ample de cel·la",
@ -1782,6 +1790,7 @@
"DE.Views.FormsTab.textClearFields": "Esborrar tots els camps", "DE.Views.FormsTab.textClearFields": "Esborrar tots els camps",
"DE.Views.FormsTab.textHighlight": "Paràmetres de ressaltat", "DE.Views.FormsTab.textHighlight": "Paràmetres de ressaltat",
"DE.Views.FormsTab.textNoHighlight": "Sense ressaltat", "DE.Views.FormsTab.textNoHighlight": "Sense ressaltat",
"DE.Views.FormsTab.textRequired": "Ompli tots els camps requerits per enviar el formulari.",
"DE.Views.FormsTab.textSubmited": "El formulari s'ha enviat correctament", "DE.Views.FormsTab.textSubmited": "El formulari s'ha enviat correctament",
"DE.Views.FormsTab.tipCheckBox": "Insereix casella de selecció", "DE.Views.FormsTab.tipCheckBox": "Insereix casella de selecció",
"DE.Views.FormsTab.tipComboBox": "Insereix casella de combinació", "DE.Views.FormsTab.tipComboBox": "Insereix casella de combinació",
@ -2720,6 +2729,7 @@
"DE.Views.Toolbar.txtScheme2": "Escala de Gris", "DE.Views.Toolbar.txtScheme2": "Escala de Gris",
"DE.Views.Toolbar.txtScheme20": "Urbà", "DE.Views.Toolbar.txtScheme20": "Urbà",
"DE.Views.Toolbar.txtScheme21": "Empenta", "DE.Views.Toolbar.txtScheme21": "Empenta",
"DE.Views.Toolbar.txtScheme22": "Nova Oficina",
"DE.Views.Toolbar.txtScheme3": "Vèrtex", "DE.Views.Toolbar.txtScheme3": "Vèrtex",
"DE.Views.Toolbar.txtScheme4": "Aspecte", "DE.Views.Toolbar.txtScheme4": "Aspecte",
"DE.Views.Toolbar.txtScheme5": "Cívic", "DE.Views.Toolbar.txtScheme5": "Cívic",

View file

@ -1737,6 +1737,9 @@
"DE.Views.FileMenuPanels.Settings.txtWarnMacros": "Benachrichtigung anzeigen", "DE.Views.FileMenuPanels.Settings.txtWarnMacros": "Benachrichtigung anzeigen",
"DE.Views.FileMenuPanels.Settings.txtWarnMacrosDesc": "Alle Makros mit einer Benachrichtigung deaktivieren", "DE.Views.FileMenuPanels.Settings.txtWarnMacrosDesc": "Alle Makros mit einer Benachrichtigung deaktivieren",
"DE.Views.FileMenuPanels.Settings.txtWin": "wie Windows", "DE.Views.FileMenuPanels.Settings.txtWin": "wie Windows",
"DE.Views.FormSettings.textAlways": "Immer",
"DE.Views.FormSettings.textAspect": "Seitenverhältnis sperren",
"DE.Views.FormSettings.textAutofit": "Automatisch anpassen",
"DE.Views.FormSettings.textCheckbox": "Kontrollkästchen", "DE.Views.FormSettings.textCheckbox": "Kontrollkästchen",
"DE.Views.FormSettings.textColor": "Rahmenfarbe", "DE.Views.FormSettings.textColor": "Rahmenfarbe",
"DE.Views.FormSettings.textComb": "Zeichenanzahl in Textfeld", "DE.Views.FormSettings.textComb": "Zeichenanzahl in Textfeld",
@ -1755,16 +1758,21 @@
"DE.Views.FormSettings.textKey": "Schlüssel", "DE.Views.FormSettings.textKey": "Schlüssel",
"DE.Views.FormSettings.textLock": "Sperren", "DE.Views.FormSettings.textLock": "Sperren",
"DE.Views.FormSettings.textMaxChars": "Zeichengrenze", "DE.Views.FormSettings.textMaxChars": "Zeichengrenze",
"DE.Views.FormSettings.textMulti": "Mehrzeiliges Feld",
"DE.Views.FormSettings.textNever": "Nie",
"DE.Views.FormSettings.textNoBorder": "Kein Rahmen", "DE.Views.FormSettings.textNoBorder": "Kein Rahmen",
"DE.Views.FormSettings.textPlaceholder": "Platzhalter", "DE.Views.FormSettings.textPlaceholder": "Platzhalter",
"DE.Views.FormSettings.textRadiobox": "Radiobutton", "DE.Views.FormSettings.textRadiobox": "Radiobutton",
"DE.Views.FormSettings.textRequired": "Erforderlich", "DE.Views.FormSettings.textRequired": "Erforderlich",
"DE.Views.FormSettings.textScale": "Wann skalieren",
"DE.Views.FormSettings.textSelectImage": "Bild auswählen", "DE.Views.FormSettings.textSelectImage": "Bild auswählen",
"DE.Views.FormSettings.textTip": "Tipp", "DE.Views.FormSettings.textTip": "Tipp",
"DE.Views.FormSettings.textTipAdd": "Neuen Wert hinzufügen", "DE.Views.FormSettings.textTipAdd": "Neuen Wert hinzufügen",
"DE.Views.FormSettings.textTipDelete": "Den Wert löschen", "DE.Views.FormSettings.textTipDelete": "Den Wert löschen",
"DE.Views.FormSettings.textTipDown": "Nach unten bewegen", "DE.Views.FormSettings.textTipDown": "Nach unten bewegen",
"DE.Views.FormSettings.textTipUp": "Nach oben bewegen", "DE.Views.FormSettings.textTipUp": "Nach oben bewegen",
"DE.Views.FormSettings.textTooBig": "Das Bild ist zu groß",
"DE.Views.FormSettings.textTooSmall": "Das Bild ist zu klein",
"DE.Views.FormSettings.textUnlock": "Entsperren", "DE.Views.FormSettings.textUnlock": "Entsperren",
"DE.Views.FormSettings.textValue": "Optionen von Werten", "DE.Views.FormSettings.textValue": "Optionen von Werten",
"DE.Views.FormSettings.textWidth": "Zeilenbreite", "DE.Views.FormSettings.textWidth": "Zeilenbreite",
@ -1783,6 +1791,7 @@
"DE.Views.FormsTab.textHighlight": "Einstellungen für Hervorhebungen", "DE.Views.FormsTab.textHighlight": "Einstellungen für Hervorhebungen",
"DE.Views.FormsTab.textNewColor": "Benutzerdefinierte Farbe", "DE.Views.FormsTab.textNewColor": "Benutzerdefinierte Farbe",
"DE.Views.FormsTab.textNoHighlight": "Ohne Hervorhebung", "DE.Views.FormsTab.textNoHighlight": "Ohne Hervorhebung",
"DE.Views.FormsTab.textRequired": "Füllen Sie alle erforderlichen Felder aus, um das Formular zu senden.",
"DE.Views.FormsTab.textSubmited": "Das Formular wurde erfolgreich versandt", "DE.Views.FormsTab.textSubmited": "Das Formular wurde erfolgreich versandt",
"DE.Views.FormsTab.tipCheckBox": "Checkbox einfügen", "DE.Views.FormsTab.tipCheckBox": "Checkbox einfügen",
"DE.Views.FormsTab.tipComboBox": "Combobox einfügen", "DE.Views.FormsTab.tipComboBox": "Combobox einfügen",
@ -2721,6 +2730,7 @@
"DE.Views.Toolbar.txtScheme2": "Graustufe", "DE.Views.Toolbar.txtScheme2": "Graustufe",
"DE.Views.Toolbar.txtScheme20": "Rhea", "DE.Views.Toolbar.txtScheme20": "Rhea",
"DE.Views.Toolbar.txtScheme21": "Telesto", "DE.Views.Toolbar.txtScheme21": "Telesto",
"DE.Views.Toolbar.txtScheme22": "Neues Office",
"DE.Views.Toolbar.txtScheme3": "Apex", "DE.Views.Toolbar.txtScheme3": "Apex",
"DE.Views.Toolbar.txtScheme4": "Aspekt ", "DE.Views.Toolbar.txtScheme4": "Aspekt ",
"DE.Views.Toolbar.txtScheme5": "bürgerlich", "DE.Views.Toolbar.txtScheme5": "bürgerlich",

View file

@ -846,7 +846,7 @@
"DE.Controllers.Main.uploadDocSizeMessage": "Ξεπεράστηκε το μέγιστο μέγεθος εγγράφου.", "DE.Controllers.Main.uploadDocSizeMessage": "Ξεπεράστηκε το μέγιστο μέγεθος εγγράφου.",
"DE.Controllers.Main.uploadImageExtMessage": "Άγνωστη μορφή εικόνας.", "DE.Controllers.Main.uploadImageExtMessage": "Άγνωστη μορφή εικόνας.",
"DE.Controllers.Main.uploadImageFileCountMessage": "Δεν μεταφορτώθηκαν εικόνες.", "DE.Controllers.Main.uploadImageFileCountMessage": "Δεν μεταφορτώθηκαν εικόνες.",
"DE.Controllers.Main.uploadImageSizeMessage": "Ξεπεράστηκε το μέγιστο μέγεθος εικόνας.", "DE.Controllers.Main.uploadImageSizeMessage": "Η εικόνα είναι πολύ μεγάλη. Το μέγιστο μέγεθος είναι 25MB.",
"DE.Controllers.Main.uploadImageTextText": "Μεταφόρτωση εικόνας...", "DE.Controllers.Main.uploadImageTextText": "Μεταφόρτωση εικόνας...",
"DE.Controllers.Main.uploadImageTitleText": "Μεταφόρτωση Εικόνας", "DE.Controllers.Main.uploadImageTitleText": "Μεταφόρτωση Εικόνας",
"DE.Controllers.Main.waitText": "Παρακαλούμε, περιμένετε...", "DE.Controllers.Main.waitText": "Παρακαλούμε, περιμένετε...",
@ -1737,6 +1737,9 @@
"DE.Views.FileMenuPanels.Settings.txtWarnMacros": "Εμφάνιση Ειδοποίησης", "DE.Views.FileMenuPanels.Settings.txtWarnMacros": "Εμφάνιση Ειδοποίησης",
"DE.Views.FileMenuPanels.Settings.txtWarnMacrosDesc": "Απενεργοποίηση όλων των μακροεντολών με ειδοποίηση", "DE.Views.FileMenuPanels.Settings.txtWarnMacrosDesc": "Απενεργοποίηση όλων των μακροεντολών με ειδοποίηση",
"DE.Views.FileMenuPanels.Settings.txtWin": "ως Windows", "DE.Views.FileMenuPanels.Settings.txtWin": "ως Windows",
"DE.Views.FormSettings.textAlways": "Πάντα",
"DE.Views.FormSettings.textAspect": "Κλείδωμα αναλογίας",
"DE.Views.FormSettings.textAutofit": "Αυτόματο Ταίριασμα",
"DE.Views.FormSettings.textCheckbox": "Πλαίσιο επιλογής", "DE.Views.FormSettings.textCheckbox": "Πλαίσιο επιλογής",
"DE.Views.FormSettings.textColor": "Χρώμα περιγράμματος", "DE.Views.FormSettings.textColor": "Χρώμα περιγράμματος",
"DE.Views.FormSettings.textComb": "Ξεδιάλεγμα χαρακτήρων", "DE.Views.FormSettings.textComb": "Ξεδιάλεγμα χαρακτήρων",
@ -1755,16 +1758,21 @@
"DE.Views.FormSettings.textKey": "Κλειδί", "DE.Views.FormSettings.textKey": "Κλειδί",
"DE.Views.FormSettings.textLock": "Κλείδωμα", "DE.Views.FormSettings.textLock": "Κλείδωμα",
"DE.Views.FormSettings.textMaxChars": "Όριο χαρακτήρων", "DE.Views.FormSettings.textMaxChars": "Όριο χαρακτήρων",
"DE.Views.FormSettings.textMulti": "Πεδίο πολλών γραμμών",
"DE.Views.FormSettings.textNever": "Ποτέ",
"DE.Views.FormSettings.textNoBorder": "Χωρίς περίγραμμα", "DE.Views.FormSettings.textNoBorder": "Χωρίς περίγραμμα",
"DE.Views.FormSettings.textPlaceholder": "Δέσμευση Θέσης", "DE.Views.FormSettings.textPlaceholder": "Δέσμευση Θέσης",
"DE.Views.FormSettings.textRadiobox": "Κουμπί Επιλογής", "DE.Views.FormSettings.textRadiobox": "Κουμπί Επιλογής",
"DE.Views.FormSettings.textRequired": "Απαιτείται", "DE.Views.FormSettings.textRequired": "Απαιτείται",
"DE.Views.FormSettings.textScale": "Πότε να γίνεται κλιμάκωση",
"DE.Views.FormSettings.textSelectImage": "Επιλογή Εικόνας", "DE.Views.FormSettings.textSelectImage": "Επιλογή Εικόνας",
"DE.Views.FormSettings.textTip": "Υπόδειξη", "DE.Views.FormSettings.textTip": "Υπόδειξη",
"DE.Views.FormSettings.textTipAdd": "Προσθήκη νέας τιμής", "DE.Views.FormSettings.textTipAdd": "Προσθήκη νέας τιμής",
"DE.Views.FormSettings.textTipDelete": "Διαγραφή τιμής", "DE.Views.FormSettings.textTipDelete": "Διαγραφή τιμής",
"DE.Views.FormSettings.textTipDown": "Μετακίνηση κάτω", "DE.Views.FormSettings.textTipDown": "Μετακίνηση κάτω",
"DE.Views.FormSettings.textTipUp": "Μετακίνηση πάνω", "DE.Views.FormSettings.textTipUp": "Μετακίνηση πάνω",
"DE.Views.FormSettings.textTooBig": "Η Εικόνα είναι Πολύ Μεγάλη",
"DE.Views.FormSettings.textTooSmall": "Η Εικόνα είναι Πολύ Μικρή",
"DE.Views.FormSettings.textUnlock": "Ξεκλείδωμα", "DE.Views.FormSettings.textUnlock": "Ξεκλείδωμα",
"DE.Views.FormSettings.textValue": "Επιλογές Τιμής", "DE.Views.FormSettings.textValue": "Επιλογές Τιμής",
"DE.Views.FormSettings.textWidth": "Πλάτος κελιού", "DE.Views.FormSettings.textWidth": "Πλάτος κελιού",
@ -1783,6 +1791,7 @@
"DE.Views.FormsTab.textHighlight": "Ρυθμίσεις Επισήμανσης", "DE.Views.FormsTab.textHighlight": "Ρυθμίσεις Επισήμανσης",
"DE.Views.FormsTab.textNewColor": "Προσθήκη Νέου Προσαρμοσμένου Χρώματος", "DE.Views.FormsTab.textNewColor": "Προσθήκη Νέου Προσαρμοσμένου Χρώματος",
"DE.Views.FormsTab.textNoHighlight": "Χωρίς επισήμανση", "DE.Views.FormsTab.textNoHighlight": "Χωρίς επισήμανση",
"DE.Views.FormsTab.textRequired": "Συμπληρώστε όλα τα απαιτούμενα πεδία για την αποστολή της φόρμας.",
"DE.Views.FormsTab.textSubmited": "Η φόρμα υποβλήθηκε επιτυχώς", "DE.Views.FormsTab.textSubmited": "Η φόρμα υποβλήθηκε επιτυχώς",
"DE.Views.FormsTab.tipCheckBox": "Εισαγωγή πλαισίου επιλογής", "DE.Views.FormsTab.tipCheckBox": "Εισαγωγή πλαισίου επιλογής",
"DE.Views.FormsTab.tipComboBox": "Εισαγωγή πολλαπλών επιλογών", "DE.Views.FormsTab.tipComboBox": "Εισαγωγή πολλαπλών επιλογών",
@ -2721,6 +2730,7 @@
"DE.Views.Toolbar.txtScheme2": "Αποχρώσεις του γκρι", "DE.Views.Toolbar.txtScheme2": "Αποχρώσεις του γκρι",
"DE.Views.Toolbar.txtScheme20": "Αστικό", "DE.Views.Toolbar.txtScheme20": "Αστικό",
"DE.Views.Toolbar.txtScheme21": "Οίστρος", "DE.Views.Toolbar.txtScheme21": "Οίστρος",
"DE.Views.Toolbar.txtScheme22": "Νέο Γραφείο",
"DE.Views.Toolbar.txtScheme3": "Άκρο", "DE.Views.Toolbar.txtScheme3": "Άκρο",
"DE.Views.Toolbar.txtScheme4": "Άποψη", "DE.Views.Toolbar.txtScheme4": "Άποψη",
"DE.Views.Toolbar.txtScheme5": "Κυβικό", "DE.Views.Toolbar.txtScheme5": "Κυβικό",

View file

@ -1737,6 +1737,9 @@
"DE.Views.FileMenuPanels.Settings.txtWarnMacros": "Mostrar notificación", "DE.Views.FileMenuPanels.Settings.txtWarnMacros": "Mostrar notificación",
"DE.Views.FileMenuPanels.Settings.txtWarnMacrosDesc": "Deshabilitar todas las macros con notificación", "DE.Views.FileMenuPanels.Settings.txtWarnMacrosDesc": "Deshabilitar todas las macros con notificación",
"DE.Views.FileMenuPanels.Settings.txtWin": "como Windows", "DE.Views.FileMenuPanels.Settings.txtWin": "como Windows",
"DE.Views.FormSettings.textAlways": "Siempre",
"DE.Views.FormSettings.textAspect": "Bloquear relación de aspecto",
"DE.Views.FormSettings.textAutofit": "Autoajustar",
"DE.Views.FormSettings.textCheckbox": "Casilla", "DE.Views.FormSettings.textCheckbox": "Casilla",
"DE.Views.FormSettings.textColor": "Color de borde", "DE.Views.FormSettings.textColor": "Color de borde",
"DE.Views.FormSettings.textComb": "Peine de caracteres", "DE.Views.FormSettings.textComb": "Peine de caracteres",
@ -1755,16 +1758,21 @@
"DE.Views.FormSettings.textKey": "Clave", "DE.Views.FormSettings.textKey": "Clave",
"DE.Views.FormSettings.textLock": "Bloquear", "DE.Views.FormSettings.textLock": "Bloquear",
"DE.Views.FormSettings.textMaxChars": "Límite de caracteres", "DE.Views.FormSettings.textMaxChars": "Límite de caracteres",
"DE.Views.FormSettings.textMulti": "Campo multilínea",
"DE.Views.FormSettings.textNever": "Nunca",
"DE.Views.FormSettings.textNoBorder": "Sin bordes", "DE.Views.FormSettings.textNoBorder": "Sin bordes",
"DE.Views.FormSettings.textPlaceholder": "Marcador de posición", "DE.Views.FormSettings.textPlaceholder": "Marcador de posición",
"DE.Views.FormSettings.textRadiobox": "Botón de opción", "DE.Views.FormSettings.textRadiobox": "Botón de opción",
"DE.Views.FormSettings.textRequired": "Necesario", "DE.Views.FormSettings.textRequired": "Necesario",
"DE.Views.FormSettings.textScale": "Cuándo escalar",
"DE.Views.FormSettings.textSelectImage": "Seleccionar Imagen", "DE.Views.FormSettings.textSelectImage": "Seleccionar Imagen",
"DE.Views.FormSettings.textTip": "Sugerencia", "DE.Views.FormSettings.textTip": "Sugerencia",
"DE.Views.FormSettings.textTipAdd": "Agregar nuevo valor", "DE.Views.FormSettings.textTipAdd": "Agregar nuevo valor",
"DE.Views.FormSettings.textTipDelete": "Eliminar valor", "DE.Views.FormSettings.textTipDelete": "Eliminar valor",
"DE.Views.FormSettings.textTipDown": "Mover hacia abajo", "DE.Views.FormSettings.textTipDown": "Mover hacia abajo",
"DE.Views.FormSettings.textTipUp": "Mover hacia arriba", "DE.Views.FormSettings.textTipUp": "Mover hacia arriba",
"DE.Views.FormSettings.textTooBig": "La imagen es demasiado grande",
"DE.Views.FormSettings.textTooSmall": "La imagen es demasiado pequeña",
"DE.Views.FormSettings.textUnlock": "Desbloquear", "DE.Views.FormSettings.textUnlock": "Desbloquear",
"DE.Views.FormSettings.textValue": "Opciones de valor", "DE.Views.FormSettings.textValue": "Opciones de valor",
"DE.Views.FormSettings.textWidth": "Ancho de celda", "DE.Views.FormSettings.textWidth": "Ancho de celda",
@ -1783,6 +1791,7 @@
"DE.Views.FormsTab.textHighlight": "Ajustes de resaltado", "DE.Views.FormsTab.textHighlight": "Ajustes de resaltado",
"DE.Views.FormsTab.textNewColor": "Color personalizado", "DE.Views.FormsTab.textNewColor": "Color personalizado",
"DE.Views.FormsTab.textNoHighlight": "No resaltar", "DE.Views.FormsTab.textNoHighlight": "No resaltar",
"DE.Views.FormsTab.textRequired": "Rellene todos los campos obligatorios para enviar el formulario.",
"DE.Views.FormsTab.textSubmited": "El formulario se ha enviado correctamente", "DE.Views.FormsTab.textSubmited": "El formulario se ha enviado correctamente",
"DE.Views.FormsTab.tipCheckBox": "Insertar casilla", "DE.Views.FormsTab.tipCheckBox": "Insertar casilla",
"DE.Views.FormsTab.tipComboBox": "Insertar cuadro combinado", "DE.Views.FormsTab.tipComboBox": "Insertar cuadro combinado",
@ -2721,6 +2730,7 @@
"DE.Views.Toolbar.txtScheme2": "Escala de grises", "DE.Views.Toolbar.txtScheme2": "Escala de grises",
"DE.Views.Toolbar.txtScheme20": "Urbano", "DE.Views.Toolbar.txtScheme20": "Urbano",
"DE.Views.Toolbar.txtScheme21": "Brío", "DE.Views.Toolbar.txtScheme21": "Brío",
"DE.Views.Toolbar.txtScheme22": "Nueva oficina",
"DE.Views.Toolbar.txtScheme3": "Vértice", "DE.Views.Toolbar.txtScheme3": "Vértice",
"DE.Views.Toolbar.txtScheme4": "Aspecto", "DE.Views.Toolbar.txtScheme4": "Aspecto",
"DE.Views.Toolbar.txtScheme5": "Civil", "DE.Views.Toolbar.txtScheme5": "Civil",

View file

@ -23,7 +23,7 @@
"Common.Controllers.ReviewChanges.textColor": "Couleur de police", "Common.Controllers.ReviewChanges.textColor": "Couleur de police",
"Common.Controllers.ReviewChanges.textContextual": "Ne pas ajouter d'intervalle entre paragraphes du même style", "Common.Controllers.ReviewChanges.textContextual": "Ne pas ajouter d'intervalle entre paragraphes du même style",
"Common.Controllers.ReviewChanges.textDeleted": "<b>Supprimé:</b>", "Common.Controllers.ReviewChanges.textDeleted": "<b>Supprimé:</b>",
"Common.Controllers.ReviewChanges.textDStrikeout": "Double barré", "Common.Controllers.ReviewChanges.textDStrikeout": "Barré double",
"Common.Controllers.ReviewChanges.textEquation": "Équation", "Common.Controllers.ReviewChanges.textEquation": "Équation",
"Common.Controllers.ReviewChanges.textExact": "exactement", "Common.Controllers.ReviewChanges.textExact": "exactement",
"Common.Controllers.ReviewChanges.textFirstLine": "Première ligne", "Common.Controllers.ReviewChanges.textFirstLine": "Première ligne",
@ -40,7 +40,7 @@
"Common.Controllers.ReviewChanges.textKeepNext": "Paragraphes solidaires", "Common.Controllers.ReviewChanges.textKeepNext": "Paragraphes solidaires",
"Common.Controllers.ReviewChanges.textLeft": "Aligner à gauche", "Common.Controllers.ReviewChanges.textLeft": "Aligner à gauche",
"Common.Controllers.ReviewChanges.textLineSpacing": "Interligne:", "Common.Controllers.ReviewChanges.textLineSpacing": "Interligne:",
"Common.Controllers.ReviewChanges.textMultiple": "Plusieurs", "Common.Controllers.ReviewChanges.textMultiple": "multiple ",
"Common.Controllers.ReviewChanges.textNoBreakBefore": "Pas de saut de page avant", "Common.Controllers.ReviewChanges.textNoBreakBefore": "Pas de saut de page avant",
"Common.Controllers.ReviewChanges.textNoContextual": "Ajouter un intervalle entre les paragraphes du même style", "Common.Controllers.ReviewChanges.textNoContextual": "Ajouter un intervalle entre les paragraphes du même style",
"Common.Controllers.ReviewChanges.textNoKeepLines": "Ne gardez pas de lignes ensemble", "Common.Controllers.ReviewChanges.textNoKeepLines": "Ne gardez pas de lignes ensemble",
@ -201,7 +201,7 @@
"Common.Views.About.txtLicensee": "CESSIONNAIRE", "Common.Views.About.txtLicensee": "CESSIONNAIRE",
"Common.Views.About.txtLicensor": "CONCÉDANT", "Common.Views.About.txtLicensor": "CONCÉDANT",
"Common.Views.About.txtMail": "émail: ", "Common.Views.About.txtMail": "émail: ",
"Common.Views.About.txtPoweredBy": "Powered by", "Common.Views.About.txtPoweredBy": "Réalisation",
"Common.Views.About.txtTel": "tél.: ", "Common.Views.About.txtTel": "tél.: ",
"Common.Views.About.txtVersion": "Version ", "Common.Views.About.txtVersion": "Version ",
"Common.Views.AutoCorrectDialog.textAdd": "Ajouter", "Common.Views.AutoCorrectDialog.textAdd": "Ajouter",
@ -505,7 +505,7 @@
"DE.Controllers.Main.errorCompare": "La fonctionnalité «‎ Comparaison des documents » n'est pas disponible lors de co-édition.", "DE.Controllers.Main.errorCompare": "La fonctionnalité «‎ Comparaison des documents » n'est pas disponible lors de co-édition.",
"DE.Controllers.Main.errorConnectToServer": "Impossible d'enregistrer le document. Veuillez vérifier vos paramètres de connexion ou contactez l'administrateur.<br>Lorsque vous cliquez sur le bouton 'OK', vous serez invité à télécharger le document.", "DE.Controllers.Main.errorConnectToServer": "Impossible d'enregistrer le document. Veuillez vérifier vos paramètres de connexion ou contactez l'administrateur.<br>Lorsque vous cliquez sur le bouton 'OK', vous serez invité à télécharger le document.",
"DE.Controllers.Main.errorDatabaseConnection": "Erreur externe.<br>Erreur de connexion à la base de données. Si l'erreur persiste veillez contactez l'assistance technique.", "DE.Controllers.Main.errorDatabaseConnection": "Erreur externe.<br>Erreur de connexion à la base de données. Si l'erreur persiste veillez contactez l'assistance technique.",
"DE.Controllers.Main.errorDataEncrypted": "Les modifications chiffrées ont été reçues, elle ne peuvent pas être déchiffrées.", "DE.Controllers.Main.errorDataEncrypted": "Les modifications chiffrées ont été reçues, mais ne peuvent pas être déchiffrées.",
"DE.Controllers.Main.errorDataRange": "Plage de données incorrecte.", "DE.Controllers.Main.errorDataRange": "Plage de données incorrecte.",
"DE.Controllers.Main.errorDefaultMessage": "Code d'erreur: %1", "DE.Controllers.Main.errorDefaultMessage": "Code d'erreur: %1",
"DE.Controllers.Main.errorDirectUrl": "Vérifiez le lien vers le document.<br>Assurez-vous que c'est un lien de téléchargement direct. ", "DE.Controllers.Main.errorDirectUrl": "Vérifiez le lien vers le document.<br>Assurez-vous que c'est un lien de téléchargement direct. ",
@ -516,9 +516,9 @@
"DE.Controllers.Main.errorFileSizeExceed": "La taille du fichier dépasse les limites établies sur votre serveur.<br>Veuillez contacter votre administrateur de Document Server pour obtenir plus d'information. ", "DE.Controllers.Main.errorFileSizeExceed": "La taille du fichier dépasse les limites établies sur votre serveur.<br>Veuillez contacter votre administrateur de Document Server pour obtenir plus d'information. ",
"DE.Controllers.Main.errorForceSave": "Une erreur est survenue lors de l'enregistrement du fichier. Veuillez utiliser l'option «Télécharger en tant que» pour enregistrer le fichier sur le disque dur de votre ordinateur ou réessayer plus tard.", "DE.Controllers.Main.errorForceSave": "Une erreur est survenue lors de l'enregistrement du fichier. Veuillez utiliser l'option «Télécharger en tant que» pour enregistrer le fichier sur le disque dur de votre ordinateur ou réessayer plus tard.",
"DE.Controllers.Main.errorKeyEncrypt": "Descripteur de clés inconnu", "DE.Controllers.Main.errorKeyEncrypt": "Descripteur de clés inconnu",
"DE.Controllers.Main.errorKeyExpire": "Descripteur clé a expiré", "DE.Controllers.Main.errorKeyExpire": "Descripteur de clés expiré",
"DE.Controllers.Main.errorMailMergeLoadFile": "Échec de chargement du document. Merci de choisir un autre fichier.", "DE.Controllers.Main.errorMailMergeLoadFile": "Échec de chargement du document. Merci de choisir un autre fichier.",
"DE.Controllers.Main.errorMailMergeSaveFile": "Fusionner échoué.", "DE.Controllers.Main.errorMailMergeSaveFile": "Fusion a échoué.",
"DE.Controllers.Main.errorProcessSaveResult": "Échec de l'enregistrement", "DE.Controllers.Main.errorProcessSaveResult": "Échec de l'enregistrement",
"DE.Controllers.Main.errorServerVersion": "La version de l'éditeur a été mise à jour. La page sera rechargée pour appliquer les modifications.", "DE.Controllers.Main.errorServerVersion": "La version de l'éditeur a été mise à jour. La page sera rechargée pour appliquer les modifications.",
"DE.Controllers.Main.errorSessionAbsolute": "Votre session a expiré. Veuillez recharger la page.", "DE.Controllers.Main.errorSessionAbsolute": "Votre session a expiré. Veuillez recharger la page.",
@ -584,7 +584,7 @@
"DE.Controllers.Main.textLoadingDocument": "Chargement du document", "DE.Controllers.Main.textLoadingDocument": "Chargement du document",
"DE.Controllers.Main.textLongName": "Entrez un nom inférieur à 128 caractères.", "DE.Controllers.Main.textLongName": "Entrez un nom inférieur à 128 caractères.",
"DE.Controllers.Main.textNoLicenseTitle": "La limite de la licence est atteinte", "DE.Controllers.Main.textNoLicenseTitle": "La limite de la licence est atteinte",
"DE.Controllers.Main.textPaidFeature": "Fonction payée", "DE.Controllers.Main.textPaidFeature": "Fonction payante",
"DE.Controllers.Main.textRemember": "Se souvenir de mon choix pour tous les fichiers", "DE.Controllers.Main.textRemember": "Se souvenir de mon choix pour tous les fichiers",
"DE.Controllers.Main.textRenameError": "Le nom d'utilisateur ne peut être vide.", "DE.Controllers.Main.textRenameError": "Le nom d'utilisateur ne peut être vide.",
"DE.Controllers.Main.textRenameLabel": "Entrez un nom à utiliser pour la collaboration", "DE.Controllers.Main.textRenameLabel": "Entrez un nom à utiliser pour la collaboration",
@ -607,7 +607,7 @@
"DE.Controllers.Main.txtClickToLoad": "Cliquez pour charger une image", "DE.Controllers.Main.txtClickToLoad": "Cliquez pour charger une image",
"DE.Controllers.Main.txtCurrentDocument": "Document actuel", "DE.Controllers.Main.txtCurrentDocument": "Document actuel",
"DE.Controllers.Main.txtDiagramTitle": "Titre du graphique", "DE.Controllers.Main.txtDiagramTitle": "Titre du graphique",
"DE.Controllers.Main.txtEditingMode": "Définissez le mode d'édition...", "DE.Controllers.Main.txtEditingMode": "Réglage mode d'édition...",
"DE.Controllers.Main.txtEndOfFormula": "Fin de Formule Inattendue.", "DE.Controllers.Main.txtEndOfFormula": "Fin de Formule Inattendue.",
"DE.Controllers.Main.txtEnterDate": "Entrer une date", "DE.Controllers.Main.txtEnterDate": "Entrer une date",
"DE.Controllers.Main.txtErrorLoadHistory": "Chargement de histoire a échoué", "DE.Controllers.Main.txtErrorLoadHistory": "Chargement de histoire a échoué",
@ -846,7 +846,7 @@
"DE.Controllers.Main.uploadDocSizeMessage": "La taille du fichier dépasse la limite autorisée.", "DE.Controllers.Main.uploadDocSizeMessage": "La taille du fichier dépasse la limite autorisée.",
"DE.Controllers.Main.uploadImageExtMessage": "Format d'image inconnu.", "DE.Controllers.Main.uploadImageExtMessage": "Format d'image inconnu.",
"DE.Controllers.Main.uploadImageFileCountMessage": "Pas d'images chargées.", "DE.Controllers.Main.uploadImageFileCountMessage": "Pas d'images chargées.",
"DE.Controllers.Main.uploadImageSizeMessage": "La taille de l'image dépasse la limite maximale.", "DE.Controllers.Main.uploadImageSizeMessage": "L'image est trop grande. La taille limite est de 25 Mo.",
"DE.Controllers.Main.uploadImageTextText": "Chargement d'une image...", "DE.Controllers.Main.uploadImageTextText": "Chargement d'une image...",
"DE.Controllers.Main.uploadImageTitleText": "Chargement d'une image", "DE.Controllers.Main.uploadImageTitleText": "Chargement d'une image",
"DE.Controllers.Main.waitText": "Veuillez patienter...", "DE.Controllers.Main.waitText": "Veuillez patienter...",
@ -871,7 +871,7 @@
"DE.Controllers.Toolbar.notcriticalErrorTitle": "Avertissement", "DE.Controllers.Toolbar.notcriticalErrorTitle": "Avertissement",
"DE.Controllers.Toolbar.textAccent": "Types d'accentuation", "DE.Controllers.Toolbar.textAccent": "Types d'accentuation",
"DE.Controllers.Toolbar.textBracket": "Crochets", "DE.Controllers.Toolbar.textBracket": "Crochets",
"DE.Controllers.Toolbar.textEmptyImgUrl": "Specifiez URL d'image", "DE.Controllers.Toolbar.textEmptyImgUrl": "Spécifiez l'URL de l'image",
"DE.Controllers.Toolbar.textFontSizeErr": "La valeur entrée est incorrecte.<br>Entrez une valeur numérique entre 1 et 300", "DE.Controllers.Toolbar.textFontSizeErr": "La valeur entrée est incorrecte.<br>Entrez une valeur numérique entre 1 et 300",
"DE.Controllers.Toolbar.textFraction": "Fractions", "DE.Controllers.Toolbar.textFraction": "Fractions",
"DE.Controllers.Toolbar.textFunction": "Fonctions", "DE.Controllers.Toolbar.textFunction": "Fonctions",
@ -1360,7 +1360,7 @@
"DE.Views.DocumentHolder.alignmentText": "Alignement", "DE.Views.DocumentHolder.alignmentText": "Alignement",
"DE.Views.DocumentHolder.belowText": "En dessous", "DE.Views.DocumentHolder.belowText": "En dessous",
"DE.Views.DocumentHolder.breakBeforeText": "Saut de page avant", "DE.Views.DocumentHolder.breakBeforeText": "Saut de page avant",
"DE.Views.DocumentHolder.bulletsText": "Puces et Numérotation", "DE.Views.DocumentHolder.bulletsText": "Puces et Numéros",
"DE.Views.DocumentHolder.cellAlignText": "Alignement vertical de la cellule", "DE.Views.DocumentHolder.cellAlignText": "Alignement vertical de la cellule",
"DE.Views.DocumentHolder.cellText": "Cellule", "DE.Views.DocumentHolder.cellText": "Cellule",
"DE.Views.DocumentHolder.centerText": "Centre", "DE.Views.DocumentHolder.centerText": "Centre",
@ -1392,7 +1392,7 @@
"DE.Views.DocumentHolder.insertText": "Insérer", "DE.Views.DocumentHolder.insertText": "Insérer",
"DE.Views.DocumentHolder.keepLinesText": "Lignes solidaires", "DE.Views.DocumentHolder.keepLinesText": "Lignes solidaires",
"DE.Views.DocumentHolder.langText": "Sélectionner la langue", "DE.Views.DocumentHolder.langText": "Sélectionner la langue",
"DE.Views.DocumentHolder.leftText": "A gauche", "DE.Views.DocumentHolder.leftText": "À gauche",
"DE.Views.DocumentHolder.loadSpellText": "Chargement des variantes en cours...", "DE.Views.DocumentHolder.loadSpellText": "Chargement des variantes en cours...",
"DE.Views.DocumentHolder.mergeCellsText": "Fusionner les cellules", "DE.Views.DocumentHolder.mergeCellsText": "Fusionner les cellules",
"DE.Views.DocumentHolder.moreText": "Plus de variantes...", "DE.Views.DocumentHolder.moreText": "Plus de variantes...",
@ -1598,7 +1598,7 @@
"DE.Views.DropcapSettingsAdvanced.textInline": "Cadre en ligne", "DE.Views.DropcapSettingsAdvanced.textInline": "Cadre en ligne",
"DE.Views.DropcapSettingsAdvanced.textInMargin": "Dans la marge", "DE.Views.DropcapSettingsAdvanced.textInMargin": "Dans la marge",
"DE.Views.DropcapSettingsAdvanced.textInText": "Dans le texte", "DE.Views.DropcapSettingsAdvanced.textInText": "Dans le texte",
"DE.Views.DropcapSettingsAdvanced.textLeft": "A gauche", "DE.Views.DropcapSettingsAdvanced.textLeft": "À gauche",
"DE.Views.DropcapSettingsAdvanced.textMargin": "Marge", "DE.Views.DropcapSettingsAdvanced.textMargin": "Marge",
"DE.Views.DropcapSettingsAdvanced.textMove": "Déplacer avec le texte", "DE.Views.DropcapSettingsAdvanced.textMove": "Déplacer avec le texte",
"DE.Views.DropcapSettingsAdvanced.textNone": "Aucune", "DE.Views.DropcapSettingsAdvanced.textNone": "Aucune",
@ -1734,9 +1734,12 @@
"DE.Views.FileMenuPanels.Settings.txtSpellCheck": "Vérification de l'orthographe", "DE.Views.FileMenuPanels.Settings.txtSpellCheck": "Vérification de l'orthographe",
"DE.Views.FileMenuPanels.Settings.txtStopMacros": "Désactiver tout", "DE.Views.FileMenuPanels.Settings.txtStopMacros": "Désactiver tout",
"DE.Views.FileMenuPanels.Settings.txtStopMacrosDesc": "Désactiver toutes les macros sans notification", "DE.Views.FileMenuPanels.Settings.txtStopMacrosDesc": "Désactiver toutes les macros sans notification",
"DE.Views.FileMenuPanels.Settings.txtWarnMacros": "Montrer la notification", "DE.Views.FileMenuPanels.Settings.txtWarnMacros": "Montrer la notification",
"DE.Views.FileMenuPanels.Settings.txtWarnMacrosDesc": "Désactiver toutes les macros avec notification", "DE.Views.FileMenuPanels.Settings.txtWarnMacrosDesc": "Désactiver toutes les macros avec notification",
"DE.Views.FileMenuPanels.Settings.txtWin": "comme Windows", "DE.Views.FileMenuPanels.Settings.txtWin": "comme Windows",
"DE.Views.FormSettings.textAlways": "Toujour",
"DE.Views.FormSettings.textAspect": "Verrouiller les proportions",
"DE.Views.FormSettings.textAutofit": "Ajuster automatiquement",
"DE.Views.FormSettings.textCheckbox": "Case à cocher", "DE.Views.FormSettings.textCheckbox": "Case à cocher",
"DE.Views.FormSettings.textColor": "Couleur de bordure.", "DE.Views.FormSettings.textColor": "Couleur de bordure.",
"DE.Views.FormSettings.textComb": "Peigne de caractères ", "DE.Views.FormSettings.textComb": "Peigne de caractères ",
@ -1755,16 +1758,21 @@
"DE.Views.FormSettings.textKey": "Clé", "DE.Views.FormSettings.textKey": "Clé",
"DE.Views.FormSettings.textLock": "Verrou ", "DE.Views.FormSettings.textLock": "Verrou ",
"DE.Views.FormSettings.textMaxChars": "Limite de caractères", "DE.Views.FormSettings.textMaxChars": "Limite de caractères",
"DE.Views.FormSettings.textMulti": "Champ de saisie à plusieurs lignes",
"DE.Views.FormSettings.textNever": "Jamais",
"DE.Views.FormSettings.textNoBorder": "Sans bordures", "DE.Views.FormSettings.textNoBorder": "Sans bordures",
"DE.Views.FormSettings.textPlaceholder": "Espace réservé", "DE.Views.FormSettings.textPlaceholder": "Espace réservé",
"DE.Views.FormSettings.textRadiobox": "Bouton radio", "DE.Views.FormSettings.textRadiobox": "Bouton radio",
"DE.Views.FormSettings.textRequired": "Requis", "DE.Views.FormSettings.textRequired": "Requis",
"DE.Views.FormSettings.textScale": "Mise à l'échelle",
"DE.Views.FormSettings.textSelectImage": "Sélectionner une image", "DE.Views.FormSettings.textSelectImage": "Sélectionner une image",
"DE.Views.FormSettings.textTip": "Conseil", "DE.Views.FormSettings.textTip": "Conseil",
"DE.Views.FormSettings.textTipAdd": "Ajouter une nouvelle valeur", "DE.Views.FormSettings.textTipAdd": "Ajouter une nouvelle valeur",
"DE.Views.FormSettings.textTipDelete": "Supprimer la valeur", "DE.Views.FormSettings.textTipDelete": "Supprimer la valeur",
"DE.Views.FormSettings.textTipDown": "Descendre", "DE.Views.FormSettings.textTipDown": "Descendre",
"DE.Views.FormSettings.textTipUp": "Monter", "DE.Views.FormSettings.textTipUp": "Monter",
"DE.Views.FormSettings.textTooBig": "L'image semble trop grande",
"DE.Views.FormSettings.textTooSmall": "L'image semble trop petite",
"DE.Views.FormSettings.textUnlock": "Déverrouiller", "DE.Views.FormSettings.textUnlock": "Déverrouiller",
"DE.Views.FormSettings.textValue": "Options de valeur", "DE.Views.FormSettings.textValue": "Options de valeur",
"DE.Views.FormSettings.textWidth": "Largeur de cellule", "DE.Views.FormSettings.textWidth": "Largeur de cellule",
@ -1783,6 +1791,7 @@
"DE.Views.FormsTab.textHighlight": "Paramètres de surbrillance", "DE.Views.FormsTab.textHighlight": "Paramètres de surbrillance",
"DE.Views.FormsTab.textNewColor": "Couleur personnalisée", "DE.Views.FormsTab.textNewColor": "Couleur personnalisée",
"DE.Views.FormsTab.textNoHighlight": "Pas de surbrillance ", "DE.Views.FormsTab.textNoHighlight": "Pas de surbrillance ",
"DE.Views.FormsTab.textRequired": "Veuillez remplir tous les champs obligatoires avant d'envoyer le formulaire.",
"DE.Views.FormsTab.textSubmited": "Formulaire soumis avec succès", "DE.Views.FormsTab.textSubmited": "Formulaire soumis avec succès",
"DE.Views.FormsTab.tipCheckBox": "Insérer une case à cocher", "DE.Views.FormsTab.tipCheckBox": "Insérer une case à cocher",
"DE.Views.FormsTab.tipComboBox": "Insérer une zone de liste déroulante", "DE.Views.FormsTab.tipComboBox": "Insérer une zone de liste déroulante",
@ -1800,7 +1809,7 @@
"DE.Views.HeaderFooterSettings.textBottomRight": "En bas à droite", "DE.Views.HeaderFooterSettings.textBottomRight": "En bas à droite",
"DE.Views.HeaderFooterSettings.textDiffFirst": "Première page différente", "DE.Views.HeaderFooterSettings.textDiffFirst": "Première page différente",
"DE.Views.HeaderFooterSettings.textDiffOdd": "Pages paires et impaires différentes", "DE.Views.HeaderFooterSettings.textDiffOdd": "Pages paires et impaires différentes",
"DE.Views.HeaderFooterSettings.textFrom": "Début", "DE.Views.HeaderFooterSettings.textFrom": "Commencer par",
"DE.Views.HeaderFooterSettings.textHeaderFromBottom": "Pied de page à partir du bas", "DE.Views.HeaderFooterSettings.textHeaderFromBottom": "Pied de page à partir du bas",
"DE.Views.HeaderFooterSettings.textHeaderFromTop": "En-tête à partir du haut", "DE.Views.HeaderFooterSettings.textHeaderFromTop": "En-tête à partir du haut",
"DE.Views.HeaderFooterSettings.textInsertCurrent": "Insérer à la position actuelle", "DE.Views.HeaderFooterSettings.textInsertCurrent": "Insérer à la position actuelle",
@ -1889,7 +1898,7 @@
"DE.Views.ImageSettingsAdvanced.textHorizontally": "Horizontalement", "DE.Views.ImageSettingsAdvanced.textHorizontally": "Horizontalement",
"DE.Views.ImageSettingsAdvanced.textJoinType": "Type de jointure", "DE.Views.ImageSettingsAdvanced.textJoinType": "Type de jointure",
"DE.Views.ImageSettingsAdvanced.textKeepRatio": "Proportions constantes", "DE.Views.ImageSettingsAdvanced.textKeepRatio": "Proportions constantes",
"DE.Views.ImageSettingsAdvanced.textLeft": "A gauche", "DE.Views.ImageSettingsAdvanced.textLeft": "À gauche",
"DE.Views.ImageSettingsAdvanced.textLeftMargin": "Marge gauche", "DE.Views.ImageSettingsAdvanced.textLeftMargin": "Marge gauche",
"DE.Views.ImageSettingsAdvanced.textLine": "Ligne", "DE.Views.ImageSettingsAdvanced.textLine": "Ligne",
"DE.Views.ImageSettingsAdvanced.textLineStyle": "Style de la ligne", "DE.Views.ImageSettingsAdvanced.textLineStyle": "Style de la ligne",
@ -1932,12 +1941,12 @@
"DE.Views.ImageSettingsAdvanced.textWrapThroughTooltip": "Au travers", "DE.Views.ImageSettingsAdvanced.textWrapThroughTooltip": "Au travers",
"DE.Views.ImageSettingsAdvanced.textWrapTightTooltip": "Rapproché", "DE.Views.ImageSettingsAdvanced.textWrapTightTooltip": "Rapproché",
"DE.Views.ImageSettingsAdvanced.textWrapTopbottomTooltip": "Haut et bas", "DE.Views.ImageSettingsAdvanced.textWrapTopbottomTooltip": "Haut et bas",
"DE.Views.LeftMenu.tipAbout": "Au sujet de", "DE.Views.LeftMenu.tipAbout": "À propos",
"DE.Views.LeftMenu.tipChat": "Chat", "DE.Views.LeftMenu.tipChat": "Chat",
"DE.Views.LeftMenu.tipComments": "Commentaires", "DE.Views.LeftMenu.tipComments": "Commentaires",
"DE.Views.LeftMenu.tipNavigation": "Navigation", "DE.Views.LeftMenu.tipNavigation": "Navigation",
"DE.Views.LeftMenu.tipPlugins": "Plug-ins", "DE.Views.LeftMenu.tipPlugins": "Plug-ins",
"DE.Views.LeftMenu.tipSearch": "Recherche", "DE.Views.LeftMenu.tipSearch": "Rechercher",
"DE.Views.LeftMenu.tipSupport": "Commentaires & assistance", "DE.Views.LeftMenu.tipSupport": "Commentaires & assistance",
"DE.Views.LeftMenu.tipTitles": "Titres", "DE.Views.LeftMenu.tipTitles": "Titres",
"DE.Views.LeftMenu.txtDeveloper": "MODE DEVELOPPEUR", "DE.Views.LeftMenu.txtDeveloper": "MODE DEVELOPPEUR",
@ -1994,7 +2003,7 @@
"DE.Views.Links.titleUpdateTOF": "Rafraichir la table des figures", "DE.Views.Links.titleUpdateTOF": "Rafraichir la table des figures",
"DE.Views.ListSettingsDialog.textAuto": "Automatique", "DE.Views.ListSettingsDialog.textAuto": "Automatique",
"DE.Views.ListSettingsDialog.textCenter": "Au centre", "DE.Views.ListSettingsDialog.textCenter": "Au centre",
"DE.Views.ListSettingsDialog.textLeft": "A gauche", "DE.Views.ListSettingsDialog.textLeft": "À gauche",
"DE.Views.ListSettingsDialog.textLevel": "Niveau", "DE.Views.ListSettingsDialog.textLevel": "Niveau",
"DE.Views.ListSettingsDialog.textPreview": "Aperçu", "DE.Views.ListSettingsDialog.textPreview": "Aperçu",
"DE.Views.ListSettingsDialog.textRight": "A droite", "DE.Views.ListSettingsDialog.textRight": "A droite",
@ -2085,7 +2094,7 @@
"DE.Views.NoteSettingsDialog.textPageBottom": "Bas de page", "DE.Views.NoteSettingsDialog.textPageBottom": "Bas de page",
"DE.Views.NoteSettingsDialog.textSectEnd": "Fin de section", "DE.Views.NoteSettingsDialog.textSectEnd": "Fin de section",
"DE.Views.NoteSettingsDialog.textSection": "Section active", "DE.Views.NoteSettingsDialog.textSection": "Section active",
"DE.Views.NoteSettingsDialog.textStart": "Début", "DE.Views.NoteSettingsDialog.textStart": "Commencer par",
"DE.Views.NoteSettingsDialog.textTextBottom": "Sous le texte", "DE.Views.NoteSettingsDialog.textTextBottom": "Sous le texte",
"DE.Views.NoteSettingsDialog.textTitle": "Paramètres des notes de bas de page", "DE.Views.NoteSettingsDialog.textTitle": "Paramètres des notes de bas de page",
"DE.Views.NotesRemoveDialog.textEnd": "Supprimer toutes les notes de fin", "DE.Views.NotesRemoveDialog.textEnd": "Supprimer toutes les notes de fin",
@ -2116,7 +2125,7 @@
"DE.Views.PageSizeDialog.textWidth": "Largeur", "DE.Views.PageSizeDialog.textWidth": "Largeur",
"DE.Views.PageSizeDialog.txtCustom": "Personnalisé", "DE.Views.PageSizeDialog.txtCustom": "Personnalisé",
"DE.Views.ParagraphSettings.strIndent": "Retraits", "DE.Views.ParagraphSettings.strIndent": "Retraits",
"DE.Views.ParagraphSettings.strIndentsLeftText": "Gauche", "DE.Views.ParagraphSettings.strIndentsLeftText": "À gauche",
"DE.Views.ParagraphSettings.strIndentsRightText": "Droite", "DE.Views.ParagraphSettings.strIndentsRightText": "Droite",
"DE.Views.ParagraphSettings.strIndentsSpecial": "Spécial", "DE.Views.ParagraphSettings.strIndentsSpecial": "Spécial",
"DE.Views.ParagraphSettings.strLineHeight": "Interligne", "DE.Views.ParagraphSettings.strLineHeight": "Interligne",
@ -2127,7 +2136,7 @@
"DE.Views.ParagraphSettings.textAdvanced": "Afficher les paramètres avancés", "DE.Views.ParagraphSettings.textAdvanced": "Afficher les paramètres avancés",
"DE.Views.ParagraphSettings.textAt": "A", "DE.Views.ParagraphSettings.textAt": "A",
"DE.Views.ParagraphSettings.textAtLeast": "Au moins ", "DE.Views.ParagraphSettings.textAtLeast": "Au moins ",
"DE.Views.ParagraphSettings.textAuto": "Plusieurs", "DE.Views.ParagraphSettings.textAuto": "Multiple ",
"DE.Views.ParagraphSettings.textBackColor": "Couleur d'arrière-plan", "DE.Views.ParagraphSettings.textBackColor": "Couleur d'arrière-plan",
"DE.Views.ParagraphSettings.textExact": "Exactement", "DE.Views.ParagraphSettings.textExact": "Exactement",
"DE.Views.ParagraphSettings.textFirstLine": "Première ligne", "DE.Views.ParagraphSettings.textFirstLine": "Première ligne",
@ -2138,9 +2147,9 @@
"DE.Views.ParagraphSettingsAdvanced.strAllCaps": "Toutes en majuscules", "DE.Views.ParagraphSettingsAdvanced.strAllCaps": "Toutes en majuscules",
"DE.Views.ParagraphSettingsAdvanced.strBorders": "Bordures et remplissage", "DE.Views.ParagraphSettingsAdvanced.strBorders": "Bordures et remplissage",
"DE.Views.ParagraphSettingsAdvanced.strBreakBefore": "Saut de page avant", "DE.Views.ParagraphSettingsAdvanced.strBreakBefore": "Saut de page avant",
"DE.Views.ParagraphSettingsAdvanced.strDoubleStrike": "Double barré", "DE.Views.ParagraphSettingsAdvanced.strDoubleStrike": "Barré double",
"DE.Views.ParagraphSettingsAdvanced.strIndent": "Retraits", "DE.Views.ParagraphSettingsAdvanced.strIndent": "Retraits",
"DE.Views.ParagraphSettingsAdvanced.strIndentsLeftText": "A gauche", "DE.Views.ParagraphSettingsAdvanced.strIndentsLeftText": "À gauche",
"DE.Views.ParagraphSettingsAdvanced.strIndentsLineSpacing": "Interligne", "DE.Views.ParagraphSettingsAdvanced.strIndentsLineSpacing": "Interligne",
"DE.Views.ParagraphSettingsAdvanced.strIndentsOutlinelevel": "Niveau hiérarchique", "DE.Views.ParagraphSettingsAdvanced.strIndentsOutlinelevel": "Niveau hiérarchique",
"DE.Views.ParagraphSettingsAdvanced.strIndentsRightText": "A droite", "DE.Views.ParagraphSettingsAdvanced.strIndentsRightText": "A droite",
@ -2165,7 +2174,7 @@
"DE.Views.ParagraphSettingsAdvanced.strTabs": "Tabulation", "DE.Views.ParagraphSettingsAdvanced.strTabs": "Tabulation",
"DE.Views.ParagraphSettingsAdvanced.textAlign": "Alignement", "DE.Views.ParagraphSettingsAdvanced.textAlign": "Alignement",
"DE.Views.ParagraphSettingsAdvanced.textAtLeast": "Au moins ", "DE.Views.ParagraphSettingsAdvanced.textAtLeast": "Au moins ",
"DE.Views.ParagraphSettingsAdvanced.textAuto": "Plusieurs", "DE.Views.ParagraphSettingsAdvanced.textAuto": "Multiple ",
"DE.Views.ParagraphSettingsAdvanced.textBackColor": "Couleur d'arrière-plan", "DE.Views.ParagraphSettingsAdvanced.textBackColor": "Couleur d'arrière-plan",
"DE.Views.ParagraphSettingsAdvanced.textBodyText": "Texte simple", "DE.Views.ParagraphSettingsAdvanced.textBodyText": "Texte simple",
"DE.Views.ParagraphSettingsAdvanced.textBorderColor": "Couleur", "DE.Views.ParagraphSettingsAdvanced.textBorderColor": "Couleur",
@ -2192,7 +2201,7 @@
"DE.Views.ParagraphSettingsAdvanced.textSet": "Spécifier", "DE.Views.ParagraphSettingsAdvanced.textSet": "Spécifier",
"DE.Views.ParagraphSettingsAdvanced.textSpacing": "Espacement", "DE.Views.ParagraphSettingsAdvanced.textSpacing": "Espacement",
"DE.Views.ParagraphSettingsAdvanced.textTabCenter": "Centre", "DE.Views.ParagraphSettingsAdvanced.textTabCenter": "Centre",
"DE.Views.ParagraphSettingsAdvanced.textTabLeft": "A gauche", "DE.Views.ParagraphSettingsAdvanced.textTabLeft": "À gauche",
"DE.Views.ParagraphSettingsAdvanced.textTabPosition": "Position", "DE.Views.ParagraphSettingsAdvanced.textTabPosition": "Position",
"DE.Views.ParagraphSettingsAdvanced.textTabRight": "A droite", "DE.Views.ParagraphSettingsAdvanced.textTabRight": "A droite",
"DE.Views.ParagraphSettingsAdvanced.textTitle": "Paragraphe - Paramètres avancés", "DE.Views.ParagraphSettingsAdvanced.textTitle": "Paragraphe - Paramètres avancés",
@ -2429,8 +2438,8 @@
"DE.Views.TableSettingsAdvanced.textDistance": "Distance du texte", "DE.Views.TableSettingsAdvanced.textDistance": "Distance du texte",
"DE.Views.TableSettingsAdvanced.textHorizontal": "Horizontal", "DE.Views.TableSettingsAdvanced.textHorizontal": "Horizontal",
"DE.Views.TableSettingsAdvanced.textIndLeft": "Retrait à gauche", "DE.Views.TableSettingsAdvanced.textIndLeft": "Retrait à gauche",
"DE.Views.TableSettingsAdvanced.textLeft": "A gauche", "DE.Views.TableSettingsAdvanced.textLeft": "À gauche",
"DE.Views.TableSettingsAdvanced.textLeftTooltip": "A gauche", "DE.Views.TableSettingsAdvanced.textLeftTooltip": "À gauche",
"DE.Views.TableSettingsAdvanced.textMargin": "Marge", "DE.Views.TableSettingsAdvanced.textMargin": "Marge",
"DE.Views.TableSettingsAdvanced.textMargins": "Marges de la cellule", "DE.Views.TableSettingsAdvanced.textMargins": "Marges de la cellule",
"DE.Views.TableSettingsAdvanced.textMeasure": "Mesure en", "DE.Views.TableSettingsAdvanced.textMeasure": "Mesure en",
@ -2574,7 +2583,7 @@
"DE.Views.Toolbar.textChangeLevel": "Changer le niveau de liste", "DE.Views.Toolbar.textChangeLevel": "Changer le niveau de liste",
"DE.Views.Toolbar.textCheckboxControl": "Case à cocher", "DE.Views.Toolbar.textCheckboxControl": "Case à cocher",
"DE.Views.Toolbar.textColumnsCustom": "Colonnes personnalisées", "DE.Views.Toolbar.textColumnsCustom": "Colonnes personnalisées",
"DE.Views.Toolbar.textColumnsLeft": "A gauche", "DE.Views.Toolbar.textColumnsLeft": "À gauche",
"DE.Views.Toolbar.textColumnsOne": "Un", "DE.Views.Toolbar.textColumnsOne": "Un",
"DE.Views.Toolbar.textColumnsRight": "A droite", "DE.Views.Toolbar.textColumnsRight": "A droite",
"DE.Views.Toolbar.textColumnsThree": "Trois", "DE.Views.Toolbar.textColumnsThree": "Trois",
@ -2721,6 +2730,7 @@
"DE.Views.Toolbar.txtScheme2": "Niveaux de gris", "DE.Views.Toolbar.txtScheme2": "Niveaux de gris",
"DE.Views.Toolbar.txtScheme20": "Urbain", "DE.Views.Toolbar.txtScheme20": "Urbain",
"DE.Views.Toolbar.txtScheme21": "Verve", "DE.Views.Toolbar.txtScheme21": "Verve",
"DE.Views.Toolbar.txtScheme22": "New Office",
"DE.Views.Toolbar.txtScheme3": "Apex", "DE.Views.Toolbar.txtScheme3": "Apex",
"DE.Views.Toolbar.txtScheme4": "Proportions", "DE.Views.Toolbar.txtScheme4": "Proportions",
"DE.Views.Toolbar.txtScheme5": "Civique", "DE.Views.Toolbar.txtScheme5": "Civique",

View file

@ -156,7 +156,7 @@
"Common.UI.Calendar.textShortThursday": "do", "Common.UI.Calendar.textShortThursday": "do",
"Common.UI.Calendar.textShortTuesday": "di", "Common.UI.Calendar.textShortTuesday": "di",
"Common.UI.Calendar.textShortWednesday": "wij", "Common.UI.Calendar.textShortWednesday": "wij",
"Common.UI.Calendar.textYears": "jaren", "Common.UI.Calendar.textYears": "Jaren",
"Common.UI.ColorButton.textAutoColor": "Automatisch", "Common.UI.ColorButton.textAutoColor": "Automatisch",
"Common.UI.ColorButton.textNewColor": "Nieuwe aangepaste kleur toevoegen", "Common.UI.ColorButton.textNewColor": "Nieuwe aangepaste kleur toevoegen",
"Common.UI.ComboBorderSize.txtNoBorders": "Geen randen", "Common.UI.ComboBorderSize.txtNoBorders": "Geen randen",
@ -299,7 +299,7 @@
"Common.Views.InsertTableDialog.txtTitleSplit": "Cel Splitsen", "Common.Views.InsertTableDialog.txtTitleSplit": "Cel Splitsen",
"Common.Views.LanguageDialog.labelSelect": "Taal van document selecteren", "Common.Views.LanguageDialog.labelSelect": "Taal van document selecteren",
"Common.Views.OpenDialog.closeButtonText": "Bestand sluiten", "Common.Views.OpenDialog.closeButtonText": "Bestand sluiten",
"Common.Views.OpenDialog.txtEncoding": "Versleuteling", "Common.Views.OpenDialog.txtEncoding": "Codering",
"Common.Views.OpenDialog.txtIncorrectPwd": "Wachtwoord is niet juist", "Common.Views.OpenDialog.txtIncorrectPwd": "Wachtwoord is niet juist",
"Common.Views.OpenDialog.txtOpenFile": "Voer een wachtwoord in om dit bestand te openen", "Common.Views.OpenDialog.txtOpenFile": "Voer een wachtwoord in om dit bestand te openen",
"Common.Views.OpenDialog.txtPassword": "Wachtwoord", "Common.Views.OpenDialog.txtPassword": "Wachtwoord",
@ -846,7 +846,7 @@
"DE.Controllers.Main.uploadDocSizeMessage": "Maximale documentgrootte overschreden.", "DE.Controllers.Main.uploadDocSizeMessage": "Maximale documentgrootte overschreden.",
"DE.Controllers.Main.uploadImageExtMessage": "Onbekende afbeeldingsindeling.", "DE.Controllers.Main.uploadImageExtMessage": "Onbekende afbeeldingsindeling.",
"DE.Controllers.Main.uploadImageFileCountMessage": "Geen afbeeldingen geüpload.", "DE.Controllers.Main.uploadImageFileCountMessage": "Geen afbeeldingen geüpload.",
"DE.Controllers.Main.uploadImageSizeMessage": "Maximale afbeeldingsgrootte overschreden.", "DE.Controllers.Main.uploadImageSizeMessage": "De afbeelding is te groot. De maximale grote is 25MB.",
"DE.Controllers.Main.uploadImageTextText": "Afbeelding wordt geüpload...", "DE.Controllers.Main.uploadImageTextText": "Afbeelding wordt geüpload...",
"DE.Controllers.Main.uploadImageTitleText": "Afbeelding wordt geüpload", "DE.Controllers.Main.uploadImageTitleText": "Afbeelding wordt geüpload",
"DE.Controllers.Main.waitText": "Een moment...", "DE.Controllers.Main.waitText": "Een moment...",
@ -1737,6 +1737,9 @@
"DE.Views.FileMenuPanels.Settings.txtWarnMacros": "Weergeef notificatie", "DE.Views.FileMenuPanels.Settings.txtWarnMacros": "Weergeef notificatie",
"DE.Views.FileMenuPanels.Settings.txtWarnMacrosDesc": "Schakel alle macro's uit met een melding", "DE.Views.FileMenuPanels.Settings.txtWarnMacrosDesc": "Schakel alle macro's uit met een melding",
"DE.Views.FileMenuPanels.Settings.txtWin": "als Windows", "DE.Views.FileMenuPanels.Settings.txtWin": "als Windows",
"DE.Views.FormSettings.textAlways": "Altijd",
"DE.Views.FormSettings.textAspect": "Aspectratio vastzetten",
"DE.Views.FormSettings.textAutofit": "Automatische pasvorm",
"DE.Views.FormSettings.textCheckbox": "Checkbox", "DE.Views.FormSettings.textCheckbox": "Checkbox",
"DE.Views.FormSettings.textColor": "Randkleur", "DE.Views.FormSettings.textColor": "Randkleur",
"DE.Views.FormSettings.textComb": "Lijst van characters", "DE.Views.FormSettings.textComb": "Lijst van characters",
@ -1755,16 +1758,21 @@
"DE.Views.FormSettings.textKey": "Sleutel", "DE.Views.FormSettings.textKey": "Sleutel",
"DE.Views.FormSettings.textLock": "Opslot", "DE.Views.FormSettings.textLock": "Opslot",
"DE.Views.FormSettings.textMaxChars": "Teken limiet", "DE.Views.FormSettings.textMaxChars": "Teken limiet",
"DE.Views.FormSettings.textMulti": "Meerlijnig veld",
"DE.Views.FormSettings.textNever": "Nooit",
"DE.Views.FormSettings.textNoBorder": "Geen rand", "DE.Views.FormSettings.textNoBorder": "Geen rand",
"DE.Views.FormSettings.textPlaceholder": "Tijdelijke aanduiding", "DE.Views.FormSettings.textPlaceholder": "Tijdelijke aanduiding",
"DE.Views.FormSettings.textRadiobox": "Radial knop", "DE.Views.FormSettings.textRadiobox": "Radial knop",
"DE.Views.FormSettings.textRequired": "Vereist", "DE.Views.FormSettings.textRequired": "Vereist",
"DE.Views.FormSettings.textScale": "Wanneer schalen",
"DE.Views.FormSettings.textSelectImage": "Selecteer afbeelding", "DE.Views.FormSettings.textSelectImage": "Selecteer afbeelding",
"DE.Views.FormSettings.textTip": "Tip", "DE.Views.FormSettings.textTip": "Tip",
"DE.Views.FormSettings.textTipAdd": "Voeg nieuwe waarde toe", "DE.Views.FormSettings.textTipAdd": "Voeg nieuwe waarde toe",
"DE.Views.FormSettings.textTipDelete": "Verwijder waarde", "DE.Views.FormSettings.textTipDelete": "Verwijder waarde",
"DE.Views.FormSettings.textTipDown": "Naar beneden", "DE.Views.FormSettings.textTipDown": "Naar beneden",
"DE.Views.FormSettings.textTipUp": "Naar boven", "DE.Views.FormSettings.textTipUp": "Naar boven",
"DE.Views.FormSettings.textTooBig": "Afbeelding is Te Groot",
"DE.Views.FormSettings.textTooSmall": "Afbeelding is Te Klein",
"DE.Views.FormSettings.textUnlock": "Ontgrendelen", "DE.Views.FormSettings.textUnlock": "Ontgrendelen",
"DE.Views.FormSettings.textValue": "Waarde opties", "DE.Views.FormSettings.textValue": "Waarde opties",
"DE.Views.FormSettings.textWidth": "Celbreedte", "DE.Views.FormSettings.textWidth": "Celbreedte",
@ -1783,6 +1791,7 @@
"DE.Views.FormsTab.textHighlight": "Markeer Instellingen", "DE.Views.FormsTab.textHighlight": "Markeer Instellingen",
"DE.Views.FormsTab.textNewColor": "Nieuwe aangepaste kleur toevoegen", "DE.Views.FormsTab.textNewColor": "Nieuwe aangepaste kleur toevoegen",
"DE.Views.FormsTab.textNoHighlight": "Geen accentuering", "DE.Views.FormsTab.textNoHighlight": "Geen accentuering",
"DE.Views.FormsTab.textRequired": "Vul alle verplichte velden in om het formulier te verzenden.",
"DE.Views.FormsTab.textSubmited": "Formulier succesvol ingediend ", "DE.Views.FormsTab.textSubmited": "Formulier succesvol ingediend ",
"DE.Views.FormsTab.tipCheckBox": "Selectievakje invoegen", "DE.Views.FormsTab.tipCheckBox": "Selectievakje invoegen",
"DE.Views.FormsTab.tipComboBox": "Plaats de keuzelijst met invoervak", "DE.Views.FormsTab.tipComboBox": "Plaats de keuzelijst met invoervak",
@ -1898,7 +1907,7 @@
"DE.Views.ImageSettingsAdvanced.textMove": "Object met tekst verplaatsen", "DE.Views.ImageSettingsAdvanced.textMove": "Object met tekst verplaatsen",
"DE.Views.ImageSettingsAdvanced.textOptions": "Opties", "DE.Views.ImageSettingsAdvanced.textOptions": "Opties",
"DE.Views.ImageSettingsAdvanced.textOriginalSize": "Ware grootte", "DE.Views.ImageSettingsAdvanced.textOriginalSize": "Ware grootte",
"DE.Views.ImageSettingsAdvanced.textOverlap": "Overlapping toestaan", "DE.Views.ImageSettingsAdvanced.textOverlap": "Overlappingen toestaan",
"DE.Views.ImageSettingsAdvanced.textPage": "Pagina", "DE.Views.ImageSettingsAdvanced.textPage": "Pagina",
"DE.Views.ImageSettingsAdvanced.textParagraph": "Alinea", "DE.Views.ImageSettingsAdvanced.textParagraph": "Alinea",
"DE.Views.ImageSettingsAdvanced.textPosition": "Positie", "DE.Views.ImageSettingsAdvanced.textPosition": "Positie",
@ -2632,7 +2641,7 @@
"DE.Views.Toolbar.textSuppressForCurrentParagraph": "Onderdrukken voor huidige alinea", "DE.Views.Toolbar.textSuppressForCurrentParagraph": "Onderdrukken voor huidige alinea",
"DE.Views.Toolbar.textTabCollaboration": "Samenwerking", "DE.Views.Toolbar.textTabCollaboration": "Samenwerking",
"DE.Views.Toolbar.textTabFile": "Bestand", "DE.Views.Toolbar.textTabFile": "Bestand",
"DE.Views.Toolbar.textTabHome": "Home", "DE.Views.Toolbar.textTabHome": "Start",
"DE.Views.Toolbar.textTabInsert": "Invoegen", "DE.Views.Toolbar.textTabInsert": "Invoegen",
"DE.Views.Toolbar.textTabLayout": "Pagina-indeling", "DE.Views.Toolbar.textTabLayout": "Pagina-indeling",
"DE.Views.Toolbar.textTabLinks": "Verwijzingen", "DE.Views.Toolbar.textTabLinks": "Verwijzingen",
@ -2721,6 +2730,7 @@
"DE.Views.Toolbar.txtScheme2": "Grijswaarden", "DE.Views.Toolbar.txtScheme2": "Grijswaarden",
"DE.Views.Toolbar.txtScheme20": "Stedelijk", "DE.Views.Toolbar.txtScheme20": "Stedelijk",
"DE.Views.Toolbar.txtScheme21": "Verve", "DE.Views.Toolbar.txtScheme21": "Verve",
"DE.Views.Toolbar.txtScheme22": "Nieuw kantoor",
"DE.Views.Toolbar.txtScheme3": "Toppunt", "DE.Views.Toolbar.txtScheme3": "Toppunt",
"DE.Views.Toolbar.txtScheme4": "Aspect", "DE.Views.Toolbar.txtScheme4": "Aspect",
"DE.Views.Toolbar.txtScheme5": "Civiel", "DE.Views.Toolbar.txtScheme5": "Civiel",

View file

@ -1737,6 +1737,9 @@
"DE.Views.FileMenuPanels.Settings.txtWarnMacros": "Mostrar notificação", "DE.Views.FileMenuPanels.Settings.txtWarnMacros": "Mostrar notificação",
"DE.Views.FileMenuPanels.Settings.txtWarnMacrosDesc": "Desativar todas as macros com uma notificação", "DE.Views.FileMenuPanels.Settings.txtWarnMacrosDesc": "Desativar todas as macros com uma notificação",
"DE.Views.FileMenuPanels.Settings.txtWin": "como Windows", "DE.Views.FileMenuPanels.Settings.txtWin": "como Windows",
"DE.Views.FormSettings.textAlways": "Sempre",
"DE.Views.FormSettings.textAspect": "Bloquear proporção",
"DE.Views.FormSettings.textAutofit": "Ajuste automático",
"DE.Views.FormSettings.textCheckbox": "Caixa de seleção", "DE.Views.FormSettings.textCheckbox": "Caixa de seleção",
"DE.Views.FormSettings.textColor": "Cor da borda", "DE.Views.FormSettings.textColor": "Cor da borda",
"DE.Views.FormSettings.textComb": "Conjunto de Caracteres", "DE.Views.FormSettings.textComb": "Conjunto de Caracteres",
@ -1755,16 +1758,21 @@
"DE.Views.FormSettings.textKey": "Chave", "DE.Views.FormSettings.textKey": "Chave",
"DE.Views.FormSettings.textLock": "Bloquear", "DE.Views.FormSettings.textLock": "Bloquear",
"DE.Views.FormSettings.textMaxChars": "Limite de caracteres", "DE.Views.FormSettings.textMaxChars": "Limite de caracteres",
"DE.Views.FormSettings.textMulti": "Campo multilinha",
"DE.Views.FormSettings.textNever": "Nunca",
"DE.Views.FormSettings.textNoBorder": "Sem limite", "DE.Views.FormSettings.textNoBorder": "Sem limite",
"DE.Views.FormSettings.textPlaceholder": "Marcador de posição", "DE.Views.FormSettings.textPlaceholder": "Marcador de posição",
"DE.Views.FormSettings.textRadiobox": "Botao de radio", "DE.Views.FormSettings.textRadiobox": "Botao de radio",
"DE.Views.FormSettings.textRequired": "Necessário", "DE.Views.FormSettings.textRequired": "Necessário",
"DE.Views.FormSettings.textScale": "Quando escalar",
"DE.Views.FormSettings.textSelectImage": "Selecionar Imagem", "DE.Views.FormSettings.textSelectImage": "Selecionar Imagem",
"DE.Views.FormSettings.textTip": "Dica", "DE.Views.FormSettings.textTip": "Dica",
"DE.Views.FormSettings.textTipAdd": "Adicionar novo valor", "DE.Views.FormSettings.textTipAdd": "Adicionar novo valor",
"DE.Views.FormSettings.textTipDelete": "Excluir valor", "DE.Views.FormSettings.textTipDelete": "Excluir valor",
"DE.Views.FormSettings.textTipDown": "Mover para baixo", "DE.Views.FormSettings.textTipDown": "Mover para baixo",
"DE.Views.FormSettings.textTipUp": "Mover para cima", "DE.Views.FormSettings.textTipUp": "Mover para cima",
"DE.Views.FormSettings.textTooBig": "A imagem é muito grande",
"DE.Views.FormSettings.textTooSmall": "A imagem é muito pequena",
"DE.Views.FormSettings.textUnlock": "Desbloquear", "DE.Views.FormSettings.textUnlock": "Desbloquear",
"DE.Views.FormSettings.textValue": "Opções de valor", "DE.Views.FormSettings.textValue": "Opções de valor",
"DE.Views.FormSettings.textWidth": "Largura da célula", "DE.Views.FormSettings.textWidth": "Largura da célula",
@ -1783,6 +1791,7 @@
"DE.Views.FormsTab.textHighlight": "Configurações de destaque", "DE.Views.FormsTab.textHighlight": "Configurações de destaque",
"DE.Views.FormsTab.textNewColor": "Adicionar nova cor personalizada", "DE.Views.FormsTab.textNewColor": "Adicionar nova cor personalizada",
"DE.Views.FormsTab.textNoHighlight": "Sem destaque", "DE.Views.FormsTab.textNoHighlight": "Sem destaque",
"DE.Views.FormsTab.textRequired": "Preencha todos os campos obrigatórios para enviar o formulário.",
"DE.Views.FormsTab.textSubmited": "Formulário enviado com sucesso", "DE.Views.FormsTab.textSubmited": "Formulário enviado com sucesso",
"DE.Views.FormsTab.tipCheckBox": "Inserir caixa de seleção", "DE.Views.FormsTab.tipCheckBox": "Inserir caixa de seleção",
"DE.Views.FormsTab.tipComboBox": "Inserir caixa de combinação", "DE.Views.FormsTab.tipComboBox": "Inserir caixa de combinação",
@ -2721,6 +2730,7 @@
"DE.Views.Toolbar.txtScheme2": "Escala de cinza", "DE.Views.Toolbar.txtScheme2": "Escala de cinza",
"DE.Views.Toolbar.txtScheme20": "Urbano", "DE.Views.Toolbar.txtScheme20": "Urbano",
"DE.Views.Toolbar.txtScheme21": "Verve", "DE.Views.Toolbar.txtScheme21": "Verve",
"DE.Views.Toolbar.txtScheme22": "Novo Office",
"DE.Views.Toolbar.txtScheme3": "Ápice", "DE.Views.Toolbar.txtScheme3": "Ápice",
"DE.Views.Toolbar.txtScheme4": "Aspecto", "DE.Views.Toolbar.txtScheme4": "Aspecto",
"DE.Views.Toolbar.txtScheme5": "Cívico", "DE.Views.Toolbar.txtScheme5": "Cívico",

View file

@ -53,11 +53,11 @@
"Common.Controllers.ReviewChanges.textOn": "{0} folosește Urmărirea Modificărilor acum.", "Common.Controllers.ReviewChanges.textOn": "{0} folosește Urmărirea Modificărilor acum.",
"Common.Controllers.ReviewChanges.textOnGlobal": "{0} a activat Urmărire modificări pentru toți.", "Common.Controllers.ReviewChanges.textOnGlobal": "{0} a activat Urmărire modificări pentru toți.",
"Common.Controllers.ReviewChanges.textParaDeleted": "<b>Paragraful a fost eliminat</b>", "Common.Controllers.ReviewChanges.textParaDeleted": "<b>Paragraful a fost eliminat</b>",
"Common.Controllers.ReviewChanges.textParaFormatted": "Paragraf formatat", "Common.Controllers.ReviewChanges.textParaFormatted": "Paragraful a fost formatat",
"Common.Controllers.ReviewChanges.textParaInserted": "<b>Paragraful a fost inserat</b>", "Common.Controllers.ReviewChanges.textParaInserted": "<b>Paragraful a fost inserat</b>",
"Common.Controllers.ReviewChanges.textParaMoveFromDown": "<b>Deplasat în jos:</b>", "Common.Controllers.ReviewChanges.textParaMoveFromDown": "<b>Este mutat în jos:</b>",
"Common.Controllers.ReviewChanges.textParaMoveFromUp": "<b>Deplasat în sus:</b>", "Common.Controllers.ReviewChanges.textParaMoveFromUp": "<b>Este mutat în sus:</b>",
"Common.Controllers.ReviewChanges.textParaMoveTo": "<b>S-a deplasat:</b>", "Common.Controllers.ReviewChanges.textParaMoveTo": "<b>S-a mutat:</b>",
"Common.Controllers.ReviewChanges.textPosition": "Poziție", "Common.Controllers.ReviewChanges.textPosition": "Poziție",
"Common.Controllers.ReviewChanges.textRight": "Aliniere la dreapta", "Common.Controllers.ReviewChanges.textRight": "Aliniere la dreapta",
"Common.Controllers.ReviewChanges.textShape": "Forma", "Common.Controllers.ReviewChanges.textShape": "Forma",
@ -133,7 +133,7 @@
"Common.UI.Calendar.textJune": "Iunie", "Common.UI.Calendar.textJune": "Iunie",
"Common.UI.Calendar.textMarch": "Martie", "Common.UI.Calendar.textMarch": "Martie",
"Common.UI.Calendar.textMay": "Mai", "Common.UI.Calendar.textMay": "Mai",
"Common.UI.Calendar.textMonths": "Luni", "Common.UI.Calendar.textMonths": "Lună",
"Common.UI.Calendar.textNovember": "Noiembrie", "Common.UI.Calendar.textNovember": "Noiembrie",
"Common.UI.Calendar.textOctober": "Octombrie", "Common.UI.Calendar.textOctober": "Octombrie",
"Common.UI.Calendar.textSeptember": "Septembrie", "Common.UI.Calendar.textSeptember": "Septembrie",
@ -839,7 +839,7 @@
"DE.Controllers.Main.txtXAxis": "Axa X", "DE.Controllers.Main.txtXAxis": "Axa X",
"DE.Controllers.Main.txtYAxis": "Axa Y", "DE.Controllers.Main.txtYAxis": "Axa Y",
"DE.Controllers.Main.txtZeroDivide": "Împărțirea cu zero", "DE.Controllers.Main.txtZeroDivide": "Împărțirea cu zero",
"DE.Controllers.Main.unknownErrorText": "Eroare Necunoscut.", "DE.Controllers.Main.unknownErrorText": "Eroare necunoscută.",
"DE.Controllers.Main.unsupportedBrowserErrorText": "Browserul nu este compatibil.", "DE.Controllers.Main.unsupportedBrowserErrorText": "Browserul nu este compatibil.",
"DE.Controllers.Main.uploadDocExtMessage": "Format de fișier necunoscut.", "DE.Controllers.Main.uploadDocExtMessage": "Format de fișier necunoscut.",
"DE.Controllers.Main.uploadDocFileCountMessage": "Nu există nicun document încărcat.", "DE.Controllers.Main.uploadDocFileCountMessage": "Nu există nicun document încărcat.",
@ -1600,7 +1600,7 @@
"DE.Views.DropcapSettingsAdvanced.textInText": "În paragraf", "DE.Views.DropcapSettingsAdvanced.textInText": "În paragraf",
"DE.Views.DropcapSettingsAdvanced.textLeft": "Stânga", "DE.Views.DropcapSettingsAdvanced.textLeft": "Stânga",
"DE.Views.DropcapSettingsAdvanced.textMargin": "Margine", "DE.Views.DropcapSettingsAdvanced.textMargin": "Margine",
"DE.Views.DropcapSettingsAdvanced.textMove": "Deplasare odată cu textul", "DE.Views.DropcapSettingsAdvanced.textMove": "Mutare odată cu textul",
"DE.Views.DropcapSettingsAdvanced.textNone": "Niciunul", "DE.Views.DropcapSettingsAdvanced.textNone": "Niciunul",
"DE.Views.DropcapSettingsAdvanced.textPage": "Pagina", "DE.Views.DropcapSettingsAdvanced.textPage": "Pagina",
"DE.Views.DropcapSettingsAdvanced.textParagraph": "Paragraf", "DE.Views.DropcapSettingsAdvanced.textParagraph": "Paragraf",
@ -1737,6 +1737,7 @@
"DE.Views.FileMenuPanels.Settings.txtWarnMacros": "Afișare notificări", "DE.Views.FileMenuPanels.Settings.txtWarnMacros": "Afișare notificări",
"DE.Views.FileMenuPanels.Settings.txtWarnMacrosDesc": "Se dezactivează toate macrocomenzile, cu notificare ", "DE.Views.FileMenuPanels.Settings.txtWarnMacrosDesc": "Se dezactivează toate macrocomenzile, cu notificare ",
"DE.Views.FileMenuPanels.Settings.txtWin": "ca Windows", "DE.Views.FileMenuPanels.Settings.txtWin": "ca Windows",
"DE.Views.FormSettings.textAlways": "Întotdeauna",
"DE.Views.FormSettings.textAspect": "Blocare raport aspect", "DE.Views.FormSettings.textAspect": "Blocare raport aspect",
"DE.Views.FormSettings.textAutofit": "Potrivire automată", "DE.Views.FormSettings.textAutofit": "Potrivire automată",
"DE.Views.FormSettings.textCheckbox": "Caseta de selectare", "DE.Views.FormSettings.textCheckbox": "Caseta de selectare",
@ -1757,17 +1758,21 @@
"DE.Views.FormSettings.textKey": "Cheie", "DE.Views.FormSettings.textKey": "Cheie",
"DE.Views.FormSettings.textLock": "Blocare", "DE.Views.FormSettings.textLock": "Blocare",
"DE.Views.FormSettings.textMaxChars": "Numărul limită de caractere", "DE.Views.FormSettings.textMaxChars": "Numărul limită de caractere",
"DE.Views.FormSettings.textMulti": "Câmp cu mai multe linii de text",
"DE.Views.FormSettings.textNever": "Niciodată", "DE.Views.FormSettings.textNever": "Niciodată",
"DE.Views.FormSettings.textNoBorder": "Fără bordură", "DE.Views.FormSettings.textNoBorder": "Fără bordură",
"DE.Views.FormSettings.textPlaceholder": "Substituent", "DE.Views.FormSettings.textPlaceholder": "Substituent",
"DE.Views.FormSettings.textRadiobox": "Buton opțiune", "DE.Views.FormSettings.textRadiobox": "Buton opțiune",
"DE.Views.FormSettings.textRequired": "Obligatoriu", "DE.Views.FormSettings.textRequired": "Obligatoriu",
"DE.Views.FormSettings.textScale": "Scalare",
"DE.Views.FormSettings.textSelectImage": "Selectați imaginea", "DE.Views.FormSettings.textSelectImage": "Selectați imaginea",
"DE.Views.FormSettings.textTip": "Tip", "DE.Views.FormSettings.textTip": "Tip",
"DE.Views.FormSettings.textTipAdd": "Se adaugă o valoare nouă", "DE.Views.FormSettings.textTipAdd": "Se adaugă o valoare nouă",
"DE.Views.FormSettings.textTipDelete": "Valoarea trebuie eliminată", "DE.Views.FormSettings.textTipDelete": "Valoarea trebuie eliminată",
"DE.Views.FormSettings.textTipDown": "Deplasare în jos", "DE.Views.FormSettings.textTipDown": "Mutare în jos",
"DE.Views.FormSettings.textTipUp": "Deplasare în sus", "DE.Views.FormSettings.textTipUp": "Mutare în sus",
"DE.Views.FormSettings.textTooBig": "Imaginea este prea mare",
"DE.Views.FormSettings.textTooSmall": "Imaginea este prea mică",
"DE.Views.FormSettings.textUnlock": "Deblocare", "DE.Views.FormSettings.textUnlock": "Deblocare",
"DE.Views.FormSettings.textValue": "Opțiuni valori", "DE.Views.FormSettings.textValue": "Opțiuni valori",
"DE.Views.FormSettings.textWidth": "Lățimea celulei", "DE.Views.FormSettings.textWidth": "Lățimea celulei",
@ -1786,6 +1791,7 @@
"DE.Views.FormsTab.textHighlight": "Evidențiere setări", "DE.Views.FormsTab.textHighlight": "Evidențiere setări",
"DE.Views.FormsTab.textNewColor": "Сuloare particularizată", "DE.Views.FormsTab.textNewColor": "Сuloare particularizată",
"DE.Views.FormsTab.textNoHighlight": "Fără evidențiere", "DE.Views.FormsTab.textNoHighlight": "Fără evidențiere",
"DE.Views.FormsTab.textRequired": "Toate câmpurile din formular trebuie completate înainte de a-l trimite.",
"DE.Views.FormsTab.textSubmited": "Formularul a fost remis cu succes", "DE.Views.FormsTab.textSubmited": "Formularul a fost remis cu succes",
"DE.Views.FormsTab.tipCheckBox": "Se inserează un control casetă de selectare", "DE.Views.FormsTab.tipCheckBox": "Se inserează un control casetă de selectare",
"DE.Views.FormsTab.tipComboBox": "Se inserează un control casetă combo", "DE.Views.FormsTab.tipComboBox": "Se inserează un control casetă combo",
@ -2724,6 +2730,7 @@
"DE.Views.Toolbar.txtScheme2": "Tonuri de gri", "DE.Views.Toolbar.txtScheme2": "Tonuri de gri",
"DE.Views.Toolbar.txtScheme20": "Urban", "DE.Views.Toolbar.txtScheme20": "Urban",
"DE.Views.Toolbar.txtScheme21": "Vervă", "DE.Views.Toolbar.txtScheme21": "Vervă",
"DE.Views.Toolbar.txtScheme22": "New Office",
"DE.Views.Toolbar.txtScheme3": "Apex", "DE.Views.Toolbar.txtScheme3": "Apex",
"DE.Views.Toolbar.txtScheme4": "Aspect", "DE.Views.Toolbar.txtScheme4": "Aspect",
"DE.Views.Toolbar.txtScheme5": "Civic", "DE.Views.Toolbar.txtScheme5": "Civic",

View file

@ -205,6 +205,7 @@
"textBehind": "Darrere", "textBehind": "Darrere",
"textBorder": "Vora", "textBorder": "Vora",
"textBringToForeground": "Portar a primer pla", "textBringToForeground": "Portar a primer pla",
"textBullets": "Vinyetes",
"textBulletsAndNumbers": "Vinyetes i números", "textBulletsAndNumbers": "Vinyetes i números",
"textCellMargins": "Marges de cel·la", "textCellMargins": "Marges de cel·la",
"textChart": "Gràfic", "textChart": "Gràfic",
@ -250,6 +251,7 @@
"textNone": "cap", "textNone": "cap",
"textNoStyles": "No hi ha estils per a aquest tipus de diagrames.", "textNoStyles": "No hi ha estils per a aquest tipus de diagrames.",
"textNotUrl": "Aquest camp hauria de ser una URL en el format \"http://www.exemple.com\"", "textNotUrl": "Aquest camp hauria de ser una URL en el format \"http://www.exemple.com\"",
"textNumbers": "Nombres",
"textOpacity": "Opacitat", "textOpacity": "Opacitat",
"textOptions": "Opcions", "textOptions": "Opcions",
"textOrphanControl": "Control de línies Orfes", "textOrphanControl": "Control de línies Orfes",
@ -379,7 +381,22 @@
"leavePageText": "Teniu canvis sense desar. Feu clic a \"Mantingueu-vos en aquesta pàgina\" per esperar al desament automàtic. Feu clic a \"Deixar aquesta pàgina\" per descartar tots els canvis no desats.", "leavePageText": "Teniu canvis sense desar. Feu clic a \"Mantingueu-vos en aquesta pàgina\" per esperar al desament automàtic. Feu clic a \"Deixar aquesta pàgina\" per descartar tots els canvis no desats.",
"notcriticalErrorTitle": "Advertiment", "notcriticalErrorTitle": "Advertiment",
"SDK": { "SDK": {
" -Section ": "-Secció",
"above": "Damunt",
"below": "Sota",
"Caption": "Llegenda",
"Choose an item": "Tria un element",
"Click to load image": "Clicar per carregar la imatge",
"Current Document": "Document Actual",
"Diagram Title": "Títol del Gràfic", "Diagram Title": "Títol del Gràfic",
"endnote text": "Final de Nota de Text",
"Enter a date": "Introduïu una data",
"Error! Bookmark not defined": "Error! Marcador no definit.",
"Error! Main Document Only": "Error! Només Document Principal.",
"Error! No text of specified style in document": "Error! No hi ha cap text de l'estil especificat al document.",
"Error! Not a valid bookmark self-reference": "Error! No és una autoreferència vàlida d'adreces d'interès.",
"Even Page ": "Pàgina parell",
"First Page ": "Primera Pàgina",
"Footer": "Peu de pàgina", "Footer": "Peu de pàgina",
"footnote text": "Text de Nota al Peu de Pàgina", "footnote text": "Text de Nota al Peu de Pàgina",
"Header": "Capçalera", "Header": "Capçalera",
@ -392,17 +409,38 @@
"Heading 7": "Títol 7", "Heading 7": "Títol 7",
"Heading 8": "Títol 8", "Heading 8": "Títol 8",
"Heading 9": "Títol 9", "Heading 9": "Títol 9",
"Hyperlink": "Hiperenllaç",
"Index Too Large": "L'índex és Massa Gran",
"Intense Quote": "Cita Destacada", "Intense Quote": "Cita Destacada",
"Is Not In Table": "No És a la Taula",
"List Paragraph": "Paràgraf de la Llista", "List Paragraph": "Paràgraf de la Llista",
"Missing Argument": "Falta Argument",
"Missing Operator": "Falta Operador",
"No Spacing": "Sense Espai", "No Spacing": "Sense Espai",
"No table of contents entries found": "No hi ha capçaleres en el document. Aplica un estil d'encapçalament al text perquè aparegui a la taula de continguts.",
"No table of figures entries found": "No s'ha trobat cap entrada a la taula de figures.",
"None": "Cap",
"Normal": "Normal", "Normal": "Normal",
"Number Too Large To Format": "Nombre Massa Gran Per Formatar",
"Odd Page ": "Pàgina Sanar.",
"Quote": "Cita", "Quote": "Cita",
"Same as Previous": "Igual al Anterior",
"Series": "Sèrie", "Series": "Sèrie",
"Subtitle": "Subtítol", "Subtitle": "Subtítol",
"Syntax Error": "Error de Sintaxi",
"Table Index Cannot be Zero": "L'índex de la Taula No pot ser Zero",
"Table of Contents": "Taula de Continguts",
"table of figures": "Taula de figures",
"The Formula Not In Table": "La Fórmula No es a la Taula",
"Title": "Nom", "Title": "Nom",
"TOC Heading": "Capçalera de la taula de continguts",
"Type equation here": "Escriu l'equació aquí",
"Undefined Bookmark": "Marcador no definit",
"Unexpected End of Formula": "Final inesperat de la fórmula",
"X Axis": "Eix X XAS", "X Axis": "Eix X XAS",
"Y Axis": "Eix Y", "Y Axis": "Eix Y",
"Your text here": "El seu text aquí" "Your text here": "El seu text aquí",
"Zero Divide": "Divideix per zero"
}, },
"textAnonymous": "Anònim", "textAnonymous": "Anònim",
"textBuyNow": "Visita lloc web", "textBuyNow": "Visita lloc web",
@ -481,7 +519,7 @@
"textMacrosSettings": "Configuració de Macros", "textMacrosSettings": "Configuració de Macros",
"textMargins": "Marges", "textMargins": "Marges",
"textMarginsH": "Els marges superior i inferior són massa alts per a una alçada de pàgina determinada", "textMarginsH": "Els marges superior i inferior són massa alts per a una alçada de pàgina determinada",
"textMarginsW": "Els marges esquerre i dret són massa alts per a una amplada de pàgina donada", "textMarginsW": "Els marges esquerre i dret són massa amplis per a un ample de pàgina determinat",
"textNoCharacters": "Caràcters no Imprimibles", "textNoCharacters": "Caràcters no Imprimibles",
"textNoTextFound": "Text no Trobat", "textNoTextFound": "Text no Trobat",
"textOpenFile": "Introduïu una contrasenya per obrir el fitxer", "textOpenFile": "Introduïu una contrasenya per obrir el fitxer",
@ -506,7 +544,27 @@
"textUnitOfMeasurement": "Unitat de Mesura", "textUnitOfMeasurement": "Unitat de Mesura",
"textUploaded": "Penjat", "textUploaded": "Penjat",
"txtIncorrectPwd": "La contrasenya és incorrecta", "txtIncorrectPwd": "La contrasenya és incorrecta",
"txtProtected": "Una vegada entreu la contrasenya i obriu el fitxer, es restablirà la contrasenya actual" "txtProtected": "Una vegada entreu la contrasenya i obriu el fitxer, es restablirà la contrasenya actual",
"txtScheme1": "Oficina",
"txtScheme10": "Mitjana",
"txtScheme11": "Metro",
"txtScheme12": "Mòdul",
"txtScheme13": "Opulent",
"txtScheme14": "Mirador",
"txtScheme15": "Origen",
"txtScheme16": "Paper",
"txtScheme17": "Solstici",
"txtScheme18": "Tècnic",
"txtScheme19": "Excursió",
"txtScheme2": "Escala de grisos",
"txtScheme22": "Nova Oficina",
"txtScheme3": "Vèrtex",
"txtScheme4": "Aspecte",
"txtScheme5": "Cívic",
"txtScheme6": "Concurs",
"txtScheme7": "Patrimoni net",
"txtScheme8": "Flux",
"txtScheme9": "Fosa"
}, },
"Toolbar": { "Toolbar": {
"dlgLeaveMsgText": "Teniu canvis sense desar. Feu clic a \"Mantingueu-vos en aquesta pàgina\" per esperar al desament automàtic. Feu clic a \"Deixar aquesta pàgina\" per descartar tots els canvis no desats.", "dlgLeaveMsgText": "Teniu canvis sense desar. Feu clic a \"Mantingueu-vos en aquesta pàgina\" per esperar al desament automàtic. Feu clic a \"Deixar aquesta pàgina\" per descartar tots els canvis no desats.",

View file

@ -205,6 +205,7 @@
"textBehind": "Hinten", "textBehind": "Hinten",
"textBorder": "Rahmen", "textBorder": "Rahmen",
"textBringToForeground": "In den Vordergrund bringen", "textBringToForeground": "In den Vordergrund bringen",
"textBullets": "Aufzählungszeichen",
"textBulletsAndNumbers": "Aufzählungszeichen und Nummern", "textBulletsAndNumbers": "Aufzählungszeichen und Nummern",
"textCellMargins": "Zellenränder", "textCellMargins": "Zellenränder",
"textChart": "Diagramm", "textChart": "Diagramm",
@ -250,6 +251,7 @@
"textNone": "Kein(e)", "textNone": "Kein(e)",
"textNoStyles": "Keine Stile für diesen Typ von Diagrammen.", "textNoStyles": "Keine Stile für diesen Typ von Diagrammen.",
"textNotUrl": "Dieser Bereich soll eine URL im Format \"http://www.example.com\" sein.", "textNotUrl": "Dieser Bereich soll eine URL im Format \"http://www.example.com\" sein.",
"textNumbers": "Nummern",
"textOpacity": "Undurchsichtigkeit", "textOpacity": "Undurchsichtigkeit",
"textOptions": "Optionen", "textOptions": "Optionen",
"textOrphanControl": "Absatzkontrolle", "textOrphanControl": "Absatzkontrolle",
@ -379,7 +381,22 @@
"leavePageText": "Sie haben nicht gespeicherte Änderungen. Klicken Sie auf \"Auf dieser Seite bleiben\" und warten Sie, bis die Datei automatisch gespeichert wird. Klicken Sie auf \"Die Seite verlassen\", um nicht gespeicherte Änderungen zu verwerfen.", "leavePageText": "Sie haben nicht gespeicherte Änderungen. Klicken Sie auf \"Auf dieser Seite bleiben\" und warten Sie, bis die Datei automatisch gespeichert wird. Klicken Sie auf \"Die Seite verlassen\", um nicht gespeicherte Änderungen zu verwerfen.",
"notcriticalErrorTitle": "Warnung", "notcriticalErrorTitle": "Warnung",
"SDK": { "SDK": {
" -Section ": "-Abschnitt",
"above": "Oben",
"below": "Unten",
"Caption": "Beschriftung",
"Choose an item": "Wählen Sie ein Element aus",
"Click to load image": "Klicken Sie, um das Bild herunterzuladen",
"Current Document": "Aktuelles Dokument",
"Diagram Title": "Diagrammtitel", "Diagram Title": "Diagrammtitel",
"endnote text": "Endnotentext",
"Enter a date": "Datum einfügen",
"Error! Bookmark not defined": "Fehler! Textmarke nicht definiert.",
"Error! Main Document Only": "Fehler! Nur Hauptdokument.",
"Error! No text of specified style in document": "Fehler! Im Dokument gibt es keinen Text des angegebenen Stils.",
"Error! Not a valid bookmark self-reference": "Fehler! Ungültiger Lesezeichen-Link.",
"Even Page ": "Gerade Seite",
"First Page ": "Erste Seite",
"Footer": "Fußzeile", "Footer": "Fußzeile",
"footnote text": "Fußnotentext", "footnote text": "Fußnotentext",
"Header": "Kopfzeile", "Header": "Kopfzeile",
@ -392,17 +409,38 @@
"Heading 7": "Überschrift 7", "Heading 7": "Überschrift 7",
"Heading 8": "Überschrift 8", "Heading 8": "Überschrift 8",
"Heading 9": "Überschrift 9", "Heading 9": "Überschrift 9",
"Hyperlink": "Hyperlink",
"Index Too Large": "Zu großer Index",
"Intense Quote": "Intensives Zitat", "Intense Quote": "Intensives Zitat",
"Is Not In Table": "Nicht in Tabelle",
"List Paragraph": "Listenabsatz", "List Paragraph": "Listenabsatz",
"Missing Argument": "Fehlendes Argument",
"Missing Operator": "Fehlender Operator",
"No Spacing": "Kein Abstand", "No Spacing": "Kein Abstand",
"No table of contents entries found": "Im Dokument sind keine Überschriften vorhanden. Wenden Sie einen Überschriftenstil auf den Text an, damit er im Inhaltsverzeichnis erscheint.",
"No table of figures entries found": "Es konnten keine Einträge für ein Abbildungsverzeichnis gefunden werden.",
"None": "Kein(e)",
"Normal": "Normal", "Normal": "Normal",
"Number Too Large To Format": "Nummer zu groß zum Formatieren",
"Odd Page ": "Ungerade Seite",
"Quote": "Zitat", "Quote": "Zitat",
"Same as Previous": "Wie vorherige",
"Series": "Reihen", "Series": "Reihen",
"Subtitle": "Untertitel", "Subtitle": "Untertitel",
"Syntax Error": "Syntaxfehler",
"Table Index Cannot be Zero": "Tabellenindex darf nicht Null sein",
"Table of Contents": "Inhaltsverzeichnis",
"table of figures": "Abbildungsverzeichnis",
"The Formula Not In Table": "Die Formel steht nicht in einer Tabelle",
"Title": "Titel", "Title": "Titel",
"TOC Heading": "Inhaltsverzeichnisüberschrift",
"Type equation here": "Gleichung hier eingeben",
"Undefined Bookmark": "Undefiniertes Lesezeichen",
"Unexpected End of Formula": "Unerwartetes Ende der Formel",
"X Axis": "Achse X (XAS)", "X Axis": "Achse X (XAS)",
"Y Axis": "Achse Y", "Y Axis": "Achse Y",
"Your text here": "Text hier eingeben" "Your text here": "Text hier eingeben",
"Zero Divide": "Nullteilung"
}, },
"textAnonymous": "Anonym", "textAnonymous": "Anonym",
"textBuyNow": "Webseite besuchen", "textBuyNow": "Webseite besuchen",
@ -506,7 +544,27 @@
"textUnitOfMeasurement": "Maßeinheit", "textUnitOfMeasurement": "Maßeinheit",
"textUploaded": "Hochgeladen", "textUploaded": "Hochgeladen",
"txtIncorrectPwd": "Passwort ist falsch", "txtIncorrectPwd": "Passwort ist falsch",
"txtProtected": "Wenn Sie das Password eingeben und die Datei öffnen, wird das aktive Password zurückgesetzt" "txtProtected": "Wenn Sie das Password eingeben und die Datei öffnen, wird das aktive Password zurückgesetzt",
"txtScheme1": "Office",
"txtScheme10": "Median",
"txtScheme11": "Metro",
"txtScheme12": "Modul",
"txtScheme13": "Reichhaltig",
"txtScheme14": "Erker",
"txtScheme15": "Herkunft",
"txtScheme16": "Papier",
"txtScheme17": "Sonnenwende",
"txtScheme18": "Technik",
"txtScheme19": "Wanderung",
"txtScheme2": "Graustufe",
"txtScheme22": "Neues Office",
"txtScheme3": "Apex",
"txtScheme4": "Bildseitenverhältnis",
"txtScheme5": "bürgerlich",
"txtScheme6": "Halle",
"txtScheme7": "Kapital",
"txtScheme8": "Fluss",
"txtScheme9": "Gießerei"
}, },
"Toolbar": { "Toolbar": {
"dlgLeaveMsgText": "Sie haben nicht gespeicherte Änderungen. Klicken Sie auf \"Auf dieser Seite bleiben\" und warten Sie, bis die Datei automatisch gespeichert wird. Klicken Sie auf \"Die Seite verlassen\", um nicht gespeicherte Änderungen zu verwerfen.", "dlgLeaveMsgText": "Sie haben nicht gespeicherte Änderungen. Klicken Sie auf \"Auf dieser Seite bleiben\" und warten Sie, bis die Datei automatisch gespeichert wird. Klicken Sie auf \"Die Seite verlassen\", um nicht gespeicherte Änderungen zu verwerfen.",

View file

@ -557,6 +557,8 @@
"txtScheme18": "Technic", "txtScheme18": "Technic",
"txtScheme19": "Trek", "txtScheme19": "Trek",
"txtScheme2": "Grayscale", "txtScheme2": "Grayscale",
"txtScheme20": "Urban",
"txtScheme21": "Verve",
"txtScheme22": "New Office", "txtScheme22": "New Office",
"txtScheme3": "Apex", "txtScheme3": "Apex",
"txtScheme4": "Aspect", "txtScheme4": "Aspect",

View file

@ -1,10 +1,575 @@
{ {
"About": {
"textAbout": "À propos",
"textAddress": "Adresse",
"textBack": "Retour",
"textEmail": "E-mail",
"textPoweredBy": "Réalisation",
"textTel": "Tél.",
"textVersion": "Version"
},
"Add": {
"notcriticalErrorTitle": "Avertissement",
"textAddLink": "Ajouter un lien",
"textAddress": "Adresse",
"textBack": "Retour",
"textBelowText": "Sous le texte",
"textBottomOfPage": "Bas de page",
"textBreak": "Saut",
"textCancel": "Annuler",
"textCenterBottom": "En bas au centre",
"textCenterTop": "En haut au centre",
"textColumnBreak": "Saut de colonne",
"textColumns": "Colonnes",
"textComment": "Commentaire",
"textContinuousPage": "Page continue",
"textCurrentPosition": "Position actuelle",
"textDisplay": "Afficher",
"textEmptyImgUrl": "Spécifiez l'URL de l'image",
"textEvenPage": "Page paire",
"textFootnote": "Note de bas de page",
"textFormat": "Format",
"textImage": "Image",
"textImageURL": "URL d'image",
"textInsert": "Insertion",
"textInsertFootnote": "Insérer une note de bas de page",
"textInsertImage": "Insérer une image",
"textLeftBottom": "À gauche en bas",
"textLeftTop": "À gauche en haut",
"textLink": "Lien",
"textLinkSettings": "Paramètres de lien",
"textLocation": "Emplacement",
"textNextPage": "Page suivante",
"textOddPage": "Page impaire",
"textOther": "Autre",
"textPageBreak": "Saut de page",
"textPageNumber": "Numéro de page",
"textPictureFromLibrary": "Image depuis la bibliothèque",
"textPictureFromURL": "Image depuis URL",
"textPosition": "Position",
"textRightBottom": "À droite en bas",
"textRightTop": "À droite en haut",
"textRows": "Lignes",
"textScreenTip": "Info-bulle",
"textSectionBreak": "Saut de section",
"textShape": "Forme",
"textStartAt": "Commencer par",
"textTable": "Tableau",
"textTableSize": "Taille du tableau",
"txtNotUrl": "Ce champ doit contenir une URL au format \"http://www.example.com\""
},
"Common": { "Common": {
"Collaboration": { "Collaboration": {
"textAddComment": "Ajouter un commentaire" "notcriticalErrorTitle": "Avertissement",
"textAccept": "Accepter",
"textAcceptAllChanges": "Accepter toutes les modifications",
"textAddComment": "Ajouter un commentaire",
"textAddReply": "Ajouter une réponse",
"textAllChangesAcceptedPreview": "Toutes les modifications acceptées (aperçu)",
"textAllChangesEditing": "Toutes les modifications (édition)",
"textAllChangesRejectedPreview": "Toutes les modifications rejetées (Aperçu)",
"textAtLeast": "au moins ",
"textAuto": "Auto",
"textBack": "Retour",
"textBaseline": "Ligne de base",
"textBold": "Gras",
"textBreakBefore": "Saut de page avant",
"textCancel": "Annuler",
"textCaps": "Majuscules",
"textCenter": "Aligner au centre",
"textChart": "Graphique",
"textCollaboration": "Collaboration",
"textColor": "Couleur de police",
"textComments": "Commentaires",
"textContextual": "Ne pas ajouter d'intervalle entre paragraphes du même style",
"textDelete": "Supprimer",
"textDeleteComment": "Supprimer commentaire",
"textDeleted": "Supprimé:",
"textDeleteReply": "Supprimer réponse",
"textDisplayMode": "Mode d'affichage",
"textDone": "Terminé",
"textDStrikeout": "Double-barré",
"textEdit": "Modifier",
"textEditComment": "Modifier le commentaire",
"textEditReply": "Modifier la réponse",
"textEditUser": "Le document est en cours de modification par les utilisateurs suivants:",
"textEquation": "Équation",
"textExact": "exactement",
"textFinal": "Final",
"textFirstLine": "Première ligne",
"textFormatted": "Formaté",
"textHighlight": "Couleur de surlignage",
"textImage": "Image",
"textIndentLeft": "Retrait à gauche",
"textIndentRight": "Retrait à droite",
"textInserted": "Inséré:",
"textItalic": "Italique",
"textJustify": "Justifier ",
"textKeepLines": "Lignes solidaires",
"textKeepNext": "Paragraphes solidaires",
"textLeft": "Aligner à gauche",
"textLineSpacing": "Interligne:",
"textMarkup": "Balisage",
"textMessageDeleteComment": "Voulez-vous vraiment supprimer ce commentaire?",
"textMessageDeleteReply": "Voulez-vous vraiment supprimer cette réponse?",
"textMultiple": "multiple ",
"textNoBreakBefore": "Pas de saut de page avant",
"textNoChanges": "Aucune modification",
"textNoComments": "Il n'y a pas de commentaires dans ce document",
"textNoContextual": "Ajouter un intervalle entre les paragraphes du même style",
"textNoKeepLines": "Ne gardez pas de lignes ensemble",
"textNoKeepNext": "Ne gardez pas avec la prochaine",
"textNot": "Non",
"textNoWidow": "Pas de contrôle des veuves",
"textNum": "Changer la numérotation",
"textOriginal": "Original",
"textParaDeleted": "Paragraphe supprimé",
"textParaFormatted": "Paragraphe formaté",
"textParaInserted": "Paragraphe inséré",
"textParaMoveFromDown": "Déplacé vers le bas:",
"textParaMoveFromUp": "Déplacé vers le haut:",
"textParaMoveTo": "Déplacé:",
"textPosition": "Position",
"textReject": "Rejeter",
"textRejectAllChanges": "Rejeter toutes les modifications",
"textReopen": "Rouvrir",
"textResolve": "Résoudre",
"textReview": "Révision",
"textReviewChange": "Réviser modifications",
"textRight": "Aligner à droite",
"textShape": "Forme",
"textShd": "Couleur d'arrière-plan",
"textSmallCaps": "Petites majuscules",
"textSpacing": "Espacement",
"textSpacingAfter": "Espacement après",
"textSpacingBefore": "Espacement avant",
"textStrikeout": "Barré",
"textSubScript": "Indice",
"textSuperScript": "Exposant",
"textTableChanged": "Paramètres du tableau modifiés",
"textTableRowsAdd": "Les lignes sont ajoutées au tableau",
"textTableRowsDel": "Les lignes du tableau sont supprimées",
"textTabs": "Changer les tabulations",
"textTrackChanges": "Suivi des modifications",
"textTryUndoRedo": "Les fonctions Annuler/Rétablir sont désactivées pour le mode de co-édition rapide.",
"textUnderline": "Souligné",
"textUsers": "Utilisateurs",
"textWidow": "Contrôle des veuves"
},
"ThemeColorPalette": {
"textCustomColors": "Couleurs personnalisées",
"textStandartColors": "Couleurs standard",
"textThemeColors": "Couleurs de thème"
} }
}, },
"ContextMenu": {
"errorCopyCutPaste": "Actions de copie, de coupe et de collage du menu contextuel seront appliquées seulement dans le fichier actuel.",
"menuAddComment": "Ajouter un commentaire",
"menuAddLink": "Ajouter un lien",
"menuCancel": "Annuler",
"menuDelete": "Supprimer",
"menuDeleteTable": "Supprimer le tableau",
"menuEdit": "Modifier",
"menuMerge": "Fusionner",
"menuMore": "Plus",
"menuOpenLink": "Ouvrir le lien",
"menuReview": "Révision",
"menuReviewChange": "Réviser modifications",
"menuSplit": "Fractionner",
"menuViewComment": "Voir le commentaire",
"textColumns": "Colonnes",
"textCopyCutPasteActions": "Fonctions de Copier, Couper et Coller",
"textDoNotShowAgain": "Ne plus afficher",
"textRows": "Lignes"
},
"Edit": {
"notcriticalErrorTitle": "Avertissement",
"textActualSize": "Taille réelle",
"textAddCustomColor": "Ajouter une couleur personnalisée",
"textAdditional": "Supplémentaire",
"textAdditionalFormatting": "Mise en forme supplémentaire",
"textAddress": "Adresse",
"textAdvanced": "Avancé",
"textAdvancedSettings": "Paramètres avancés",
"textAfter": "Après",
"textAlign": "Aligner",
"textAllCaps": "Majuscules",
"textAllowOverlap": "Autoriser le chevauchement",
"textAuto": "Auto",
"textAutomatic": "Automatique",
"textBack": "Retour",
"textBackground": "Arrière-plan",
"textBandedColumn": "Colonne à bandes",
"textBandedRow": "Ligne à bandes",
"textBefore": "Avant",
"textBehind": "Derrière",
"textBorder": "Bordure",
"textBringToForeground": "Mettre au premier plan",
"textBullets": "Puces",
"textBulletsAndNumbers": "Puces et numérotation",
"textCellMargins": "Marges de la cellule",
"textChart": "Graphique",
"textClose": "Fermer",
"textColor": "Couleur",
"textContinueFromPreviousSection": "Continuer à partir de la section précédente",
"textCustomColor": "Couleur personnalisée",
"textDifferentFirstPage": "Première page différente",
"textDifferentOddAndEvenPages": "Pages paires et impaires différentes",
"textDisplay": "Afficher",
"textDistanceFromText": "Distance du texte",
"textDoubleStrikethrough": "Barré double",
"textEditLink": "Modifier le lien",
"textEffects": "Effets",
"textEmptyImgUrl": "Spécifiez l'URL de l'image",
"textFill": "Remplissage",
"textFirstColumn": "Première colonne",
"textFirstLine": "Première ligne",
"textFlow": "Flux",
"textFontColor": "Couleur de police",
"textFontColors": "Couleurs de police",
"textFonts": "Polices",
"textFooter": "Pied de page",
"textHeader": "En-tête",
"textHeaderRow": "Ligne den-tête",
"textHighlightColor": "Couleur de surlignage",
"textHyperlink": "Lien hypertexte",
"textImage": "Image",
"textImageURL": "URL d'image",
"textInFront": "Devant",
"textInline": "En ligne",
"textKeepLinesTogether": "Lignes solidaires",
"textKeepWithNext": "Paragraphes solidaires",
"textLastColumn": "Dernière colonne",
"textLetterSpacing": "Espacement entre les lettres",
"textLineSpacing": "Interligne",
"textLink": "Lien",
"textLinkSettings": "Paramètres de lien",
"textLinkToPrevious": "Lier au précédent",
"textMoveBackward": "Déplacer vers l'arrière",
"textMoveForward": "Avancer",
"textMoveWithText": "Déplacer avec le texte",
"textNone": "Aucun",
"textNoStyles": "Aucun style pour ce type de graphique.",
"textNotUrl": "Ce champ doit contenir une URL au format \"http://www.example.com\"",
"textNumbers": "Numérotation",
"textOpacity": "Opacité",
"textOptions": "Options",
"textOrphanControl": "Éviter orphelines",
"textPageBreakBefore": "Saut de page avant",
"textPageNumbering": "Numérotation des pages",
"textParagraph": "Paragraphe",
"textParagraphStyles": "Styles de paragraphe",
"textPictureFromLibrary": "Image depuis la bibliothèque",
"textPictureFromURL": "Image depuis URL",
"textPt": "pt",
"textRemoveChart": "Supprimer le graphique",
"textRemoveImage": "Supprimer l'image",
"textRemoveLink": "Supprimer le lien",
"textRemoveShape": "Supprimer la forme",
"textRemoveTable": "Supprimer le tableau",
"textReorder": "Réorganiser",
"textRepeatAsHeaderRow": "Répéter la ligne d'en-tête",
"textReplace": "Remplacer",
"textReplaceImage": "Remplacer limage",
"textResizeToFitContent": "Redimensionner pour adapter au contenu",
"textScreenTip": "Info-bulle",
"textSelectObjectToEdit": "Sélectionnez l'objet à modifier",
"textSendToBackground": "Mettre en arrière-plan",
"textSettings": "Paramètres",
"textShape": "Forme",
"textSize": "Taille",
"textSmallCaps": "Petites majuscules",
"textSpaceBetweenParagraphs": "Espace entre les paragraphes",
"textSquare": "Carré",
"textStartAt": "Commencer par",
"textStrikethrough": "Barré",
"textStyle": "Style",
"textStyleOptions": "Options de style",
"textSubscript": "Indice",
"textSuperscript": "Exposant",
"textTable": "Tableau",
"textTableOptions": "Options du tableau",
"textText": "Texte",
"textThrough": "Au travers",
"textTight": "Rapproché",
"textTopAndBottom": "Haut et bas",
"textTotalRow": "Ligne de total",
"textType": "Type",
"textWrap": "Renvoi à la ligne"
},
"Error": {
"convertationTimeoutText": "Délai de conversion expiré.",
"criticalErrorExtText": "Appuyez sur OK pour revenir à la liste de documents",
"criticalErrorTitle": "Erreur",
"downloadErrorText": "Téléchargement echoué.",
"errorAccessDeny": "Vous tentez d'exéсuter une action pour laquelle vous ne disposez pas des droits.<br>Veuillez contacter votre administrateur.",
"errorBadImageUrl": "L'URL de l'image est incorrecte",
"errorConnectToServer": "Impossible d'enregistrer ce document. Veuillez vérifier vos paramètres de connexion ou contactez l'administrateur.<br>Lorsque vous cliquez sur le bouton OK, vous serez invité à télécharger le document.",
"errorDatabaseConnection": "Erreur externe.<br>Erreur de connexion à la base de données. Contactez le support.",
"errorDataEncrypted": "Les modifications chiffrées ont été reçues, mais ne peuvent pas être déchiffrées.",
"errorDataRange": "Plage de données incorrecte.",
"errorDefaultMessage": "Code d'erreur: %1",
"errorEditingDownloadas": "Une erreure s'est produite lors du travail avec le document.<br>Téléchargez le document pour enregistrer une copie locale de sauvegarde du fichier.",
"errorFilePassProtect": "Le fichier est protégé par le mot de passe et ne peut être ouvert.",
"errorFileSizeExceed": "La taille du fichier dépasse les limites établies sur votre serveur.<br>Veuillez contacter votre administrateur. ",
"errorKeyEncrypt": "Descripteur de clé inconnu",
"errorKeyExpire": "Descripteur de clés expiré",
"errorMailMergeLoadFile": "Échec du chargement",
"errorMailMergeSaveFile": "Fusion a échoué.",
"errorSessionAbsolute": "Votre session a expiré. Veuillez recharger la page.",
"errorSessionIdle": "Le document n'a pas été modifié depuis trop longtemps. Veuillez recharger la page.",
"errorSessionToken": "La connexion au serveur a été interrompue. Veuillez recharger la page.",
"errorStockChart": "Ordre des lignes est incorrect. Pour créer un graphique boursier organisez vos données sur la feuille de calcul dans l'ordre suivant:<br>cours à l'ouverture, cours maximal, cours minimal, cours à la clôture.",
"errorUpdateVersionOnDisconnect": "La connexion internet a été rétablie, la version du fichier est modifiée.<br>Avant de continuer, téléchargez le fichier ou copiez le contenu pour vous assurer que tous les changements ont été enregistrés. Rechargez la page.",
"errorUserDrop": "Le fichier ne peut pas être accédé tout de suite.",
"errorUsersExceed": "Le nombre d'utilisateurs autorisés par le plan tarifaire a été dépassé",
"errorViewerDisconnect": "La connexion a été perdue. Vous pouvez toujours afficher le document,<br>mais ne pouvez pas le télécharger jusqu'à ce que la connexion soit rétablie et que la page soit rafraichit.",
"notcriticalErrorTitle": "Avertissement",
"openErrorText": "Une erreur sest produite lors de l'ouverture du fichier",
"saveErrorText": "Une erreur s'est produite lors de l'enregistrement du fichier",
"scriptLoadError": "La connexion est trop lente, certains éléments ne peuvent pas être chargés. Veuillez recharger la page.",
"splitDividerErrorText": "Le nombre de lignes doit être un diviseur de %1",
"splitMaxColsErrorText": "Le nombre de colonnes doit être moins que %1",
"splitMaxRowsErrorText": "Le nombre de lignes doit être moins que %1",
"unknownErrorText": "Erreur inconnue.",
"uploadImageExtMessage": "Format d'image inconnu.",
"uploadImageFileCountMessage": "Aucune image chargée.",
"uploadImageSizeMessage": "L'image est trop grande. La taille limite est de 25 Mo."
},
"LongActions": {
"applyChangesTextText": "Chargement des données en cours...",
"applyChangesTitleText": "Chargement des données",
"downloadMergeText": "Téléchargement en cours...",
"downloadMergeTitle": "Téléchargement en cours",
"downloadTextText": "Téléchargement du document...",
"downloadTitleText": "Téléchargement du document",
"loadFontsTextText": "Chargement des données en cours...",
"loadFontsTitleText": "Chargement des données",
"loadFontTextText": "Chargement des données en cours...",
"loadFontTitleText": "Chargement des données",
"loadImagesTextText": "Chargement des images en cours...",
"loadImagesTitleText": "Chargement des images",
"loadImageTextText": "Chargement d'une image en cours...",
"loadImageTitleText": "Chargement d'une image",
"loadingDocumentTextText": "Chargement du document...",
"loadingDocumentTitleText": "Chargement du document",
"mailMergeLoadFileText": "Chargement de la source des données...",
"mailMergeLoadFileTitle": "Chargement de la source des données",
"openTextText": "Ouverture du document...",
"openTitleText": "Ouverture document",
"printTextText": "Impression du document en cours...",
"printTitleText": "Impression du document",
"savePreparingText": "Préparation à l'enregistrement ",
"savePreparingTitle": "Préparation à l'enregistrement en cours. Veuillez patienter...",
"saveTextText": "Enregistrement document en cours...",
"saveTitleText": "Enregistrement du document",
"sendMergeText": "Envoie du résultat de la fusion...",
"sendMergeTitle": "Envoie du résultat de la fusion",
"textLoadingDocument": "Chargement du document",
"txtEditingMode": "Réglage mode d'édition...",
"uploadImageTextText": "Chargement d'une image en cours...",
"uploadImageTitleText": "Chargement d'une image",
"waitText": "Veuillez patienter..."
},
"Main": {
"criticalErrorTitle": "Erreur",
"errorAccessDeny": "Vous tentez d'exéсuter une action pour laquelle vous ne disposez pas des droits.<br>Veuillez contacter votre administrateur.",
"errorOpensource": "Sous version gratuite Community, le document est disponible en lecture seule. Pour accéder aux éditeurs mobiles web vous avez besoin d'une licence payante.",
"errorProcessSaveResult": "Échec de l'enregistrement",
"errorServerVersion": "La version de l'éditeur a été mise à jour. La page sera rechargée pour appliquer les modifications.",
"errorUpdateVersion": "La version du fichier a été changée. La page sera rechargée.",
"leavePageText": "Vous avez des modifications non enregistrées dans ce document. Cliquez sur Rester sur cette page et attendez l'enregistrement automatique. Cliquez sur Quitter cette page pour annuler toutes les modifications non enregistrées.",
"notcriticalErrorTitle": "Avertissement",
"SDK": {
" -Section ": "- Section",
"above": "au-dessus",
"below": "en dessous",
"Caption": "Légende",
"Choose an item": "Choisir un élément",
"Click to load image": "Cliquez pour charger une image",
"Current Document": "Document actuel",
"Diagram Title": "Titre du graphique",
"endnote text": "Texte de note de fin",
"Enter a date": "Entrer une date",
"Error! Bookmark not defined": "Erreur! Marque-page non défini.",
"Error! Main Document Only": "Erreur ! Document principal seulement.",
"Error! No text of specified style in document": "Erreur ! Il n'y a pas de texte répondant à ce style dans ce document.",
"Error! Not a valid bookmark self-reference": "Erreur ! Référence non valide pour un signet.",
"Even Page ": "Page paire",
"First Page ": "Première Page",
"Footer": "Pied de page",
"footnote text": "Texte de la note de bas de page",
"Header": "En-tête",
"Heading 1": "Titre 1",
"Heading 2": "Titre 2",
"Heading 3": "Titre 3",
"Heading 4": "Titre 4",
"Heading 5": "Titre 5",
"Heading 6": "Titre 6",
"Heading 7": "Titre 7",
"Heading 8": "Titre 8",
"Heading 9": "Titre 9",
"Hyperlink": "Lien hypertexte",
"Index Too Large": "Index trop long",
"Intense Quote": "Citation intense",
"Is Not In Table": "N'est pas dans le tableau",
"List Paragraph": "Paragraphe de liste",
"Missing Argument": "Argument manquant",
"Missing Operator": "Operateur manquant",
"No Spacing": "Pas d'espacement",
"No table of contents entries found": "Aucun titre dans le document. L'application d'un style de titre sur une sélection de texte permettra l'affichage dans la table des matières.",
"No table of figures entries found": "Aucune entrée de table d'illustration n'a été trouvée.",
"None": "Aucun",
"Normal": "Normal",
"Number Too Large To Format": "Nom Trop Grand Pour Formater",
"Odd Page ": "Page impaire",
"Quote": "Citation",
"Same as Previous": "Identique au précédent",
"Series": "Série",
"Subtitle": "Sous-titre",
"Syntax Error": "Erreur de Syntaxe",
"Table Index Cannot be Zero": "Index d'un tableau ne peut pas être zero",
"Table of Contents": "Table des matières",
"table of figures": "Table des figures",
"The Formula Not In Table": "La formule n'est pas dans le tableau",
"Title": "Titre",
"TOC Heading": "En-tête de table des matières",
"Type equation here": "Saisissez l'équation ici",
"Undefined Bookmark": "Signet indéterminé ",
"Unexpected End of Formula": "Fin de formule inattendue",
"X Axis": "Axe X (XAS)",
"Y Axis": "Axe Y",
"Your text here": "Votre texte ici",
"Zero Divide": "Division par Zéro"
},
"textAnonymous": "Anonyme",
"textBuyNow": "Visiter le site web",
"textClose": "Fermer",
"textContactUs": "Contacter l'équipe de ventes",
"textCustomLoader": "Désolé, vous n'êtes pas autorisé à changer le chargeur. Veuillez contacter notre Service de Ventes pour obtenir le devis.",
"textGuest": "Invité",
"textHasMacros": "Le fichier contient des macros automatiques.<br>Voulez-vous exécuter les macros?",
"textNo": "Non",
"textNoLicenseTitle": "La limite de la licence est atteinte",
"textPaidFeature": "Fonction payante",
"textRemember": "Se souvenir de mon choix",
"textYes": "Oui",
"titleLicenseExp": "Licence expirée",
"titleServerVersion": "L'éditeur est mis à jour",
"titleUpdateVersion": "La version a été modifiée",
"warnLicenseExceeded": "Vous avez dépassé le nombre maximal de connexions simultanées aux éditeurs %1. Ce document sera ouvert en lecture seule. Pour en savoir plus, contactez votre administrateur.",
"warnLicenseExp": "Votre licence a expiré. Veuillez mettre à jour votre licence et actualisez la page.",
"warnLicenseLimitedNoAccess": "La licence est expirée. Vous n'avez plus d'accès aux outils d'édition. Veuillez contacter votre administrateur.",
"warnLicenseLimitedRenewed": "Il est indispensable de renouveler la licence. Vous avez un accès limité aux outils d'édition des documents.<br>Veuillez contacter votre administrateur pour obtenir un accès complet",
"warnLicenseUsersExceeded": "Vous avez dépassé le nombre maximal dutilisateurs des éditeurs %1. Pour en savoir plus, contactez votre administrateur.",
"warnNoLicense": "Vous avez dépassé le nombre maximal de connexions simultanées aux éditeurs %1. Ce document sera ouvert en lecture seule. Contactez léquipe des ventes %1 pour mettre à jour les termes de la licence.",
"warnNoLicenseUsers": "Vous avez dépassé le nombre maximal dutilisateurs des éditeurs %1. Contactez léquipe des ventes %1 pour mettre à jour les termes de la licence.",
"warnProcessRightsChange": "Vous n'avez pas la permission de modifier ce fichier."
},
"Settings": { "Settings": {
"textAbout": "A propos" "advDRMOptions": "Fichier protégé",
"advDRMPassword": "Mot de passe",
"advTxtOptions": "Choisir les options TXT",
"closeButtonText": "Fermer le fichier",
"notcriticalErrorTitle": "Avertissement",
"textAbout": "À propos",
"textApplication": "Application",
"textApplicationSettings": "Paramètres de l'application",
"textAuthor": "Auteur",
"textBack": "Retour",
"textBottom": "En bas",
"textCancel": "Annuler",
"textCaseSensitive": "Sensible à la casse",
"textCentimeter": "Centimètre",
"textCollaboration": "Collaboration",
"textColorSchemes": "Jeux de couleurs",
"textComment": "Commentaire",
"textComments": "Commentaires",
"textCommentsDisplay": "Affichage des commentaires ",
"textCreated": "Créé",
"textCustomSize": "Taille personnalisée",
"textDisableAll": "Désactiver tout",
"textDisableAllMacrosWithNotification": "Désactiver toutes les macros avec notification",
"textDisableAllMacrosWithoutNotification": "Désactiver toutes les macros sans notification",
"textDocumentInfo": "Descriptif du document",
"textDocumentSettings": "Paramètres du document",
"textDocumentTitle": "Titre du document",
"textDone": "Terminé",
"textDownload": "Télécharger",
"textDownloadAs": "Télécharger comme",
"textDownloadRtf": "Si vous continuer à sauvegarder dans ce format une partie de la mise en forme peut être supprimée. Êtes-vous sûr de vouloir continuer?",
"textDownloadTxt": "Si vous continuez à enregistrer dans ce format toutes les fonctions sauf le texte seront perdues. Êtes-vous sûr de vouloir continuer?",
"textEnableAll": "Activer tout",
"textEnableAllMacrosWithoutNotification": "Activer toutes les macros sans notification",
"textEncoding": "Codage ",
"textFind": "Rechercher",
"textFindAndReplace": "Rechercher et remplacer",
"textFindAndReplaceAll": "Rechercher et remplacer tout",
"textFormat": "Format",
"textHelp": "Aide",
"textHiddenTableBorders": "Bordures du tableau cachées",
"textHighlightResults": "Surligner les résultats",
"textInch": "Pouce",
"textLandscape": "Paysage",
"textLastModified": "Dernière modification",
"textLastModifiedBy": "Dernière modification par",
"textLeft": "À gauche",
"textLoading": "Chargement en cours...",
"textLocation": "Emplacement",
"textMacrosSettings": "Réglages macros",
"textMargins": "Marges",
"textMarginsH": "Les marges supérieure et inférieure sont trop élevés pour une hauteur de page donnée",
"textMarginsW": "Les marges gauche et droite sont trop larges pour une largeur de page donnée",
"textNoCharacters": "Caractères non imprimables",
"textNoTextFound": "Le texte est introuvable",
"textOpenFile": "Entrer le mot de passe pour ouvrir le fichier",
"textOrientation": "Orientation",
"textOwner": "Propriétaire",
"textPoint": "Point",
"textPortrait": "Portrait",
"textPrint": "Imprimer",
"textReaderMode": "Mode de lecture",
"textReplace": "Remplacer",
"textReplaceAll": "Remplacer tout",
"textResolvedComments": "Commentaires résolus",
"textRight": "À droite",
"textSearch": "Recherche",
"textSettings": "Paramètres",
"textShowNotification": "Montrer la notification",
"textSpellcheck": "Vérification de l'orthographe",
"textStatistic": "Statistique",
"textSubject": "Sujet",
"textTitle": "Titre",
"textTop": "En haut",
"textUnitOfMeasurement": "Unité de mesure",
"textUploaded": "Chargé",
"txtIncorrectPwd": "Mot de passe incorrect",
"txtProtected": "Une fois le mot de passe saisi et le fichier ouvert, le mot de passe actuel de fichier sera réinitialisé",
"txtScheme1": "Office",
"txtScheme10": "Médian",
"txtScheme11": "Métro",
"txtScheme12": "Module",
"txtScheme13": "Opulent",
"txtScheme14": "Oriel",
"txtScheme15": "Origine",
"txtScheme16": "Papier",
"txtScheme17": "Solstice",
"txtScheme18": "Technique",
"txtScheme19": "Promenade",
"txtScheme2": "Nuances de gris",
"txtScheme22": "New Office",
"txtScheme3": "Apex",
"txtScheme4": "Aspect",
"txtScheme5": "Civique",
"txtScheme6": "Rotonde",
"txtScheme7": "Capitaux",
"txtScheme8": "Flux",
"txtScheme9": "Fonderie"
},
"Toolbar": {
"dlgLeaveMsgText": "Vous avez des modifications non enregistrées dans ce document. Cliquez sur Rester sur cette page et attendez l'enregistrement automatique. Cliquez sur Quitter cette page pour annuler toutes les modifications non enregistrées.",
"dlgLeaveTitleText": "Vous quittez l'application",
"leaveButtonText": "Quitter cette page",
"stayButtonText": "Rester sur cette page"
} }
} }

File diff suppressed because it is too large Load diff

View file

@ -1,5 +1,122 @@
{ {
"About": {
"textAbout": "Sobre",
"textAddress": "Endereço",
"textBack": "Voltar"
},
"Add": {
"textAddLink": "Adicionar Link",
"textAddress": "Endereço",
"textBack": "Voltar",
"textBelowText": "Abaixo do texto",
"textBottomOfPage": "Fim da página",
"textBreak": "Pausa",
"textCancel": "Cancelar",
"textColumnBreak": "Quebra de Coluna",
"textColumns": "Colunas",
"textComment": "Comente"
},
"Common": {
"Collaboration": {
"textAccept": "Aceitar",
"textAcceptAllChanges": "Aceitar todas as alterações",
"textAddComment": "Adicionar comentário",
"textAddReply": "Adicionar resposta",
"textAllChangesAcceptedPreview": "Todas as alterações aceitas (Visualizar)",
"textAllChangesEditing": "Todas as alterações (Edição)",
"textAllChangesRejectedPreview": "Todas as alterações rejeitadas (Visualizar)",
"textAtLeast": "Pelo menos",
"textAuto": "Automático",
"textBack": "Voltar",
"textBaseline": "Baseline",
"textBold": "Negrito",
"textCancel": "Cancelar",
"textCaps": "Todas maiúsculas",
"textCenter": "Alinhar ao centro",
"textChart": "Gráfico",
"textCollaboration": "Colaboração",
"textComments": "Comentários",
"textJustify": "Alinhamento justificado",
"textLeft": "Alinhar à esquerda",
"textNoContextual": "Adicionar intervalo entre parágrafos do mesmo estilo",
"textNum": "Alterar numeração",
"textRight": "Alinhar à direita",
"textShd": "Cor do plano de fundo",
"textTabs": "Alterar guias"
}
},
"ContextMenu": {
"menuAddComment": "Adicionar comentário",
"menuAddLink": "Adicionar Link",
"menuCancel": "Cancelar",
"textColumns": "Colunas"
},
"Edit": {
"textActualSize": "Tamanho atual",
"textAddCustomColor": "Adicionar Cor Personalizada",
"textAdditional": "Adicional",
"textAdditionalFormatting": "Formatação adicional",
"textAddress": "Endereço",
"textAdvanced": "Avançado",
"textAdvancedSettings": "Configurações avançadas",
"textAfter": "Depois",
"textAlign": "Alinhar",
"textAllCaps": "Todas maiúsculas",
"textAllowOverlap": "Permitir sobreposição",
"textAuto": "Automático",
"textAutomatic": "Automático",
"textBack": "Voltar",
"textBackground": "Plano de fundo",
"textBandedColumn": "Coluna em faixa",
"textBandedRow": "Linha de Faixa",
"textBefore": "Antes",
"textBehind": "Atrás",
"textBorder": "Borda",
"textBringToForeground": "Trazer para primeiro plano",
"textBullets": "Marcadores",
"textBulletsAndNumbers": "Marcadores e Numerações",
"textCellMargins": "Margens da célula",
"textChart": "Gráfico",
"textClose": "Fechar",
"textColor": "Cor"
},
"Error": {
"errorConnectToServer": "Não é possível salvar este documento. Verifique suas configurações de conexão ou entre em contato com o administrador. <br> Ao clicar em OK, você será solicitado a baixar o documento.",
"errorEditingDownloadas": "Ocorreu um erro durante o trabalho com o documento. <br> Baixe o documento para salvar a cópia de backup do arquivo localmente.",
"openErrorText": "Ocorreu um erro ao abrir o arquivo",
"saveErrorText": "Ocorreu um erro ao salvar o arquivo"
},
"Main": {
"SDK": {
" -Section ": "-Seção",
"above": "Acima",
"below": "Abaixo",
"Caption": "Legenda",
"Choose an item": "Escolha um item",
"Diagram Title": "Título do Gráfico"
},
"textAnonymous": "Anônimo",
"textClose": "Fechar"
},
"Settings": { "Settings": {
"textAbout": "Sobre" "closeButtonText": "Fechar Arquivo",
"textAbout": "Sobre",
"textApplication": "Aplicativo",
"textApplicationSettings": "Configurações de Aplicativo",
"textAuthor": "Autor",
"textBack": "Voltar",
"textBottom": "Inferior",
"textCancel": "Cancelar",
"textCaseSensitive": "Maiúsculas e Minúsculas",
"textCentimeter": "Centímetro",
"textCollaboration": "Colaboração",
"textColorSchemes": "Esquemas de cor",
"textComment": "Comente",
"textComments": "Comentários",
"textCommentsDisplay": "Tela de comentários",
"textCreated": "Criado",
"txtScheme3": "Ápice",
"txtScheme4": "Aspecto",
"txtScheme6": "Concurso"
} }
} }

File diff suppressed because it is too large Load diff

View file

@ -205,6 +205,7 @@
"textBehind": "За текстом", "textBehind": "За текстом",
"textBorder": "Граница", "textBorder": "Граница",
"textBringToForeground": "Перенести на передний план", "textBringToForeground": "Перенести на передний план",
"textBullets": "Маркеры",
"textBulletsAndNumbers": "Маркеры и нумерация", "textBulletsAndNumbers": "Маркеры и нумерация",
"textCellMargins": "Поля ячейки", "textCellMargins": "Поля ячейки",
"textChart": "Диаграмма", "textChart": "Диаграмма",
@ -250,6 +251,7 @@
"textNone": "Нет", "textNone": "Нет",
"textNoStyles": "Для этого типа диаграмм нет стилей.", "textNoStyles": "Для этого типа диаграмм нет стилей.",
"textNotUrl": "Это поле должно быть URL-адресом в формате \"http://www.example.com\"", "textNotUrl": "Это поле должно быть URL-адресом в формате \"http://www.example.com\"",
"textNumbers": "Нумерация",
"textOpacity": "Прозрачность", "textOpacity": "Прозрачность",
"textOptions": "Параметры", "textOptions": "Параметры",
"textOrphanControl": "Запрет висячих строк", "textOrphanControl": "Запрет висячих строк",
@ -379,7 +381,22 @@
"leavePageText": "В документе есть несохраненные изменения. Нажмите 'Остаться на странице', чтобы дождаться автосохранения. Нажмите 'Уйти со страницы', чтобы сбросить все несохраненные изменения.", "leavePageText": "В документе есть несохраненные изменения. Нажмите 'Остаться на странице', чтобы дождаться автосохранения. Нажмите 'Уйти со страницы', чтобы сбросить все несохраненные изменения.",
"notcriticalErrorTitle": "Внимание", "notcriticalErrorTitle": "Внимание",
"SDK": { "SDK": {
" -Section ": "-Раздел",
"above": "выше",
"below": "ниже",
"Caption": "Название",
"Choose an item": "Выберите элемент",
"Click to load image": "Нажмите для загрузки изображения",
"Current Document": "Текущий документ",
"Diagram Title": "Заголовок диаграммы", "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": "Нижний колонтитул", "Footer": "Нижний колонтитул",
"footnote text": "Текст сноски", "footnote text": "Текст сноски",
"Header": "Верхний колонтитул", "Header": "Верхний колонтитул",
@ -392,17 +409,38 @@
"Heading 7": "Заголовок 7", "Heading 7": "Заголовок 7",
"Heading 8": "Заголовок 8", "Heading 8": "Заголовок 8",
"Heading 9": "Заголовок 9", "Heading 9": "Заголовок 9",
"Hyperlink": "Ссылка",
"Index Too Large": "Индекс слишком большой",
"Intense Quote": "Выделенная цитата", "Intense Quote": "Выделенная цитата",
"Is Not In Table": "Не в таблице",
"List Paragraph": "Абзац списка", "List Paragraph": "Абзац списка",
"Missing Argument": "Отсутствует аргумент",
"Missing Operator": "Отсутствует оператор",
"No Spacing": "Без интервала", "No Spacing": "Без интервала",
"No table of contents entries found": "В документе нет заголовков. Примените стиль заголовка к тексту, чтобы он появился в оглавлении.",
"No table of figures entries found": "Элементы списка иллюстраций не найдены.",
"None": "Нет",
"Normal": "Обычный", "Normal": "Обычный",
"Number Too Large To Format": "Число слишком большое для форматирования",
"Odd Page ": "Нечетная страница",
"Quote": "Цитата", "Quote": "Цитата",
"Same as Previous": "Как в предыдущем",
"Series": "Ряд", "Series": "Ряд",
"Subtitle": "Подзаголовок", "Subtitle": "Подзаголовок",
"Syntax Error": "Синтаксическая ошибка",
"Table Index Cannot be Zero": "Индекс таблицы не может быть нулевым",
"Table of Contents": "Оглавление",
"table of figures": "Список иллюстраций",
"The Formula Not In Table": "Формула не в таблице",
"Title": "Название", "Title": "Название",
"TOC Heading": "Заголовок оглавления",
"Type equation here": "Введите здесь уравнение",
"Undefined Bookmark": "Закладка не определена",
"Unexpected End of Formula": "Непредвиденное завершение формулы",
"X Axis": "Ось X (XAS)", "X Axis": "Ось X (XAS)",
"Y Axis": "Ось Y", "Y Axis": "Ось Y",
"Your text here": "Введите ваш текст" "Your text here": "Введите ваш текст",
"Zero Divide": "Деление на ноль"
}, },
"textAnonymous": "Анонимный пользователь", "textAnonymous": "Анонимный пользователь",
"textBuyNow": "Перейти на сайт", "textBuyNow": "Перейти на сайт",
@ -481,7 +519,7 @@
"textMacrosSettings": "Настройки макросов", "textMacrosSettings": "Настройки макросов",
"textMargins": "Поля", "textMargins": "Поля",
"textMarginsH": "Верхнее и нижнее поля слишком высокие для заданной высоты страницы", "textMarginsH": "Верхнее и нижнее поля слишком высокие для заданной высоты страницы",
"textMarginsW": "Левое и правое поля слишком высокие для заданной высоты страницы", "textMarginsW": "Левое и правое поля слишком широкие для заданной ширины страницы",
"textNoCharacters": "Непечатаемые символы", "textNoCharacters": "Непечатаемые символы",
"textNoTextFound": "Текст не найден", "textNoTextFound": "Текст не найден",
"textOpenFile": "Введите пароль для открытия файла", "textOpenFile": "Введите пароль для открытия файла",
@ -506,7 +544,27 @@
"textUnitOfMeasurement": "Единица измерения", "textUnitOfMeasurement": "Единица измерения",
"textUploaded": "Загружен", "textUploaded": "Загружен",
"txtIncorrectPwd": "Неверный пароль", "txtIncorrectPwd": "Неверный пароль",
"txtProtected": "Как только вы введете пароль и откроете файл, текущий пароль к файлу будет сброшен" "txtProtected": "Как только вы введете пароль и откроете файл, текущий пароль к файлу будет сброшен",
"txtScheme1": "Стандартная",
"txtScheme10": "Обычная",
"txtScheme11": "Метро",
"txtScheme12": "Модульная",
"txtScheme13": "Изящная",
"txtScheme14": "Эркер",
"txtScheme15": "Начальная",
"txtScheme16": "Бумажная",
"txtScheme17": "Солнцестояние",
"txtScheme18": "Техническая",
"txtScheme19": "Трек",
"txtScheme2": "Оттенки серого",
"txtScheme22": "Новая офисная",
"txtScheme3": "Апекс",
"txtScheme4": "Аспект",
"txtScheme5": "Официальная",
"txtScheme6": "Открытая",
"txtScheme7": "Справедливость",
"txtScheme8": "Поток",
"txtScheme9": "Литейная"
}, },
"Toolbar": { "Toolbar": {
"dlgLeaveMsgText": "В документе есть несохраненные изменения. Нажмите 'Остаться на странице', чтобы дождаться автосохранения. Нажмите 'Уйти со страницы', чтобы сбросить все несохраненные изменения.", "dlgLeaveMsgText": "В документе есть несохраненные изменения. Нажмите 'Остаться на странице', чтобы дождаться автосохранения. Нажмите 'Уйти со страницы', чтобы сбросить все несохраненные изменения.",

View file

@ -1,36 +1,99 @@
{ {
"About": { "About": {
"textAbout": "Hakkında", "textAbout": "Hakkında",
"textAddress": "adres" "textAddress": "adres",
"textBack": "Geri"
}, },
"Add": { "Add": {
"textAddLink": "Bağlantı Ekle" "textAddLink": "Bağlantı Ekle",
"textAddress": "adres",
"textBack": "Geri",
"textBelowText": "Alt Metin",
"textBottomOfPage": "Sayfanın alt kısmı",
"textBreak": "Yeni Sayfa",
"textCancel": "İptal Et",
"textCenterBottom": "Orta Alt",
"textColumnBreak": "Sütun Sonu"
}, },
"Common": { "Common": {
"Collaboration": { "Collaboration": {
"textAccept": "Onayla", "textAccept": "Onayla",
"textAcceptAllChanges": "Tüm Değişikliği Onayla", "textAcceptAllChanges": "Tüm Değişikliği Onayla",
"textAddReply": "Cevap ekle", "textAddReply": "Cevap ekle",
"textAllChangesAcceptedPreview": "Tüm değişiklikler onaylandı (Önizleme)",
"textAllChangesEditing": "Tüm değişiklikler (Düzenleme)",
"textAtLeast": "En az",
"textAuto": "Otomatik",
"textBack": "Geri",
"textBaseline": "Kenar çizgisi",
"textBold": "Kalın",
"textCancel": "İptal Et",
"textCaps": "Tümü büyük harf",
"textCenter": "Ortaya Hizala", "textCenter": "Ortaya Hizala",
"textChart": "Grafik",
"textCollaboration": "Ortak çalışma",
"textJustify": "İki yana hizala", "textJustify": "İki yana hizala",
"textLeft": "Sola Hizala", "textLeft": "Sola Hizala",
"textNoContextual": "Aynı stildeki paragraflar arasına aralık ekle", "textNoContextual": "Aynı stildeki paragraflar arasına aralık ekle",
"textRight": "Sağa Hizala" "textRight": "Sağa Hizala",
"textShd": "Arka plan rengi"
} }
}, },
"ContextMenu": { "ContextMenu": {
"menuAddLink": "Bağlantı Ekle" "menuAddLink": "Bağlantı Ekle",
"menuCancel": "İptal Et"
}, },
"Edit": { "Edit": {
"textActualSize": "Gerçek Boyut", "textActualSize": "Gerçek Boyut",
"textAddCustomColor": "Özel Renk Ekle", "textAddCustomColor": "Özel Renk Ekle",
"textAdditional": "Ek", "textAdditional": "Ek",
"textAdditionalFormatting": "Ek biçimlendirme",
"textAddress": "adres",
"textAdvanced": "Gelişmiş", "textAdvanced": "Gelişmiş",
"textAdvancedSettings": "Gelişmiş Ayarlar", "textAdvancedSettings": "Gelişmiş Ayarlar",
"textAfter": "sonra", "textAfter": "sonra",
"textAlign": "Hizala" "textAlign": "Hizala",
"textAllCaps": "Tümü büyük harf",
"textAuto": "Otomatik",
"textAutomatic": "Otomatik",
"textBack": "Geri",
"textBackground": "Arka Plan",
"textBandedColumn": "Çizgili Sütun",
"textBandedRow": "Çizgili Satır",
"textBefore": "Önce",
"textBehind": "Arkada",
"textBorder": "Sınır",
"textBringToForeground": "Önplana Getir",
"textBulletsAndNumbers": "madde imleri ve numaralandırma",
"textCellMargins": "Hücre Kenar Boşluğu",
"textChart": "Grafik",
"textClose": "Kapat",
"textColor": "Renk"
},
"Error": {
"openErrorText": "Dosya açılırken bir hata oluştu.",
"saveErrorText": "Dosya kaydedilirken bir hata oluştu"
},
"Main": {
"SDK": {
"Diagram Title": "Grafik başlığı"
},
"textAnonymous": "Anonim",
"textClose": "Kapat"
}, },
"Settings": { "Settings": {
"textAbout": "Hakkında" "advTxtOptions": "TXT Seçeneklerini Belirle",
"closeButtonText": "Dosyayı Kapat",
"textAbout": "Hakkında",
"textApplication": "Uygulama",
"textApplicationSettings": "Uygulama Ayarları",
"textAuthor": "Sahibi",
"textBack": "Geri",
"textBottom": "Alt",
"textCancel": "İptal Et",
"textCaseSensitive": "Büyük küçük harfe duyarlı",
"textCentimeter": "Santimetre",
"textCollaboration": "Ortak çalışma",
"textColorSchemes": "Renk Şeması"
} }
} }

View file

@ -18,6 +18,7 @@ import LongActionsController from "./LongActions";
import PluginsController from '../../../../common/mobile/lib/controller/Plugins.jsx'; import PluginsController from '../../../../common/mobile/lib/controller/Plugins.jsx';
import EncodingController from "./Encoding"; import EncodingController from "./Encoding";
@inject( @inject(
"users",
"storeAppOptions", "storeAppOptions",
"storeDocumentSettings", "storeDocumentSettings",
"storeFocusObjects", "storeFocusObjects",
@ -27,7 +28,8 @@ import EncodingController from "./Encoding";
"storeDocumentInfo", "storeDocumentInfo",
"storeChartSettings", "storeChartSettings",
"storeApplicationSettings", "storeApplicationSettings",
"storeLinkSettings" "storeLinkSettings",
"storeToolbarSettings"
) )
class MainController extends Component { class MainController extends Component {
constructor(props) { constructor(props) {
@ -623,6 +625,18 @@ class MainController extends Component {
this.isDRM = true; this.isDRM = true;
} }
}); });
// Toolbar settings
const storeToolbarSettings = this.props.storeToolbarSettings;
this.api.asc_registerCallback('asc_onCanUndo', (can) => {
if (this.props.users.isDisconnected) return;
storeToolbarSettings.setCanUndo(can);
});
this.api.asc_registerCallback('asc_onCanRedo', (can) => {
if (this.props.users.isDisconnected) return;
storeToolbarSettings.setCanRedo(can);
});
} }
onProcessSaveResult (data) { onProcessSaveResult (data) {

View file

@ -4,7 +4,7 @@ import { f7 } from 'framework7-react';
import { useTranslation } from 'react-i18next'; import { useTranslation } from 'react-i18next';
import ToolbarView from "../view/Toolbar"; import ToolbarView from "../view/Toolbar";
const ToolbarController = inject('storeAppOptions', 'users', 'storeReview')(observer(props => { const ToolbarController = inject('storeAppOptions', 'users', 'storeReview', 'storeFocusObjects', 'storeToolbarSettings')(observer(props => {
const {t} = useTranslation(); const {t} = useTranslation();
const _t = t("Toolbar", { returnObjects: true }); const _t = t("Toolbar", { returnObjects: true });
@ -15,25 +15,20 @@ const ToolbarController = inject('storeAppOptions', 'users', 'storeReview')(obse
const displayCollaboration = props.users.hasEditUsers || appOptions.canViewComments || appOptions.canReview || appOptions.canViewReview; const displayCollaboration = props.users.hasEditUsers || appOptions.canViewComments || appOptions.canReview || appOptions.canViewReview;
const readerMode = appOptions.readerMode; const readerMode = appOptions.readerMode;
const objectLocked = props.storeFocusObjects.objectLocked;
const storeToolbarSettings = props.storeToolbarSettings;
const isCanUndo = storeToolbarSettings.isCanUndo;
const isCanRedo = storeToolbarSettings.isCanRedo;
const showEditDocument = !appOptions.isEdit && appOptions.canEdit && appOptions.canRequestEditRights; const showEditDocument = !appOptions.isEdit && appOptions.canEdit && appOptions.canRequestEditRights;
useEffect(() => { useEffect(() => {
const onDocumentReady = () => { Common.Notifications.on('setdoctitle', setDocTitle);
const api = Common.EditorApi.get(); Common.Gateway.on('init', loadConfig);
api.asc_registerCallback('asc_onCanUndo', onApiCanUndo); Common.Notifications.on('toolbar:activatecontrols', activateControls);
api.asc_registerCallback('asc_onCanRedo', onApiCanRedo); Common.Notifications.on('toolbar:deactivateeditcontrols', deactivateEditControls);
api.asc_registerCallback('asc_onFocusObject', onApiFocusObject); Common.Notifications.on('goback', goBack);
Common.Notifications.on('toolbar:activatecontrols', activateControls);
Common.Notifications.on('toolbar:deactivateeditcontrols', deactivateEditControls);
Common.Notifications.on('goback', goBack);
};
if ( !Common.EditorApi ) {
Common.Notifications.on('document:ready', onDocumentReady);
Common.Notifications.on('setdoctitle', setDocTitle);
Common.Gateway.on('init', loadConfig);
} else {
onDocumentReady();
}
if (isDisconnected) { if (isDisconnected) {
f7.popover.close(); f7.popover.close();
@ -42,16 +37,10 @@ const ToolbarController = inject('storeAppOptions', 'users', 'storeReview')(obse
} }
return () => { return () => {
Common.Notifications.off('document:ready', onDocumentReady);
Common.Notifications.off('setdoctitle', setDocTitle); Common.Notifications.off('setdoctitle', setDocTitle);
Common.Notifications.off('toolbar:activatecontrols', activateControls); Common.Notifications.off('toolbar:activatecontrols', activateControls);
Common.Notifications.off('toolbar:deactivateeditcontrols', deactivateEditControls); Common.Notifications.off('toolbar:deactivateeditcontrols', deactivateEditControls);
Common.Notifications.off('goback', goBack); Common.Notifications.off('goback', goBack);
const api = Common.EditorApi.get();
api.asc_unregisterCallback('asc_onCanUndo', onApiCanUndo);
api.asc_unregisterCallback('asc_onCanRedo', onApiCanRedo);
api.asc_unregisterCallback('asc_onFocusObject', onApiFocusObject);
} }
}); });
@ -106,17 +95,6 @@ const ToolbarController = inject('storeAppOptions', 'users', 'storeReview')(obse
} }
} }
// Undo and Redo
const [isCanUndo, setCanUndo] = useState(true);
const [isCanRedo, setCanRedo] = useState(true);
const onApiCanUndo = (can) => {
if (isDisconnected) return;
setCanUndo(can);
};
const onApiCanRedo = (can) => {
if (isDisconnected) return;
setCanRedo(can);
};
const onUndo = () => { const onUndo = () => {
const api = Common.EditorApi.get(); const api = Common.EditorApi.get();
if (api) { if (api) {
@ -130,30 +108,6 @@ const ToolbarController = inject('storeAppOptions', 'users', 'storeReview')(obse
} }
} }
const [isObjectLocked, setObjectLocked] = useState(false);
const onApiFocusObject = (objects) => {
if (isDisconnected) return;
if (objects.length > 0) {
const getTopObject = (objects) => {
const arrObj = objects.reverse();
let obj;
for (let i=0; i<arrObj.length; i++) {
if (arrObj[i].get_ObjectType() != Asc.c_oAscTypeSelectElement.SpellCheck) {
obj = arrObj[i];
break;
}
}
return obj;
};
const topObject = getTopObject(objects);
const topObjectValue = topObject.get_ObjectValue();
const objectLocked = (typeof topObjectValue.get_Locked === 'function') ? topObjectValue.get_Locked() : false;
setObjectLocked(objectLocked);
}
};
const [disabledEditControls, setDisabledEditControls] = useState(false); const [disabledEditControls, setDisabledEditControls] = useState(false);
const [disabledSettings, setDisabledSettings] = useState(false); const [disabledSettings, setDisabledSettings] = useState(false);
const deactivateEditControls = (enableDownload) => { const deactivateEditControls = (enableDownload) => {
@ -184,7 +138,7 @@ const ToolbarController = inject('storeAppOptions', 'users', 'storeReview')(obse
isCanRedo={isCanRedo} isCanRedo={isCanRedo}
onUndo={onUndo} onUndo={onUndo}
onRedo={onRedo} onRedo={onRedo}
isObjectLocked={isObjectLocked} isObjectLocked={objectLocked}
stateDisplayMode={stateDisplayMode} stateDisplayMode={stateDisplayMode}
disabledControls={disabledControls} disabledControls={disabledControls}
disabledEditControls={disabledEditControls} disabledEditControls={disabledEditControls}

View file

@ -28,35 +28,49 @@ class MainPage extends Component {
handleClickToOpenOptions = (opts, showOpts) => { handleClickToOpenOptions = (opts, showOpts) => {
ContextMenu.closeContextMenu(); ContextMenu.closeContextMenu();
this.setState(state => { setTimeout(() => {
if ( opts == 'edit' ) let opened = false;
return {editOptionsVisible: true}; const newState = {};
else if ( opts == 'add' ) if ( opts === 'edit' ) {
return { this.state.editOptionsVisible && (opened = true);
addOptionsVisible: true, newState.editOptionsVisible = true;
addShowOptions: showOpts } else if ( opts === 'add' ) {
}; this.state.addOptionsVisible && (opened = true);
else if ( opts == 'settings' ) newState.addOptionsVisible = true;
return {settingsVisible: true}; newState.addShowOptions = showOpts;
else if ( opts == 'coauth' ) } else if ( opts === 'settings' ) {
return { this.state.settingsVisible && (opened = true);
collaborationVisible: true, newState.settingsVisible = true;
collaborationPage: showOpts } else if ( opts === 'coauth' ) {
}; this.state.collaborationVisible && (opened = true);
}); newState.collaborationVisible = true;
}
if ((opts === 'edit' || opts === 'coauth') && Device.phone) { for (let key in this.state) {
f7.navbar.hide('.main-navbar'); if (this.state[key] && !opened) {
} setTimeout(() => {
this.handleClickToOpenOptions(opts, showOpts);
}, 10);
return;
}
}
if (!opened) {
this.setState(newState);
if ((opts === 'edit' || opts === 'coauth') && Device.phone) {
f7.navbar.hide('.main-navbar');
}
}
}, 10);
}; };
handleOptionsViewClosed = opts => { handleOptionsViewClosed = opts => {
(async () => { setTimeout(() => {
await 1 && this.setState(state => { this.setState(state => {
if ( opts == 'edit' ) if ( opts == 'edit' )
return {editOptionsVisible: false}; return {editOptionsVisible: false};
else if ( opts == 'add' ) else if ( opts == 'add' )
return {addOptionsVisible: false}; return {addOptionsVisible: false, addShowOptions: null};
else if ( opts == 'settings' ) else if ( opts == 'settings' )
return {settingsVisible: false}; return {settingsVisible: false};
else if ( opts == 'coauth' ) else if ( opts == 'coauth' )
@ -65,7 +79,8 @@ class MainPage extends Component {
if ((opts === 'edit' || opts === 'coauth') && Device.phone) { if ((opts === 'edit' || opts === 'coauth') && Device.phone) {
f7.navbar.show('.main-navbar'); f7.navbar.show('.main-navbar');
} }
})(); }, 1);
}; };
render() { render() {

View file

@ -16,7 +16,8 @@ export class storeFocusObjects {
tableObject: computed, tableObject: computed,
isTableInStack: computed, isTableInStack: computed,
chartObject: computed, chartObject: computed,
linkObject: computed linkObject: computed,
objectLocked: computed
}); });
} }
@ -77,4 +78,25 @@ export class storeFocusObjects {
get linkObject() { get linkObject() {
return !!this.intf ? this.intf.getLinkObject() : null; return !!this.intf ? this.intf.getLinkObject() : null;
} }
get objectLocked() {
if (this._focusObjects && this._focusObjects.length > 0) {
const getTopObject = (objects) => {
const arrObj = objects;
let obj;
for (let i=arrObj.length-1; i>=0; i--) {
if (arrObj[i].get_ObjectType() != Asc.c_oAscTypeSelectElement.SpellCheck) {
obj = arrObj[i];
break;
}
}
return obj;
};
const topObject = getTopObject(this._focusObjects);
const topObjectValue = topObject.get_ObjectValue();
const objectLocked = (typeof topObjectValue.get_Locked === 'function') ? topObjectValue.get_Locked() : false;
return objectLocked;
}
}
} }

View file

@ -15,6 +15,7 @@ import {storeAppOptions} from "./appOptions";
import {storePalette} from "./palette"; import {storePalette} from "./palette";
import {storeReview} from "./review"; import {storeReview} from "./review";
import {storeComments} from "../../../../common/mobile/lib/store/comments"; import {storeComments} from "../../../../common/mobile/lib/store/comments";
import {storeToolbarSettings} from "./toolbar";
export const stores = { export const stores = {
storeAppOptions: new storeAppOptions(), storeAppOptions: new storeAppOptions(),
@ -32,6 +33,7 @@ export const stores = {
storeApplicationSettings: new storeApplicationSettings(), storeApplicationSettings: new storeApplicationSettings(),
storePalette: new storePalette(), storePalette: new storePalette(),
storeReview: new storeReview(), storeReview: new storeReview(),
storeComments: new storeComments() storeComments: new storeComments(),
storeToolbarSettings: new storeToolbarSettings()
}; };

View file

@ -0,0 +1,24 @@
import {action, observable, makeObservable} from 'mobx';
export class storeToolbarSettings {
constructor() {
makeObservable(this, {
isCanUndo: observable,
setCanUndo: action,
isCanRedo: observable,
setCanRedo: action
})
}
isCanUndo = false;
setCanUndo(can) {
this.isCanUndo = can;
}
isCanRedo = false;
setCanRedo(can) {
this.isCanRedo = can;
}
}

View file

@ -239,6 +239,7 @@ const EditImage = props => {
const storeFocusObjects = props.storeFocusObjects; const storeFocusObjects = props.storeFocusObjects;
const imageObject = storeFocusObjects.imageObject; const imageObject = storeFocusObjects.imageObject;
const pluginGuid = imageObject.asc_getPluginGuid(); const pluginGuid = imageObject.asc_getPluginGuid();
const wrapType = props.storeImageSettings.getWrapType(imageObject);
return ( return (
<Fragment> <Fragment>
@ -254,9 +255,9 @@ const EditImage = props => {
onReplaceByFile: props.onReplaceByFile, onReplaceByFile: props.onReplaceByFile,
onReplaceByUrl: props.onReplaceByUrl onReplaceByUrl: props.onReplaceByUrl
}}></ListItem> }}></ListItem>
<ListItem title={_t.textReorder} link='/edit-image-reorder/' routeProps={{ { wrapType !== 'inline' && <ListItem title={_t.textReorder} link='/edit-image-reorder/' routeProps={{
onReorder: props.onReorder onReorder: props.onReorder
}}></ListItem> }}></ListItem> }
</List> </List>
<List className="buttons-list"> <List className="buttons-list">
<ListButton className='button-fill button-raised' title={_t.textActualSize} onClick={() => {props.onDefaulSize()}}/> <ListButton className='button-fill button-raised' title={_t.textActualSize} onClick={() => {props.onDefaulSize()}}/>
@ -266,7 +267,7 @@ const EditImage = props => {
) )
}; };
const EditImageContainer = inject("storeFocusObjects")(observer(EditImage)); const EditImageContainer = inject("storeFocusObjects", "storeImageSettings")(observer(EditImage));
const PageWrapContainer = inject("storeFocusObjects", "storeImageSettings")(observer(PageWrap)); const PageWrapContainer = inject("storeFocusObjects", "storeImageSettings")(observer(PageWrap));
const PageReplaceContainer = inject("storeFocusObjects")(observer(PageReplace)); const PageReplaceContainer = inject("storeFocusObjects")(observer(PageReplace));
const PageReorderContainer = inject("storeFocusObjects")(observer(PageReorder)); const PageReorderContainer = inject("storeFocusObjects")(observer(PageReorder));

View file

@ -506,9 +506,8 @@ const EditShape = props => {
const { t } = useTranslation(); const { t } = useTranslation();
const _t = t('Edit', {returnObjects: true}); const _t = t('Edit', {returnObjects: true});
const canFill = props.storeFocusObjects.shapeObject.get_ShapeProperties().get_CanFill(); const canFill = props.storeFocusObjects.shapeObject.get_ShapeProperties().get_CanFill();
const storeShapeSettings = props.storeShapeSettings;
const shapeObject = props.storeFocusObjects.shapeObject; const shapeObject = props.storeFocusObjects.shapeObject;
const wrapType = storeShapeSettings.getWrapType(shapeObject); const wrapType = props.storeShapeSettings.getWrapType(shapeObject);
let disableRemove = !!props.storeFocusObjects.paragraphObject; let disableRemove = !!props.storeFocusObjects.paragraphObject;
@ -537,9 +536,9 @@ const EditShape = props => {
<ListItem title={_t.textReplace} link='/edit-shape-replace/' routeProps={{ <ListItem title={_t.textReplace} link='/edit-shape-replace/' routeProps={{
onReplace: props.onReplace onReplace: props.onReplace
}}></ListItem> }}></ListItem>
<ListItem disabled={wrapType === 'inline' ? true : false } title={_t.textReorder} link='/edit-shape-reorder/' routeProps={{ { wrapType !== 'inline' && <ListItem title={_t.textReorder} link='/edit-shape-reorder/' routeProps={{
onReorder: props.onReorder onReorder: props.onReorder
}}></ListItem> }}></ListItem> }
</List> </List>
<List className="buttons-list"> <List className="buttons-list">
<ListButton title={_t.textRemoveShape} onClick={() => {props.onRemoveShape()}} className={`button-red button-fill button-raised${disableRemove ? ' disabled' : ''}`} /> <ListButton title={_t.textRemoveShape} onClick={() => {props.onRemoveShape()}} className={`button-red button-fill button-raised${disableRemove ? ' disabled' : ''}`} />

View file

@ -119,13 +119,13 @@ const PageAdditionalFormatting = props => {
</List> </List>
<List> <List>
<ListItem title={t('Edit.textLetterSpacing')}> <ListItem title={t('Edit.textLetterSpacing')}>
{!isAndroid && <div slot='after-start'>{letterSpacing + ' ' + Common.Utils.Metric.getCurrentMetricName()}</div>} {!isAndroid && <div slot='after-start'>{(Number.isInteger(letterSpacing) ? letterSpacing : letterSpacing.toFixed(2)) + ' ' + Common.Utils.Metric.getCurrentMetricName()}</div>}
<div slot='after'> <div slot='after'>
<Segmented> <Segmented>
<Button outline className='decrement item-link' onClick={() => {props.changeLetterSpacing(letterSpacing, true)}}> <Button outline className='decrement item-link' onClick={() => {props.changeLetterSpacing(letterSpacing, true)}}>
{isAndroid ? <Icon icon="icon-expand-down"></Icon> : ' - '} {isAndroid ? <Icon icon="icon-expand-down"></Icon> : ' - '}
</Button> </Button>
{isAndroid && <label>{letterSpacing + ' ' + Common.Utils.Metric.getCurrentMetricName()}</label>} {isAndroid && <label>{(Number.isInteger(letterSpacing) ? letterSpacing : letterSpacing.toFixed(2)) + ' ' + Common.Utils.Metric.getCurrentMetricName()}</label>}
<Button outline className='increment item-link' onClick={() => {props.changeLetterSpacing(letterSpacing, false)}}> <Button outline className='increment item-link' onClick={() => {props.changeLetterSpacing(letterSpacing, false)}}>
{isAndroid ? <Icon icon="icon-expand-up"></Icon> : ' + '} {isAndroid ? <Icon icon="icon-expand-up"></Icon> : ' + '}
</Button> </Button>

View file

@ -159,20 +159,20 @@ const PageDocumentColorSchemes = props => {
const { t } = useTranslation(); const { t } = useTranslation();
const curScheme = props.initPageColorSchemes(); const curScheme = props.initPageColorSchemes();
const [stateScheme, setScheme] = useState(curScheme); const [stateScheme, setScheme] = useState(curScheme);
const _t = t('Settings', {returnObjects: true});
const storeSettings = props.storeDocumentSettings; const storeSettings = props.storeDocumentSettings;
const allSchemes = storeSettings.allSchemes; const allSchemes = storeSettings.allSchemes;
const SchemeNames = [ const SchemeNames = [ t('Settings.txtScheme22'),
_t.txtScheme1, _t.txtScheme2, _t.txtScheme3, _t.txtScheme4, _t.txtScheme5, t('Settings.txtScheme1'), t('Settings.txtScheme2'), t('Settings.txtScheme3'), t('Settings.txtScheme4'),
_t.txtScheme6, _t.txtScheme7, _t.txtScheme8, _t.txtScheme9, _t.txtScheme10, t('Settings.txtScheme5'), t('Settings.txtScheme6'), t('Settings.txtScheme7'), t('Settings.txtScheme8'),
_t.txtScheme11, _t.txtScheme12, _t.txtScheme13, _t.txtScheme14, _t.txtScheme15, t('Settings.txtScheme9'), t('Settings.txtScheme10'), t('Settings.txtScheme11'), t('Settings.txtScheme12'),
_t.txtScheme16, _t.txtScheme17, _t.txtScheme18, _t.txtScheme19, _t.txtScheme20, t('Settings.txtScheme13'), t('Settings.txtScheme14'), t('Settings.txtScheme15'), t('Settings.txtScheme16'),
_t.txtScheme21, _t.txtScheme22 t('Settings.txtScheme17'), t('Settings.txtScheme18'), t('Settings.txtScheme19'), t('Settings.txtScheme20'),
t('Settings.txtScheme21')
]; ];
return ( return (
<Page> <Page>
<Navbar title={_t.textColorSchemes} backLink={_t.textBack} /> <Navbar title={t('Settings.textColorSchemes')} backLink={t('Settings.textBack')} />
<List> <List>
{ {
allSchemes ? allSchemes.map((scheme, index) => { allSchemes ? allSchemes.map((scheme, index) => {

View file

@ -206,8 +206,7 @@
} }
function encodeUrlParam(str) { function encodeUrlParam(str) {
return str.replace(/&/g, '&amp;') return str.replace(/"/g, '&quot;')
.replace(/"/g, '&quot;')
.replace(/'/g, '&#39;') .replace(/'/g, '&#39;')
.replace(/</g, '&lt;') .replace(/</g, '&lt;')
.replace(/>/g, '&gt;'); .replace(/>/g, '&gt;');

View file

@ -200,8 +200,7 @@
} }
function encodeUrlParam(str) { function encodeUrlParam(str) {
return str.replace(/&/g, '&amp;') return str.replace(/"/g, '&quot;')
.replace(/"/g, '&quot;')
.replace(/'/g, '&#39;') .replace(/'/g, '&#39;')
.replace(/</g, '&lt;') .replace(/</g, '&lt;')
.replace(/>/g, '&gt;'); .replace(/>/g, '&gt;');

View file

@ -224,8 +224,7 @@
} }
function encodeUrlParam(str) { function encodeUrlParam(str) {
return str.replace(/&/g, '&amp;') return str.replace(/"/g, '&quot;')
.replace(/"/g, '&quot;')
.replace(/'/g, '&#39;') .replace(/'/g, '&#39;')
.replace(/</g, '&lt;') .replace(/</g, '&lt;')
.replace(/>/g, '&gt;'); .replace(/>/g, '&gt;');

View file

@ -217,8 +217,7 @@
} }
function encodeUrlParam(str) { function encodeUrlParam(str) {
return str.replace(/&/g, '&amp;') return str.replace(/"/g, '&quot;')
.replace(/"/g, '&quot;')
.replace(/'/g, '&#39;') .replace(/'/g, '&#39;')
.replace(/</g, '&lt;') .replace(/</g, '&lt;')
.replace(/>/g, '&gt;'); .replace(/>/g, '&gt;');

View file

@ -568,6 +568,11 @@ PE.ApplicationController = new(function(){
message = me.errorAccessDeny; message = me.errorAccessDeny;
break; break;
case Asc.c_oAscError.ID.ForceSaveButton:
case Asc.c_oAscError.ID.ForceSaveTimeout:
message = me.errorForceSave;
break;
default: default:
message = me.errorDefaultMessage.replace('%1', id); message = me.errorDefaultMessage.replace('%1', id);
break; break;
@ -712,6 +717,7 @@ PE.ApplicationController = new(function(){
errorFileSizeExceed: 'The file size exceeds the limitation set for your server.<br>Please contact your Document Server administrator for details.', errorFileSizeExceed: 'The file size exceeds the limitation set for your server.<br>Please contact your Document Server administrator for details.',
errorUpdateVersionOnDisconnect: 'Internet connection has been restored, and the file version has been changed.<br>Before you can continue working, you need to download the file or copy its content to make sure nothing is lost, and then reload this page.', errorUpdateVersionOnDisconnect: 'Internet connection has been restored, and the file version has been changed.<br>Before you can continue working, you need to download the file or copy its content to make sure nothing is lost, and then reload this page.',
textGuest: 'Guest', textGuest: 'Guest',
textAnonymous: 'Anonymous' textAnonymous: 'Anonymous',
errorForceSave: "An error occurred while saving the file. Please use the 'Download as' option to save the file to your computer hard drive or try again later."
} }
})(); })();

View file

@ -17,6 +17,8 @@
"PE.ApplicationController.errorUserDrop": "Ara no es pot accedir al fitxer.", "PE.ApplicationController.errorUserDrop": "Ara no es pot accedir al fitxer.",
"PE.ApplicationController.notcriticalErrorTitle": "Advertiment", "PE.ApplicationController.notcriticalErrorTitle": "Advertiment",
"PE.ApplicationController.scriptLoadError": "La connexió és massa lenta, alguns dels components no shan pogut carregar. Torneu a carregar la pàgina.", "PE.ApplicationController.scriptLoadError": "La connexió és massa lenta, alguns dels components no shan pogut carregar. Torneu a carregar la pàgina.",
"PE.ApplicationController.textAnonymous": "Anònim",
"PE.ApplicationController.textGuest": "Convidat",
"PE.ApplicationController.textLoadingDocument": "Carregant presentació", "PE.ApplicationController.textLoadingDocument": "Carregant presentació",
"PE.ApplicationController.textOf": "de", "PE.ApplicationController.textOf": "de",
"PE.ApplicationController.txtClose": "Tancar", "PE.ApplicationController.txtClose": "Tancar",

View file

@ -17,6 +17,8 @@
"PE.ApplicationController.errorUserDrop": "Kein Zugriff auf diese Datei ist möglich.", "PE.ApplicationController.errorUserDrop": "Kein Zugriff auf diese Datei ist möglich.",
"PE.ApplicationController.notcriticalErrorTitle": "Warnung", "PE.ApplicationController.notcriticalErrorTitle": "Warnung",
"PE.ApplicationController.scriptLoadError": "Die Verbindung ist zu langsam, einige der Komponenten konnten nicht geladen werden. Bitte laden Sie die Seite erneut.", "PE.ApplicationController.scriptLoadError": "Die Verbindung ist zu langsam, einige der Komponenten konnten nicht geladen werden. Bitte laden Sie die Seite erneut.",
"PE.ApplicationController.textAnonymous": "Anonym",
"PE.ApplicationController.textGuest": "Gast",
"PE.ApplicationController.textLoadingDocument": "Präsentation wird geladen", "PE.ApplicationController.textLoadingDocument": "Präsentation wird geladen",
"PE.ApplicationController.textOf": "von", "PE.ApplicationController.textOf": "von",
"PE.ApplicationController.txtClose": "Schließen", "PE.ApplicationController.txtClose": "Schließen",

View file

@ -17,6 +17,8 @@
"PE.ApplicationController.errorUserDrop": "Δεν είναι δυνατή η πρόσβαση στο αρχείο αυτήν τη στιγμή.", "PE.ApplicationController.errorUserDrop": "Δεν είναι δυνατή η πρόσβαση στο αρχείο αυτήν τη στιγμή.",
"PE.ApplicationController.notcriticalErrorTitle": "Προειδοποίηση", "PE.ApplicationController.notcriticalErrorTitle": "Προειδοποίηση",
"PE.ApplicationController.scriptLoadError": "Η σύνδεση είναι πολύ αργή, δεν ήταν δυνατή η φόρτωση ορισμένων στοιχείων. Φορτώστε ξανά τη σελίδα.", "PE.ApplicationController.scriptLoadError": "Η σύνδεση είναι πολύ αργή, δεν ήταν δυνατή η φόρτωση ορισμένων στοιχείων. Φορτώστε ξανά τη σελίδα.",
"PE.ApplicationController.textAnonymous": "Ανώνυμος",
"PE.ApplicationController.textGuest": "Επισκέπτης",
"PE.ApplicationController.textLoadingDocument": "Γίνεται φόρτωση παρουσίασης", "PE.ApplicationController.textLoadingDocument": "Γίνεται φόρτωση παρουσίασης",
"PE.ApplicationController.textOf": "του", "PE.ApplicationController.textOf": "του",
"PE.ApplicationController.txtClose": "Κλείσιμο", "PE.ApplicationController.txtClose": "Κλείσιμο",

View file

@ -15,6 +15,7 @@
"PE.ApplicationController.errorFileSizeExceed": "The file size exceeds the limitation set for your server.<br>Please contact your Document Server administrator for details.", "PE.ApplicationController.errorFileSizeExceed": "The file size exceeds the limitation set for your server.<br>Please contact your Document Server administrator for details.",
"PE.ApplicationController.errorUpdateVersionOnDisconnect": "Internet connection has been restored, and the file version has been changed.<br>Before you can continue working, you need to download the file or copy its content to make sure nothing is lost, and then reload this page.", "PE.ApplicationController.errorUpdateVersionOnDisconnect": "Internet connection has been restored, and the file version has been changed.<br>Before you can continue working, you need to download the file or copy its content to make sure nothing is lost, and then reload this page.",
"PE.ApplicationController.errorUserDrop": "The file cannot be accessed right now.", "PE.ApplicationController.errorUserDrop": "The file cannot be accessed right now.",
"PE.ApplicationController.errorForceSave": "An error occurred while saving the file. Please use the 'Download as' option to save the file to your computer hard drive or try again later.",
"PE.ApplicationController.notcriticalErrorTitle": "Warning", "PE.ApplicationController.notcriticalErrorTitle": "Warning",
"PE.ApplicationController.scriptLoadError": "The connection is too slow, some of the components could not be loaded. Please reload the page.", "PE.ApplicationController.scriptLoadError": "The connection is too slow, some of the components could not be loaded. Please reload the page.",
"PE.ApplicationController.textAnonymous": "Anonymous", "PE.ApplicationController.textAnonymous": "Anonymous",

View file

@ -17,6 +17,8 @@
"PE.ApplicationController.errorUserDrop": "No se puede acceder al archivo ahora mismo.", "PE.ApplicationController.errorUserDrop": "No se puede acceder al archivo ahora mismo.",
"PE.ApplicationController.notcriticalErrorTitle": "Aviso", "PE.ApplicationController.notcriticalErrorTitle": "Aviso",
"PE.ApplicationController.scriptLoadError": "La conexión a Internet es demasiado lenta, no se podía cargar algunos componentes. Por favor, recargue la página.", "PE.ApplicationController.scriptLoadError": "La conexión a Internet es demasiado lenta, no se podía cargar algunos componentes. Por favor, recargue la página.",
"PE.ApplicationController.textAnonymous": "Anónimo",
"PE.ApplicationController.textGuest": "Invitado",
"PE.ApplicationController.textLoadingDocument": "Cargando presentación", "PE.ApplicationController.textLoadingDocument": "Cargando presentación",
"PE.ApplicationController.textOf": "de", "PE.ApplicationController.textOf": "de",
"PE.ApplicationController.txtClose": "Cerrar", "PE.ApplicationController.txtClose": "Cerrar",

View file

@ -17,6 +17,8 @@
"PE.ApplicationController.errorUserDrop": "Impossible d'accéder au fichier.", "PE.ApplicationController.errorUserDrop": "Impossible d'accéder au fichier.",
"PE.ApplicationController.notcriticalErrorTitle": "Avertissement", "PE.ApplicationController.notcriticalErrorTitle": "Avertissement",
"PE.ApplicationController.scriptLoadError": "La connexion est trop lente, certains éléments ne peuvent pas être chargés. Veuillez recharger la page.", "PE.ApplicationController.scriptLoadError": "La connexion est trop lente, certains éléments ne peuvent pas être chargés. Veuillez recharger la page.",
"PE.ApplicationController.textAnonymous": "Anonyme",
"PE.ApplicationController.textGuest": "Invité",
"PE.ApplicationController.textLoadingDocument": "Chargement de la présentation", "PE.ApplicationController.textLoadingDocument": "Chargement de la présentation",
"PE.ApplicationController.textOf": "de", "PE.ApplicationController.textOf": "de",
"PE.ApplicationController.txtClose": "Fermer", "PE.ApplicationController.txtClose": "Fermer",

View file

@ -17,6 +17,8 @@
"PE.ApplicationController.errorUserDrop": "Toegang tot het bestand is op dit moment niet mogelijk.", "PE.ApplicationController.errorUserDrop": "Toegang tot het bestand is op dit moment niet mogelijk.",
"PE.ApplicationController.notcriticalErrorTitle": "Waarschuwing", "PE.ApplicationController.notcriticalErrorTitle": "Waarschuwing",
"PE.ApplicationController.scriptLoadError": "De verbinding is te langzaam, sommige componenten konden niet geladen worden. Laad de pagina opnieuw.", "PE.ApplicationController.scriptLoadError": "De verbinding is te langzaam, sommige componenten konden niet geladen worden. Laad de pagina opnieuw.",
"PE.ApplicationController.textAnonymous": "Anoniem",
"PE.ApplicationController.textGuest": "Gast",
"PE.ApplicationController.textLoadingDocument": "Presentatie wordt geladen", "PE.ApplicationController.textLoadingDocument": "Presentatie wordt geladen",
"PE.ApplicationController.textOf": "van", "PE.ApplicationController.textOf": "van",
"PE.ApplicationController.txtClose": "Afsluiten", "PE.ApplicationController.txtClose": "Afsluiten",
@ -25,6 +27,7 @@
"PE.ApplicationController.waitText": "Een moment geduld", "PE.ApplicationController.waitText": "Een moment geduld",
"PE.ApplicationView.txtDownload": "Downloaden", "PE.ApplicationView.txtDownload": "Downloaden",
"PE.ApplicationView.txtEmbed": "Invoegen", "PE.ApplicationView.txtEmbed": "Invoegen",
"PE.ApplicationView.txtFileLocation": "Open bestandslocatie",
"PE.ApplicationView.txtFullScreen": "Volledig scherm", "PE.ApplicationView.txtFullScreen": "Volledig scherm",
"PE.ApplicationView.txtPrint": "Afdrukken", "PE.ApplicationView.txtPrint": "Afdrukken",
"PE.ApplicationView.txtShare": "Delen" "PE.ApplicationView.txtShare": "Delen"

View file

@ -17,6 +17,8 @@
"PE.ApplicationController.errorUserDrop": "O arquivo não pode ser acessado agora.", "PE.ApplicationController.errorUserDrop": "O arquivo não pode ser acessado agora.",
"PE.ApplicationController.notcriticalErrorTitle": "Aviso", "PE.ApplicationController.notcriticalErrorTitle": "Aviso",
"PE.ApplicationController.scriptLoadError": "A conexão está muito lenta, e alguns componentes não foram carregados. Por favor, recarregue a página.", "PE.ApplicationController.scriptLoadError": "A conexão está muito lenta, e alguns componentes não foram carregados. Por favor, recarregue a página.",
"PE.ApplicationController.textAnonymous": "Anônimo",
"PE.ApplicationController.textGuest": "Convidado(a)",
"PE.ApplicationController.textLoadingDocument": "Carregando apresentação", "PE.ApplicationController.textLoadingDocument": "Carregando apresentação",
"PE.ApplicationController.textOf": "de", "PE.ApplicationController.textOf": "de",
"PE.ApplicationController.txtClose": "Fechar", "PE.ApplicationController.txtClose": "Fechar",

View file

@ -17,10 +17,12 @@
"PE.ApplicationController.errorUserDrop": "Fișierul nu poate fi accesat deocamdată.", "PE.ApplicationController.errorUserDrop": "Fișierul nu poate fi accesat deocamdată.",
"PE.ApplicationController.notcriticalErrorTitle": "Avertisment", "PE.ApplicationController.notcriticalErrorTitle": "Avertisment",
"PE.ApplicationController.scriptLoadError": "Conexeunea e prea lentă și unele elemente nu se încarcă. Încercați să reîmprospătati pagina.", "PE.ApplicationController.scriptLoadError": "Conexeunea e prea lentă și unele elemente nu se încarcă. Încercați să reîmprospătati pagina.",
"PE.ApplicationController.textAnonymous": "Anonim",
"PE.ApplicationController.textGuest": "Invitat",
"PE.ApplicationController.textLoadingDocument": "Încărcare prezentare", "PE.ApplicationController.textLoadingDocument": "Încărcare prezentare",
"PE.ApplicationController.textOf": "din", "PE.ApplicationController.textOf": "din",
"PE.ApplicationController.txtClose": "Închidere", "PE.ApplicationController.txtClose": "Închidere",
"PE.ApplicationController.unknownErrorText": "Eroare Necunoscut.", "PE.ApplicationController.unknownErrorText": "Eroare necunoscută.",
"PE.ApplicationController.unsupportedBrowserErrorText": "Browserul nu este compatibil.", "PE.ApplicationController.unsupportedBrowserErrorText": "Browserul nu este compatibil.",
"PE.ApplicationController.waitText": "Vă rugăm să așteptați...", "PE.ApplicationController.waitText": "Vă rugăm să așteptați...",
"PE.ApplicationView.txtDownload": "Descărcare", "PE.ApplicationView.txtDownload": "Descărcare",

View file

@ -17,6 +17,8 @@
"PE.ApplicationController.errorUserDrop": "该文件现在无法访问。", "PE.ApplicationController.errorUserDrop": "该文件现在无法访问。",
"PE.ApplicationController.notcriticalErrorTitle": "警告", "PE.ApplicationController.notcriticalErrorTitle": "警告",
"PE.ApplicationController.scriptLoadError": "连接速度过慢,部分组件无法被加载。请重新加载页面。", "PE.ApplicationController.scriptLoadError": "连接速度过慢,部分组件无法被加载。请重新加载页面。",
"PE.ApplicationController.textAnonymous": "匿名",
"PE.ApplicationController.textGuest": "访客",
"PE.ApplicationController.textLoadingDocument": "载入演示", "PE.ApplicationController.textLoadingDocument": "载入演示",
"PE.ApplicationController.textOf": "的", "PE.ApplicationController.textOf": "的",
"PE.ApplicationController.txtClose": "关闭", "PE.ApplicationController.txtClose": "关闭",

View file

@ -156,7 +156,8 @@ define([
this.api.asc_registerCallback('asc_onAddComments', _.bind(this.onApiAddComments, this)); this.api.asc_registerCallback('asc_onAddComments', _.bind(this.onApiAddComments, this));
var collection = this.getApplication().getCollection('Common.Collections.Comments'); var collection = this.getApplication().getCollection('Common.Collections.Comments');
for (var i = 0; i < collection.length; ++i) { for (var i = 0; i < collection.length; ++i) {
if (collection.at(i).get('userid') !== this.mode.user.id) { var comment = collection.at(i);
if (!comment.get('hide') && comment.get('userid') !== this.mode.user.id) {
this.leftMenu.markCoauthOptions('comments', true); this.leftMenu.markCoauthOptions('comments', true);
break; break;
} }
@ -169,6 +170,7 @@ define([
this.leftMenu.getMenu('file').setApi(api); this.leftMenu.getMenu('file').setApi(api);
if (this.mode.canUseHistory) if (this.mode.canUseHistory)
this.getApplication().getController('Common.Controllers.History').setApi(this.api).setMode(this.mode); this.getApplication().getController('Common.Controllers.History').setApi(this.api).setMode(this.mode);
this.leftMenu.btnThumbs.toggle(true);
return this; return this;
}, },
@ -208,7 +210,6 @@ define([
(this.mode.trialMode || this.mode.isBeta) && this.leftMenu.setDeveloperMode(this.mode.trialMode, this.mode.isBeta, this.mode.buildVersion); (this.mode.trialMode || this.mode.isBeta) && this.leftMenu.setDeveloperMode(this.mode.trialMode, this.mode.isBeta, this.mode.buildVersion);
/** coauthoring end **/ /** coauthoring end **/
Common.util.Shortcuts.resumeEvents(); Common.util.Shortcuts.resumeEvents();
this.leftMenu.btnThumbs.toggle(true);
return this; return this;
}, },
@ -578,13 +579,13 @@ define([
}, },
onApiAddComment: function(id, data) { onApiAddComment: function(id, data) {
if (data && data.asc_getUserId() !== this.mode.user.id) if (data && data.asc_getUserId() !== this.mode.user.id && AscCommon.UserInfoParser.canViewComment(data.asc_getUserName()))
this.leftMenu.markCoauthOptions('comments'); this.leftMenu.markCoauthOptions('comments');
}, },
onApiAddComments: function(data) { onApiAddComments: function(data) {
for (var i = 0; i < data.length; ++i) { for (var i = 0; i < data.length; ++i) {
if (data[i].asc_getUserId() !== this.mode.user.id) { if (data[i].asc_getUserId() !== this.mode.user.id && AscCommon.UserInfoParser.canViewComment(data.asc_getUserName())) {
this.leftMenu.markCoauthOptions('comments'); this.leftMenu.markCoauthOptions('comments');
break; break;
} }

View file

@ -821,7 +821,7 @@ define([
pluginsController = application.getController('Common.Controllers.Plugins'); pluginsController = application.getController('Common.Controllers.Plugins');
leftmenuController.getView('LeftMenu').getMenu('file').loadDocument({doc:me.document}); leftmenuController.getView('LeftMenu').getMenu('file').loadDocument({doc:me.document});
leftmenuController.setMode(me.appOptions).setApi(me.api).createDelayedElements(); leftmenuController.setMode(me.appOptions).createDelayedElements().setApi(me.api);
chatController.setApi(this.api).setMode(this.appOptions); chatController.setApi(this.api).setMode(this.appOptions);
application.getController('Common.Controllers.ExternalDiagramEditor').setApi(this.api).loadConfig({config:this.editorConfig, customization: this.editorConfig.customization}); application.getController('Common.Controllers.ExternalDiagramEditor').setApi(this.api).loadConfig({config:this.editorConfig, customization: this.editorConfig.customization});
@ -2331,7 +2331,8 @@ define([
selected: (opts.data.currentVersion == version.version), selected: (opts.data.currentVersion == version.version),
canRestore: this.appOptions.canHistoryRestore && (ver < versions.length-1), canRestore: this.appOptions.canHistoryRestore && (ver < versions.length-1),
isExpanded: true, isExpanded: true,
serverVersion: version.serverVersion serverVersion: version.serverVersion,
fileType: 'pptx'
})); }));
if (opts.data.currentVersion == version.version) { if (opts.data.currentVersion == version.version) {
currentVersion = arrVersions[arrVersions.length-1]; currentVersion = arrVersions[arrVersions.length-1];
@ -2381,7 +2382,8 @@ define([
canRestore: this.appOptions.canHistoryRestore && this.appOptions.canDownload, canRestore: this.appOptions.canHistoryRestore && this.appOptions.canDownload,
isRevision: false, isRevision: false,
isVisible: true, isVisible: true,
serverVersion: version.serverVersion serverVersion: version.serverVersion,
fileType: 'pptx'
})); }));
arrColors.push(user.get('colorval')); arrColors.push(user.get('colorval'));
} }

View file

@ -416,6 +416,7 @@ define([
}, },
onSelectItem: function(picker, item, record, e){ onSelectItem: function(picker, item, record, e){
if (!record) return;
this.btnOk.setDisabled(record.get('index')==4); this.btnOk.setDisabled(record.get('index')==4);
if (this.isAutoUpdate) { if (this.isAutoUpdate) {
this.inputDisplay.setValue((record.get('level') || record.get('index')<4) ? record.get('name') : ''); this.inputDisplay.setValue((record.get('level') || record.get('index')<4) ? record.get('name') : '');

View file

@ -726,6 +726,7 @@ define([ 'text!presentationeditor/main/app/template/ParagraphSettingsAdvanced
}, },
onSelectTab: function(lisvView, itemView, record) { onSelectTab: function(lisvView, itemView, record) {
if (!record) return;
var rawData = {}, var rawData = {},
isViewSelect = _.isFunction(record.toJSON); isViewSelect = _.isFunction(record.toJSON);

View file

@ -247,8 +247,7 @@
} }
function encodeUrlParam(str) { function encodeUrlParam(str) {
return str.replace(/&/g, '&amp;') return str.replace(/"/g, '&quot;')
.replace(/"/g, '&quot;')
.replace(/'/g, '&#39;') .replace(/'/g, '&#39;')
.replace(/</g, '&lt;') .replace(/</g, '&lt;')
.replace(/>/g, '&gt;'); .replace(/>/g, '&gt;');

View file

@ -239,8 +239,7 @@
} }
function encodeUrlParam(str) { function encodeUrlParam(str) {
return str.replace(/&/g, '&amp;') return str.replace(/"/g, '&quot;')
.replace(/"/g, '&quot;')
.replace(/'/g, '&#39;') .replace(/'/g, '&#39;')
.replace(/</g, '&lt;') .replace(/</g, '&lt;')
.replace(/>/g, '&gt;'); .replace(/>/g, '&gt;');

View file

@ -190,8 +190,7 @@
return urlParams; return urlParams;
} }
function encodeUrlParam(str) { function encodeUrlParam(str) {
return str.replace(/&/g, '&amp;') return str.replace(/"/g, '&quot;')
.replace(/"/g, '&quot;')
.replace(/'/g, '&#39;') .replace(/'/g, '&#39;')
.replace(/</g, '&lt;') .replace(/</g, '&lt;')
.replace(/>/g, '&gt;'); .replace(/>/g, '&gt;');

View file

@ -218,8 +218,7 @@
} }
function encodeUrlParam(str) { function encodeUrlParam(str) {
return str.replace(/&/g, '&amp;') return str.replace(/"/g, '&quot;')
.replace(/"/g, '&quot;')
.replace(/'/g, '&#39;') .replace(/'/g, '&#39;')
.replace(/</g, '&lt;') .replace(/</g, '&lt;')
.replace(/>/g, '&gt;'); .replace(/>/g, '&gt;');

View file

@ -1989,6 +1989,7 @@
"PE.Views.Toolbar.txtScheme2": "Escala de Gris", "PE.Views.Toolbar.txtScheme2": "Escala de Gris",
"PE.Views.Toolbar.txtScheme20": "Urbà", "PE.Views.Toolbar.txtScheme20": "Urbà",
"PE.Views.Toolbar.txtScheme21": "Empenta", "PE.Views.Toolbar.txtScheme21": "Empenta",
"PE.Views.Toolbar.txtScheme22": "Nova Oficina",
"PE.Views.Toolbar.txtScheme3": "Àpex", "PE.Views.Toolbar.txtScheme3": "Àpex",
"PE.Views.Toolbar.txtScheme4": "Aspecte", "PE.Views.Toolbar.txtScheme4": "Aspecte",
"PE.Views.Toolbar.txtScheme5": "Cívic", "PE.Views.Toolbar.txtScheme5": "Cívic",

View file

@ -1988,6 +1988,7 @@
"PE.Views.Toolbar.txtScheme2": "Graustufe", "PE.Views.Toolbar.txtScheme2": "Graustufe",
"PE.Views.Toolbar.txtScheme20": "Rhea", "PE.Views.Toolbar.txtScheme20": "Rhea",
"PE.Views.Toolbar.txtScheme21": "Telesto", "PE.Views.Toolbar.txtScheme21": "Telesto",
"PE.Views.Toolbar.txtScheme22": "Neues Office",
"PE.Views.Toolbar.txtScheme3": "Apex", "PE.Views.Toolbar.txtScheme3": "Apex",
"PE.Views.Toolbar.txtScheme4": "Aspekt ", "PE.Views.Toolbar.txtScheme4": "Aspekt ",
"PE.Views.Toolbar.txtScheme5": "Cronus", "PE.Views.Toolbar.txtScheme5": "Cronus",

View file

@ -715,7 +715,7 @@
"PE.Controllers.Main.unsupportedBrowserErrorText": "Ο περιηγητής σας δεν υποστηρίζεται.", "PE.Controllers.Main.unsupportedBrowserErrorText": "Ο περιηγητής σας δεν υποστηρίζεται.",
"PE.Controllers.Main.uploadImageExtMessage": "Άγνωστη μορφή εικόνας.", "PE.Controllers.Main.uploadImageExtMessage": "Άγνωστη μορφή εικόνας.",
"PE.Controllers.Main.uploadImageFileCountMessage": "Δεν μεταφορτώθηκαν εικόνες.", "PE.Controllers.Main.uploadImageFileCountMessage": "Δεν μεταφορτώθηκαν εικόνες.",
"PE.Controllers.Main.uploadImageSizeMessage": "Ξεπεράστηκε το όριο μέγιστου μεγέθους εικόνας.", "PE.Controllers.Main.uploadImageSizeMessage": "Η εικόνα είναι πολύ μεγάλη. Το μέγιστο μέγεθος είναι 25MB.",
"PE.Controllers.Main.uploadImageTextText": "Μεταφόρτωση εικόνας...", "PE.Controllers.Main.uploadImageTextText": "Μεταφόρτωση εικόνας...",
"PE.Controllers.Main.uploadImageTitleText": "Μεταφόρτωση Εικόνας", "PE.Controllers.Main.uploadImageTitleText": "Μεταφόρτωση Εικόνας",
"PE.Controllers.Main.waitText": "Παρακαλούμε, περιμένετε...", "PE.Controllers.Main.waitText": "Παρακαλούμε, περιμένετε...",
@ -1988,6 +1988,7 @@
"PE.Views.Toolbar.txtScheme2": "Αποχρώσεις του γκρι", "PE.Views.Toolbar.txtScheme2": "Αποχρώσεις του γκρι",
"PE.Views.Toolbar.txtScheme20": "Αστικό", "PE.Views.Toolbar.txtScheme20": "Αστικό",
"PE.Views.Toolbar.txtScheme21": "Οίστρος", "PE.Views.Toolbar.txtScheme21": "Οίστρος",
"PE.Views.Toolbar.txtScheme22": "Νέο Γραφείο",
"PE.Views.Toolbar.txtScheme3": "Άκρο", "PE.Views.Toolbar.txtScheme3": "Άκρο",
"PE.Views.Toolbar.txtScheme4": "Άποψη", "PE.Views.Toolbar.txtScheme4": "Άποψη",
"PE.Views.Toolbar.txtScheme5": "Κυβικό", "PE.Views.Toolbar.txtScheme5": "Κυβικό",

View file

@ -1988,6 +1988,7 @@
"PE.Views.Toolbar.txtScheme2": "Escala de grises", "PE.Views.Toolbar.txtScheme2": "Escala de grises",
"PE.Views.Toolbar.txtScheme20": "Urbano", "PE.Views.Toolbar.txtScheme20": "Urbano",
"PE.Views.Toolbar.txtScheme21": "Brío", "PE.Views.Toolbar.txtScheme21": "Brío",
"PE.Views.Toolbar.txtScheme22": "Nueva oficina",
"PE.Views.Toolbar.txtScheme3": "Vértice", "PE.Views.Toolbar.txtScheme3": "Vértice",
"PE.Views.Toolbar.txtScheme4": "Aspecto", "PE.Views.Toolbar.txtScheme4": "Aspecto",
"PE.Views.Toolbar.txtScheme5": "Civil", "PE.Views.Toolbar.txtScheme5": "Civil",

View file

@ -94,7 +94,7 @@
"Common.Views.About.txtLicensee": "CESSIONNAIRE", "Common.Views.About.txtLicensee": "CESSIONNAIRE",
"Common.Views.About.txtLicensor": "CONCÉDANT", "Common.Views.About.txtLicensor": "CONCÉDANT",
"Common.Views.About.txtMail": "émail: ", "Common.Views.About.txtMail": "émail: ",
"Common.Views.About.txtPoweredBy": "Powered by", "Common.Views.About.txtPoweredBy": "Réalisation",
"Common.Views.About.txtTel": "tél.: ", "Common.Views.About.txtTel": "tél.: ",
"Common.Views.About.txtVersion": "Version ", "Common.Views.About.txtVersion": "Version ",
"Common.Views.AutoCorrectDialog.textAdd": "Ajouter", "Common.Views.AutoCorrectDialog.textAdd": "Ajouter",
@ -176,6 +176,13 @@
"Common.Views.Header.tipViewUsers": "Afficher les utilisateurs et gérer les droits d'accès aux documents", "Common.Views.Header.tipViewUsers": "Afficher les utilisateurs et gérer les droits d'accès aux documents",
"Common.Views.Header.txtAccessRights": "Modifier les droits d'accès", "Common.Views.Header.txtAccessRights": "Modifier les droits d'accès",
"Common.Views.Header.txtRename": "Renommer", "Common.Views.Header.txtRename": "Renommer",
"Common.Views.History.textCloseHistory": "Fermer l'historique",
"Common.Views.History.textHide": "Réduire",
"Common.Views.History.textHideAll": "Masquer les modifications détaillées",
"Common.Views.History.textRestore": "Restaurer",
"Common.Views.History.textShow": "Développer",
"Common.Views.History.textShowAll": "Afficher les modifications détaillées",
"Common.Views.History.textVer": "ver. ",
"Common.Views.ImageFromUrlDialog.textUrl": "Coller URL d'image:", "Common.Views.ImageFromUrlDialog.textUrl": "Coller URL d'image:",
"Common.Views.ImageFromUrlDialog.txtEmpty": "Champ obligatoire", "Common.Views.ImageFromUrlDialog.txtEmpty": "Champ obligatoire",
"Common.Views.ImageFromUrlDialog.txtNotUrl": "Ce champ doit être une URL au format \"http://www.example.com\"", "Common.Views.ImageFromUrlDialog.txtNotUrl": "Ce champ doit être une URL au format \"http://www.example.com\"",
@ -447,7 +454,7 @@
"PE.Controllers.Main.textLoadingDocument": "Chargement de présentation", "PE.Controllers.Main.textLoadingDocument": "Chargement de présentation",
"PE.Controllers.Main.textLongName": "Entrez un nom qui a moins de 128 caractères.", "PE.Controllers.Main.textLongName": "Entrez un nom qui a moins de 128 caractères.",
"PE.Controllers.Main.textNoLicenseTitle": "La limite de la licence est atteinte", "PE.Controllers.Main.textNoLicenseTitle": "La limite de la licence est atteinte",
"PE.Controllers.Main.textPaidFeature": "Fonction payée", "PE.Controllers.Main.textPaidFeature": "Fonction payante",
"PE.Controllers.Main.textRemember": "Se souvenir de mon choix", "PE.Controllers.Main.textRemember": "Se souvenir de mon choix",
"PE.Controllers.Main.textRenameError": "Le nom d'utilisateur ne peut être vide.", "PE.Controllers.Main.textRenameError": "Le nom d'utilisateur ne peut être vide.",
"PE.Controllers.Main.textRenameLabel": "Entrez un nom à utiliser pour la collaboration", "PE.Controllers.Main.textRenameLabel": "Entrez un nom à utiliser pour la collaboration",
@ -468,7 +475,7 @@
"PE.Controllers.Main.txtDateTime": "Date et heure", "PE.Controllers.Main.txtDateTime": "Date et heure",
"PE.Controllers.Main.txtDiagram": "SmartArt", "PE.Controllers.Main.txtDiagram": "SmartArt",
"PE.Controllers.Main.txtDiagramTitle": "Titre du graphique", "PE.Controllers.Main.txtDiagramTitle": "Titre du graphique",
"PE.Controllers.Main.txtEditingMode": "Définissez le mode d'édition...", "PE.Controllers.Main.txtEditingMode": "Réglage mode d'édition...",
"PE.Controllers.Main.txtErrorLoadHistory": "Chargement de l'historique a échoué", "PE.Controllers.Main.txtErrorLoadHistory": "Chargement de l'historique a échoué",
"PE.Controllers.Main.txtFiguredArrows": "Flèches figurées", "PE.Controllers.Main.txtFiguredArrows": "Flèches figurées",
"PE.Controllers.Main.txtFooter": "Pied de page", "PE.Controllers.Main.txtFooter": "Pied de page",
@ -703,7 +710,7 @@
"PE.Controllers.Main.txtTheme_green": "Vert", "PE.Controllers.Main.txtTheme_green": "Vert",
"PE.Controllers.Main.txtTheme_green_leaf": "Feuille verte", "PE.Controllers.Main.txtTheme_green_leaf": "Feuille verte",
"PE.Controllers.Main.txtTheme_lines": "Lignes", "PE.Controllers.Main.txtTheme_lines": "Lignes",
"PE.Controllers.Main.txtTheme_office": "Bureau", "PE.Controllers.Main.txtTheme_office": "Office",
"PE.Controllers.Main.txtTheme_office_theme": "Thème Office", "PE.Controllers.Main.txtTheme_office_theme": "Thème Office",
"PE.Controllers.Main.txtTheme_official": "officielle", "PE.Controllers.Main.txtTheme_official": "officielle",
"PE.Controllers.Main.txtTheme_pixel": "Pixélisée", "PE.Controllers.Main.txtTheme_pixel": "Pixélisée",
@ -715,7 +722,7 @@
"PE.Controllers.Main.unsupportedBrowserErrorText": "Votre navigateur n'est pas pris en charge.", "PE.Controllers.Main.unsupportedBrowserErrorText": "Votre navigateur n'est pas pris en charge.",
"PE.Controllers.Main.uploadImageExtMessage": "Format d'image inconnu.", "PE.Controllers.Main.uploadImageExtMessage": "Format d'image inconnu.",
"PE.Controllers.Main.uploadImageFileCountMessage": "Pas d'images chargées.", "PE.Controllers.Main.uploadImageFileCountMessage": "Pas d'images chargées.",
"PE.Controllers.Main.uploadImageSizeMessage": "La taille de l'image dépasse la limite maximale.", "PE.Controllers.Main.uploadImageSizeMessage": "L'image est trop grande. La taille limite est de 25 Mo.",
"PE.Controllers.Main.uploadImageTextText": "Chargement d'une image en cours...", "PE.Controllers.Main.uploadImageTextText": "Chargement d'une image en cours...",
"PE.Controllers.Main.uploadImageTitleText": "Chargement d'une image", "PE.Controllers.Main.uploadImageTitleText": "Chargement d'une image",
"PE.Controllers.Main.waitText": "Veuillez patienter...", "PE.Controllers.Main.waitText": "Veuillez patienter...",
@ -733,7 +740,7 @@
"PE.Controllers.Toolbar.confirmAddFontName": "La police que vous allez enregistrer n'est pas disponible sur l'appareil actuel.<br>Le style du texte sera affiché à l'aide de l'une des polices de système, la police sauvée sera utilisée lorsqu'elle est disponible.<br>Voulez-vous continuer?", "PE.Controllers.Toolbar.confirmAddFontName": "La police que vous allez enregistrer n'est pas disponible sur l'appareil actuel.<br>Le style du texte sera affiché à l'aide de l'une des polices de système, la police sauvée sera utilisée lorsqu'elle est disponible.<br>Voulez-vous continuer?",
"PE.Controllers.Toolbar.textAccent": "Types d'accentuation", "PE.Controllers.Toolbar.textAccent": "Types d'accentuation",
"PE.Controllers.Toolbar.textBracket": "Crochets", "PE.Controllers.Toolbar.textBracket": "Crochets",
"PE.Controllers.Toolbar.textEmptyImgUrl": "Specifiez URL d'image.", "PE.Controllers.Toolbar.textEmptyImgUrl": "Spécifiez l'URL de l'image",
"PE.Controllers.Toolbar.textFontSizeErr": "La valeur entrée est incorrecte.<br>Entrez une valeur numérique entre 1 et 300", "PE.Controllers.Toolbar.textFontSizeErr": "La valeur entrée est incorrecte.<br>Entrez une valeur numérique entre 1 et 300",
"PE.Controllers.Toolbar.textFraction": "Fractions", "PE.Controllers.Toolbar.textFraction": "Fractions",
"PE.Controllers.Toolbar.textFunction": "Fonctions", "PE.Controllers.Toolbar.textFunction": "Fonctions",
@ -1118,7 +1125,7 @@
"PE.Views.DocumentHolder.insertRowText": "Insérer une ligne", "PE.Views.DocumentHolder.insertRowText": "Insérer une ligne",
"PE.Views.DocumentHolder.insertText": "Insérer", "PE.Views.DocumentHolder.insertText": "Insérer",
"PE.Views.DocumentHolder.langText": "Sélectionner la langue", "PE.Views.DocumentHolder.langText": "Sélectionner la langue",
"PE.Views.DocumentHolder.leftText": "A gauche", "PE.Views.DocumentHolder.leftText": "À gauche",
"PE.Views.DocumentHolder.loadSpellText": "Chargement des variantes en cours...", "PE.Views.DocumentHolder.loadSpellText": "Chargement des variantes en cours...",
"PE.Views.DocumentHolder.mergeCellsText": "Fusionner les cellules", "PE.Views.DocumentHolder.mergeCellsText": "Fusionner les cellules",
"PE.Views.DocumentHolder.mniCustomTable": "Inserer un tableau personnalisé", "PE.Views.DocumentHolder.mniCustomTable": "Inserer un tableau personnalisé",
@ -1273,7 +1280,7 @@
"PE.Views.DocumentPreview.txtPlay": "Démarrer la présentation", "PE.Views.DocumentPreview.txtPlay": "Démarrer la présentation",
"PE.Views.DocumentPreview.txtPrev": "Diapositive précédente", "PE.Views.DocumentPreview.txtPrev": "Diapositive précédente",
"PE.Views.DocumentPreview.txtReset": "Remettre à zéro", "PE.Views.DocumentPreview.txtReset": "Remettre à zéro",
"PE.Views.FileMenu.btnAboutCaption": "A propos", "PE.Views.FileMenu.btnAboutCaption": "À propos",
"PE.Views.FileMenu.btnBackCaption": "Ouvrir l'emplacement du fichier", "PE.Views.FileMenu.btnBackCaption": "Ouvrir l'emplacement du fichier",
"PE.Views.FileMenu.btnCloseMenuCaption": "Fermer le menu", "PE.Views.FileMenu.btnCloseMenuCaption": "Fermer le menu",
"PE.Views.FileMenu.btnCreateNewCaption": "Nouvelle présentation", "PE.Views.FileMenu.btnCreateNewCaption": "Nouvelle présentation",
@ -1448,7 +1455,7 @@
"PE.Views.ImageSettingsAdvanced.textTitle": "Image - Paramètres avancés", "PE.Views.ImageSettingsAdvanced.textTitle": "Image - Paramètres avancés",
"PE.Views.ImageSettingsAdvanced.textVertically": "Verticalement", "PE.Views.ImageSettingsAdvanced.textVertically": "Verticalement",
"PE.Views.ImageSettingsAdvanced.textWidth": "Largeur", "PE.Views.ImageSettingsAdvanced.textWidth": "Largeur",
"PE.Views.LeftMenu.tipAbout": "A propos", "PE.Views.LeftMenu.tipAbout": "À propos",
"PE.Views.LeftMenu.tipChat": "Chat", "PE.Views.LeftMenu.tipChat": "Chat",
"PE.Views.LeftMenu.tipComments": "Commentaires", "PE.Views.LeftMenu.tipComments": "Commentaires",
"PE.Views.LeftMenu.tipPlugins": "Plug-ins", "PE.Views.LeftMenu.tipPlugins": "Plug-ins",
@ -1467,14 +1474,14 @@
"PE.Views.ParagraphSettings.textAdvanced": "Afficher les paramètres avancés", "PE.Views.ParagraphSettings.textAdvanced": "Afficher les paramètres avancés",
"PE.Views.ParagraphSettings.textAt": "A", "PE.Views.ParagraphSettings.textAt": "A",
"PE.Views.ParagraphSettings.textAtLeast": "Au moins", "PE.Views.ParagraphSettings.textAtLeast": "Au moins",
"PE.Views.ParagraphSettings.textAuto": "Plusieurs", "PE.Views.ParagraphSettings.textAuto": "Multiple ",
"PE.Views.ParagraphSettings.textExact": "Exactement", "PE.Views.ParagraphSettings.textExact": "Exactement",
"PE.Views.ParagraphSettings.txtAutoText": "Auto", "PE.Views.ParagraphSettings.txtAutoText": "Auto",
"PE.Views.ParagraphSettingsAdvanced.noTabs": "The specified tabs will appear in this field", "PE.Views.ParagraphSettingsAdvanced.noTabs": "The specified tabs will appear in this field",
"PE.Views.ParagraphSettingsAdvanced.strAllCaps": "Majuscules", "PE.Views.ParagraphSettingsAdvanced.strAllCaps": "Majuscules",
"PE.Views.ParagraphSettingsAdvanced.strDoubleStrike": "Double barré", "PE.Views.ParagraphSettingsAdvanced.strDoubleStrike": "Barré double",
"PE.Views.ParagraphSettingsAdvanced.strIndent": "Retraits", "PE.Views.ParagraphSettingsAdvanced.strIndent": "Retraits",
"PE.Views.ParagraphSettingsAdvanced.strIndentsLeftText": "A gauche", "PE.Views.ParagraphSettingsAdvanced.strIndentsLeftText": "À gauche",
"PE.Views.ParagraphSettingsAdvanced.strIndentsLineSpacing": "Interligne", "PE.Views.ParagraphSettingsAdvanced.strIndentsLineSpacing": "Interligne",
"PE.Views.ParagraphSettingsAdvanced.strIndentsRightText": "A droite", "PE.Views.ParagraphSettingsAdvanced.strIndentsRightText": "A droite",
"PE.Views.ParagraphSettingsAdvanced.strIndentsSpacingAfter": "Après", "PE.Views.ParagraphSettingsAdvanced.strIndentsSpacingAfter": "Après",
@ -1489,7 +1496,7 @@
"PE.Views.ParagraphSettingsAdvanced.strSuperscript": "Exposant", "PE.Views.ParagraphSettingsAdvanced.strSuperscript": "Exposant",
"PE.Views.ParagraphSettingsAdvanced.strTabs": "Tabulation", "PE.Views.ParagraphSettingsAdvanced.strTabs": "Tabulation",
"PE.Views.ParagraphSettingsAdvanced.textAlign": "Alignement", "PE.Views.ParagraphSettingsAdvanced.textAlign": "Alignement",
"PE.Views.ParagraphSettingsAdvanced.textAuto": "Plusieurs", "PE.Views.ParagraphSettingsAdvanced.textAuto": "Multiple ",
"PE.Views.ParagraphSettingsAdvanced.textCharacterSpacing": "Espacement des caractères", "PE.Views.ParagraphSettingsAdvanced.textCharacterSpacing": "Espacement des caractères",
"PE.Views.ParagraphSettingsAdvanced.textDefault": "Par défaut", "PE.Views.ParagraphSettingsAdvanced.textDefault": "Par défaut",
"PE.Views.ParagraphSettingsAdvanced.textEffects": "Effets", "PE.Views.ParagraphSettingsAdvanced.textEffects": "Effets",
@ -1502,7 +1509,7 @@
"PE.Views.ParagraphSettingsAdvanced.textRemoveAll": "Supprimer tout", "PE.Views.ParagraphSettingsAdvanced.textRemoveAll": "Supprimer tout",
"PE.Views.ParagraphSettingsAdvanced.textSet": "Spécifier", "PE.Views.ParagraphSettingsAdvanced.textSet": "Spécifier",
"PE.Views.ParagraphSettingsAdvanced.textTabCenter": "Au centre", "PE.Views.ParagraphSettingsAdvanced.textTabCenter": "Au centre",
"PE.Views.ParagraphSettingsAdvanced.textTabLeft": "A gauche", "PE.Views.ParagraphSettingsAdvanced.textTabLeft": "À gauche",
"PE.Views.ParagraphSettingsAdvanced.textTabPosition": "Position", "PE.Views.ParagraphSettingsAdvanced.textTabPosition": "Position",
"PE.Views.ParagraphSettingsAdvanced.textTabRight": "A droite", "PE.Views.ParagraphSettingsAdvanced.textTabRight": "A droite",
"PE.Views.ParagraphSettingsAdvanced.textTitle": "Paragraphe - Paramètres avancés", "PE.Views.ParagraphSettingsAdvanced.textTitle": "Paragraphe - Paramètres avancés",
@ -1593,7 +1600,7 @@
"PE.Views.ShapeSettingsAdvanced.textHorizontally": "Horizontalement", "PE.Views.ShapeSettingsAdvanced.textHorizontally": "Horizontalement",
"PE.Views.ShapeSettingsAdvanced.textJoinType": "Type de jointure", "PE.Views.ShapeSettingsAdvanced.textJoinType": "Type de jointure",
"PE.Views.ShapeSettingsAdvanced.textKeepRatio": "Proportions constantes", "PE.Views.ShapeSettingsAdvanced.textKeepRatio": "Proportions constantes",
"PE.Views.ShapeSettingsAdvanced.textLeft": "A gauche", "PE.Views.ShapeSettingsAdvanced.textLeft": "À gauche",
"PE.Views.ShapeSettingsAdvanced.textLineStyle": "Style de ligne", "PE.Views.ShapeSettingsAdvanced.textLineStyle": "Style de ligne",
"PE.Views.ShapeSettingsAdvanced.textMiter": "Onglet", "PE.Views.ShapeSettingsAdvanced.textMiter": "Onglet",
"PE.Views.ShapeSettingsAdvanced.textNofit": "Ne pas ajuster automatiquement", "PE.Views.ShapeSettingsAdvanced.textNofit": "Ne pas ajuster automatiquement",
@ -1657,9 +1664,9 @@
"PE.Views.SlideSettings.textGradient": "Dégradé", "PE.Views.SlideSettings.textGradient": "Dégradé",
"PE.Views.SlideSettings.textGradientFill": "Remplissage en dégradé", "PE.Views.SlideSettings.textGradientFill": "Remplissage en dégradé",
"PE.Views.SlideSettings.textHorizontalIn": "Horizontal intérieur", "PE.Views.SlideSettings.textHorizontalIn": "Horizontal intérieur",
"PE.Views.SlideSettings.textHorizontalOut": "Horizontal intérieur", "PE.Views.SlideSettings.textHorizontalOut": "Horizontal extérieur",
"PE.Views.SlideSettings.textImageTexture": "Image ou Texture", "PE.Views.SlideSettings.textImageTexture": "Image ou Texture",
"PE.Views.SlideSettings.textLeft": "A gauche", "PE.Views.SlideSettings.textLeft": "À gauche",
"PE.Views.SlideSettings.textLinear": "Linéaire", "PE.Views.SlideSettings.textLinear": "Linéaire",
"PE.Views.SlideSettings.textNoFill": "Pas de remplissage", "PE.Views.SlideSettings.textNoFill": "Pas de remplissage",
"PE.Views.SlideSettings.textNone": "Rien", "PE.Views.SlideSettings.textNone": "Rien",
@ -1683,8 +1690,8 @@
"PE.Views.SlideSettings.textTopLeft": "En haut à gauche", "PE.Views.SlideSettings.textTopLeft": "En haut à gauche",
"PE.Views.SlideSettings.textTopRight": "En haut à droite", "PE.Views.SlideSettings.textTopRight": "En haut à droite",
"PE.Views.SlideSettings.textUnCover": "Découvrir", "PE.Views.SlideSettings.textUnCover": "Découvrir",
"PE.Views.SlideSettings.textVerticalIn": "Vertical extérieur", "PE.Views.SlideSettings.textVerticalIn": "Vertical intérieur",
"PE.Views.SlideSettings.textVerticalOut": "Vertical intérieur ", "PE.Views.SlideSettings.textVerticalOut": "Vertical extérieur ",
"PE.Views.SlideSettings.textWedge": "Coin", "PE.Views.SlideSettings.textWedge": "Coin",
"PE.Views.SlideSettings.textWipe": "Effacement", "PE.Views.SlideSettings.textWipe": "Effacement",
"PE.Views.SlideSettings.textZoom": "Zoom", "PE.Views.SlideSettings.textZoom": "Zoom",
@ -1799,7 +1806,7 @@
"PE.Views.TableSettingsAdvanced.textBottom": "En bas", "PE.Views.TableSettingsAdvanced.textBottom": "En bas",
"PE.Views.TableSettingsAdvanced.textCheckMargins": "Utiliser marges par défaut", "PE.Views.TableSettingsAdvanced.textCheckMargins": "Utiliser marges par défaut",
"PE.Views.TableSettingsAdvanced.textDefaultMargins": "Marges par défaut", "PE.Views.TableSettingsAdvanced.textDefaultMargins": "Marges par défaut",
"PE.Views.TableSettingsAdvanced.textLeft": "A gauche", "PE.Views.TableSettingsAdvanced.textLeft": "À gauche",
"PE.Views.TableSettingsAdvanced.textMargins": "Marges de la cellule", "PE.Views.TableSettingsAdvanced.textMargins": "Marges de la cellule",
"PE.Views.TableSettingsAdvanced.textRight": "A droite", "PE.Views.TableSettingsAdvanced.textRight": "A droite",
"PE.Views.TableSettingsAdvanced.textTitle": "Tableau - Paramètres avancés", "PE.Views.TableSettingsAdvanced.textTitle": "Tableau - Paramètres avancés",
@ -1974,7 +1981,7 @@
"PE.Views.Toolbar.txtDistribVert": "Distribuer verticalement", "PE.Views.Toolbar.txtDistribVert": "Distribuer verticalement",
"PE.Views.Toolbar.txtGroup": "Grouper", "PE.Views.Toolbar.txtGroup": "Grouper",
"PE.Views.Toolbar.txtObjectsAlign": "Aligner les objets sélectionnés", "PE.Views.Toolbar.txtObjectsAlign": "Aligner les objets sélectionnés",
"PE.Views.Toolbar.txtScheme1": "Bureau", "PE.Views.Toolbar.txtScheme1": "Office",
"PE.Views.Toolbar.txtScheme10": "Médian", "PE.Views.Toolbar.txtScheme10": "Médian",
"PE.Views.Toolbar.txtScheme11": "Métro", "PE.Views.Toolbar.txtScheme11": "Métro",
"PE.Views.Toolbar.txtScheme12": "Module", "PE.Views.Toolbar.txtScheme12": "Module",
@ -1988,6 +1995,7 @@
"PE.Views.Toolbar.txtScheme2": "Niveaux de gris", "PE.Views.Toolbar.txtScheme2": "Niveaux de gris",
"PE.Views.Toolbar.txtScheme20": "Urbain", "PE.Views.Toolbar.txtScheme20": "Urbain",
"PE.Views.Toolbar.txtScheme21": "Verve", "PE.Views.Toolbar.txtScheme21": "Verve",
"PE.Views.Toolbar.txtScheme22": "New Office",
"PE.Views.Toolbar.txtScheme3": "Apex", "PE.Views.Toolbar.txtScheme3": "Apex",
"PE.Views.Toolbar.txtScheme4": "Proportions", "PE.Views.Toolbar.txtScheme4": "Proportions",
"PE.Views.Toolbar.txtScheme5": "Civique", "PE.Views.Toolbar.txtScheme5": "Civique",

View file

@ -178,6 +178,13 @@
"Common.Views.Header.tipViewUsers": "Gebruikers weergeven en toegangsrechten voor documenten beheren", "Common.Views.Header.tipViewUsers": "Gebruikers weergeven en toegangsrechten voor documenten beheren",
"Common.Views.Header.txtAccessRights": "Toegangsrechten wijzigen", "Common.Views.Header.txtAccessRights": "Toegangsrechten wijzigen",
"Common.Views.Header.txtRename": "Hernoemen", "Common.Views.Header.txtRename": "Hernoemen",
"Common.Views.History.textCloseHistory": "Sluit geschiedenis",
"Common.Views.History.textHide": "Samenvouwen",
"Common.Views.History.textHideAll": "Details van wijzigingen verbergen",
"Common.Views.History.textRestore": "Herstellen",
"Common.Views.History.textShow": "Uitvouwen",
"Common.Views.History.textShowAll": "Details van wijzigingen weergeven",
"Common.Views.History.textVer": "ver.",
"Common.Views.ImageFromUrlDialog.textUrl": "URL van een afbeelding plakken:", "Common.Views.ImageFromUrlDialog.textUrl": "URL van een afbeelding plakken:",
"Common.Views.ImageFromUrlDialog.txtEmpty": "Dit veld is vereist", "Common.Views.ImageFromUrlDialog.txtEmpty": "Dit veld is vereist",
"Common.Views.ImageFromUrlDialog.txtNotUrl": "Dit veld moet een URL in de notatie \"http://www.voorbeeld.com\" bevatten", "Common.Views.ImageFromUrlDialog.txtNotUrl": "Dit veld moet een URL in de notatie \"http://www.voorbeeld.com\" bevatten",
@ -203,7 +210,7 @@
"Common.Views.ListSettingsDialog.txtTitle": "Lijst instellingen", "Common.Views.ListSettingsDialog.txtTitle": "Lijst instellingen",
"Common.Views.ListSettingsDialog.txtType": "Type", "Common.Views.ListSettingsDialog.txtType": "Type",
"Common.Views.OpenDialog.closeButtonText": "Bestand sluiten", "Common.Views.OpenDialog.closeButtonText": "Bestand sluiten",
"Common.Views.OpenDialog.txtEncoding": "Versleuteling", "Common.Views.OpenDialog.txtEncoding": "Codering",
"Common.Views.OpenDialog.txtIncorrectPwd": "Wachtwoord is niet juist", "Common.Views.OpenDialog.txtIncorrectPwd": "Wachtwoord is niet juist",
"Common.Views.OpenDialog.txtOpenFile": "Voer een wachtwoord in om dit bestand te openen", "Common.Views.OpenDialog.txtOpenFile": "Voer een wachtwoord in om dit bestand te openen",
"Common.Views.OpenDialog.txtPassword": "Wachtwoord", "Common.Views.OpenDialog.txtPassword": "Wachtwoord",
@ -717,7 +724,7 @@
"PE.Controllers.Main.unsupportedBrowserErrorText": "Uw browser wordt niet ondersteund.", "PE.Controllers.Main.unsupportedBrowserErrorText": "Uw browser wordt niet ondersteund.",
"PE.Controllers.Main.uploadImageExtMessage": "Onbekende afbeeldingsindeling.", "PE.Controllers.Main.uploadImageExtMessage": "Onbekende afbeeldingsindeling.",
"PE.Controllers.Main.uploadImageFileCountMessage": "Geen afbeeldingen geüpload.", "PE.Controllers.Main.uploadImageFileCountMessage": "Geen afbeeldingen geüpload.",
"PE.Controllers.Main.uploadImageSizeMessage": "Maximale afbeeldingsgrootte overschreden.", "PE.Controllers.Main.uploadImageSizeMessage": "De afbeelding is te groot. De maximale grote is 25MB.",
"PE.Controllers.Main.uploadImageTextText": "Afbeelding wordt geüpload...", "PE.Controllers.Main.uploadImageTextText": "Afbeelding wordt geüpload...",
"PE.Controllers.Main.uploadImageTitleText": "Afbeelding wordt geüpload", "PE.Controllers.Main.uploadImageTitleText": "Afbeelding wordt geüpload",
"PE.Controllers.Main.waitText": "Een moment...", "PE.Controllers.Main.waitText": "Een moment...",
@ -1869,7 +1876,7 @@
"PE.Views.Toolbar.capInsertText": "Tekstvak", "PE.Views.Toolbar.capInsertText": "Tekstvak",
"PE.Views.Toolbar.capInsertVideo": "Video", "PE.Views.Toolbar.capInsertVideo": "Video",
"PE.Views.Toolbar.capTabFile": "Bestand", "PE.Views.Toolbar.capTabFile": "Bestand",
"PE.Views.Toolbar.capTabHome": "Home", "PE.Views.Toolbar.capTabHome": "Start",
"PE.Views.Toolbar.capTabInsert": "Invoegen", "PE.Views.Toolbar.capTabInsert": "Invoegen",
"PE.Views.Toolbar.mniCapitalizeWords": "Geef elk woord een hoofdletter ", "PE.Views.Toolbar.mniCapitalizeWords": "Geef elk woord een hoofdletter ",
"PE.Views.Toolbar.mniCustomTable": "Aangepaste tabel invoegen", "PE.Views.Toolbar.mniCustomTable": "Aangepaste tabel invoegen",
@ -1918,7 +1925,7 @@
"PE.Views.Toolbar.textSuperscript": "Superscript", "PE.Views.Toolbar.textSuperscript": "Superscript",
"PE.Views.Toolbar.textTabCollaboration": "Samenwerking", "PE.Views.Toolbar.textTabCollaboration": "Samenwerking",
"PE.Views.Toolbar.textTabFile": "Bestand", "PE.Views.Toolbar.textTabFile": "Bestand",
"PE.Views.Toolbar.textTabHome": "Home", "PE.Views.Toolbar.textTabHome": "Start",
"PE.Views.Toolbar.textTabInsert": "Invoegen", "PE.Views.Toolbar.textTabInsert": "Invoegen",
"PE.Views.Toolbar.textTabProtect": "Beveiliging", "PE.Views.Toolbar.textTabProtect": "Beveiliging",
"PE.Views.Toolbar.textTitleError": "Fout", "PE.Views.Toolbar.textTitleError": "Fout",
@ -1990,6 +1997,7 @@
"PE.Views.Toolbar.txtScheme2": "Grijswaarden", "PE.Views.Toolbar.txtScheme2": "Grijswaarden",
"PE.Views.Toolbar.txtScheme20": "Stedelijk", "PE.Views.Toolbar.txtScheme20": "Stedelijk",
"PE.Views.Toolbar.txtScheme21": "Verve", "PE.Views.Toolbar.txtScheme21": "Verve",
"PE.Views.Toolbar.txtScheme22": "Nieuw bureau",
"PE.Views.Toolbar.txtScheme3": "Toppunt", "PE.Views.Toolbar.txtScheme3": "Toppunt",
"PE.Views.Toolbar.txtScheme4": "Aspect", "PE.Views.Toolbar.txtScheme4": "Aspect",
"PE.Views.Toolbar.txtScheme5": "Civiel", "PE.Views.Toolbar.txtScheme5": "Civiel",

View file

@ -176,6 +176,13 @@
"Common.Views.Header.tipViewUsers": "Ver usuários e gerenciar direitos de acesso ao documento", "Common.Views.Header.tipViewUsers": "Ver usuários e gerenciar direitos de acesso ao documento",
"Common.Views.Header.txtAccessRights": "Alterar direitos de acesso", "Common.Views.Header.txtAccessRights": "Alterar direitos de acesso",
"Common.Views.Header.txtRename": "Renomear", "Common.Views.Header.txtRename": "Renomear",
"Common.Views.History.textCloseHistory": "Fechar histórico",
"Common.Views.History.textHide": "Minimizar",
"Common.Views.History.textHideAll": "Ocultar alterações detalhadas ",
"Common.Views.History.textRestore": "Restaurar",
"Common.Views.History.textShow": "Expandir",
"Common.Views.History.textShowAll": "Mostrar alterações detalhadas",
"Common.Views.History.textVer": "ver.",
"Common.Views.ImageFromUrlDialog.textUrl": "Colar uma URL de imagem:", "Common.Views.ImageFromUrlDialog.textUrl": "Colar uma URL de imagem:",
"Common.Views.ImageFromUrlDialog.txtEmpty": "Este campo é obrigatório", "Common.Views.ImageFromUrlDialog.txtEmpty": "Este campo é obrigatório",
"Common.Views.ImageFromUrlDialog.txtNotUrl": "Este campo deve ser uma URL no formato \"http://www.example.com\"", "Common.Views.ImageFromUrlDialog.txtNotUrl": "Este campo deve ser uma URL no formato \"http://www.example.com\"",
@ -1988,6 +1995,7 @@
"PE.Views.Toolbar.txtScheme2": "Escala de cinza", "PE.Views.Toolbar.txtScheme2": "Escala de cinza",
"PE.Views.Toolbar.txtScheme20": "Urbano", "PE.Views.Toolbar.txtScheme20": "Urbano",
"PE.Views.Toolbar.txtScheme21": "Verve", "PE.Views.Toolbar.txtScheme21": "Verve",
"PE.Views.Toolbar.txtScheme22": "Novo Office",
"PE.Views.Toolbar.txtScheme3": "Ápice", "PE.Views.Toolbar.txtScheme3": "Ápice",
"PE.Views.Toolbar.txtScheme4": "Aspecto", "PE.Views.Toolbar.txtScheme4": "Aspecto",
"PE.Views.Toolbar.txtScheme5": "Cívico", "PE.Views.Toolbar.txtScheme5": "Cívico",

View file

@ -711,7 +711,7 @@
"PE.Controllers.Main.txtTheme_turtle": "Turtle", "PE.Controllers.Main.txtTheme_turtle": "Turtle",
"PE.Controllers.Main.txtXAxis": "Axa X", "PE.Controllers.Main.txtXAxis": "Axa X",
"PE.Controllers.Main.txtYAxis": "Axa Y", "PE.Controllers.Main.txtYAxis": "Axa Y",
"PE.Controllers.Main.unknownErrorText": "Eroare Necunoscut.", "PE.Controllers.Main.unknownErrorText": "Eroare necunoscută.",
"PE.Controllers.Main.unsupportedBrowserErrorText": "Browserul nu este compatibil.", "PE.Controllers.Main.unsupportedBrowserErrorText": "Browserul nu este compatibil.",
"PE.Controllers.Main.uploadImageExtMessage": "Format de imagine nerecunoscut.", "PE.Controllers.Main.uploadImageExtMessage": "Format de imagine nerecunoscut.",
"PE.Controllers.Main.uploadImageFileCountMessage": "Nicio imagine nu a fost încărcată.", "PE.Controllers.Main.uploadImageFileCountMessage": "Nicio imagine nu a fost încărcată.",
@ -1670,7 +1670,7 @@
"PE.Views.SlideSettings.textRadial": "Radială", "PE.Views.SlideSettings.textRadial": "Radială",
"PE.Views.SlideSettings.textReset": "Renunțare la modificări", "PE.Views.SlideSettings.textReset": "Renunțare la modificări",
"PE.Views.SlideSettings.textRight": "Dreapta", "PE.Views.SlideSettings.textRight": "Dreapta",
"PE.Views.SlideSettings.textSec": "T", "PE.Views.SlideSettings.textSec": "s",
"PE.Views.SlideSettings.textSelectImage": "Selectați imaginea", "PE.Views.SlideSettings.textSelectImage": "Selectați imaginea",
"PE.Views.SlideSettings.textSelectTexture": "Selectare", "PE.Views.SlideSettings.textSelectTexture": "Selectare",
"PE.Views.SlideSettings.textSmoothly": "Lin", "PE.Views.SlideSettings.textSmoothly": "Lin",
@ -1988,6 +1988,7 @@
"PE.Views.Toolbar.txtScheme2": "Tonuri de gri", "PE.Views.Toolbar.txtScheme2": "Tonuri de gri",
"PE.Views.Toolbar.txtScheme20": "Urban", "PE.Views.Toolbar.txtScheme20": "Urban",
"PE.Views.Toolbar.txtScheme21": "Vervă", "PE.Views.Toolbar.txtScheme21": "Vervă",
"PE.Views.Toolbar.txtScheme22": "New Office",
"PE.Views.Toolbar.txtScheme3": "Apex", "PE.Views.Toolbar.txtScheme3": "Apex",
"PE.Views.Toolbar.txtScheme4": "Aspect", "PE.Views.Toolbar.txtScheme4": "Aspect",
"PE.Views.Toolbar.txtScheme5": "Civic", "PE.Views.Toolbar.txtScheme5": "Civic",

View file

@ -176,6 +176,13 @@
"Common.Views.Header.tipViewUsers": "Просмотр пользователей и управление правами доступа к документу", "Common.Views.Header.tipViewUsers": "Просмотр пользователей и управление правами доступа к документу",
"Common.Views.Header.txtAccessRights": "Изменить права доступа", "Common.Views.Header.txtAccessRights": "Изменить права доступа",
"Common.Views.Header.txtRename": "Переименовать", "Common.Views.Header.txtRename": "Переименовать",
"Common.Views.History.textCloseHistory": "Закрыть историю",
"Common.Views.History.textHide": "Свернуть",
"Common.Views.History.textHideAll": "Скрыть подробные изменения",
"Common.Views.History.textRestore": "Восстановить",
"Common.Views.History.textShow": "Развернуть",
"Common.Views.History.textShowAll": "Показать подробные изменения",
"Common.Views.History.textVer": "вер.",
"Common.Views.ImageFromUrlDialog.textUrl": "Вставьте URL изображения:", "Common.Views.ImageFromUrlDialog.textUrl": "Вставьте URL изображения:",
"Common.Views.ImageFromUrlDialog.txtEmpty": "Это поле обязательно для заполнения", "Common.Views.ImageFromUrlDialog.txtEmpty": "Это поле обязательно для заполнения",
"Common.Views.ImageFromUrlDialog.txtNotUrl": "Это поле должно быть URL-адресом в формате \"http://www.example.com\"", "Common.Views.ImageFromUrlDialog.txtNotUrl": "Это поле должно быть URL-адресом в формате \"http://www.example.com\"",

View file

@ -71,6 +71,8 @@
"notcriticalErrorTitle": "Advertiment", "notcriticalErrorTitle": "Advertiment",
"SDK": { "SDK": {
"Chart": "Gràfic", "Chart": "Gràfic",
"Click to add first slide": "Feu clic per afegir la primera diapositiva",
"Click to add notes": "Feu clic per afegir notes",
"ClipArt": "Imatges Predissenyades", "ClipArt": "Imatges Predissenyades",
"Date and time": "Data i hora", "Date and time": "Data i hora",
"Diagram": "Diagrama", "Diagram": "Diagrama",
@ -78,7 +80,9 @@
"Footer": "Peu de pàgina", "Footer": "Peu de pàgina",
"Header": "Capçalera", "Header": "Capçalera",
"Image": "Imatge", "Image": "Imatge",
"Loading": "Carregant",
"Media": "Mitjans", "Media": "Mitjans",
"None": "Cap",
"Picture": "Imatge", "Picture": "Imatge",
"Series": "Sèrie", "Series": "Sèrie",
"Slide number": "Número de Diapositiva", "Slide number": "Número de Diapositiva",
@ -258,6 +262,7 @@
"textBottomLeft": "Inferior-Esquerra", "textBottomLeft": "Inferior-Esquerra",
"textBottomRight": "Inferior-Dreta", "textBottomRight": "Inferior-Dreta",
"textBringToForeground": "Portar a Primer pla", "textBringToForeground": "Portar a Primer pla",
"textBullets": "Vinyetes",
"textBulletsAndNumbers": "Vinyetes i números", "textBulletsAndNumbers": "Vinyetes i números",
"textCaseSensitive": "Sensible a Majúscules i Minúscules", "textCaseSensitive": "Sensible a Majúscules i Minúscules",
"textCellMargins": "Marges de Cel·la", "textCellMargins": "Marges de Cel·la",
@ -321,6 +326,7 @@
"textNoStyles": "No hi ha estils per a aquest tipus de diagrama.", "textNoStyles": "No hi ha estils per a aquest tipus de diagrama.",
"textNoTextFound": "No s'ha trobat el text", "textNoTextFound": "No s'ha trobat el text",
"textNotUrl": "Aquest camp hauria de ser una URL en el format \"http://www.exemple.com\"", "textNotUrl": "Aquest camp hauria de ser una URL en el format \"http://www.exemple.com\"",
"textNumbers": "Nombres",
"textOpacity": "Opacitat", "textOpacity": "Opacitat",
"textOptions": "Opcions", "textOptions": "Opcions",
"textPictureFromLibrary": "Imatge de la Biblioteca", "textPictureFromLibrary": "Imatge de la Biblioteca",
@ -431,7 +437,27 @@
"textTitle": "Nom", "textTitle": "Nom",
"textUnitOfMeasurement": "Unitat de Mesura", "textUnitOfMeasurement": "Unitat de Mesura",
"textUploaded": "Carregat", "textUploaded": "Carregat",
"textVersion": "Versió" "textVersion": "Versió",
"txtScheme1": "Oficina",
"txtScheme10": "Mitjana",
"txtScheme11": "Metro",
"txtScheme12": "Mòdul",
"txtScheme13": "Opulent",
"txtScheme14": "Mirador",
"txtScheme15": "Origen",
"txtScheme16": "Paper",
"txtScheme17": "Solstici",
"txtScheme18": "Tècnic",
"txtScheme19": "Excursió",
"txtScheme2": "Escala de grisos",
"txtScheme22": "Nova Oficina",
"txtScheme3": "Vèrtex",
"txtScheme4": "Aspecte",
"txtScheme5": "Cívic",
"txtScheme6": "Concurs",
"txtScheme7": "Patrimoni net",
"txtScheme8": "Flux",
"txtScheme9": "Fosa"
} }
} }
} }

View file

@ -71,6 +71,8 @@
"notcriticalErrorTitle": "Warnung", "notcriticalErrorTitle": "Warnung",
"SDK": { "SDK": {
"Chart": "Diagramm", "Chart": "Diagramm",
"Click to add first slide": "Klicken Sie, um die erste Folie hinzuzufügen",
"Click to add notes": "Klicken Sie, um Notizen hinzuzufügen",
"ClipArt": "ClipArt", "ClipArt": "ClipArt",
"Date and time": "Datum und Uhrzeit", "Date and time": "Datum und Uhrzeit",
"Diagram": "Schema", "Diagram": "Schema",
@ -78,7 +80,9 @@
"Footer": "Fußzeile", "Footer": "Fußzeile",
"Header": "Kopfzeile", "Header": "Kopfzeile",
"Image": "Bild", "Image": "Bild",
"Loading": "Ladevorgang",
"Media": "Multimedia", "Media": "Multimedia",
"None": "Kein(e)",
"Picture": "Bild", "Picture": "Bild",
"Series": "Reihen", "Series": "Reihen",
"Slide number": "Foliennummer", "Slide number": "Foliennummer",
@ -258,6 +262,7 @@
"textBottomLeft": "Unten links", "textBottomLeft": "Unten links",
"textBottomRight": "Unten rechts", "textBottomRight": "Unten rechts",
"textBringToForeground": "In den Vordergrund bringen", "textBringToForeground": "In den Vordergrund bringen",
"textBullets": "Aufzählung",
"textBulletsAndNumbers": "Aufzählungszeichen und Nummern", "textBulletsAndNumbers": "Aufzählungszeichen und Nummern",
"textCaseSensitive": "Groß-/Kleinschreibung beachten", "textCaseSensitive": "Groß-/Kleinschreibung beachten",
"textCellMargins": "Zellenränder", "textCellMargins": "Zellenränder",
@ -321,6 +326,7 @@
"textNoStyles": "Keine Stile für diesen Typ von Diagrammen.", "textNoStyles": "Keine Stile für diesen Typ von Diagrammen.",
"textNoTextFound": "Der Text wurde nicht gefunden", "textNoTextFound": "Der Text wurde nicht gefunden",
"textNotUrl": "Dieser Bereich soll eine URL im Format \"http://www.example.com\" sein.", "textNotUrl": "Dieser Bereich soll eine URL im Format \"http://www.example.com\" sein.",
"textNumbers": "Nummern",
"textOpacity": "Undurchsichtigkeit", "textOpacity": "Undurchsichtigkeit",
"textOptions": "Optionen", "textOptions": "Optionen",
"textPictureFromLibrary": "Bild aus dem Verzeichnis", "textPictureFromLibrary": "Bild aus dem Verzeichnis",
@ -431,7 +437,27 @@
"textTitle": "Titel", "textTitle": "Titel",
"textUnitOfMeasurement": "Maßeinheit", "textUnitOfMeasurement": "Maßeinheit",
"textUploaded": "Hochgeladen", "textUploaded": "Hochgeladen",
"textVersion": "Version" "textVersion": "Version",
"txtScheme1": "Office",
"txtScheme10": "Median",
"txtScheme11": "Metro",
"txtScheme12": "Modul",
"txtScheme13": "Reichhaltig",
"txtScheme14": "Erker",
"txtScheme15": "Herkunft",
"txtScheme16": "Papier",
"txtScheme17": "Sonnenwende",
"txtScheme18": "Technik",
"txtScheme19": "Wanderung",
"txtScheme2": "Grauskala",
"txtScheme22": "Neues Office",
"txtScheme3": "Apex",
"txtScheme4": "Bildseitenverhältnis",
"txtScheme5": "bürgerlich",
"txtScheme6": "Konzertsaal",
"txtScheme7": "Eigenkapital",
"txtScheme8": "Fluss",
"txtScheme9": "Gießerei"
} }
} }
} }

View file

@ -452,6 +452,8 @@
"txtScheme18": "Technic", "txtScheme18": "Technic",
"txtScheme19": "Trek", "txtScheme19": "Trek",
"txtScheme2": "Grayscale", "txtScheme2": "Grayscale",
"txtScheme20": "Urban",
"txtScheme21": "Verve",
"txtScheme22": "New Office", "txtScheme22": "New Office",
"txtScheme3": "Apex", "txtScheme3": "Apex",
"txtScheme4": "Aspect", "txtScheme4": "Aspect",

View file

@ -1,40 +1,242 @@
{ {
"About": { "About": {
"textAbout": "À propos de", "textAbout": "À propos",
"textAddress": "Adresse", "textAddress": "Adresse",
"textBack": "Retour" "textBack": "Retour",
"textEmail": "E-mail",
"textPoweredBy": "Réalisation",
"textTel": "Tél.",
"textVersion": "Version"
}, },
"Common": { "Common": {
"Collaboration": { "Collaboration": {
"notcriticalErrorTitle": "Avertissement",
"textAddComment": "Ajouter un commentaire", "textAddComment": "Ajouter un commentaire",
"textAddReply": "Ajouter une réponse", "textAddReply": "Ajouter une réponse",
"textBack": "Retour", "textBack": "Retour",
"textCancel": "Annuler" "textCancel": "Annuler",
"textCollaboration": "Collaboration",
"textComments": "Commentaires",
"textDeleteComment": "Supprimer commentaire",
"textDeleteReply": "Supprimer réponse",
"textDone": "Terminé",
"textEdit": "Modifier",
"textEditComment": "Modifier le commentaire",
"textEditReply": "Modifier la réponse",
"textEditUser": "Le document est en cours de modification par les utilisateurs suivants:",
"textMessageDeleteComment": "Voulez-vous vraiment supprimer ce commentaire?",
"textMessageDeleteReply": "Voulez-vous vraiment supprimer cette réponse?",
"textNoComments": "Il n'y a pas de commentaires dans ce document",
"textReopen": "Rouvrir",
"textResolve": "Résoudre",
"textTryUndoRedo": "Les fonctions Annuler/Rétablir sont désactivées pour le mode de co-édition rapide.",
"textUsers": "Utilisateurs"
},
"ThemeColorPalette": {
"textCustomColors": "Couleurs personnalisées",
"textStandartColors": "Couleurs standard",
"textThemeColors": "Couleurs de thème"
} }
}, },
"ContextMenu": { "ContextMenu": {
"errorCopyCutPaste": "Actions de copie, de coupe et de collage du menu contextuel seront appliquées seulement dans le fichier actuel.",
"menuAddComment": "Ajouter un commentaire", "menuAddComment": "Ajouter un commentaire",
"menuAddLink": "Ajouter un lien", "menuAddLink": "Ajouter un lien",
"menuCancel": "Annuler" "menuCancel": "Annuler",
"menuDelete": "Supprimer",
"menuDeleteTable": "Supprimer le tableau",
"menuEdit": "Modifier",
"menuMerge": "Fusionner",
"menuMore": "Plus",
"menuOpenLink": "Ouvrir le lien",
"menuSplit": "Fractionner",
"menuViewComment": "Voir le commentaire",
"textColumns": "Colonnes",
"textCopyCutPasteActions": "Fonctions de Copier, Couper et Coller",
"textDoNotShowAgain": "Ne plus afficher",
"textRows": "Lignes"
}, },
"Controller": { "Controller": {
"Main": { "Main": {
"textAnonymous": "Anonyme" "advDRMOptions": "Fichier protégé",
"advDRMPassword": " Mot de passe",
"closeButtonText": "Fermer le fichier",
"criticalErrorTitle": "Erreur",
"errorAccessDeny": "Vous tentez d'exéсuter une action pour laquelle vous ne disposez pas des droits.<br>Veuillez contacter votre administrateur.",
"errorOpensource": "Sous version gratuite Community, le document est disponible en lecture seule. Pour accéder aux éditeurs mobiles web vous avez besoin d'une licence payante.",
"errorProcessSaveResult": "Échec de l'enregistrement",
"errorServerVersion": "La version de l'éditeur a été mise à jour. La page sera rechargée pour appliquer les modifications.",
"errorUpdateVersion": "La version du fichier a été changée. La page sera rechargée.",
"leavePageText": "Vous avez des modifications non enregistrées dans ce document. Cliquez sur Rester sur cette page et attendez l'enregistrement automatique. Cliquez sur Quitter cette page pour annuler toutes les modifications non enregistrées.",
"notcriticalErrorTitle": "Avertissement",
"SDK": {
"Chart": "Graphique",
"Click to add first slide": "Cliquez pour ajouter la premère diapositive",
"Click to add notes": "Cliquez pour ajouter des notes",
"ClipArt": "Clip Art",
"Date and time": "Date et heure",
"Diagram": "Diagramme",
"Diagram Title": "Titre du graphique",
"Footer": "Pied de page",
"Header": "En-tête",
"Image": "Image",
"Loading": "Chargement",
"Media": "Média",
"None": "Aucun",
"Picture": "Image",
"Series": "Série",
"Slide number": "Numéro de diapositive",
"Slide subtitle": "Sous-titre de diapositive",
"Slide text": "Texte de la diapositive",
"Slide title": "Titre de la diapositive",
"Table": "Tableau",
"X Axis": "Axe X (XAS)",
"Y Axis": "Axe Y",
"Your text here": "Votre texte ici"
},
"textAnonymous": "Anonyme",
"textBuyNow": "Visiter le site web",
"textClose": "Fermer",
"textContactUs": "Contacter l'équipe de ventes",
"textCustomLoader": "Désolé, vous n'êtes pas autorisé à changer le chargeur. Veuillez contacter notre Service de Ventes pour obtenir le devis.",
"textGuest": "Invité",
"textHasMacros": "Le fichier contient des macros automatiques.<br>Voulez-vous exécuter les macros?",
"textNo": "Non",
"textNoLicenseTitle": "La limite de la licence est atteinte",
"textOpenFile": "Entrer le mot de passe pour ouvrir le fichier",
"textPaidFeature": "Fonction payante",
"textRemember": "Se souvenir de mon choix",
"textYes": "Oui",
"titleLicenseExp": "Licence expirée",
"titleServerVersion": "L'éditeur est mis à jour",
"titleUpdateVersion": "La version a été modifiée",
"txtIncorrectPwd": "Mot de passe incorrect",
"txtProtected": "Une fois le mot de passe saisi et le ficher ouvert, le mot de passe actuel sera réinitialisé",
"warnLicenseExceeded": "Vous avez dépassé le nombre maximal de connexions simultanées aux éditeurs %1. Ce document sera ouvert en lecture seule. Pour en savoir plus, contactez votre administrateur.",
"warnLicenseExp": "Votre licence a expiré. Veuillez mettre à jour votre licence et actualisez la page.",
"warnLicenseLimitedNoAccess": "La licence est expirée. Vous n'avez plus d'accès aux outils d'édition. Veuillez contacter votre administrateur.",
"warnLicenseLimitedRenewed": "Il est indispensable de renouveler la licence. Vous avez un accès limité aux outils d'édition des documents.<br>Veuillez contacter votre administrateur pour obtenir un accès complet",
"warnLicenseUsersExceeded": "Vous avez dépassé le nombre maximal dutilisateurs des éditeurs %1. Pour en savoir plus, contactez votre administrateur.",
"warnNoLicense": "Vous avez dépassé le nombre maximal de connexions simultanées aux éditeurs %1. Ce document sera ouvert en lecture seule. Contactez léquipe des ventes %1 pour mettre à jour les termes de la licence.",
"warnNoLicenseUsers": "Vous avez dépassé le nombre maximal dutilisateurs des éditeurs %1. Contactez léquipe des ventes %1 pour mettre à jour les termes de la licence.",
"warnProcessRightsChange": "Vous n'avez pas la permission de modifier ce fichier."
} }
}, },
"Error": { "Error": {
"convertationTimeoutText": "Délai de conversion expiré.",
"criticalErrorExtText": "Appuyez sur OK pour revenir à la liste de documents",
"criticalErrorTitle": "Erreur",
"downloadErrorText": "Échec du téléchargement. ",
"errorAccessDeny": "Vous tentez d'exéсuter une action pour laquelle vous ne disposez pas des droits.<br>Veuillez contacter votre administrateur.",
"errorBadImageUrl": "L'URL de l'image est incorrecte",
"errorConnectToServer": "Impossible d'enregistrer ce document. Veuillez vérifier vos paramètres de connexion ou contactez l'administrateur.<br>Lorsque vous cliquez sur le bouton 'OK', vous serez invité à télécharger le document.",
"errorDatabaseConnection": "Erreur externe.<br>Erreur de connexion à la base de données. Contactez le support.",
"errorDataEncrypted": "Les modifications chiffrées ont été reçues, mais ne peuvent pas être déchiffrées.",
"errorDataRange": "Plage de données incorrecte.",
"errorDefaultMessage": "Code d'erreur: %1",
"errorEditingDownloadas": "Une erreur s'est produite pendant le travail sur le document. Utilisez l'option \"Télécharger\" pour enregistrer une sauvegarde locale", "errorEditingDownloadas": "Une erreur s'est produite pendant le travail sur le document. Utilisez l'option \"Télécharger\" pour enregistrer une sauvegarde locale",
"errorFilePassProtect": "Le fichier est protégé par le mot de passe et ne peut être ouvert.",
"errorFileSizeExceed": "La taille du fichier dépasse les limites établies sur votre serveur.<br>Veuillez contacter votre administrateur.",
"errorKeyEncrypt": "Descripteur de clé inconnu",
"errorKeyExpire": "Descripteur de clés expiré",
"errorSessionAbsolute": "Votre session a expiré. Veuillez recharger la page.",
"errorSessionIdle": "Le document n'a pas été modifié depuis trop longtemps. Veuillez recharger la page.",
"errorSessionToken": "La connexion au serveur a été interrompue. Veuillez recharger la page.",
"errorStockChart": "Ordre des lignes est incorrect. Pour créer un graphique boursier organisez vos données sur la feuille de calcul dans l'ordre suivant:<br>cours à l'ouverture, cours maximal, cours minimal, cours à la clôture.",
"errorUpdateVersionOnDisconnect": "La connexion internet a été rétablie, la version du fichier est modifiée.<br>Avant de continuer, téléchargez le fichier ou copiez le contenu pour vous assurer que tous les changements ont été enregistrés. Rechargez la page.",
"errorUserDrop": "Impossible d'accéder au fichier.",
"errorUsersExceed": "Le nombre d'utilisateurs autorisés par le plan tarifaire a été dépassé",
"errorViewerDisconnect": "La connexion a été perdue. Vous pouvez toujours afficher le document,<br>mais ne pouvez pas le télécharger jusqu'à ce que la connexion soit rétablie et que la page soit rafraichit.",
"notcriticalErrorTitle": "Avertissement",
"openErrorText": "Une erreur sest produite lors de l'ouverture du fichier", "openErrorText": "Une erreur sest produite lors de l'ouverture du fichier",
"saveErrorText": "Une erreur s'est produite lors du chargement du fichier" "saveErrorText": "Une erreur s'est produite lors du chargement du fichier",
"scriptLoadError": "La connexion est trop lente, certains éléments ne peuvent pas être chargés. Veuillez recharger la page.",
"splitDividerErrorText": "Le nombre de lignes doit être un diviseur de %1",
"splitMaxColsErrorText": "Le nombre de colonnes doit être moins que %1",
"splitMaxRowsErrorText": "Le nombre de lignes doit être moins que %1",
"unknownErrorText": "Erreur inconnue.",
"uploadImageExtMessage": "Format d'image inconnu.",
"uploadImageFileCountMessage": "Aucune image chargée.",
"uploadImageSizeMessage": "L'image est trop grande. La taille limite est de 25 Mo."
},
"LongActions": {
"applyChangesTextText": "Chargement des données en cours...",
"applyChangesTitleText": "Chargement des données",
"downloadTextText": "Téléchargement du document...",
"downloadTitleText": "Téléchargement du document",
"loadFontsTextText": "Chargement des données en cours...",
"loadFontsTitleText": "Chargement des données",
"loadFontTextText": "Chargement des données en cours...",
"loadFontTitleText": "Chargement des données",
"loadImagesTextText": "Chargement des images en cours...",
"loadImagesTitleText": "Chargement des images",
"loadImageTextText": "Chargement d'une image en cours...",
"loadImageTitleText": "Chargement d'une image",
"loadingDocumentTextText": "Chargement du document...",
"loadingDocumentTitleText": "Chargement du document",
"loadThemeTextText": "Chargement du thème en cours...",
"loadThemeTitleText": "Chargement du thème",
"openTextText": "Ouverture du document...",
"openTitleText": "Ouverture du document",
"printTextText": "Impression du document en cours...",
"printTitleText": "Impression du document",
"savePreparingText": "Préparation à l'enregistrement ",
"savePreparingTitle": "Préparation à l'enregistrement en cours. Veuillez patienter...",
"saveTextText": "Enregistrement document en cours...",
"saveTitleText": "Enregistrement du document",
"textLoadingDocument": "Chargement du document",
"txtEditingMode": "Réglage mode d'édition...",
"uploadImageTextText": "Chargement d'une image en cours...",
"uploadImageTitleText": "Chargement d'une image",
"waitText": "Veuillez patienter..."
},
"Toolbar": {
"dlgLeaveMsgText": "Vous avez des modifications non enregistrées dans ce document. Cliquez sur Rester sur cette page et attendez l'enregistrement automatique. Cliquez sur Quitter cette page pour annuler toutes les modifications non enregistrées.",
"dlgLeaveTitleText": "Vous quittez l'application",
"leaveButtonText": "Quitter cette page",
"stayButtonText": "Rester sur cette page"
}, },
"View": { "View": {
"Add": { "Add": {
"notcriticalErrorTitle": "Avertissement",
"textAddLink": "Ajouter un lien", "textAddLink": "Ajouter un lien",
"textAddress": "Adresse", "textAddress": "Adresse",
"textBack": "Retour", "textBack": "Retour",
"textCancel": "Annuler" "textCancel": "Annuler",
"textColumns": "Colonnes",
"textComment": "Commentaire",
"textDefault": "Texte sélectionné",
"textDisplay": "Afficher",
"textEmptyImgUrl": "Spécifiez l'URL de l'image",
"textExternalLink": "Lien externe",
"textFirstSlide": "Première diapositive",
"textImage": "Image",
"textImageURL": "URL d'une image",
"textInsert": "Insertion",
"textInsertImage": "Insérer une image",
"textLastSlide": "Dernière diapositive",
"textLink": "Lien",
"textLinkSettings": "Paramètres de lien",
"textLinkTo": "Lien vers",
"textLinkType": "Type de lien",
"textNextSlide": "Diapositive suivante",
"textOther": "Autre",
"textPictureFromLibrary": "Image depuis la bibliothèque",
"textPictureFromURL": "Image depuis URL",
"textPreviousSlide": "Diapositive précédente",
"textRows": "Lignes",
"textScreenTip": "Info-bulle",
"textShape": "Forme",
"textSlide": "Diapositive",
"textSlideInThisPresentation": "Emplacement dans cette présentation",
"textSlideNumber": "Numéro de diapositive",
"textTable": "Tableau",
"textTableSize": "Taille du tableau",
"txtNotUrl": "Ce champ doit contenir une URL au format \"http://www.example.com\""
}, },
"Edit": { "Edit": {
"notcriticalErrorTitle": "Avertissement",
"textActualSize": "Taille réelle",
"textAddCustomColor": "Ajouter une couleur personnalisée", "textAddCustomColor": "Ajouter une couleur personnalisée",
"textAdditional": "Additionnel", "textAdditional": "Additionnel",
"textAdditionalFormatting": "Mise en forme supplémentaire", "textAdditionalFormatting": "Mise en forme supplémentaire",
@ -54,19 +256,208 @@
"textBandedColumn": "Colonne à couleur alternée", "textBandedColumn": "Colonne à couleur alternée",
"textBandedRow": "Ligne à couleur alternée", "textBandedRow": "Ligne à couleur alternée",
"textBefore": "Avant", "textBefore": "Avant",
"textBlack": "A travers le noir",
"textBorder": "Bordure", "textBorder": "Bordure",
"textBottom": "Bas", "textBottom": "Bas",
"textBottomLeft": "En bas à gauche", "textBottomLeft": "En bas à gauche",
"textBottomRight": "En bas à droite", "textBottomRight": "En bas à droite",
"textBringToForeground": "Mettre au premier plan" "textBringToForeground": "Mettre au premier plan",
"textBullets": "Puces",
"textBulletsAndNumbers": "Puces et numérotation",
"textCaseSensitive": "Sensible à la casse",
"textCellMargins": "Marges de la cellule",
"textChart": "Graphique",
"textClock": "Horloge",
"textClockwise": "Dans le sens des aiguilles d'une montre",
"textColor": "Couleur",
"textCounterclockwise": "Dans le sens inverse des aiguilles d'une montre",
"textCover": "Couvrir",
"textCustomColor": "Couleur personnalisée",
"textDefault": "Texte sélectionné",
"textDelay": "Retard",
"textDeleteSlide": "Supprimer la diapositive",
"textDisplay": "Afficher",
"textDistanceFromText": "Distance du texte",
"textDistributeHorizontally": "Distribuer horizontalement",
"textDistributeVertically": "Distribuer verticalement",
"textDone": "Terminé",
"textDoubleStrikethrough": "Barré double",
"textDuplicateSlide": "Dupliquer la diapositive",
"textDuration": "Durée",
"textEditLink": "Modifier le lien",
"textEffect": "Effet",
"textEffects": "Effets",
"textEmptyImgUrl": "Spécifiez l'URL de l'image",
"textExternalLink": "Lien externe",
"textFade": "Fondu",
"textFill": "Remplissage",
"textFinalMessage": "La fin de l'aperçu de la diapositive. Cliquez pour quitter.",
"textFind": "Recherche",
"textFindAndReplace": "Rechercher et remplacer",
"textFirstColumn": "Première colonne",
"textFirstSlide": "Première diapositive",
"textFontColor": "Couleur de police",
"textFontColors": "Couleurs de police",
"textFonts": "Polices",
"textFromLibrary": "Image depuis la bibliothèque",
"textFromURL": "Image depuis URL",
"textHeaderRow": "Ligne d'en-tête",
"textHighlight": "Surligner les résultats",
"textHighlightColor": "Couleur de surlignage",
"textHorizontalIn": "Horizontal intérieur",
"textHorizontalOut": "Horizontal extérieur",
"textHyperlink": "Lien hypertexte",
"textImage": "Image",
"textImageURL": "URL d'image",
"textLastColumn": "Dernière colonne",
"textLastSlide": "Dernière diapositive",
"textLayout": "Mise en page",
"textLeft": "À gauche",
"textLetterSpacing": "Espacement entre les lettres",
"textLineSpacing": "Interligne",
"textLink": "Lien",
"textLinkSettings": "Paramètres de lien",
"textLinkTo": "Lien vers",
"textLinkType": "Type de lien",
"textMoveBackward": "Déplacer vers l'arrière",
"textMoveForward": "Avancer",
"textNextSlide": "Diapositive suivante",
"textNone": "Aucun",
"textNoStyles": "Aucun style pour ce type de graphique.",
"textNoTextFound": "Le texte est introuvable",
"textNotUrl": "Ce champ doit contenir une URL au format \"http://www.example.com\"",
"textNumbers": "Numérotation",
"textOpacity": "Opacité",
"textOptions": "Options",
"textPictureFromLibrary": "Image depuis la bibliothèque",
"textPictureFromURL": "Image depuis URL",
"textPreviousSlide": "Diapositive précédente",
"textPt": "pt",
"textPush": "Expulsion",
"textRemoveChart": "Supprimer le graphique",
"textRemoveImage": "Supprimer l'image",
"textRemoveLink": "Supprimer le lien",
"textRemoveShape": "Supprimer la forme",
"textRemoveTable": "Supprimer le tableau",
"textReorder": "Réorganiser",
"textReplace": "Remplacer",
"textReplaceAll": "Remplacer tout",
"textReplaceImage": "Remplacer limage",
"textRight": "À droite",
"textScreenTip": "Info-bulle",
"textSearch": "Recherche",
"textSec": "sec",
"textSelectObjectToEdit": "Sélectionnez l'objet à modifier",
"textSendToBackground": "Mettre en arrière-plan",
"textShape": "Forme",
"textSize": "Taille",
"textSlide": "Diapositive",
"textSlideInThisPresentation": "Emplacement dans cette présentation",
"textSlideNumber": "Numéro de diapositive",
"textSmallCaps": "Petites majuscules",
"textSmoothly": "Transition douce",
"textSplit": "Fractionner",
"textStartOnClick": "Démarrer en cliquant",
"textStrikethrough": "Barré",
"textStyle": "Style",
"textStyleOptions": "Options de style",
"textSubscript": "Indice",
"textSuperscript": "Exposant",
"textTable": "Tableau",
"textText": "Texte",
"textTheme": "Thème",
"textTop": "En haut",
"textTopLeft": "Haut à gauche",
"textTopRight": "Haut à droite",
"textTotalRow": "Ligne de total",
"textTransition": "Transition",
"textType": "Type",
"textUnCover": "Découvrir",
"textVerticalIn": "Vertical intérieur",
"textVerticalOut": "Vertical extérieur ",
"textWedge": "Coin",
"textWipe": "Effacement",
"textZoom": "Zoom",
"textZoomIn": "Zoom avant",
"textZoomOut": "Zoom arrière",
"textZoomRotate": "Zoom et rotation"
}, },
"Settings": { "Settings": {
"textAbout": "À propos de", "mniSlideStandard": "Standard (4:3)",
"mniSlideWide": "Écran large (16:9)",
"textAbout": "À propos",
"textAddress": "Adresse :", "textAddress": "Adresse :",
"textApplication": "Application", "textApplication": "Application",
"textApplicationSettings": "Paramètres de l'application", "textApplicationSettings": "Paramètres de l'application",
"textAuthor": "Auteur", "textAuthor": "Auteur",
"textBack": "Retour" "textBack": "Retour",
"textCaseSensitive": "Sensible à la casse",
"textCentimeter": "Centimètre",
"textCollaboration": "Collaboration",
"textColorSchemes": "Jeux de couleurs",
"textComment": "Commentaire",
"textCreated": "Créé",
"textDisableAll": "Désactiver tout",
"textDisableAllMacrosWithNotification": "Désactiver toutes les macros avec notification",
"textDisableAllMacrosWithoutNotification": "Désactiver toutes les macros sans notification",
"textDone": "Terminé",
"textDownload": "Télécharger",
"textDownloadAs": "Télécharger comme...",
"textEmail": "émail: ",
"textEnableAll": "Activer tout",
"textEnableAllMacrosWithoutNotification": "Activer toutes les macros sans notification",
"textFind": "Recherche",
"textFindAndReplace": "Rechercher et remplacer",
"textFindAndReplaceAll": "Rechercher et remplacer tout",
"textHelp": "Aide",
"textHighlight": "Surligner les résultats",
"textInch": "Pouce",
"textLastModified": "Dernière modification",
"textLastModifiedBy": "Dernière modification par",
"textLoading": "Chargement en cours...",
"textLocation": "Emplacement",
"textMacrosSettings": "Réglages macros",
"textNoTextFound": "Le texte est introuvable",
"textOwner": "Propriétaire",
"textPoint": "Point",
"textPoweredBy": "Réalisation",
"textPresentationInfo": "Infos sur présentation",
"textPresentationSettings": "Options présentation",
"textPresentationTitle": "Titre présentation",
"textPrint": "Imprimer",
"textReplace": "Remplacer",
"textReplaceAll": "Remplacer tout",
"textSearch": "Recherche",
"textSettings": "Paramètres",
"textShowNotification": "Montrer la notification",
"textSlideSize": "Taille de la diapositive",
"textSpellcheck": "Vérification de l'orthographe",
"textSubject": "Sujet",
"textTel": "tél:",
"textTitle": "Titre",
"textUnitOfMeasurement": "Unité de mesure",
"textUploaded": "Chargé",
"textVersion": "Version",
"txtScheme1": "Office",
"txtScheme10": "Médian",
"txtScheme11": "Métro",
"txtScheme12": "Module",
"txtScheme13": "Opulent",
"txtScheme14": "Oriel",
"txtScheme15": "Origine",
"txtScheme16": "Papier",
"txtScheme17": "Solstice",
"txtScheme18": "Technique",
"txtScheme19": "Promenade",
"txtScheme2": "Nuances de gris",
"txtScheme22": "New Office",
"txtScheme3": "Apex",
"txtScheme4": "Aspect",
"txtScheme5": "Civique",
"txtScheme6": "Rotonde",
"txtScheme7": "Capitaux",
"txtScheme8": "Flux",
"txtScheme9": "Fonderie"
} }
} }
} }

View file

@ -1,3 +1,463 @@
{ {
"About": {
"textAbout": "Over",
"textAddress": "Adres",
"textBack": "Terug",
"textEmail": "E-mail",
"textPoweredBy": "Aangedreven door",
"textTel": "Tel.",
"textVersion": "Versie"
},
"Common": {
"Collaboration": {
"notcriticalErrorTitle": "Waarschuwing",
"textAddComment": "Opmerking toevoegen",
"textAddReply": "Reactie toevoegen",
"textBack": "Terug",
"textCancel": "Annuleren",
"textCollaboration": "Samenwerking",
"textComments": "Opmerkingen",
"textDeleteComment": "Verwijder opmerking",
"textDeleteReply": "Reactie verwijderen",
"textDone": "Klaar",
"textEdit": "Bewerken",
"textEditComment": "Opmerking bewerken",
"textEditReply": "Reactie bewerken",
"textEditUser": "Gebruikers die het bestand bewerken:",
"textMessageDeleteComment": "Wil je deze opmerking verwijderen?",
"textMessageDeleteReply": "Wil je dit antwoord verwijderen?",
"textNoComments": "Dit document bevat geen opmerkingen",
"textReopen": "Heropenen",
"textResolve": "Oplossen",
"textTryUndoRedo": "De functies Ongedaan maken/Annuleren zijn uitgeschakeld in de Modus Gezamenlijk bewerken.",
"textUsers": "Gebruikers"
},
"ThemeColorPalette": {
"textCustomColors": "Aangepaste kleuren",
"textStandartColors": "Standaardkleuren",
"textThemeColors": "Themakleuren"
}
},
"ContextMenu": {
"errorCopyCutPaste": "Acties voor kopiëren, knippen en plakken met behulp van het contextmenu worden alleen in het huidige bestand uitgevoerd.",
"menuAddComment": "Opmerking toevoegen",
"menuAddLink": "Koppeling toevoegen",
"menuCancel": "Annuleren",
"menuDelete": "Verwijderen",
"menuDeleteTable": "Tabel verwijderen",
"menuEdit": "Bewerken",
"menuMerge": "Samenvoegen",
"menuMore": "Meer",
"menuOpenLink": "Koppeling openen",
"menuSplit": "Splitsen",
"menuViewComment": "Opmerking bekijken",
"textColumns": "Kolommen",
"textCopyCutPasteActions": "Acties Kopiëren, Knippen en Plakken",
"textDoNotShowAgain": "Niet meer laten zien.",
"textRows": "Rijen"
},
"Controller": {
"Main": {
"advDRMOptions": "Beveiligd bestand",
"advDRMPassword": "Wachtwoord",
"closeButtonText": "Bestand sluiten",
"criticalErrorTitle": "Fout",
"errorAccessDeny": "U probeert een actie uit te voeren waar u geen rechten voor heeft. <br>Neem contact op met uw beheerder.",
"errorOpensource": "Met de gratis Community versie kunt u documenten openen om ze alleen te bekijken. Voor toegang tot mobiele webdocumentbewerkers is een commerciële licentie vereist.",
"errorProcessSaveResult": "Opslaan mislukt.",
"errorServerVersion": "De versie van de editor is bijgewerkt. De pagina wordt opnieuw geladen om de wijzigingen toe te passen.",
"errorUpdateVersion": "De bestandsversie is gewijzigd. De pagina wordt opnieuw geladen.",
"leavePageText": "U hebt niet-opgeslagen wijzigingen in dit document. Klik op 'Blijf op deze pagina' om te wachten op automatisch opslaan. Klik op 'Verlaat deze pagina' om alle niet-opgeslagen wijzigingen te verwijderen.",
"notcriticalErrorTitle": "Waarschuwing",
"SDK": {
"Chart": "Grafiek",
"Click to add first slide": "Klik om de eerste dia toe te voegen",
"Click to add notes": "Klik om notities toe te voegen",
"ClipArt": "Illustraties",
"Date and time": "Datum en tijd",
"Diagram": "Diagram",
"Diagram Title": "Grafiektitel",
"Footer": "Voettekst",
"Header": "Koptekst",
"Image": "Afbeelding",
"Loading": "Laden",
"Media": "Media",
"None": "Geen",
"Picture": "Afbeelding",
"Series": "Serie",
"Slide number": "Dianummer",
"Slide subtitle": "Subtitel dia",
"Slide text": "Tekst van dia",
"Slide title": "Diatitel",
"Table": "Tabel",
"X Axis": "X-as XAS",
"Y Axis": "Y-as",
"Your text here": "Hier tekst invoeren"
},
"textAnonymous": "Anoniem",
"textBuyNow": "Website bezoeken",
"textClose": "Sluiten",
"textContactUs": "Contact opnemen met de verkoopafdeling",
"textCustomLoader": "Sorry, u hebt niet het recht om de lader te veranderen. Neem contact op met onze verkoopafdeling voor een prijsopgave.",
"textGuest": "Gast",
"textHasMacros": "Het bestand bevat automatische macro's. <br> Wilt u macro's uitvoeren?",
"textNo": "Nee",
"textNoLicenseTitle": "Licentielimiet bereikt",
"textOpenFile": "Voer een wachtwoord in om dit bestand te openen",
"textPaidFeature": "Betaalde functie",
"textRemember": "Bewaar mijn keuze",
"textYes": "Ja",
"titleLicenseExp": "Licentie verlopen",
"titleServerVersion": "Editor bijgewerkt",
"titleUpdateVersion": "Versie gewijzigd",
"txtIncorrectPwd": "Wachtwoord is onjuist",
"txtProtected": "Wanneer u het wachtwoord ingeeft en het bestand opent zal het huidige wachtwoord worden gereset.",
"warnLicenseExceeded": "U heeft de gebruikerslimiet voor %1 gelijktijdige gebruikers bereikt. Het document zal worden geopend in leesmodus. Neem contact op met uw beheerder voor meer informatie.",
"warnLicenseExp": "Uw licentie is verlopen. Gelieve deze bij te werken en de pagina te vernieuwen.",
"warnLicenseLimitedNoAccess": "Licentie verlopen. U hebt geen toegang tot de documentbewerking functionaliteit. Neem contact op met uw beheerder.",
"warnLicenseLimitedRenewed": "De licentie moet worden vernieuwd. U heeft beperkte toegang tot de documentbewerking functionaliteit.<br>Neem contact op met uw administrator om volledige toegang te krijgen",
"warnLicenseUsersExceeded": "U heeft de gebruikerslimiet voor %1 gelijktijdige gebruikers bereikt. Neem contact op met uw beheerder voor meer informatie.",
"warnNoLicense": "U hebt de limiet bereikt voor gelijktijdige verbindingen met %1 gelijktijdige gebruikers. Dit document wordt alleen geopend om te bekijken. Neem contact op met %1 verkoopteam voor persoonlijke upgradevoorwaarden.",
"warnNoLicenseUsers": "U heeft de gebruikerslimiet voor %1 gelijktijdige gebruikers bereikt. Neem contact op met de verkoopafdeling voor persoonlijke upgradevoorwaarden.",
"warnProcessRightsChange": "Je hebt geen toestemming om het bestand te bewerken."
}
},
"Error": {
"convertationTimeoutText": "Time-out voor conversie overschreden.",
"criticalErrorExtText": "Druk op 'OK' om terug te gaan naar de documentenlijst.",
"criticalErrorTitle": "Fout",
"downloadErrorText": "Download mislukt.",
"errorAccessDeny": "U probeert een actie uit te voeren waar u geen rechten voor heeft. <br>Neem contact op met uw beheerder.",
"errorBadImageUrl": "Afbeelding's URL is onjuist",
"errorConnectToServer": "Kan dit document niet opslaan. Controleer uw verbindingsinstellingen of neem contact op met uw beheerder.<br>Wanneer u op de 'OK' knop klikt, wordt u gevraagd om het document te downloaden.",
"errorDatabaseConnection": "Externe fout.<br>Database verbindingsfout. Neem contact op met support.",
"errorDataEncrypted": "Versleutelde wijzigingen zijn ontvangen, deze kunnen niet ontcijferd worden.",
"errorDataRange": "Onjuist gegevensbereik.",
"errorDefaultMessage": "Foutcode: %1",
"errorEditingDownloadas": "Er is een fout opgetreden tijdens het werken met het document. <br>Gebruik de 'Download' optie om de reservekopie lokaal op te slaan.",
"errorFilePassProtect": "Het bestand is beveiligd met een wachtwoord en kon niet worden geopend.",
"errorFileSizeExceed": "The file size exceeds your server limitation.<br>Please, contact your admin.",
"errorKeyEncrypt": "Onbekende sleutelbeschrijver",
"errorKeyExpire": "Sleutelbeschrijver vervallen",
"errorSessionAbsolute": "De document bewerkingssessie is verlopen. Gelieve de pagina opnieuw te laden.",
"errorSessionIdle": "Het document is al een hele tijd niet meer bewerkt. Gelieve de pagina opnieuw te laden.",
"errorSessionToken": "De verbinding met de server is onderbroken. Gelieve de pagina opnieuw te laden.",
"errorStockChart": "Onjuiste rijvolgorde. Om een aandelengrafiek te maken, plaatst u de gegevens op het blad in de volgende volgorde:<br> openingskoers, max koers, min koers, slotkoers.",
"errorUpdateVersionOnDisconnect": "De internet verbinding is hersteld, en de versie van het bestand is gewijzigd. <br>Voordat u verder kunt werken, download het bestand of kopieer de inhoud om er zeker van te zijn dat er niets verloren gaat, en herlaad vervolgens deze pagina.",
"errorUserDrop": "Toegang tot het bestand is op dit moment niet mogelijk.",
"errorUsersExceed": "Het onder het prijsplan toegestane aantal gebruikers is overschreden",
"errorViewerDisconnect": "De verbinding is verbroken. U kunt het document nog steeds bekijken,<br>maar u zult het niet kunnen downloaden totdat de verbinding is hersteld en de pagina opnieuw is geladen.",
"notcriticalErrorTitle": "Waarschuwing",
"openErrorText": "Er is een fout opgetreden bij het openen van het bestand",
"saveErrorText": "Er is een fout opgetreden bij het opslaan van het bestand",
"scriptLoadError": "De verbinding is te traag, sommige onderdelen konden niet geladen worden. Gelieve de pagina opnieuw te laden.",
"splitDividerErrorText": "Het aantal rijen moet een deler zijn van %1",
"splitMaxColsErrorText": "Aantal kolommen moet kleiner zijn dan %1",
"splitMaxRowsErrorText": "Het aantal rijen moet kleiner zijn dan %1",
"unknownErrorText": "Onbekende fout.",
"uploadImageExtMessage": "Onbekende afbeeldingsindeling.",
"uploadImageFileCountMessage": "Geen afbeeldingen geüpload.",
"uploadImageSizeMessage": "De afbeelding is te groot. De maximale grote is 25MB."
},
"LongActions": {
"applyChangesTextText": "Gegevens worden geladen...",
"applyChangesTitleText": "Gegevens worden geladen",
"downloadTextText": "Document wordt gedownload...",
"downloadTitleText": "Document wordt gedownload",
"loadFontsTextText": "Gegevens worden geladen...",
"loadFontsTitleText": "Gegevens worden geladen",
"loadFontTextText": "Gegevens worden geladen...",
"loadFontTitleText": "Gegevens worden geladen",
"loadImagesTextText": "Afbeeldingen worden geladen...",
"loadImagesTitleText": "Afbeeldingen worden geladen",
"loadImageTextText": "Afbeelding wordt geladen...",
"loadImageTitleText": "Afbeelding wordt geladen",
"loadingDocumentTextText": "Document wordt geladen...",
"loadingDocumentTitleText": "Document wordt geladen",
"loadThemeTextText": "Thema wordt geladen...",
"loadThemeTitleText": "Thema wordt geladen",
"openTextText": "Document wordt geopend...",
"openTitleText": "Document wordt geopend",
"printTextText": "Document wordt afgedrukt...",
"printTitleText": "Document wordt afgedrukt",
"savePreparingText": "Klaarmaken om op te slaan",
"savePreparingTitle": "Klaarmaken om op te slaan. Even geduld...",
"saveTextText": "Document wordt opgeslagen...",
"saveTitleText": "Document wordt opgeslagen",
"textLoadingDocument": "Document wordt geladen",
"txtEditingMode": "Bewerkmodus instellen...",
"uploadImageTextText": "Afbeelding wordt geüpload...",
"uploadImageTitleText": "Afbeelding wordt geüpload",
"waitText": "Een moment geduld..."
},
"Toolbar": {
"dlgLeaveMsgText": "U hebt niet-opgeslagen wijzigingen in dit document. Klik op 'Blijf op deze pagina' om te wachten op automatisch opslaan. Klik op 'Verlaat deze pagina' om alle niet-opgeslagen wijzigingen te verwijderen.",
"dlgLeaveTitleText": "U verlaat de applicatie",
"leaveButtonText": "Pagina verlaten",
"stayButtonText": "Op deze pagina blijven"
},
"View": {
"Add": {
"notcriticalErrorTitle": "Waarschuwing",
"textAddLink": "Koppeling toevoegen",
"textAddress": "Adres",
"textBack": "Terug",
"textCancel": "Annuleren",
"textColumns": "Kolommen",
"textComment": "Opmerking",
"textDefault": "Geselecteerde tekst",
"textDisplay": "Weergeven",
"textEmptyImgUrl": "U moet de URL van de afbeelding opgeven.",
"textExternalLink": "Externe koppeling",
"textFirstSlide": "Eerste dia",
"textImage": "Afbeelding",
"textImageURL": "Afbeelding's URL",
"textInsert": "Invoegen",
"textInsertImage": "Afbeelding invoegen",
"textLastSlide": "Laatste dia",
"textLink": "Koppeling",
"textLinkSettings": "Koppelingsinstellingen",
"textLinkTo": "Koppelen aan",
"textLinkType": "Type koppeling",
"textNextSlide": "Volgende dia",
"textOther": "Overige",
"textPictureFromLibrary": "Afbeelding uit bibliotheek",
"textPictureFromURL": "Afbeelding van URL",
"textPreviousSlide": "Vorige dia",
"textRows": "Rijen",
"textScreenTip": "Schermtip",
"textShape": "Vorm",
"textSlide": "Dia",
"textSlideInThisPresentation": "Dia in deze presentatie",
"textSlideNumber": "Dianummer",
"textTable": "Tabel",
"textTableSize": "Tabelgrootte",
"txtNotUrl": "Dit veld moet een URL bevatten in de notatie \"http://www.internet.nl\""
},
"Edit": {
"notcriticalErrorTitle": "Waarschuwing",
"textActualSize": "Ware grootte",
"textAddCustomColor": "Aangepaste kleur toevoegen",
"textAdditional": "Extra",
"textAdditionalFormatting": "Aanvullende opmaak",
"textAddress": "Adres",
"textAfter": "Na",
"textAlign": "Uitlijnen",
"textAlignBottom": "Onder uitlijnen",
"textAlignCenter": "Centreren",
"textAlignLeft": "Links uitlijnen",
"textAlignMiddle": "Centreren",
"textAlignRight": "Rechts uitlijnen",
"textAlignTop": "Boven uitlijnen",
"textAllCaps": "Allemaal hoofdletters",
"textApplyAll": "Toepassen op alle dia's",
"textAuto": "Automatisch",
"textBack": "Terug",
"textBandedColumn": "Gestreepte kolom",
"textBandedRow": "Gestreepte rij",
"textBefore": "Voor",
"textBlack": "Door zwart",
"textBorder": "Rand",
"textBottom": "Onder",
"textBottomLeft": "Linksonder",
"textBottomRight": "Rechtsonder",
"textBringToForeground": "Naar voorgrond brengen",
"textBullets": "Opsommingstekens",
"textBulletsAndNumbers": "Opsommingstekens en nummers",
"textCaseSensitive": "Hoofdlettergevoelig",
"textCellMargins": "Celmarges",
"textChart": "Grafiek",
"textClock": "Klok",
"textClockwise": "Rechtsom",
"textColor": "Kleur",
"textCounterclockwise": "Linksom",
"textCover": "Bedekken",
"textCustomColor": "Aangepaste kleur",
"textDefault": "Geselecteerde tekst",
"textDelay": "Vertragen",
"textDeleteSlide": "Dia verwijderen",
"textDisplay": "Weergeven",
"textDistanceFromText": "Afstand van tekst",
"textDistributeHorizontally": "Horizontaal verdelen",
"textDistributeVertically": "Verticaal verdelen",
"textDone": "Klaar",
"textDoubleStrikethrough": "Dubbel doorhalen",
"textDuplicateSlide": "Dia dupliceren",
"textDuration": "Duur",
"textEditLink": "Koppeling bewerken",
"textEffect": "Effect",
"textEffects": "Effecten",
"textEmptyImgUrl": "U moet de URL van de afbeelding opgeven.",
"textExternalLink": "Externe koppeling",
"textFade": "Vervagen",
"textFill": "Vullen",
"textFinalMessage": "Einde van diavoorbeeld. Klik om af te sluiten.",
"textFind": "Zoeken",
"textFindAndReplace": "Zoeken en vervangen",
"textFirstColumn": "Eerste kolom",
"textFirstSlide": "Eerste dia",
"textFontColor": "Kleur lettertype",
"textFontColors": "Lettertype kleuren",
"textFonts": "Lettertypen",
"textFromLibrary": "Afbeelding uit bibliotheek",
"textFromURL": "Afbeelding van URL",
"textHeaderRow": "Koprij",
"textHighlight": "Resultaten markeren",
"textHighlightColor": "Markeringskleur",
"textHorizontalIn": "Horizontaal naar binnen",
"textHorizontalOut": "Horizontaal naar buiten",
"textHyperlink": "Hyperlink",
"textImage": "Afbeelding",
"textImageURL": "Afbeelding's URL",
"textLastColumn": "Laatste kolom",
"textLastSlide": "Laatste dia",
"textLayout": "Pagina-indeling",
"textLeft": "Links",
"textLetterSpacing": "Letterafstand",
"textLineSpacing": "Regelafstand",
"textLink": "Koppeling",
"textLinkSettings": "Koppelingsinstellingen",
"textLinkTo": "Koppelen aan",
"textLinkType": "Type koppeling",
"textMoveBackward": "Naar achter verplaatsen",
"textMoveForward": "Naar voren verplaatsen",
"textNextSlide": "Volgende dia",
"textNone": "Geen",
"textNoStyles": "Geen stijlen voor dit type grafiek.",
"textNoTextFound": "Tekst niet gevonden",
"textNotUrl": "Dit veld moet een URL bevatten in de notatie \"http://www.internet.nl\"",
"textNumbers": "Nummers",
"textOpacity": "Ondoorzichtigheid",
"textOptions": "Opties",
"textPictureFromLibrary": "Afbeelding uit bibliotheek",
"textPictureFromURL": "Afbeelding van URL",
"textPreviousSlide": "Vorige dia",
"textPt": "pt",
"textPush": "Duwen",
"textRemoveChart": "Grafiek verwijderen",
"textRemoveImage": "Afbeelding verwijderen",
"textRemoveLink": "Koppeling verwijderen",
"textRemoveShape": "Vorm verwijderen",
"textRemoveTable": "Tabel verwijderen",
"textReorder": "Opnieuw ordenen",
"textReplace": "Vervangen",
"textReplaceAll": "Alles vervangen",
"textReplaceImage": "Afbeelding vervangen",
"textRight": "Rechts",
"textScreenTip": "Schermtip",
"textSearch": "Zoeken",
"textSec": "s",
"textSelectObjectToEdit": "Selecteer object om te bewerken",
"textSendToBackground": "Naar achtergrond sturen",
"textShape": "Vorm",
"textSize": "Grootte",
"textSlide": "Dia",
"textSlideInThisPresentation": "Dia in deze presentatie",
"textSlideNumber": "Dianummer",
"textSmallCaps": "Kleine hoofdletters",
"textSmoothly": "Vloeiend",
"textSplit": "Splitsen",
"textStartOnClick": "Bij klik starten",
"textStrikethrough": "Doorhalen",
"textStyle": "Stijl",
"textStyleOptions": "Stijlopties",
"textSubscript": "Subscript",
"textSuperscript": "Superscript",
"textTable": "Tabel",
"textText": "Tekst",
"textTheme": "Thema",
"textTop": "Boven",
"textTopLeft": "Linksboven",
"textTopRight": "Rechtsboven",
"textTotalRow": "Totaalrij",
"textTransition": "Overgang",
"textType": "Type",
"textUnCover": "Onthullen",
"textVerticalIn": "Verticaal naar binnen",
"textVerticalOut": "Verticaal naar buiten",
"textWedge": "Wig",
"textWipe": "Wissen",
"textZoom": "Zoomen",
"textZoomIn": "Inzoomen",
"textZoomOut": "Uitzoomen",
"textZoomRotate": "Zoomen en draaien"
},
"Settings": {
"mniSlideStandard": "Standaard (4:3)",
"mniSlideWide": "Breedbeeld (16:9)",
"textAbout": "Over",
"textAddress": "Adres:",
"textApplication": "Applicatie",
"textApplicationSettings": "Applicatie-instellingen",
"textAuthor": "Auteur",
"textBack": "Terug",
"textCaseSensitive": "Hoofdlettergevoelig",
"textCentimeter": "Centimeter",
"textCollaboration": "Samenwerking",
"textColorSchemes": "Kleurschema's",
"textComment": "Opmerking",
"textCreated": "Aangemaakt",
"textDisableAll": "Alles uitschakelen",
"textDisableAllMacrosWithNotification": "Alle macro's met notificaties uitschakelen",
"textDisableAllMacrosWithoutNotification": "Alle macro's met notificatie uitschakelen",
"textDone": "Klaar",
"textDownload": "Downloaden",
"textDownloadAs": "Downloaden als...",
"textEmail": "E-mail:",
"textEnableAll": "Alles inschakelen",
"textEnableAllMacrosWithoutNotification": "Alle macro's inschakelen zonder notificatie",
"textFind": "Zoeken",
"textFindAndReplace": "Zoeken en vervangen",
"textFindAndReplaceAll": "Zoek en vervang alles",
"textHelp": "Help",
"textHighlight": "Resultaten markeren",
"textInch": "Inch",
"textLastModified": "Laatst aangepast",
"textLastModifiedBy": "Laatst aangepast door",
"textLoading": "Bezig met laden...",
"textLocation": "Locatie",
"textMacrosSettings": "Macro instellingen",
"textNoTextFound": "Tekst niet gevonden",
"textOwner": "Eigenaar",
"textPoint": "Punt",
"textPoweredBy": "Aangedreven door",
"textPresentationInfo": "Informatie over presentatie",
"textPresentationSettings": "Presentatie-instellingen",
"textPresentationTitle": "Presentatietitel",
"textPrint": "Afdrukken",
"textReplace": "Vervangen",
"textReplaceAll": "Alles vervangen",
"textSearch": "Zoeken",
"textSettings": "Instellingen",
"textShowNotification": "Notificatie weergeven",
"textSlideSize": "Diagrootte",
"textSpellcheck": "Spellingscontrole",
"textSubject": "Onderwerp",
"textTel": "tel:",
"textTitle": "Titel",
"textUnitOfMeasurement": "Maateenheid",
"textUploaded": "Geüpload",
"textVersion": "Versie",
"txtScheme1": "Kantoor",
"txtScheme10": "Mediaan",
"txtScheme11": "Metro",
"txtScheme12": "Module",
"txtScheme13": "Overvloedig",
"txtScheme14": "Erker",
"txtScheme15": "Oorsprong",
"txtScheme16": "Papier",
"txtScheme17": "Zonnewende",
"txtScheme18": "Technisch",
"txtScheme19": "Tocht",
"txtScheme2": "Grijstinten",
"txtScheme22": "Nieuw kantoor",
"txtScheme3": "Top",
"txtScheme4": "Aspect",
"txtScheme5": "Civiel",
"txtScheme6": "Concours",
"txtScheme7": "Vermogen",
"txtScheme8": "Stroom",
"txtScheme9": "Gieterij"
}
}
} }

View file

@ -1,3 +1,128 @@
{ {
"About": {
"textAbout": "Sobre",
"textAddress": "Endereço",
"textBack": "Voltar"
},
"Common": {
"Collaboration": {
"textAddComment": "Adicionar comentário",
"textAddReply": "Adicionar resposta",
"textBack": "Voltar",
"textCancel": "Cancelar",
"textCollaboration": "Colaboração",
"textComments": "Comentários",
"textDeleteComment": "Excluir comentários",
"textDeleteReply": "Excluir resposta"
},
"ThemeColorPalette": {
"textCustomColors": "Cores personalizadas"
}
},
"ContextMenu": {
"errorCopyCutPaste": "Copiar, cortar e colar usando o menu de contexto serão aplicadas apenas a este arquivo.",
"menuAddComment": "Adicionar comentário",
"menuAddLink": "Adicionar Link",
"menuCancel": "Cancelar",
"menuDelete": "Excluir",
"menuDeleteTable": "Excluir tabela",
"textColumns": "Colunas",
"textCopyCutPasteActions": "Copiar, Cortar e Colar"
},
"Controller": {
"Main": {
"closeButtonText": "Fechar Arquivo",
"SDK": {
"Chart": "Gráfico",
"Click to add first slide": "Clique para adicionar o primeiro slide",
"Click to add notes": "Clique para adicionar notas",
"ClipArt": "Clip Art",
"Date and time": "Data e Hora",
"Diagram Title": "Título do Gráfico"
},
"textAnonymous": "Anônimo",
"textClose": "Fechar",
"textContactUs": "Entre em contato com o departamento de vendas"
}
},
"Error": {
"convertationTimeoutText": "Tempo limite de conversão excedido.",
"errorConnectToServer": "Não é possível salvar este documento. Verifique as configurações de conexão ou entre em contato com o administrador. <br> Ao clicar no botão 'OK', você será solicitado a baixar o documento.",
"errorEditingDownloadas": "Ocorreu um erro durante o trabalho com o documento. <br> Use a opção 'Download' para salvar a cópia de backup do arquivo localmente.",
"errorViewerDisconnect": "A conexão foi perdida. Você ainda pode ver o documento, <br> mas não poderá baixá-lo até que a conexão seja restaurada e a página recarregada.",
"openErrorText": "Ocorreu um erro ao abrir o arquivo",
"saveErrorText": "Ocorreu um erro ao gravar o arquivo"
},
"View": {
"Add": {
"textAddLink": "Adicionar Link",
"textAddress": "Endereço",
"textBack": "Voltar",
"textCancel": "Cancelar",
"textColumns": "Colunas",
"textComment": "Comente"
},
"Edit": {
"textActualSize": "Tamanho atual",
"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 centro",
"textAlignRight": "Alinhar à direita",
"textAlignTop": "Alinhar em cima",
"textAllCaps": "Todas maiúsculas",
"textApplyAll": "Aplicar a todos os slides",
"textAuto": "Automático",
"textBack": "Voltar",
"textBandedColumn": "Coluna em faixa",
"textBandedRow": "Linha de Faixa",
"textBefore": "Antes",
"textBorder": "Borda",
"textBottom": "Inferior",
"textBottomLeft": "Inferior esquerdo",
"textBottomRight": "Inferior direito",
"textBringToForeground": "Trazer para primeiro plano",
"textBullets": "Marcadores",
"textBulletsAndNumbers": "Marcadores e Numerações",
"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": "Folha de rosto",
"textCustomColor": "Personalizar cor",
"textDelay": "Atraso",
"textDeleteSlide": "Excluir slide",
"textZoom": "Zoom",
"textZoomIn": "Ampliar",
"textZoomOut": "Reduzir",
"textZoomRotate": "Zoom e Rotação"
},
"Settings": {
"textAbout": "Sobre",
"textAddress": "Endereço:",
"textApplication": "Aplicativo",
"textApplicationSettings": "Configurações de Aplicativo",
"textAuthor": "Autor",
"textBack": "Voltar",
"textCaseSensitive": "Maiúsculas e Minúsculas",
"textCentimeter": "Centímetro",
"textCollaboration": "Colaboração",
"textColorSchemes": "Esquemas de cor",
"textComment": "Comente",
"textCreated": "Criado",
"txtScheme3": "Ápice",
"txtScheme4": "Aspecto",
"txtScheme5": "Cívico",
"txtScheme6": "Concurso"
}
}
} }

File diff suppressed because it is too large Load diff

View file

@ -71,6 +71,8 @@
"notcriticalErrorTitle": "Внимание", "notcriticalErrorTitle": "Внимание",
"SDK": { "SDK": {
"Chart": "Диаграмма", "Chart": "Диаграмма",
"Click to add first slide": "Нажмите, чтобы добавить первый слайд",
"Click to add notes": "Нажмите, чтобы добавить заметки",
"ClipArt": "Картинка", "ClipArt": "Картинка",
"Date and time": "Дата и время", "Date and time": "Дата и время",
"Diagram": "SmartArt", "Diagram": "SmartArt",
@ -78,7 +80,9 @@
"Footer": "Нижний колонтитул", "Footer": "Нижний колонтитул",
"Header": "Верхний колонтитул", "Header": "Верхний колонтитул",
"Image": "Рисунок", "Image": "Рисунок",
"Loading": "Загрузка",
"Media": "Клип мультимедиа", "Media": "Клип мультимедиа",
"None": "Нет",
"Picture": "Рисунок", "Picture": "Рисунок",
"Series": "Ряд", "Series": "Ряд",
"Slide number": "Номер слайда", "Slide number": "Номер слайда",
@ -258,6 +262,7 @@
"textBottomLeft": "Снизу слева", "textBottomLeft": "Снизу слева",
"textBottomRight": "Снизу справа", "textBottomRight": "Снизу справа",
"textBringToForeground": "Перенести на передний план", "textBringToForeground": "Перенести на передний план",
"textBullets": "Маркеры",
"textBulletsAndNumbers": "Маркеры и нумерация", "textBulletsAndNumbers": "Маркеры и нумерация",
"textCaseSensitive": "С учетом регистра", "textCaseSensitive": "С учетом регистра",
"textCellMargins": "Поля ячейки", "textCellMargins": "Поля ячейки",
@ -321,6 +326,7 @@
"textNoStyles": "Для этого типа диаграммы нет стилей.", "textNoStyles": "Для этого типа диаграммы нет стилей.",
"textNoTextFound": "Текст не найден", "textNoTextFound": "Текст не найден",
"textNotUrl": "Это поле должно быть URL-адресом в формате \"http://www.example.com\"", "textNotUrl": "Это поле должно быть URL-адресом в формате \"http://www.example.com\"",
"textNumbers": "Нумерация",
"textOpacity": "Прозрачность", "textOpacity": "Прозрачность",
"textOptions": "Параметры", "textOptions": "Параметры",
"textPictureFromLibrary": "Рисунок из библиотеки", "textPictureFromLibrary": "Рисунок из библиотеки",
@ -431,7 +437,27 @@
"textTitle": "Название", "textTitle": "Название",
"textUnitOfMeasurement": "Единица измерения", "textUnitOfMeasurement": "Единица измерения",
"textUploaded": "Загружена", "textUploaded": "Загружена",
"textVersion": "Версия" "textVersion": "Версия",
"txtScheme1": "Стандартная",
"txtScheme10": "Обычная",
"txtScheme11": "Метро",
"txtScheme12": "Модульная",
"txtScheme13": "Изящная",
"txtScheme14": "Эркер",
"txtScheme15": "Начальная",
"txtScheme16": "Бумажная",
"txtScheme17": "Солнцестояние",
"txtScheme18": "Техническая",
"txtScheme19": "Трек",
"txtScheme2": "Оттенки серого",
"txtScheme22": "Новая офисная",
"txtScheme3": "Апекс",
"txtScheme4": "Аспект",
"txtScheme5": "Официальная",
"txtScheme6": "Открытая",
"txtScheme7": "Справедливость",
"txtScheme8": "Поток",
"txtScheme9": "Литейная"
} }
} }
} }

View file

@ -17,6 +17,7 @@ import PluginsController from '../../../../common/mobile/lib/controller/Plugins.
import { Device } from '../../../../common/mobile/utils/device'; import { Device } from '../../../../common/mobile/utils/device';
@inject( @inject(
"users",
"storeFocusObjects", "storeFocusObjects",
"storeAppOptions", "storeAppOptions",
"storePresentationInfo", "storePresentationInfo",
@ -26,7 +27,8 @@ import { Device } from '../../../../common/mobile/utils/device';
"storeTableSettings", "storeTableSettings",
"storeChartSettings", "storeChartSettings",
"storeLinkSettings", "storeLinkSettings",
"storeApplicationSettings" "storeApplicationSettings",
"storeToolbarSettings"
) )
class MainController extends Component { class MainController extends Component {
constructor (props) { constructor (props) {
@ -388,6 +390,21 @@ class MainController extends Component {
// Chart settings // Chart settings
EditorUIController.updateChartStyles && EditorUIController.updateChartStyles(this.props.storeChartSettings, this.props.storeFocusObjects); EditorUIController.updateChartStyles && EditorUIController.updateChartStyles(this.props.storeChartSettings, this.props.storeFocusObjects);
// Toolbar settings
const storeToolbarSettings = this.props.storeToolbarSettings;
this.api.asc_registerCallback('asc_onCanUndo', (can) => {
if (this.props.users.isDisconnected) return;
storeToolbarSettings.setCanUndo(can);
});
this.api.asc_registerCallback('asc_onCanRedo', (can) => {
if (this.props.users.isDisconnected) return;
storeToolbarSettings.setCanRedo(can);
});
this.api.asc_registerCallback('asc_onCountPages', (count) => {
storeToolbarSettings.setCountPages(count);
});
} }
onDocumentContentReady () { onDocumentContentReady () {

View file

@ -4,7 +4,7 @@ import { f7 } from 'framework7-react';
import { useTranslation } from 'react-i18next'; import { useTranslation } from 'react-i18next';
import ToolbarView from "../view/Toolbar"; import ToolbarView from "../view/Toolbar";
const ToolbarController = inject('storeAppOptions', 'users')(observer(props => { const ToolbarController = inject('storeAppOptions', 'users', 'storeFocusObjects', 'storeToolbarSettings')(observer(props => {
const {t} = useTranslation(); const {t} = useTranslation();
const _t = t("Toolbar", { returnObjects: true }); const _t = t("Toolbar", { returnObjects: true });
@ -14,24 +14,19 @@ const ToolbarController = inject('storeAppOptions', 'users')(observer(props => {
const showEditDocument = !appOptions.isEdit && appOptions.canEdit && appOptions.canRequestEditRights; const showEditDocument = !appOptions.isEdit && appOptions.canEdit && appOptions.canRequestEditRights;
const isEditLocked = props.storeFocusObjects.isEditLocked;
const storeToolbarSettings = props.storeToolbarSettings;
const isCanUndo = storeToolbarSettings.isCanUndo;
const isCanRedo = storeToolbarSettings.isCanRedo;
const disabledPreview = storeToolbarSettings.countPages <= 0;
useEffect(() => { useEffect(() => {
const onDocumentReady = () => { Common.Notifications.on('setdoctitle', setDocTitle);
const api = Common.EditorApi.get(); Common.Gateway.on('init', loadConfig);
api.asc_registerCallback('asc_onCanUndo', onApiCanUndo); Common.Notifications.on('toolbar:activatecontrols', activateControls);
api.asc_registerCallback('asc_onCanRedo', onApiCanRedo); Common.Notifications.on('toolbar:deactivateeditcontrols', deactivateEditControls);
api.asc_registerCallback('asc_onFocusObject', onApiFocusObject); Common.Notifications.on('goback', goBack);
api.asc_registerCallback('asc_onCountPages', onApiCountPages);
Common.Notifications.on('toolbar:activatecontrols', activateControls);
Common.Notifications.on('toolbar:deactivateeditcontrols', deactivateEditControls);
Common.Notifications.on('goback', goBack);
};
if ( !Common.EditorApi ) {
Common.Notifications.on('document:ready', onDocumentReady);
Common.Notifications.on('setdoctitle', setDocTitle);
Common.Gateway.on('init', loadConfig);
} else {
onDocumentReady();
}
if (isDisconnected) { if (isDisconnected) {
f7.popover.close(); f7.popover.close();
@ -40,17 +35,10 @@ const ToolbarController = inject('storeAppOptions', 'users')(observer(props => {
} }
return () => { return () => {
Common.Notifications.off('document:ready', onDocumentReady);
Common.Notifications.off('setdoctitle', setDocTitle); Common.Notifications.off('setdoctitle', setDocTitle);
Common.Notifications.off('toolbar:activatecontrols', activateControls); Common.Notifications.off('toolbar:activatecontrols', activateControls);
Common.Notifications.off('toolbar:deactivateeditcontrols', deactivateEditControls); Common.Notifications.off('toolbar:deactivateeditcontrols', deactivateEditControls);
Common.Notifications.off('goback', goBack); Common.Notifications.off('goback', goBack);
const api = Common.EditorApi.get();
api.asc_unregisterCallback('asc_onCanUndo', onApiCanUndo);
api.asc_unregisterCallback('asc_onCanRedo', onApiCanRedo);
api.asc_unregisterCallback('asc_onFocusObject', onApiFocusObject);
api.asc_unregisterCallback('asc_onCountPages', onApiCountPages);
} }
}); });
@ -107,17 +95,6 @@ const ToolbarController = inject('storeAppOptions', 'users')(observer(props => {
//} //}
} }
// Undo and Redo
const [isCanUndo, setCanUndo] = useState(true);
const [isCanRedo, setCanRedo] = useState(true);
const onApiCanUndo = (can) => {
if (isDisconnected) return;
setCanUndo(can);
};
const onApiCanRedo = (can) => {
if (isDisconnected) return;
setCanRedo(can);
};
const onUndo = () => { const onUndo = () => {
const api = Common.EditorApi.get(); const api = Common.EditorApi.get();
if (api) { if (api) {
@ -131,36 +108,6 @@ const ToolbarController = inject('storeAppOptions', 'users')(observer(props => {
} }
} }
const [disabledEdit, setDisabledEdit] = useState(false);
const onApiFocusObject = (objects) => {
if (isDisconnected) return;
if (objects.length > 0) {
let slide_deleted = false,
slide_lock = false,
no_object = true,
objectLocked = false;
objects.forEach((object) => {
const type = object.get_ObjectType();
const objectValue = object.get_ObjectValue();
if (type === Asc.c_oAscTypeSelectElement.Slide) {
slide_deleted = objectValue.get_LockDelete();
slide_lock = objectValue.get_LockLayout() || objectValue.get_LockBackground() || objectValue.get_LockTransition() || objectValue.get_LockTiming();
} else if (objectValue && typeof objectValue.get_Locked === 'function') {
no_object = false;
objectLocked = objectLocked || objectValue.get_Locked();
}
});
setDisabledEdit(slide_deleted || (objectLocked || no_object) && slide_lock);
}
};
const [disabledPreview, setDisabledPreview] = useState(false);
const onApiCountPages = (count) => {
setDisabledPreview(count <= 0);
};
const [disabledEditControls, setDisabledEditControls] = useState(false); const [disabledEditControls, setDisabledEditControls] = useState(false);
const [disabledSettings, setDisabledSettings] = useState(false); const [disabledSettings, setDisabledSettings] = useState(false);
const deactivateEditControls = (enableDownload) => { const deactivateEditControls = (enableDownload) => {
@ -192,7 +139,7 @@ const ToolbarController = inject('storeAppOptions', 'users')(observer(props => {
isCanRedo={isCanRedo} isCanRedo={isCanRedo}
onUndo={onUndo} onUndo={onUndo}
onRedo={onRedo} onRedo={onRedo}
disabledEdit={disabledEdit} disabledEdit={isEditLocked}
disabledPreview={disabledPreview} disabledPreview={disabledPreview}
disabledControls={disabledControls} disabledControls={disabledControls}
disabledEditControls={disabledEditControls} disabledEditControls={disabledEditControls}

View file

@ -30,34 +30,52 @@ class MainPage extends Component {
handleClickToOpenOptions = (opts, showOpts) => { handleClickToOpenOptions = (opts, showOpts) => {
ContextMenu.closeContextMenu(); ContextMenu.closeContextMenu();
this.setState(state => { setTimeout(() => {
if ( opts == 'edit' ) let opened = false;
return {editOptionsVisible: true}; const newState = {};
else if ( opts == 'add' ) if ( opts === 'edit' ) {
return { this.state.editOptionsVisible && (opened = true);
addOptionsVisible: true, newState.editOptionsVisible = true;
addShowOptions: showOpts } else if ( opts === 'add' ) {
}; this.state.addOptionsVisible && (opened = true);
else if ( opts == 'settings' ) newState.addOptionsVisible = true;
return {settingsVisible: true}; newState.addShowOptions = showOpts;
else if ( opts == 'coauth' ) } else if ( opts === 'settings' ) {
return {collaborationVisible: true}; this.state.settingsVisible && (opened = true);
else if ( opts == 'preview' ) newState.settingsVisible = true;
return {previewVisible: true}; } else if ( opts === 'coauth' ) {
}); this.state.collaborationVisible && (opened = true);
newState.collaborationVisible = true;
} else if ( opts === 'preview' ) {
this.state.previewVisible && (opened = true);
newState.previewVisible = true;
}
if ((opts === 'edit' || opts === 'coauth') && Device.phone) { for (let key in this.state) {
f7.navbar.hide('.main-navbar'); if (this.state[key] && !opened) {
} setTimeout(() => {
this.handleClickToOpenOptions(opts, showOpts);
}, 10);
return;
}
}
if (!opened) {
this.setState(newState);
if ((opts === 'edit' || opts === 'coauth') && Device.phone) {
f7.navbar.hide('.main-navbar');
}
}
}, 10);
}; };
handleOptionsViewClosed = opts => { handleOptionsViewClosed = opts => {
(async () => { setTimeout(() => {
await 1 && this.setState(state => { this.setState(state => {
if ( opts == 'edit' ) if ( opts == 'edit' )
return {editOptionsVisible: false}; return {editOptionsVisible: false};
else if ( opts == 'add' ) else if ( opts == 'add' )
return {addOptionsVisible: false}; return {addOptionsVisible: false, addShowOptions: null};
else if ( opts == 'settings' ) else if ( opts == 'settings' )
return {settingsVisible: false}; return {settingsVisible: false};
else if ( opts == 'coauth' ) else if ( opts == 'coauth' )
@ -68,7 +86,7 @@ class MainPage extends Component {
if ((opts === 'edit' || opts === 'coauth') && Device.phone) { if ((opts === 'edit' || opts === 'coauth') && Device.phone) {
f7.navbar.show('.main-navbar'); f7.navbar.show('.main-navbar');
} }
})(); });
}; };
render() { render() {

View file

@ -14,7 +14,8 @@ export class storeFocusObjects {
tableObject: computed, tableObject: computed,
isTableInStack: computed, isTableInStack: computed,
chartObject: computed, chartObject: computed,
linkObject: computed linkObject: computed,
isEditLocked: computed
}); });
} }
@ -74,4 +75,26 @@ export class storeFocusObjects {
get linkObject() { get linkObject() {
return !!this.intf ? this.intf.getLinkObject() : null; return !!this.intf ? this.intf.getLinkObject() : null;
} }
get isEditLocked() {
if (this._focusObjects.length > 0) {
let slide_deleted = false,
slide_lock = false,
no_object = true,
objectLocked = false;
this._focusObjects.forEach((object) => {
const type = object.get_ObjectType();
const objectValue = object.get_ObjectValue();
if (type === Asc.c_oAscTypeSelectElement.Slide) {
slide_deleted = objectValue.get_LockDelete();
slide_lock = objectValue.get_LockLayout() || objectValue.get_LockBackground() || objectValue.get_LockTransition() || objectValue.get_LockTiming();
} else if (objectValue && typeof objectValue.get_Locked === 'function') {
no_object = false;
objectLocked = objectLocked || objectValue.get_Locked();
}
});
return (slide_deleted || (objectLocked || no_object) && slide_lock);
}
}
} }

View file

@ -17,6 +17,7 @@ import { storeLinkSettings } from "./linkSettings";
// import {storeShapeSettings} from "./shapeSettings"; // import {storeShapeSettings} from "./shapeSettings";
// import {storeImageSettings} from "./imageSettings"; // import {storeImageSettings} from "./imageSettings";
import {storeComments} from "../../../../common/mobile/lib/store/comments"; import {storeComments} from "../../../../common/mobile/lib/store/comments";
import {storeToolbarSettings} from "./toolbar";
export const stores = { export const stores = {
storeAppOptions: new storeAppOptions(), storeAppOptions: new storeAppOptions(),
@ -37,6 +38,7 @@ export const stores = {
// storeParagraphSettings: new storeParagraphSettings(), // storeParagraphSettings: new storeParagraphSettings(),
// storeShapeSettings: new storeShapeSettings(), // storeShapeSettings: new storeShapeSettings(),
// storeChartSettings: new storeChartSettings(), // storeChartSettings: new storeChartSettings(),
storeComments: new storeComments() storeComments: new storeComments(),
storeToolbarSettings: new storeToolbarSettings()
}; };

View file

@ -0,0 +1,32 @@
import {action, observable, makeObservable} from 'mobx';
export class storeToolbarSettings {
constructor() {
makeObservable(this, {
isCanUndo: observable,
setCanUndo: action,
isCanRedo: observable,
setCanRedo: action,
countPages: observable,
setCountPages: action
})
}
isCanUndo = false;
setCanUndo(can) {
this.isCanUndo = can;
}
isCanRedo = false;
setCanRedo(can) {
this.isCanRedo = can;
}
countPages = 0;
setCountPages(count) {
this.countPages = count;
}
}

Some files were not shown because too many files have changed in this diff Show more