diff --git a/Readme.md b/Readme.md index 62163b654..56395225d 100644 --- a/Readme.md +++ b/Readme.md @@ -1,4 +1,4 @@ -[![License](https://img.shields.io/badge/License-GNU%20AGPL%20V3-green.svg?style=flat)](http://www.gnu.org/licenses/agpl-3.0.ru.html) +[![License](https://img.shields.io/badge/License-GNU%20AGPL%20V3-green.svg?style=flat)](https://www.gnu.org/licenses/agpl-3.0.en.html) ## web-apps diff --git a/apps/api/documents/api.js b/apps/api/documents/api.js index 530e3547c..68f7e42c6 100644 --- a/apps/api/documents/api.js +++ b/apps/api/documents/api.js @@ -43,6 +43,7 @@ print: , // default = true rename: , // default = false changeHistory: , // default = false + comment: // default = edit } }, editorConfig: { diff --git a/apps/common/main/lib/util/utils.js b/apps/common/main/lib/util/utils.js index 0d6ae74f9..e85fd867b 100644 --- a/apps/common/main/lib/util/utils.js +++ b/apps/common/main/lib/util/utils.js @@ -49,23 +49,24 @@ Common.Utils = _.extend(new(function() { return (is && (m = regex.exec(userAgent))) ? parseFloat(m[1]) : 0; }, docMode = document.documentMode, + isEdge = check(/edge/), isOpera = check(/opera/), isOpera10_5 = isOpera && check(/version\/10\.5/), - isChrome = check(/\bchrome\b/), - isWebKit = check(/webkit/), - isSafari = !isChrome && check(/safari/), - isSafari2 = isSafari && check(/applewebkit\/4/), // unique to Safari 2 - isSafari3 = isSafari && check(/version\/3/), - isSafari4 = isSafari && check(/version\/4/), - isSafari5_0 = isSafari && check(/version\/5\.0/), - isSafari5 = isSafari && check(/version\/5/), - isIE = !isOpera && (check(/msie/) || check(/trident/)), + isIE = !isOpera && (check(/msie/) || check(/trident/) || check(/edge/)), isIE7 = isIE && ((check(/msie 7/) && docMode != 8 && docMode != 9 && docMode != 10) || docMode == 7), isIE8 = isIE && ((check(/msie 8/) && docMode != 7 && docMode != 9 && docMode != 10) || docMode == 8), isIE9 = isIE && ((check(/msie 9/) && docMode != 7 && docMode != 8 && docMode != 10) || docMode == 9), isIE10 = isIE && ((check(/msie 10/) && docMode != 7 && docMode != 8 && docMode != 9) || docMode == 10), isIE11 = isIE && ((check(/trident\/7\.0/) && docMode != 7 && docMode != 8 && docMode != 9 && docMode != 10) || docMode == 11), isIE6 = isIE && check(/msie 6/), + isChrome = !isIE && check(/\bchrome\b/), + isWebKit = !isIE && check(/webkit/), + isSafari = !isIE && !isChrome && check(/safari/), + isSafari2 = isSafari && check(/applewebkit\/4/), // unique to Safari 2 + isSafari3 = isSafari && check(/version\/3/), + isSafari4 = isSafari && check(/version\/4/), + isSafari5_0 = isSafari && check(/version\/5\.0/), + isSafari5 = isSafari && check(/version\/5/), isGecko = !isWebKit && !isIE && check(/gecko/), // IE11 adds "like gecko" into the user agent string isGecko3 = isGecko && check(/rv:1\.9/), isGecko4 = isGecko && check(/rv:2\.0/), diff --git a/apps/common/main/lib/view/Comments.js b/apps/common/main/lib/view/Comments.js index e238a5eb3..c989f74ba 100644 --- a/apps/common/main/lib/view/Comments.js +++ b/apps/common/main/lib/view/Comments.js @@ -517,7 +517,7 @@ define([ if (this.handlerHide) { this.handlerHide (); } - + this.hideTips(); Common.UI.Window.prototype.hide.call(this); if (!_.isUndefined(this.e) && this.e.keyCode == Common.UI.Keys.ESC) { diff --git a/apps/common/main/lib/view/Header.js b/apps/common/main/lib/view/Header.js index 930b5eae4..3a6b03b91 100644 --- a/apps/common/main/lib/view/Header.js +++ b/apps/common/main/lib/view/Header.js @@ -76,7 +76,7 @@ define([ // '' + '
diff --git a/apps/documenteditor/main/app/view/ChartSettings.js b/apps/documenteditor/main/app/view/ChartSettings.js index 1b19c12f6..10a41f313 100644 --- a/apps/documenteditor/main/app/view/ChartSettings.js +++ b/apps/documenteditor/main/app/view/ChartSettings.js @@ -145,7 +145,8 @@ define([ this.mnuChartTypePicker.selectRecord(record, true); if (record) { this.btnChartType.setIconCls('item-chartlist ' + record.get('iconCls')); - } + } else + this.btnChartType.setIconCls(''); this.updateChartStyles(this.api.asc_getChartPreviews(type)); this._state.ChartType = type; } @@ -268,6 +269,7 @@ define([ { id: 'menu-chart-group-area', caption: me.textArea, inline: true }, { id: 'menu-chart-group-scatter', caption: me.textPoint, inline: true }, { id: 'menu-chart-group-stock', caption: me.textStock, inline: true } + // { id: 'menu-chart-group-surface', caption: me.textSurface} ]), store: new Common.UI.DataViewStore([ { group: 'menu-chart-group-bar', type: Asc.c_oAscChartTypeSettings.barNormal, iconCls: 'column-normal', selected: true}, @@ -295,6 +297,11 @@ define([ { group: 'menu-chart-group-area', type: Asc.c_oAscChartTypeSettings.areaStackedPer, iconCls: 'area-pstack'}, { group: 'menu-chart-group-scatter', type: Asc.c_oAscChartTypeSettings.scatter, iconCls: 'point-normal'}, { group: 'menu-chart-group-stock', type: Asc.c_oAscChartTypeSettings.stock, iconCls: 'stock-normal'} + // { group: 'menu-chart-group-surface', type: Asc.c_oAscChartTypeSettings.surfaceNormal, iconCls: 'surface-normal'}, + // { group: 'menu-chart-group-surface', type: Asc.c_oAscChartTypeSettings.surfaceWireframe, iconCls: 'surface-wireframe'}, + // { group: 'menu-chart-group-surface', type: Asc.c_oAscChartTypeSettings.contourNormal, iconCls: 'contour-normal'}, + // { group: 'menu-chart-group-surface', type: Asc.c_oAscChartTypeSettings.contourWireframe, iconCls: 'contour-wireframe'} + ]), itemTemplate: _.template('
') }); @@ -534,7 +541,8 @@ define([ textPie: 'Pie', textPoint: 'XY (Scatter)', textStock: 'Stock', - textStyle: 'Style' + textStyle: 'Style', + textSurface: 'Surface' }, DE.Views.ChartSettings || {})); }); \ No newline at end of file diff --git a/apps/documenteditor/main/app/view/ParagraphSettingsAdvanced.js b/apps/documenteditor/main/app/view/ParagraphSettingsAdvanced.js index 84e0a97ac..8b3c90e56 100644 --- a/apps/documenteditor/main/app/view/ParagraphSettingsAdvanced.js +++ b/apps/documenteditor/main/app/view/ParagraphSettingsAdvanced.js @@ -1063,6 +1063,7 @@ define([ 'text!documenteditor/main/app/template/ParagraphSettingsAdvanced.tem }); if (rec) { rec.set('tabAlign', align); + this._tabListChanged = true; } else { rec = new Common.UI.DataViewModel(); rec.set({ diff --git a/apps/documenteditor/main/app/view/Toolbar.js b/apps/documenteditor/main/app/view/Toolbar.js index d51c17793..7374ef304 100644 --- a/apps/documenteditor/main/app/view/Toolbar.js +++ b/apps/documenteditor/main/app/view/Toolbar.js @@ -571,7 +571,7 @@ define([ this.btnDropCap = new Common.UI.Button({ id: 'tlb-btn-dropcap', - cls: 'btn-toolbar', + cls: 'btn-toolbar x-huge icon-top', iconCls: 'btn-dropcap', caption: me.capBtnInsDropcap, menu: new Common.UI.Menu({ @@ -1820,6 +1820,7 @@ define([ {id: 'menu-chart-group-area', caption: me.textArea, inline: true}, {id: 'menu-chart-group-scatter', caption: me.textPoint, inline: true}, {id: 'menu-chart-group-stock', caption: me.textStock, inline: true} + // {id: 'menu-chart-group-surface', caption: me.textSurface} ]), store: new Common.UI.DataViewStore([ { @@ -1973,6 +1974,10 @@ define([ allowSelected: true, iconCls: 'stock-normal' } + // { group: 'menu-chart-group-surface', type: Asc.c_oAscChartTypeSettings.surfaceNormal, allowSelected: true, iconCls: 'surface-normal'}, + // { group: 'menu-chart-group-surface', type: Asc.c_oAscChartTypeSettings.surfaceWireframe, allowSelected: true, iconCls: 'surface-wireframe'}, + // { group: 'menu-chart-group-surface', type: Asc.c_oAscChartTypeSettings.contourNormal, allowSelected: true, iconCls: 'contour-normal'}, + // { group: 'menu-chart-group-surface', type: Asc.c_oAscChartTypeSettings.contourWireframe, allowSelected: true, iconCls: 'contour-wireframe'} ]), itemTemplate: _.template('
') }); @@ -2489,7 +2494,8 @@ define([ capImgBackward: 'Move backward', capImgWrapping: 'Wrapping', capBtnComment: 'Comment', - textColumnsCustom: 'Custom Columns' + textColumnsCustom: 'Custom Columns', + textSurface: 'Surface' } })(), DE.Views.Toolbar || {})); }); diff --git a/apps/documenteditor/main/index.html b/apps/documenteditor/main/index.html index d3906d3d4..e96f89d26 100644 --- a/apps/documenteditor/main/index.html +++ b/apps/documenteditor/main/index.html @@ -6,9 +6,6 @@ - - - @@ -178,8 +175,7 @@ 100% { top:100px; background: #55bce6; } } - - + + + + + +
@@ -268,6 +271,12 @@ + + + diff --git a/apps/documenteditor/main/index.html.deploy b/apps/documenteditor/main/index.html.deploy index 6e8dbc7a3..ab73ba9d4 100644 --- a/apps/documenteditor/main/index.html.deploy +++ b/apps/documenteditor/main/index.html.deploy @@ -7,7 +7,6 @@ - @@ -177,8 +176,6 @@ 100% { top:100px; background: #55bce6; } } - - + + + + + - - -
-

Définir le type de police, la taille et la couleur

-

Vous pouvez sélectionner le type de police, sa taille et sa couleur en utilisant les icônes correspondantes de la barre d'outils supérieure.

-

Remarque : si vous voulez appliquer la mise en forme au texte déjà saisi, sélectionnez-le avec la souris ou en utilisant le clavier et appliquez la mise en forme.

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Nom de la policeNom de la policeSert à sélectionner l'une des polices disponibles dans la liste.
Taille de la policeTaille de la policeSert à sélectionner la taille de la police parmi les valeurs disponibles dans la liste déroulante, ou entrer la valeur nécessaire dans le champ de la taille de police.
Augmenter la taille de la policeAugmenter la taille de la policeSert à modifier la taille de la police en la randant plus grande à un point chaque fois que vous appuyez sur le bouton.
Réduire la taille de la policeRéduire la taille de la policeSert à modifier la taille de la police en la randant plus petite à un point chaque fois que vous appuyez sur le bouton.
Couleur de surlignageCouleur de surlignageSert à marquer les phrases, les mots ou les caractères séparés à l'aide de la bande couleur ajoutée qui imite l'effet du surligneur autour du texte. Vous pouvez sélectionner la partie nécessaire du texte et puis cliquer sur la flèche vers le bas située à côté de l'icône pour sélectionner une couleur dans la palette (cette couleur ne depend pas du Jeu de couleurs sélectionnée et inclut 16 couleurs) - cette couleur sera appliquée à la sélection de texte. Vous pouvez également choisir une couleur de surlignage et puis commencer à sélectionner le texte avec la souris - le pointeur de souris prendra l'apparence suivante Mouse pointer while highlighting et vous pourrez surligner de différentes parties de votre texte de manière séquentielle. To stop highlighting just click the icon once again. To clear the highlight color, choose the No Fill option. Highlight Color is different from the Background Color Paragraph Background Color Icon as the latter is applied to the whole paragraph and completely fills all the paragraph space from the left page margin to the right page margin.
Couleur de policeCouleur de policeSert à changer la couleur des lettres /characters dans le texte. Cliquez sur la flèche vers le bas à côté de l'icône pour sélectionner une couleur à partir des palettes disponibles. Les couleurs dans les palettes dépendent du jeu de couleurs sélectionné qu'on peut choisir en cliquant sur l'icône Modifier le jeu de couleurs Modifier le jeu de couleurs sur la barre d'outils supérieure.
-
- + + Définir le type de police, la taille et la couleur + + + + + + +
+

Définir le type de police, la taille et la couleur

+

Vous pouvez sélectionner le type de police, sa taille et sa couleur en utilisant les icônes correspondantes de la barre d'outils supérieure.

+

Remarque : si vous voulez appliquer la mise en forme au texte déjà saisi, sélectionnez-le avec la souris ou en utilisant le clavier et appliquez la mise en forme.

+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Nom de la policeNom de la policeSert à sélectionner l'une des polices disponibles dans la liste.
Taille de la policeTaille de la policeSert à sélectionner la taille de la police parmi les valeurs disponibles dans la liste déroulante, ou entrer la valeur nécessaire dans le champ de la taille de police.
Augmenter la taille de la policeAugmenter la taille de la policeSert à modifier la taille de la police en la randant plus grande à un point chaque fois que vous appuyez sur le bouton.
Réduire la taille de la policeRéduire la taille de la policeSert à modifier la taille de la police en la randant plus petite à un point chaque fois que vous appuyez sur le bouton.
Couleur de surlignageFont ColorSert à changer la couleur des lettres /characters dans le texte. Par défaut, la couleur de police automatique est définie dans un nouveau document vide. Elle s'affiche comme la police noire sur l'arrière-plan blanc. Si vous choisissez le noir comme la couleur d'arrière-plan, la couleur de la police se change automatiquement à la couleur blanche pour que le texte soit visible. Pour choisir une autre couleur, cliquez sur la flèche vers le bas située à côté de l'icône et sélectionnez une couleur disponible dans les palettes (les couleurs de la palette Couleurs de thème dépend du jeu de couleurs sélectionné). Après avoir modifié la couleur de police par défaut, vous pouvez utiliser l'option Automatique dans la fenêtre des palettes de couleurs pour restaurer rapidement la couleur automatique pour le fragment du texte sélectionné.
+

Remarque: pour en savoir plus sur l'utilisation des palettes de couleurs, consultez cette page.

+
+ \ No newline at end of file diff --git a/apps/documenteditor/main/resources/help/fr/UsageInstructions/InsertDropCap.htm b/apps/documenteditor/main/resources/help/fr/UsageInstructions/InsertDropCap.htm index 656274b1f..4ea8aea2f 100644 --- a/apps/documenteditor/main/resources/help/fr/UsageInstructions/InsertDropCap.htm +++ b/apps/documenteditor/main/resources/help/fr/UsageInstructions/InsertDropCap.htm @@ -9,53 +9,53 @@

Insérer une lettrine

-

Une Lettrine est une lettre initiale du paragraphe plus grande que les autres et occupant une hauteur supérieure à la ligne courante.

+

Une Lettrine est une lettre initiale du paragraphe, elle est plus grande que les autres lettres et occupe une hauteur supérieure à la ligne courante.

Pour ajouter une lettrine,

  1. placez le curseur à l'intérieur du paragraphe dans lequel vous voulez insérer une lettrine,
  2. -
  3. cliquez sur l'icône de la barre d'outils supérieure Insérer une lettrine Insérer une lettrine,
  4. -
  5. sélectionnez l'option nécessaire de la liste déroulante : +
  6. cliquez sur l'icône Insérer une lettrine Insérer une lettrine sur la barre d'outils supérieure,
  7. +
  8. sélectionnez l'option nécessaire dans la liste déroulante :
    • Dans le texte Insérer une lettrine - Dans le texte - pour insérer une lettrine dans le paragraphe.
    • Dans la marge Insérer une lettrine - Dans la marge - pour placer une lettrine dans la marge gauche.
-

Exemple de la lettrineLa lettre initiale du paragraphe sélectionné sera transformée dans une lettrine. Si vous avez besoin d'ajouter quelques lettres, faites-le à la main : sélectionnez la lettrine et tapez les lettres nécessaires.

-

Pour régler l'apparence de la lettrine (par exemple, taille de police, type, style de décoration ou couleur), sélectionnez la lettre et utilisez les icônes correspondantes de la barre d'outils supérieure.

+

Exemple de la lettrineLa lettre initiale du paragraphe sélectionné sera transformée en une lettrine. Si vous avez besoin d'ajouter quelques lettres, vous pouvez le faire manuellement : sélectionnez la lettrine et tapez les lettres nécessaires.

+

Pour régler l'apparence de la lettrine (par exemple, taille de police, type, style de décoration ou couleur), sélectionnez la lettre et utilisez les icônes correspondantes sur la barre d'outils supérieure.

La lettrine sélectionnée est entourée par un cadre (un conteneur utilisé pour positionner la lettrine sur la page). Vous pouvez facilement changer la taille du cadre en faisant glisser ses bordures ou changer sa position en utilisant l'icône Flèche qui apparaît si vous positionnez le curseur sur le cadre.

-

Pour supprimer la lettrine ajoutée, sélectionnez-la, cliquez sur l'icône de la barre d'outils supérieure Insérer une lettrine Insérer une lettrine et choisissez l'option Aucune Insérer une lettrine - Aucune de la liste déroulante.

+

Pour supprimer la lettrine ajoutée, sélectionnez-la, cliquez sur l'icône de la barre d'outils supérieure Insérer une lettrine Insérer une lettrine et choisissez l'option Aucune Insérer une lettrine - Aucune dans la liste déroulante.


-

Pour régler les paramètres de la lettrine ajoutée, sélectionnez-la, cliquez sur l'icône de la barre d'outils supérieure Insérer une lettrine Insérer une lettrine et choisissez l'option Paramètres de la lettrine de la liste déroulante. La fenêtre Lettrine - Paramètres avancés s'ouvre :

+

Pour régler les paramètres de la lettrine ajoutée, sélectionnez-la, cliquez sur l'icône de la barre d'outils supérieure Insérer une lettrine Insérer une lettrine et choisissez l'option Paramètres de la lettrine dans la liste déroulante. La fenêtre Lettrine - Paramètres avancés s'ouvre :

Lettrine - Paramètres avancés

L'onglet Lettrine vous permet de régler les paramètres suivants :

  • Position sert à changer l'emplacement de la lettrine. Sélectionnez l'option Dans le texte ou Dans la marge, ou cliquez sur Aucune pour supprimer la lettrine.
  • -
  • Police sert à sélectionner la police de la liste des polices disponibles.
  • +
  • Police sert à sélectionner la police dans la liste des polices disponibles.
  • Hauteur des lignes sert à spécifier le nombre des lignes occupées par la lettrine. Il est possible de sélectionner de 1 à 10 lignes.
  • Distance du texte sert à spécifier l'espace entre le texte du paragraphe et la bordure droite du cadre qui entoure la lettrine.
Lettrine - Paramètres avancés -

L'onglet Bordures et remplissage vous permet d'ajouter une bordure autour de la lettrine et régler ses paramètres. Ils sont les suivants :

+

L'onglet Bordures et remplissage vous permet d'ajouter une bordure autour de la lettrine et de régler ses paramètres. Ils sont les suivants :

  • Paramètres de la Bordure (taille, couleur, sa présence ou absence) - définissez la taille des bordures, sélectionnez leur couleur et choisissez les bordures auxquelles (en haut, en bas, à gauche, à droite ou quelques unes à la fois) vous voulez appliquer ces paramètres.
  • Couleur d'arrère-plan - choisissez la couleur pour l'arrère-plan de la lettrine.
Lettrine - Paramètres avancés -

L'onglet Marges vous permet de définir la distance entre la lettrine et les bordures En haut, En bas, A gauche et A droite autour d'elle (si les bordures ont été ajoutées).

+

L'onglet Marges vous permet de définir la distance entre la lettrine et les bordures En haut, En bas, A gauche et A droite autour d'elle (si les bordures ont été préalablement ajoutées).


Après avoir ajouté la lettrine vous pouvez également changer les paramètres du Cadre. Pour y accéder, cliquez droit à l'intérieur du cadre et sélectionnez l'option Paramètres avancées du cadre du menu contextuel. La fenêtre Cadre - Paramètres avancés s'ouvre :

Cadre - Paramètres avancés

L'onglet Cadre vous permet de régler les paramètres suivants :

  • Position sert à sélectionner une des styles d'habillage Aligné ou Flottant. Ou vous pouvez cliquer sur Aucune pour supprimer le cadre.
  • -
  • Largeur et Hauteur servent à changer la taille du cadre. L'option Auto vous permet de régler la taille du cadre automatiquement en l'ajustant à la lettrine à l'intérieur. L'option Exactement vous permet de spécifier les valeurs fixes. L'option Au moins est utilisée pour définir la hauteur minimale (si vous changez la taille du cadre, la hauteur du cadre change en conséquence, mais elle ne peut pas être inférieure de la valeur spécifiée).
  • -
  • Horizontal sert à définir la position exacte du cadre en unités sélectionnées par rapport à la marge, la page ou la colonne, ou à aligner le cadre (à gauche, au centre ou à droite) par rapport à un des points de référence. Vous pouvez également définir la Distance du texte horizontale c'est-à-dire l'espace entre les bordures verticales du cadre et le texte du paragraphe.
  • -
  • Vertical sert à définir la position exacte du cadre en unités sélectionnées par rapport à la marge, la page ou le paragraphe, ou à aligner le cadre (en haut, au centre ou en bas) par rapport à un des points de référence. Vous pouvez également définir la Distance du texte verticale c'est-à-dire l'espace entre les bordures horizontales et le texte du paragraphe.
  • -
  • Déplacer avec le texte sert à la lettrine se déplace en même temps que le texte sur lequel elle est alignée.
  • +
  • Largeur et Hauteur servent à changer la taille du cadre. L'option Auto vous permet de régler la taille du cadre automatiquement en l'ajustant à la lettrine à l'intérieur. L'option Exactement vous permet de spécifier les valeurs fixes. L'option Au moins est utilisée pour définir la hauteur minimale (si vous changez la taille du cadre, la hauteur du cadre change en conséquence, mais elle ne peut pas être inférieure à la valeur spécifiée).
  • +
  • Horizontal sert à définir la position exacte du cadre des unités sélectionnées par rapport à la marge, la page ou la colonne, ou à aligner le cadre (à gauche, au centre ou à droite) par rapport à un des points de référence. Vous pouvez également définir la Distance du texte horizontale c'est-à-dire l'espace entre les bordures verticales du cadre et le texte du paragraphe.
  • +
  • Vertical sert à définir la position exacte du cadre des unités sélectionnées par rapport à la marge, la page ou le paragraphe, ou à aligner le cadre (en haut, au centre ou en bas) par rapport à un des points de référence. Vous pouvez également définir la Distance du texte verticale c'est-à-dire l'espace entre les bordures horizontales et le texte du paragraphe.
  • +
  • Déplacer avec le texte contrôle si la litterine se déplace comme le paragraphe auquel elle est liée.
-

Les onglets Bordures et remplissage et Marges vous permettent de définir les mêmes paramètres que ceux qui sont présentés dans les mêmes onglets de la fenêtre Lettrine - Paramètres avancés.

+

Les onglets Bordures et remplissage et Marges permettent de définir les mêmes paramètres que dans les onglets de la fenêtre Lettrine - Paramètres avancés.

diff --git a/apps/documenteditor/main/resources/help/fr/UsageInstructions/InsertTables.htm b/apps/documenteditor/main/resources/help/fr/UsageInstructions/InsertTables.htm index ffc8996ae..875827599 100644 --- a/apps/documenteditor/main/resources/help/fr/UsageInstructions/InsertTables.htm +++ b/apps/documenteditor/main/resources/help/fr/UsageInstructions/InsertTables.htm @@ -1,112 +1,166 @@  - - Insérer des tableaux - - - - - -
-

Insérer des tableaux

-

Pour insérer un tableau dans votre document,

-
    -
  1. placez le curseur là où vous voulez insérer un tableau,
  2. -
  3. cliquez sur l'icône Insérer un tableau icône Insérer un tableau sur la la barre d'outils supérieure,
  4. -
  5. sélectionnez une des options pour créer le tableau : -
      -
    • soit un tableau avec le nombre prédéfini de cellules (10 par 8 cellules maximum)

      -

      Si vous voulez ajouter rapidement un tableau, il vous suffit de sélectionner le nombre de lignes (8 au maximum) et des colonnes (10 au maximum).

    • -
    • soit un tableau personnalisé

      -

      Si vous avez besoin d'un tableau de plus de 10 par 8 cellules, sélectionnez l'option Insérer un tableau personnalisé pour ouvrir la fenêtre et spécifier le nombre nécessaire de lignes et de colonnes, ensuite cliquez sur le bouton OK.

      -

      Tableau personnalisé

      -
    • -
    -
  6. -
  7. après avoir ajouté le tableau, vous pouvez modifier ses propriétés et sa position.
  8. -
-
-

Certaines propriétés du tableau ainsi que sa structure peuvent être modifiées en utilisant le menu contextuel. Les options du menu sont les suivantes :

-
    -
  • Sélectionner sert à sélectionner une ligne, une colonne, une cellule ou un tableau.
  • -
  • Insérer une ligne sert à insérer une ligne au-dessus ou au-dessous de la ligne où le curseur est placé.
  • -
  • Insérer une colonne sert à insérer une colonne située à gauche ou à droite de la colonne où le curseur se trouve.
  • -
  • Supprimer sert à supprimer une ligne, une colonne ou un tableau.
  • -
  • Fusionner les cellules est disponible si deux ou plusieurs cellules sont sélectionnées et sert à les fusionner.
  • -
  • Fractionner la cellule... sert à ouvrir la fenêtre où vous pouvez sélectionner le nombre nécessaire de colonnes et de lignes de la cellule qui doit être divisée.
  • -
  • Alignement vertical de cellule sert à aligner le texte en haut, au centre ou en bas de la cellule sélectionnée.
  • -
  • Style d'habillage - Aligné sert à aligner le tableau à gauche, au centre, à droite.
  • -
  • Style d'habillage - Objet flottant sert à sélectionner le style flottant lorsque le texte est enroulé autour du tableau.
  • -
  • Paramètres avancés du tableau sert à ouvrir la fenêtre 'Tableau - Paramètres avancés'.
  • -
  • Lien hypertexte sert à insérer un lien hypertexte.
  • -
  • Paragraphe sert à garder les lignes unies ou ouvrir la fenêtre 'Paragraphe - Paramètres avancés'.
  • -
-
-

Barre latérale droite - Paramètres du tableau

-

Vous pouvez également modifier les propriétés du tableau en utilisant la barre latérale droite :

-
    -
  • Lignes et Colonnes servent à sélectionner les parties du tableau à souligner.

    -

    Pour les lignes :

    -
      -
    • En-tête - pour souligner la première ligne
    • -
    • Total - pour souligner la dernière ligne
    • -
    • À bandes - pour souligner chaque deuxième ligne
    • -
    -

    Pour les colonnes :

    -
      -
    • Premier - pour souligner la première colonne
    • -
    • Dernier - pour souligner la dernière colonne
    • -
    • À bandes - pour souligner chaque deuxième colonne
    • -
    -
  • -
  • Sélectionner à partir d'un modèle sert à choisir un modèle de tableau à partir de ceux qui sont disponibles.

  • -
  • Style des bordures sert à sélectionner la taille de la bordure, la couleur, le style ainsi que la couleur d'arrière-plan.

  • -
  • Habillage du texte sert à choisir entre deux styles d'habillage du texte - aligné sur le texte et flottant.

  • -
  • Lignes et colonnes sert à effectuer certaines opérations avec le tableau : sélectionner, supprimer, insérer des lignes et des colonnes, fusionner des cellules, fractionner une cellule.

  • -
  • Répéter en haut de chaque page en tant que ligne d'en-tête sert à insérer la même rangée d'en-tête en haut de chaque page dans les tableaux longs.

  • -
  • Afficher les paramètres avancés sert à ouvrir la fenêtre 'Tableau - Paramètres avancés'.

  • -
-
-

Pour modifier les paramètres du tableau avancés, cliquez sur le tableau avec le clic droit de la souris et sélectionnez l'option Paramètres avancés du tableau du menu contextuel ou utilisez le lien Afficher les paramètres avancés sur la barre latérale droite. La fenêtre Propriétés du tableau s'ouvre :

- Tableau - Paramètres avancés -

L'onglet Largeur et espaces contient les paramètres suivants :

-
    -
  • Largeur - la largeur du tableau sélectionné manuellement ou automatiquement ajustée à la largeur de la page.
  • -
  • Espacement entre les cellules - l'espacement entre les cellules qui sera rempli par la couleur de l'arrière-plan du tableau.
  • -
  • Redimensionner automatiquement pour ajuster au contenu - l'activation du changement automatique de la largeur de chaque colonne selon le texte saisi dans la cellule.
  • -
  • Marges par défaut - l'espace entre le texte dans les cellules et la bordure de la cellule utilisé par défaut. Les valeurs peuvent être modifiées.
  • -
- Tableau - Paramètres avancés -

L'onglet Habillage du texte contient les paramètres suivants :

-
    -
  • Le type de l'habillage du texte - Aligné ou Objet flottant. Utilisez l'option nécessaire pour modifier la façon de positionner le tableau par rapport au texte : il peut faire partie du texte (si vous sélectionnez le style 'aligné sur le texte') ou être contournée par le texte de tous les côtés (si vous sélectionnez le style Objet flottant).
  • -
  • Après avoir sélectionné le style d'habillage, vous pouvez définir les paramètres supplémentaires pour le type Aligné et le type Objet flottant à la fois : -
      -
    • Pour le type Aligné, vous pouvez spécifier l'alignement du tableau et retrait à gauche.
    • -
    • Pour le type Objet flottant, vous pouvez spécifier la distance du texte et la position du tableau dans l'onglet Position.
    • -
    -
  • -
- Tableau - Paramètres avancés -

L'onglet Bordures et arrière-plan contient les paramètres suivants :

-
    -
  • les paramètres Bordure (taille, couleur et présence ou absence) - définissez la taille de la bordure, sélectionnez la couleur et choisissez la façon d'affichage. -

    Remarque : si vous choisissez de ne pas afficher les bordures de tableau en cliquant sur le bouton Pas de bordures ou en désactivant manuellement toutes les bordures sur le diagramme, elles seront indiquées par une ligne pointillée dans le document. - Pour les faire disparaître, cliquez sur l'icône Caractères non imprimables Caractères non imprimables sur la barre d'outils supérieure et sélectionnez l'option Bordures du tableau cachées.

    -
  • -
  • Couleur - la couleur de l'arrière-plan à l'intérieur des cellules (disponible uniquement si une ou plusieurs cellules sont sélectionnées ou l'option Espacement entre les cellules est sélectionnée sur l'onglet Largeur et espaces).
  • -
  • Couleur de tableau - la couleur de l'arrière-plan d'espace entre les cellules si l'option Espacement entre les cellules est sélectionnée dans l'onglet Largeur et espaces.
  • -
- Tableau - Paramètres avancés -

L'onglet Position est disponible si l'option Objet flottant de l'onglet Habillage du texte est sélectionnée et contient les paramètres suivants :

-
    -
  • Horizontal sert à régler l'alignment du tableau (à gauche, au centre, à droite) par rapport à la marge, la page ou le texte aussi bien que la position à droite de la marge, la page ou le texte.
  • -
  • Vertical sert à régler l'alignment du tableau (à gauche, au centre, à droite) par rapport à la marge, la page ou le texte aussi bien que la position en dessous de la marge, la page ou le texte.
  • -
  • Déplacer avec le texte sert à déterminer si le tableau se déplace en même temps que le texte sur lequel il est aligné.
  • -
  • Chevauchement sert à déterminer si deux tableaux sont fusionnées en un seul grand tableau ou se chevauchent si vous les faites glisser les uns près des autres sur la page.
  • -
- Tableau - Paramètres avancés -

L'onglet Propriétés de la cellule vous permet de régler les Marges de la cellule c'est-à-dire l'espace entre le texte dans les cellules et la bordure de la cellule défini par défaut (les valeurs par défaut peuvent être modifiées dans l'onglet Largeur et espaces), ou saisi manuellement.

-
- + + Insérer des tableaux + + + + + +
+

Insérer des tableaux

+

Insérer un tableau

+

Pour insérer un tableau dans le texte de votre document,

+
    +
  1. placez le curseur à l'endroit où vous voulez insérer le tableau,
  2. +
  3. cliquez sur l'icône Insérer un tableau icône Insérer un tableau sur la la barre d'outils supérieure,
  4. +
  5. + sélectionnez une des options pour créer le tableau : +
      +
    • +

      soit un tableau avec le nombre prédéfini de cellules (10 par 8 cellules maximum)

      +

      Si vous voulez ajouter rapidement un tableau, il vous suffit de sélectionner le nombre de lignes (8 au maximum) et de colonnes (10 au maximum).

      +
    • +
    • +

      soit un tableau personnalisé

      +

      Si vous avez besoin d'un tableau de plus de 10 par 8 cellules, sélectionnez l'option Insérer un tableau personnalisé pour ouvrir la fenêtre et spécifiez le nombre nécessaire de lignes et de colonnes, ensuite cliquez sur le bouton OK.

      +

      Tableau personnalisé

      +
    • +
    +
  6. +
  7. après avoir ajouté le tableau, vous pouvez modifier ses propriétés et sa position.
  8. +
+
+

Ajuster les paramètres du tableau

+

Certaines paramètres du tableau ainsi que sa structure peuvent être modifiés à l'aide du menu contextuel. Les options du menu sont les suivantes :

+
    +
  • Couper, Copier, Coller - les options nécessaires pour couper ou coller le texte / l'objet sélectionné et coller un passage de texte précedement coupé / copié ou un objet à la position actuelle du curseur.
  • +
  • Sélectionner sert à sélectionner une ligne, une colonne, une cellule ou un tableau.
  • +
  • Insérer sert à insérer une ligne au-dessus ou en dessous de la ligne où le curseur est placé ainsi qu'insérer une colonne à gauche ou à droite de la сolonne à la position actuelle du curseur.
  • +
  • Supprimer sert à supprimer une ligne, une colonne ou un tableau.
  • +
  • Fractionner la cellule... sert à ouvrir la fenêtre où vous pouvez sélectionner le nombre nécessaire de colonnes et de lignes de la cellule qui doit être divisée.
  • +
  • Alignement vertical de cellule sert à aligner le texte en haut, au centre ou en bas de la cellule sélectionnée.
  • +
  • Orientation du texte - sert à modifier l'orientation du texte dans une cellule. Vous pouvez placer le texte horisontallement, verticallement de haut en bas (Rotation 90°), ou verticcalement de bas en haut (Rotation 270°).
  • +
  • Style d'habillage - Aligné est utilisé pour sélectionner le style aligné (où le tableau est incorporé dans le texte) ainsi que l'alignement : gauche, au centre, droit.
  • +
  • Style d'habillage - Objet flottant sert à sélectionner le style flottant lorsque le texte est enroulé autour du tableau.
  • +
  • Paramètres avancés du tableau sert à ouvrir la fenêtre 'Tableau - Paramètres avancés'.
  • +
  • Lien hypertexte sert à insérer un lien hypertexte.
  • +
  • Paramètres avancés du paragraphe- sert à ouvrir la fenêtre 'Paragraphe - Paramètres avancés'.
  • +
+
+

Barre latérale droite - Paramètres du tableau

+

Vous pouvez également modifier les propriétés du tableau en utilisant la barre latérale droite :

+
    +
  • +

    Lignes et Colonnes servent à sélectionner les parties du tableau à souligner.

    +

    Pour les lignes :

    +
      +
    • En-tête - pour souligner la première ligne
    • +
    • Total - pour souligner la dernière ligne
    • +
    • À bandes - pour souligner chaque deuxième ligne
    • +
    +

    Pour les colonnes :

    +
      +
    • Premier - pour souligner la première colonne
    • +
    • Dernier - pour souligner la dernière colonne
    • +
    • À bandes - pour souligner chaque deuxième colonne
    • +
    +
  • +
  • Sélectionner à partir d'un modèle sert à choisir un modèle de tableau à partir de ceux qui sont disponibles.

  • +
  • Style des bordures sert à sélectionner la taille de la bordure, la couleur, le style ainsi que la couleur d'arrière-plan.

  • +
  • Habillage du texte sert à choisir entre deux styles d'habillage du texte - aligné sur le texte et flottant.

  • +
  • Lignes et colonnes sert à effectuer certaines opérations avec le tableau : sélectionner, supprimer, insérer des lignes et des colonnes, fusionner des cellules, fractionner une cellule.

  • +
  • Répéter en haut de chaque page en tant que ligne d'en-tête sert à insérer la même rangée d'en-tête en haut de chaque page dans les tableaux longs.

  • +
  • Afficher les paramètres avancés sert à ouvrir la fenêtre 'Tableau - Paramètres avancés'.

  • +
+
+

Pour modifier les paramètres du tableau avancés, cliquez sur le tableau avec le clic droit de la souris et sélectionnez l'option Paramètres avancés du tableau du menu contextuel ou utilisez le lien Afficher les paramètres avancés sur la barre latérale droite. La fenêtre Propriétés du tableau s'ouvre :

+ Tableau - Paramètres avancés +

L'onglet Tableau permet de modifier les paramètres de tout le tableau.

+
    +
  • + La section Taille du tableau contient les paramètres suivants : +
      +
    • + Largeur - par défaut, la largeur du tableau est ajustée automatiquement à la largeur de la page, c-à-d le tableau occupe tout l'espace entre la marge gauche et la marge droite de la page. Vous pouvez cocher cette case et spécifier la largeur du tableau manuellement. +
    • +
    • + Mesure en - permet de définir la largeur du tableau en unités absolues c-à-d Centimètres/Points/Pouces (selon l'option choisie dans l'onglet Fichier -> Paramètres avancés... tab) ou en Pour cent de la largeur totale de la page. +

      Remarque: vous pouvez aussi ajuster la taille du tableau manuellement en changeant la hauteur des lignes et la largeur des colonnes. Déplacez le curseur de la souris sur la bordure de la ligne/ de la colonne jusqu'à ce qu'elle se transforme en flèche bidirectionnelle et faites glisser la bordure. Vous pouvez aussi utiliser les marqueurs Tableau - Marqueurs de la largeur des colonnes sur la règle horizontale pour changer la largeur de la colone et les marqueurs Tableau - Marqueur de la Hauteur de ligne sur la règle verticale pour modifier la hauteur de la ligne.

      +
    • +
    • Redimensionner automatiquement pour ajuster au contenu - permet de changer automatiquement la largeur de chaque colonne selon le texte dans ses cellules.
    • +
    +
  • +
  • La section Marges des cellules par défaut permet de changer l'espace entre le texte dans les cellules et la bordure de la cellule utilisé par défaut.
  • +
  • + La section Options permet de modifier les paramètres suivants : +
      +
    • Espacement entre les cellules - l'espacement des cellules qui sera rempli par la couleur de l'Arrière-plan de tableau.
    • +
    +
  • +
+

Tableau - Paramètres avancés

+

L'onglet Cellule permet de modifier les paramètres des cellules individuelles. D'abord vous devez sélectionner la cellule à appliquer les modifications ou sélectionner le tableau à modifier les propriétés de toutes ses cellules.

+
    +
  • + La section Taille de la cellule contient les paramètres suivants : +
      +
    • Largeur préférée - permet de définir la largeur de la cellule par défaut. C'est la taille à laquelle la cellule essaie de correspondre, mais dans certains cas ce n'est pas possible se s'adapter à cette valeur exacte. Par exemple, si le texte dans une cellule dépasse la largeur spécifiée, il sera rompu par la ligne suivante de sorte que la largeur de cellule préférée reste intacte, mais si vous insérez une nouvelle colonne, la largeur préférée sera réduite.
    • +
    • + Mesure en - permet de définir la largeur de la cellule en unités absolues c-à-d Centimètres/Points/Pouces (selon l'option spécifiée dans l'onglet Fichier -> Paramètres avancés...) ou en Pour cent de la largeur totale du tableau. +

      Remarque : vous pouvez aussi définir la largeur de la cellule manuellement. Pour rendre une cellule plus large ou plus étroite dans une colonne, sélectionnez la cellule nécessaire et déplacez le curseur de la souris sur sa bordure droite jusqu'à ce qu'elle se transforme en flèche bidirectionnelle, puis faites glisser la bordure. Pour modifier la largeur de toutes les cellules d'une colonne, utilisez les marqueurs Tableau - Marqueur de largeur de colonne sur la règle horizontale pour modifier la largeur de la colonne.

      +
    • +
    +
  • +
  • La section Marges de la cellule permet d'ajuster l'espace entre le texte dans les cellules et la bordure de la cellule. Par défaut, les valeurs standard sont utilisées (les valeurs par défaut peuvent être modifiées également en utilisant l'onglet Tableau), mais vous pouvez désactiver l'option Utiliser marges par défaut et entrer les valeurs nécessaires manuellement.
  • +
  • + La section Option de la cellule permet de modifier le paramètre suivant : +
      +
    • L'option Envelopper le texte est activée par défaut. Il permet d'envelopper le texte dans une cellule qui dépasse sa largeur sur la ligne suivante en agrandissant la hauteur de la rangée et en gardant la largeur de la colonne inchangée.
    • +
    +
  • +
+

Tableau - Paramètres avancés

+

L'onglet Bordures et arrière-plan contient les paramètres suivants :

+
    +
  • + Les paramètres de la Bordure (taille, couleur, présence ou absence) - définissez la taille de la bordure, sélectionnez sa couleur et choisissez la façon d'affichage dans les cellules. +

    + Remarque : si vous choisissez de ne pas afficher les bordures du tableau en cliquant sur le bouton Pas de bordures ou en désélectionnant toutes les bordures manuellement sur le diagramme, les bordures seront indiquées par une ligne pointillée. + Pour les faire disparaître, cliquez sur l'icône Caractères non imprimables Caractères non imprimables sur la barre d'outils supérieur et sélectionnez l'option Bordures du tableau cachées. +

    +
  • +
  • Fond de la cellule - la couleur d'arrière plan dans les cellules (disponible uniquement si une ou plusieurs cellules sont sélectionnées ou l'option Espacement entre les cellules est sélectionnée dans l'onglet Tableau ).
  • +
  • Fond du tableau - la couleur d'arrière plan du tableau ou le fond de l'espacement entre les cellules dans le cas où l'option Espacement entre les cellules est chosie dans l'onglet Tableau.
  • +
+ Tableau - Paramètres avancés +

L'onglet Position du tableau est disponible si l'option Flottant de l'onglet Habillage du texte est sélectionnée et contient les paramètres suivants :

+
    +
  • Horizontal sert à régler l'alignment du tableau (à gauche, au centre, à droite) par rapport à la marge, la page ou le texte aussi bien que la position à droite de la marge, la page ou le texte.
  • +
  • Vertical sert à régler l'alignment du tableau (à gauche, au centre, à droite) par rapport à la marge, la page ou le texte aussi bien que la position en dessous de la marge, la page ou le texte.
  • +
  • + La section Options permet de modifier les paramètres suivants : +
      +
    • Déplacer avec le texte contrôle si la tableau se déplace comme le texte dans lequel il est inséré.
    • +
    • Autoriser le chevauchement sert à déterminer si deux tableaux sont fusionnés en un seul grand tableau ou se chevauchent si vous les faites glisser les uns près des autres sur la page.
    • +
    +
  • +
+

Table - Advanced Settings

+

L'onglet Habillage du texte contient les paramètres suivants :

+
    +
  • Style d'habillage du texte - Aligné ou Flottant. Utilisez l'option nécessaire pour changer la façon de positionner le tableau par rapport au texte : soit il sera une partie du texte ( si vous avez choisi le style aligné), soit il sera entouré par le texte de tous les côtés (si vous avez choisi le style flottant).
  • +
  • + Après avoir sélectionné le style d'habillage, les paramètres d'habillage supplémentaires peuvent être définis pour le style d'habillage aligné et flottant : +
      +
    • Pour le style d'habillage aligné, vous pouvez spécifier l'Alignment du tableau et le Retrait à gauche.
    • +
    • Pour le style d'habillage flottant, vous pouvez spécifier la distance du texte et la position du tableau dans l'onglet Position du tableau.
    • +
    +
  • +
+

Tableau - Paramètres avancés

+

L'onglet Texte de remplacement permet de spécifier un Titre et une Description qui sera lue aux personnes avec des déficiences cognitives ou visuelles pour les aider à mieux comprendre l'information du tableau.

+ +
+ \ No newline at end of file diff --git a/apps/documenteditor/main/resources/help/fr/images/3dchart.png b/apps/documenteditor/main/resources/help/fr/images/3dchart.png new file mode 100644 index 000000000..c8b1281d7 Binary files /dev/null and b/apps/documenteditor/main/resources/help/fr/images/3dchart.png differ diff --git a/apps/documenteditor/main/resources/help/fr/images/about.png b/apps/documenteditor/main/resources/help/fr/images/about.png new file mode 100644 index 000000000..2d3c2310b Binary files /dev/null and b/apps/documenteditor/main/resources/help/fr/images/about.png differ diff --git a/apps/documenteditor/main/resources/help/fr/images/access_rights.png b/apps/documenteditor/main/resources/help/fr/images/access_rights.png new file mode 100644 index 000000000..6d3cb0bf8 Binary files /dev/null and b/apps/documenteditor/main/resources/help/fr/images/access_rights.png differ diff --git a/apps/documenteditor/main/resources/help/fr/images/addfootnote.png b/apps/documenteditor/main/resources/help/fr/images/addfootnote.png new file mode 100644 index 000000000..319115353 Binary files /dev/null and b/apps/documenteditor/main/resources/help/fr/images/addfootnote.png differ diff --git a/apps/documenteditor/main/resources/help/fr/images/addhyperlink.png b/apps/documenteditor/main/resources/help/fr/images/addhyperlink.png index 2c585971c..5627099c9 100644 Binary files a/apps/documenteditor/main/resources/help/fr/images/addhyperlink.png and b/apps/documenteditor/main/resources/help/fr/images/addhyperlink.png differ diff --git a/apps/documenteditor/main/resources/help/fr/images/bold.png b/apps/documenteditor/main/resources/help/fr/images/bold.png index b2270b9f4..4ecd8de87 100644 Binary files a/apps/documenteditor/main/resources/help/fr/images/bold.png and b/apps/documenteditor/main/resources/help/fr/images/bold.png differ diff --git a/apps/documenteditor/main/resources/help/fr/images/chart_properties_3.png b/apps/documenteditor/main/resources/help/fr/images/chart_properties_3.png new file mode 100644 index 000000000..95ddb6fea Binary files /dev/null and b/apps/documenteditor/main/resources/help/fr/images/chart_properties_3.png differ diff --git a/apps/documenteditor/main/resources/help/fr/images/chartsettings3.png b/apps/documenteditor/main/resources/help/fr/images/chartsettings3.png new file mode 100644 index 000000000..16d40b060 Binary files /dev/null and b/apps/documenteditor/main/resources/help/fr/images/chartsettings3.png differ diff --git a/apps/documenteditor/main/resources/help/fr/images/chartsettings4.png b/apps/documenteditor/main/resources/help/fr/images/chartsettings4.png new file mode 100644 index 000000000..f37c62cc6 Binary files /dev/null and b/apps/documenteditor/main/resources/help/fr/images/chartsettings4.png differ diff --git a/apps/documenteditor/main/resources/help/fr/images/chartsettings5.png b/apps/documenteditor/main/resources/help/fr/images/chartsettings5.png new file mode 100644 index 000000000..1762bfc52 Binary files /dev/null and b/apps/documenteditor/main/resources/help/fr/images/chartsettings5.png differ diff --git a/apps/documenteditor/main/resources/help/fr/images/clearfilter.png b/apps/documenteditor/main/resources/help/fr/images/clearfilter.png new file mode 100644 index 000000000..ec3d84134 Binary files /dev/null and b/apps/documenteditor/main/resources/help/fr/images/clearfilter.png differ diff --git a/apps/documenteditor/main/resources/help/fr/images/clearstyle.png b/apps/documenteditor/main/resources/help/fr/images/clearstyle.png index be717b54c..9557833eb 100644 Binary files a/apps/documenteditor/main/resources/help/fr/images/clearstyle.png and b/apps/documenteditor/main/resources/help/fr/images/clearstyle.png differ diff --git a/apps/documenteditor/main/resources/help/fr/images/columnwidthmarker.png b/apps/documenteditor/main/resources/help/fr/images/columnwidthmarker.png new file mode 100644 index 000000000..830b37510 Binary files /dev/null and b/apps/documenteditor/main/resources/help/fr/images/columnwidthmarker.png differ diff --git a/apps/documenteditor/main/resources/help/fr/images/comments.png b/apps/documenteditor/main/resources/help/fr/images/comments.png new file mode 100644 index 000000000..fa8f7f62e Binary files /dev/null and b/apps/documenteditor/main/resources/help/fr/images/comments.png differ diff --git a/apps/documenteditor/main/resources/help/fr/images/constantproportionsactivated.png b/apps/documenteditor/main/resources/help/fr/images/constantproportionsactivated.png new file mode 100644 index 000000000..0efdbcb8d Binary files /dev/null and b/apps/documenteditor/main/resources/help/fr/images/constantproportionsactivated.png differ diff --git a/apps/documenteditor/main/resources/help/fr/images/copystyle.png b/apps/documenteditor/main/resources/help/fr/images/copystyle.png index fbba1fd2c..f7f13c167 100644 Binary files a/apps/documenteditor/main/resources/help/fr/images/copystyle.png and b/apps/documenteditor/main/resources/help/fr/images/copystyle.png differ diff --git a/apps/documenteditor/main/resources/help/fr/images/copystyle_selected.png b/apps/documenteditor/main/resources/help/fr/images/copystyle_selected.png new file mode 100644 index 000000000..c54295065 Binary files /dev/null and b/apps/documenteditor/main/resources/help/fr/images/copystyle_selected.png differ diff --git a/apps/documenteditor/main/resources/help/fr/images/customtable.png b/apps/documenteditor/main/resources/help/fr/images/customtable.png index 6874a367e..5c0259cdd 100644 Binary files a/apps/documenteditor/main/resources/help/fr/images/customtable.png and b/apps/documenteditor/main/resources/help/fr/images/customtable.png differ diff --git a/apps/documenteditor/main/resources/help/fr/images/deleteequation.png b/apps/documenteditor/main/resources/help/fr/images/deleteequation.png new file mode 100644 index 000000000..c769cf890 Binary files /dev/null and b/apps/documenteditor/main/resources/help/fr/images/deleteequation.png differ diff --git a/apps/documenteditor/main/resources/help/fr/images/dropcap_margin.png b/apps/documenteditor/main/resources/help/fr/images/dropcap_margin.png index 1b23f0474..02ce09c9c 100644 Binary files a/apps/documenteditor/main/resources/help/fr/images/dropcap_margin.png and b/apps/documenteditor/main/resources/help/fr/images/dropcap_margin.png differ diff --git a/apps/documenteditor/main/resources/help/fr/images/dropcap_properties_1.png b/apps/documenteditor/main/resources/help/fr/images/dropcap_properties_1.png index 77e422bed..49e45d9c0 100644 Binary files a/apps/documenteditor/main/resources/help/fr/images/dropcap_properties_1.png and b/apps/documenteditor/main/resources/help/fr/images/dropcap_properties_1.png differ diff --git a/apps/documenteditor/main/resources/help/fr/images/dropcap_properties_2.png b/apps/documenteditor/main/resources/help/fr/images/dropcap_properties_2.png index d0856bdeb..e39ea2922 100644 Binary files a/apps/documenteditor/main/resources/help/fr/images/dropcap_properties_2.png and b/apps/documenteditor/main/resources/help/fr/images/dropcap_properties_2.png differ diff --git a/apps/documenteditor/main/resources/help/fr/images/dropcap_properties_3.png b/apps/documenteditor/main/resources/help/fr/images/dropcap_properties_3.png index 6b7cd5864..8e21e16af 100644 Binary files a/apps/documenteditor/main/resources/help/fr/images/dropcap_properties_3.png and b/apps/documenteditor/main/resources/help/fr/images/dropcap_properties_3.png differ diff --git a/apps/documenteditor/main/resources/help/fr/images/dropcap_text.png b/apps/documenteditor/main/resources/help/fr/images/dropcap_text.png index 5c58f98b9..5e5c070e7 100644 Binary files a/apps/documenteditor/main/resources/help/fr/images/dropcap_text.png and b/apps/documenteditor/main/resources/help/fr/images/dropcap_text.png differ diff --git a/apps/documenteditor/main/resources/help/fr/images/editedequation.png b/apps/documenteditor/main/resources/help/fr/images/editedequation.png new file mode 100644 index 000000000..bb2e87ed1 Binary files /dev/null and b/apps/documenteditor/main/resources/help/fr/images/editedequation.png differ diff --git a/apps/documenteditor/main/resources/help/fr/images/editedequation2.png b/apps/documenteditor/main/resources/help/fr/images/editedequation2.png new file mode 100644 index 000000000..42750bad0 Binary files /dev/null and b/apps/documenteditor/main/resources/help/fr/images/editedequation2.png differ diff --git a/apps/documenteditor/main/resources/help/fr/images/equationplaceholder.png b/apps/documenteditor/main/resources/help/fr/images/equationplaceholder.png new file mode 100644 index 000000000..8180905eb Binary files /dev/null and b/apps/documenteditor/main/resources/help/fr/images/equationplaceholder.png differ diff --git a/apps/documenteditor/main/resources/help/fr/images/feedback.png b/apps/documenteditor/main/resources/help/fr/images/feedback.png new file mode 100644 index 000000000..461cb98c0 Binary files /dev/null and b/apps/documenteditor/main/resources/help/fr/images/feedback.png differ diff --git a/apps/documenteditor/main/resources/help/fr/images/footnotes.png b/apps/documenteditor/main/resources/help/fr/images/footnotes.png new file mode 100644 index 000000000..2232db084 Binary files /dev/null and b/apps/documenteditor/main/resources/help/fr/images/footnotes.png differ diff --git a/apps/documenteditor/main/resources/help/fr/images/footnotes_settings.png b/apps/documenteditor/main/resources/help/fr/images/footnotes_settings.png new file mode 100644 index 000000000..6289bdb67 Binary files /dev/null and b/apps/documenteditor/main/resources/help/fr/images/footnotes_settings.png differ diff --git a/apps/documenteditor/main/resources/help/fr/images/footnotesadded.png b/apps/documenteditor/main/resources/help/fr/images/footnotesadded.png new file mode 100644 index 000000000..28b9526fd Binary files /dev/null and b/apps/documenteditor/main/resources/help/fr/images/footnotesadded.png differ diff --git a/apps/documenteditor/main/resources/help/fr/images/footnotetext.png b/apps/documenteditor/main/resources/help/fr/images/footnotetext.png new file mode 100644 index 000000000..c0ea870ae Binary files /dev/null and b/apps/documenteditor/main/resources/help/fr/images/footnotetext.png differ diff --git a/apps/documenteditor/main/resources/help/fr/images/formatastext.png b/apps/documenteditor/main/resources/help/fr/images/formatastext.png new file mode 100644 index 000000000..d5459a326 Binary files /dev/null and b/apps/documenteditor/main/resources/help/fr/images/formatastext.png differ diff --git a/apps/documenteditor/main/resources/help/fr/images/frame_properties_1.png b/apps/documenteditor/main/resources/help/fr/images/frame_properties_1.png index 9227b2c8a..802614054 100644 Binary files a/apps/documenteditor/main/resources/help/fr/images/frame_properties_1.png and b/apps/documenteditor/main/resources/help/fr/images/frame_properties_1.png differ diff --git a/apps/documenteditor/main/resources/help/fr/images/hyperlinkwindow.png b/apps/documenteditor/main/resources/help/fr/images/hyperlinkwindow.png index 93a6d73eb..89e80e382 100644 Binary files a/apps/documenteditor/main/resources/help/fr/images/hyperlinkwindow.png and b/apps/documenteditor/main/resources/help/fr/images/hyperlinkwindow.png differ diff --git a/apps/documenteditor/main/resources/help/fr/images/image_properties_3.png b/apps/documenteditor/main/resources/help/fr/images/image_properties_3.png new file mode 100644 index 000000000..8629aecd2 Binary files /dev/null and b/apps/documenteditor/main/resources/help/fr/images/image_properties_3.png differ diff --git a/apps/documenteditor/main/resources/help/fr/images/imagespalette.png b/apps/documenteditor/main/resources/help/fr/images/imagespalette.png new file mode 100644 index 000000000..cb79b166f Binary files /dev/null and b/apps/documenteditor/main/resources/help/fr/images/imagespalette.png differ diff --git a/apps/documenteditor/main/resources/help/fr/images/insert_dropcap_icon.png b/apps/documenteditor/main/resources/help/fr/images/insert_dropcap_icon.png index 3fec5fa25..0f3a26467 100644 Binary files a/apps/documenteditor/main/resources/help/fr/images/insert_dropcap_icon.png and b/apps/documenteditor/main/resources/help/fr/images/insert_dropcap_icon.png differ diff --git a/apps/documenteditor/main/resources/help/fr/images/insertedequation.png b/apps/documenteditor/main/resources/help/fr/images/insertedequation.png new file mode 100644 index 000000000..b4ee95016 Binary files /dev/null and b/apps/documenteditor/main/resources/help/fr/images/insertedequation.png differ diff --git a/apps/documenteditor/main/resources/help/fr/images/insertedfields.png b/apps/documenteditor/main/resources/help/fr/images/insertedfields.png new file mode 100644 index 000000000..5091d8a50 Binary files /dev/null and b/apps/documenteditor/main/resources/help/fr/images/insertedfields.png differ diff --git a/apps/documenteditor/main/resources/help/fr/images/insertequationicon.png b/apps/documenteditor/main/resources/help/fr/images/insertequationicon.png new file mode 100644 index 000000000..86b6d1c24 Binary files /dev/null and b/apps/documenteditor/main/resources/help/fr/images/insertequationicon.png differ diff --git a/apps/documenteditor/main/resources/help/fr/images/inserttexticon.png b/apps/documenteditor/main/resources/help/fr/images/inserttexticon.png new file mode 100644 index 000000000..db7a834ba Binary files /dev/null and b/apps/documenteditor/main/resources/help/fr/images/inserttexticon.png differ diff --git a/apps/documenteditor/main/resources/help/fr/images/italic.png b/apps/documenteditor/main/resources/help/fr/images/italic.png index 72de32bc4..140e59544 100644 Binary files a/apps/documenteditor/main/resources/help/fr/images/italic.png and b/apps/documenteditor/main/resources/help/fr/images/italic.png differ diff --git a/apps/documenteditor/main/resources/help/fr/images/leftindent.png b/apps/documenteditor/main/resources/help/fr/images/leftindent.png new file mode 100644 index 000000000..fafac7f07 Binary files /dev/null and b/apps/documenteditor/main/resources/help/fr/images/leftindent.png differ diff --git a/apps/documenteditor/main/resources/help/fr/images/mailmergeicon.png b/apps/documenteditor/main/resources/help/fr/images/mailmergeicon.png new file mode 100644 index 000000000..800bdfe47 Binary files /dev/null and b/apps/documenteditor/main/resources/help/fr/images/mailmergeicon.png differ diff --git a/apps/documenteditor/main/resources/help/fr/images/mailmergerecipients.png b/apps/documenteditor/main/resources/help/fr/images/mailmergerecipients.png new file mode 100644 index 000000000..985bec445 Binary files /dev/null and b/apps/documenteditor/main/resources/help/fr/images/mailmergerecipients.png differ diff --git a/apps/documenteditor/main/resources/help/fr/images/mergefields.png b/apps/documenteditor/main/resources/help/fr/images/mergefields.png new file mode 100644 index 000000000..980a17a0e Binary files /dev/null and b/apps/documenteditor/main/resources/help/fr/images/mergefields.png differ diff --git a/apps/documenteditor/main/resources/help/fr/images/mergeto.png b/apps/documenteditor/main/resources/help/fr/images/mergeto.png new file mode 100644 index 000000000..a17e493e3 Binary files /dev/null and b/apps/documenteditor/main/resources/help/fr/images/mergeto.png differ diff --git a/apps/documenteditor/main/resources/help/fr/images/nestedfraction.png b/apps/documenteditor/main/resources/help/fr/images/nestedfraction.png new file mode 100644 index 000000000..3e39fbac6 Binary files /dev/null and b/apps/documenteditor/main/resources/help/fr/images/nestedfraction.png differ diff --git a/apps/documenteditor/main/resources/help/fr/images/newequation.png b/apps/documenteditor/main/resources/help/fr/images/newequation.png new file mode 100644 index 000000000..0151e7f8b Binary files /dev/null and b/apps/documenteditor/main/resources/help/fr/images/newequation.png differ diff --git a/apps/documenteditor/main/resources/help/fr/images/newslot.png b/apps/documenteditor/main/resources/help/fr/images/newslot.png new file mode 100644 index 000000000..e3ab8fc13 Binary files /dev/null and b/apps/documenteditor/main/resources/help/fr/images/newslot.png differ diff --git a/apps/documenteditor/main/resources/help/fr/images/nextfootnote.png b/apps/documenteditor/main/resources/help/fr/images/nextfootnote.png new file mode 100644 index 000000000..eb50b4b91 Binary files /dev/null and b/apps/documenteditor/main/resources/help/fr/images/nextfootnote.png differ diff --git a/apps/documenteditor/main/resources/help/fr/images/paste_style.png b/apps/documenteditor/main/resources/help/fr/images/paste_style.png new file mode 100644 index 000000000..c582ae9d7 Binary files /dev/null and b/apps/documenteditor/main/resources/help/fr/images/paste_style.png differ diff --git a/apps/documenteditor/main/resources/help/fr/images/previewinsertedfields.png b/apps/documenteditor/main/resources/help/fr/images/previewinsertedfields.png new file mode 100644 index 000000000..4d8a8d14c Binary files /dev/null and b/apps/documenteditor/main/resources/help/fr/images/previewinsertedfields.png differ diff --git a/apps/documenteditor/main/resources/help/fr/images/previousfootnote.png b/apps/documenteditor/main/resources/help/fr/images/previousfootnote.png new file mode 100644 index 000000000..dab90e652 Binary files /dev/null and b/apps/documenteditor/main/resources/help/fr/images/previousfootnote.png differ diff --git a/apps/documenteditor/main/resources/help/fr/images/resolvedicon.png b/apps/documenteditor/main/resources/help/fr/images/resolvedicon.png new file mode 100644 index 000000000..cd8161a10 Binary files /dev/null and b/apps/documenteditor/main/resources/help/fr/images/resolvedicon.png differ diff --git a/apps/documenteditor/main/resources/help/fr/images/resolveicon.png b/apps/documenteditor/main/resources/help/fr/images/resolveicon.png new file mode 100644 index 000000000..08767ffc8 Binary files /dev/null and b/apps/documenteditor/main/resources/help/fr/images/resolveicon.png differ diff --git a/apps/documenteditor/main/resources/help/fr/images/review.png b/apps/documenteditor/main/resources/help/fr/images/review.png new file mode 100644 index 000000000..85b139a26 Binary files /dev/null and b/apps/documenteditor/main/resources/help/fr/images/review.png differ diff --git a/apps/documenteditor/main/resources/help/fr/images/review_accept.png b/apps/documenteditor/main/resources/help/fr/images/review_accept.png new file mode 100644 index 000000000..bc5637425 Binary files /dev/null and b/apps/documenteditor/main/resources/help/fr/images/review_accept.png differ diff --git a/apps/documenteditor/main/resources/help/fr/images/review_next.png b/apps/documenteditor/main/resources/help/fr/images/review_next.png new file mode 100644 index 000000000..fc7bd6f73 Binary files /dev/null and b/apps/documenteditor/main/resources/help/fr/images/review_next.png differ diff --git a/apps/documenteditor/main/resources/help/fr/images/review_panel.png b/apps/documenteditor/main/resources/help/fr/images/review_panel.png new file mode 100644 index 000000000..403417f26 Binary files /dev/null and b/apps/documenteditor/main/resources/help/fr/images/review_panel.png differ diff --git a/apps/documenteditor/main/resources/help/fr/images/review_previous.png b/apps/documenteditor/main/resources/help/fr/images/review_previous.png new file mode 100644 index 000000000..53e8fa83e Binary files /dev/null and b/apps/documenteditor/main/resources/help/fr/images/review_previous.png differ diff --git a/apps/documenteditor/main/resources/help/fr/images/review_reject.png b/apps/documenteditor/main/resources/help/fr/images/review_reject.png new file mode 100644 index 000000000..7f9c3c99f Binary files /dev/null and b/apps/documenteditor/main/resources/help/fr/images/review_reject.png differ diff --git a/apps/documenteditor/main/resources/help/fr/images/right_mailmerge.png b/apps/documenteditor/main/resources/help/fr/images/right_mailmerge.png new file mode 100644 index 000000000..a7e7c6218 Binary files /dev/null and b/apps/documenteditor/main/resources/help/fr/images/right_mailmerge.png differ diff --git a/apps/documenteditor/main/resources/help/fr/images/right_table.png b/apps/documenteditor/main/resources/help/fr/images/right_table.png index a5a894452..9d2933f51 100644 Binary files a/apps/documenteditor/main/resources/help/fr/images/right_table.png and b/apps/documenteditor/main/resources/help/fr/images/right_table.png differ diff --git a/apps/documenteditor/main/resources/help/fr/images/right_textart.png b/apps/documenteditor/main/resources/help/fr/images/right_textart.png new file mode 100644 index 000000000..981c45c6d Binary files /dev/null and b/apps/documenteditor/main/resources/help/fr/images/right_textart.png differ diff --git a/apps/documenteditor/main/resources/help/fr/images/rowheightmarker.png b/apps/documenteditor/main/resources/help/fr/images/rowheightmarker.png new file mode 100644 index 000000000..6002ebf4b Binary files /dev/null and b/apps/documenteditor/main/resources/help/fr/images/rowheightmarker.png differ diff --git a/apps/documenteditor/main/resources/help/fr/images/savewhilecoediting.png b/apps/documenteditor/main/resources/help/fr/images/savewhilecoediting.png new file mode 100644 index 000000000..5ba096d20 Binary files /dev/null and b/apps/documenteditor/main/resources/help/fr/images/savewhilecoediting.png differ diff --git a/apps/documenteditor/main/resources/help/fr/images/search_options.png b/apps/documenteditor/main/resources/help/fr/images/search_options.png new file mode 100644 index 000000000..eded18d7f Binary files /dev/null and b/apps/documenteditor/main/resources/help/fr/images/search_options.png differ diff --git a/apps/documenteditor/main/resources/help/fr/images/sendtoemail.png b/apps/documenteditor/main/resources/help/fr/images/sendtoemail.png new file mode 100644 index 000000000..4a52f8ca6 Binary files /dev/null and b/apps/documenteditor/main/resources/help/fr/images/sendtoemail.png differ diff --git a/apps/documenteditor/main/resources/help/fr/images/shape_properties_5.png b/apps/documenteditor/main/resources/help/fr/images/shape_properties_5.png new file mode 100644 index 000000000..20251a5a9 Binary files /dev/null and b/apps/documenteditor/main/resources/help/fr/images/shape_properties_5.png differ diff --git a/apps/documenteditor/main/resources/help/fr/images/sortandfilter.png b/apps/documenteditor/main/resources/help/fr/images/sortandfilter.png new file mode 100644 index 000000000..6d021b78a Binary files /dev/null and b/apps/documenteditor/main/resources/help/fr/images/sortandfilter.png differ diff --git a/apps/documenteditor/main/resources/help/fr/images/sortatoz.png b/apps/documenteditor/main/resources/help/fr/images/sortatoz.png new file mode 100644 index 000000000..1824d1cc1 Binary files /dev/null and b/apps/documenteditor/main/resources/help/fr/images/sortatoz.png differ diff --git a/apps/documenteditor/main/resources/help/fr/images/sortztoa.png b/apps/documenteditor/main/resources/help/fr/images/sortztoa.png new file mode 100644 index 000000000..ab8ebcec9 Binary files /dev/null and b/apps/documenteditor/main/resources/help/fr/images/sortztoa.png differ diff --git a/apps/documenteditor/main/resources/help/fr/images/spellcheckactivated.png b/apps/documenteditor/main/resources/help/fr/images/spellcheckactivated.png new file mode 100644 index 000000000..33564f1d2 Binary files /dev/null and b/apps/documenteditor/main/resources/help/fr/images/spellcheckactivated.png differ diff --git a/apps/documenteditor/main/resources/help/fr/images/spellcheckdeactivated.png b/apps/documenteditor/main/resources/help/fr/images/spellcheckdeactivated.png new file mode 100644 index 000000000..637a0eb63 Binary files /dev/null and b/apps/documenteditor/main/resources/help/fr/images/spellcheckdeactivated.png differ diff --git a/apps/documenteditor/main/resources/help/fr/images/strike.png b/apps/documenteditor/main/resources/help/fr/images/strike.png index 3de0a6242..a2b2c0739 100644 Binary files a/apps/documenteditor/main/resources/help/fr/images/strike.png and b/apps/documenteditor/main/resources/help/fr/images/strike.png differ diff --git a/apps/documenteditor/main/resources/help/fr/images/sub.png b/apps/documenteditor/main/resources/help/fr/images/sub.png index 6721da59e..c7bcbbd05 100644 Binary files a/apps/documenteditor/main/resources/help/fr/images/sub.png and b/apps/documenteditor/main/resources/help/fr/images/sub.png differ diff --git a/apps/documenteditor/main/resources/help/fr/images/sup.png b/apps/documenteditor/main/resources/help/fr/images/sup.png index 501b6e25b..b342fd76e 100644 Binary files a/apps/documenteditor/main/resources/help/fr/images/sup.png and b/apps/documenteditor/main/resources/help/fr/images/sup.png differ diff --git a/apps/documenteditor/main/resources/help/fr/images/table_properties.png b/apps/documenteditor/main/resources/help/fr/images/table_properties.png new file mode 100644 index 000000000..cc76ccb91 Binary files /dev/null and b/apps/documenteditor/main/resources/help/fr/images/table_properties.png differ diff --git a/apps/documenteditor/main/resources/help/fr/images/table_properties_1.png b/apps/documenteditor/main/resources/help/fr/images/table_properties_1.png index 11700d71c..78a2140cf 100644 Binary files a/apps/documenteditor/main/resources/help/fr/images/table_properties_1.png and b/apps/documenteditor/main/resources/help/fr/images/table_properties_1.png differ diff --git a/apps/documenteditor/main/resources/help/fr/images/table_properties_2.png b/apps/documenteditor/main/resources/help/fr/images/table_properties_2.png index d29ccabe9..beac13e67 100644 Binary files a/apps/documenteditor/main/resources/help/fr/images/table_properties_2.png and b/apps/documenteditor/main/resources/help/fr/images/table_properties_2.png differ diff --git a/apps/documenteditor/main/resources/help/fr/images/table_properties_3.png b/apps/documenteditor/main/resources/help/fr/images/table_properties_3.png index 5e8dd635b..ad16fdaae 100644 Binary files a/apps/documenteditor/main/resources/help/fr/images/table_properties_3.png and b/apps/documenteditor/main/resources/help/fr/images/table_properties_3.png differ diff --git a/apps/documenteditor/main/resources/help/fr/images/table_properties_4.png b/apps/documenteditor/main/resources/help/fr/images/table_properties_4.png index b6fbd440a..bcc5208e1 100644 Binary files a/apps/documenteditor/main/resources/help/fr/images/table_properties_4.png and b/apps/documenteditor/main/resources/help/fr/images/table_properties_4.png differ diff --git a/apps/documenteditor/main/resources/help/fr/images/table_properties_5.png b/apps/documenteditor/main/resources/help/fr/images/table_properties_5.png index c38d18949..1843c0866 100644 Binary files a/apps/documenteditor/main/resources/help/fr/images/table_properties_5.png and b/apps/documenteditor/main/resources/help/fr/images/table_properties_5.png differ diff --git a/apps/documenteditor/main/resources/help/fr/images/table_properties_6.png b/apps/documenteditor/main/resources/help/fr/images/table_properties_6.png new file mode 100644 index 000000000..ec9978905 Binary files /dev/null and b/apps/documenteditor/main/resources/help/fr/images/table_properties_6.png differ diff --git a/apps/documenteditor/main/resources/help/fr/images/text_autoshape.png b/apps/documenteditor/main/resources/help/fr/images/text_autoshape.png new file mode 100644 index 000000000..5d5e8c4a8 Binary files /dev/null and b/apps/documenteditor/main/resources/help/fr/images/text_autoshape.png differ diff --git a/apps/documenteditor/main/resources/help/fr/images/textart_settings_icon.png b/apps/documenteditor/main/resources/help/fr/images/textart_settings_icon.png new file mode 100644 index 000000000..730babd93 Binary files /dev/null and b/apps/documenteditor/main/resources/help/fr/images/textart_settings_icon.png differ diff --git a/apps/documenteditor/main/resources/help/fr/images/textart_transformation.png b/apps/documenteditor/main/resources/help/fr/images/textart_transformation.png new file mode 100644 index 000000000..805c091f0 Binary files /dev/null and b/apps/documenteditor/main/resources/help/fr/images/textart_transformation.png differ diff --git a/apps/documenteditor/main/resources/help/fr/images/textbox_boxselected.png b/apps/documenteditor/main/resources/help/fr/images/textbox_boxselected.png new file mode 100644 index 000000000..d01a42343 Binary files /dev/null and b/apps/documenteditor/main/resources/help/fr/images/textbox_boxselected.png differ diff --git a/apps/documenteditor/main/resources/help/fr/images/textbox_textselected.png b/apps/documenteditor/main/resources/help/fr/images/textbox_textselected.png new file mode 100644 index 000000000..0987be940 Binary files /dev/null and b/apps/documenteditor/main/resources/help/fr/images/textbox_textselected.png differ diff --git a/apps/documenteditor/main/resources/help/fr/images/underline.png b/apps/documenteditor/main/resources/help/fr/images/underline.png index 3a6f79f54..e9a7e0f65 100644 Binary files a/apps/documenteditor/main/resources/help/fr/images/underline.png and b/apps/documenteditor/main/resources/help/fr/images/underline.png differ diff --git a/apps/documenteditor/main/resources/help/ru/HelpfulHints/AdvancedSettings.htm b/apps/documenteditor/main/resources/help/ru/HelpfulHints/AdvancedSettings.htm index cd618b073..0d16e6b4f 100644 --- a/apps/documenteditor/main/resources/help/ru/HelpfulHints/AdvancedSettings.htm +++ b/apps/documenteditor/main/resources/help/ru/HelpfulHints/AdvancedSettings.htm @@ -12,7 +12,7 @@

Вы можете изменить дополнительные параметры онлайн-редактора документов. Для перехода к ним щелкните по значку Файл Значок Файл на левой боковой панели и выберите опцию Дополнительные параметры.... Можно также использовать значок Значок Дополнительные параметры, расположенный в правом верхнем углу верхней панели инструментов.

Доступны следующие дополнительные параметры:

    -
  • Отображение комментариев* - используется для включения/отключения опции комментирования в реальном времени. Если отключить эту функцию, прокомментированные фрагменты будут подсвечиваться, только когда Вы нажмете на значок Комментарии Значок Комментарии.
  • +
  • Отображение комментариев - используется для включения/отключения опции комментирования в реальном времени. Если отключить эту функцию, прокомментированные фрагменты будут подсвечиваться, только когда Вы нажмете на значок Комментарии Значок Комментарии.
  • Проверка орфографии - используется для включения/отключения опции проверки орфографии.
  • Альтернативный ввод - используется для включения/отключения иероглифов.
  • Направляющие выравнивания - используется для включения/отключения направляющих выравнивания, которые появляются при перемещении объектов и позволяют точно расположить их на странице.
  • @@ -41,7 +41,6 @@
  • Единица измерения - используется для определения единиц, которые должны использоваться на линейках и в окнах свойств для измерения параметров элементов, таких как ширина, высота, интервалы, поля и т.д. Можно выбрать опцию Сантиметр, Пункт или Дюйм.

Чтобы сохранить внесенные изменения, нажмите кнопку Применить.

-

*доступно только для платных версий

\ No newline at end of file diff --git a/apps/documenteditor/main/resources/help/ru/HelpfulHints/CollaborativeEditing.htm b/apps/documenteditor/main/resources/help/ru/HelpfulHints/CollaborativeEditing.htm index 4f47b80b7..1a1817def 100644 --- a/apps/documenteditor/main/resources/help/ru/HelpfulHints/CollaborativeEditing.htm +++ b/apps/documenteditor/main/resources/help/ru/HelpfulHints/CollaborativeEditing.htm @@ -29,7 +29,7 @@

Если файл не просматривают или не редактируют другие пользователи, значок в строке состояния будет выглядеть следующим образом: Значок Управление правами доступа к документу, с его помощью можно непосредственно из документа управлять пользователями, имеющими доступ к файлу: приглашать новых пользователей, предоставляя им полный доступ или доступ только для чтения, или запрещать доступ к файлу для некоторых пользователей. Нажмите на этот значок для управления доступом к файлу; это можно сделать и в отсутствие других пользователей, которые просматривают или совместно редактируют документ в настоящий момент, и при наличии других пользователей, когда значок выглядит так: Значок Количество пользователей.

Как только один из пользователей сохранит свои изменения, нажав на значок Значок Сохранить, все остальные увидят в строке состояния примечание, которое сообщает о наличии обновлений. Чтобы сохранить внесенные вами изменения и сделать их доступными для других пользователей, а также получить обновления, сохраненные другими пользователями, нажмите на значок Значок Сохранить и получить обновления в левом верхнем углу верхней панели инструментов. Обновления будут подсвечены, чтобы Вы могли проверить, что конкретно изменилось.

Можно указать, какие изменения требуется подсвечивать во время совместного редактирования: для этого нажмите на значок Значок Файл на левой боковой панели, выберите опцию Дополнительные параметры..., а затем укажите, отображать ли все или последние изменения, внесенные при совместной работе. При выборе опции Все будут подсвечиваться все изменения, внесенные за время текущей сессии. При выборе опции Последние будут подсвечиваться только те изменения, которые были внесены с момента, когда Вы последний раз нажимали на значок Значок Сохранить и получить изменения. При выборе опции Никакие изменения, внесенные во время текущей сессии, подсвечиваться не будут.

-

Чат*

+

Чат

Этот инструмент можно использовать для оперативного согласования процесса совместного редактирования, например, для того, чтобы договориться с другими участниками, кто и что должен делать, какой абзац вы собираетесь сейчас отредактировать и т.д.

Сообщения в чате хранятся только в течение одной сессии. Для обсуждения содержания документа лучше использовать комментарии, которые хранятся до тех пор, пока вы не решите их удалить.

Чтобы войти в чат и оставить сообщение для других пользователей:

@@ -41,7 +41,7 @@

Все сообщения, оставленные пользователями, будут отображаться на панели слева. Если есть новые сообщения, которые Вы еще не прочитали, значок чата будет выглядеть так - Значок Чат.

Чтобы закрыть панель с сообщениями чата, нажмите на значок Значок Чат еще раз.

-

Комментарии*

+

Комментарии

Чтобы оставить комментарий:

  1. выделите фрагмент текста, в котором, по Вашему мнению, содержится какая-то ошибка или проблема,
  2. @@ -62,7 +62,6 @@

    Новые комментарии, добавленные другими пользователями, станут видимыми только после того, как Вы нажмете на значок Значок Сохранить и получить обновления в левом верхнем углу верхней панели инструментов.

    Чтобы закрыть панель с комментариями, нажмите на значок Значок Комментарии еще раз.

    -

    *доступно только для платных версий

    \ No newline at end of file diff --git a/apps/documenteditor/main/resources/help/ru/HelpfulHints/KeyboardShortcuts.htm b/apps/documenteditor/main/resources/help/ru/HelpfulHints/KeyboardShortcuts.htm index b3d758b4e..882c95cf4 100644 --- a/apps/documenteditor/main/resources/help/ru/HelpfulHints/KeyboardShortcuts.htm +++ b/apps/documenteditor/main/resources/help/ru/HelpfulHints/KeyboardShortcuts.htm @@ -25,17 +25,17 @@ Открыть панель Поиск, чтобы начать поиск символа/слова/фразы в редактируемом документе. - Открыть панель 'Комментарии'* + Открыть панель 'Комментарии' Ctrl+Shift+H Открыть панель Комментарии, чтобы добавить свой комментарий или ответить на комментарии других пользователей. - Открыть поле комментария* + Открыть поле комментария Alt+H Открыть поле ввода данных, в котором можно добавить текст комментария. - Открыть панель 'Чат'* + Открыть панель 'Чат' Alt+Q Открыть панель Чат и отправить сообщение. @@ -340,12 +340,11 @@ Сохранять пропорции выбранного объекта при изменении размера. - Перемещение с шагом в три пикселя + Перемещение с шагом в один пиксель Ctrl - Удерживайте клавишу Ctrl и используйте стрелки на клавиатуре, чтобы перемещать выбранный объект на три пикселя за раз. + Удерживайте клавишу Ctrl и используйте стрелки на клавиатуре, чтобы перемещать выбранный объект на один пиксель за раз. -

    * - доступно только для платных версий

    \ No newline at end of file diff --git a/apps/documenteditor/main/resources/less/toolbar.less b/apps/documenteditor/main/resources/less/toolbar.less index eaaca90ff..583d10a67 100644 --- a/apps/documenteditor/main/resources/less/toolbar.less +++ b/apps/documenteditor/main/resources/less/toolbar.less @@ -20,8 +20,12 @@ } .font-attr { - > .btn-slot:not(:last-child) { - margin-right: 8px; + > .btn-slot:not(:last-child):not(.split) { + margin-right: 6px; + } + + > .btn-slot:not(:last-child).split { + margin-right: 2px; } } } @@ -224,6 +228,22 @@ background-position: -200px 0; } +.surface-normal{ + background-position: -100px -200px; +} + +.surface-wireframe{ + background-position: -100px -200px; +} + +.contour-normal{ + background-position: -100px -200px; +} + +.contour-wireframe{ + background-position: -100px -200px; +} + @toolbar-icon-size: 20px; .button-normal-icon(btn-align-center, 0, @toolbar-icon-size); .button-normal-icon(btn-align-just, 1, @toolbar-icon-size); @@ -266,7 +286,6 @@ .button-normal-icon(btn-colorschemas, 44, @toolbar-icon-size); .button-normal-icon(btn-hidebars, 47, @toolbar-icon-size); .button-normal-icon(btn-settings, 48, @toolbar-icon-size); -.button-normal-icon(btn-dropcap, 50, @toolbar-icon-size); //.toolbar-btn-icon(btn-bold, 5, @toolbar-icon-size); .button-normal-icon(btn-zoomup, 57, @toolbar-icon-size); .button-normal-icon(btn-zoomdown, 58, @toolbar-icon-size); @@ -292,8 +311,9 @@ //.button-normal-icon(btn-inserthyperlink, 38, @toolbar-icon-size); //.button-normal-icon(btn-insertshape, 43, @toolbar-icon-size); //.button-normal-icon(btn-insertchart, 45, @toolbar-icon-size); -//.button-normal-icon(btn-insertequation, 53, @toolbar-icon-size); //.button-normal-icon(btn-text, 46, @toolbar-icon-size); +//.button-normal-icon(btn-insertequation, 53, @toolbar-icon-size); +//.button-normal-icon(btn-dropcap, 50, @toolbar-icon-size); //.button-normal-icon(btn-ic-doclang, 67, @toolbar-icon-size); //.button-normal-icon(btn-notes, 78, @toolbar-icon-size); //.button-normal-icon(review-prev, 79, @toolbar-icon-size); @@ -400,7 +420,7 @@ #slot-field-fontname { float: left; - width: 165px; + width: 166px; } #slot-field-fontsize { diff --git a/apps/presentationeditor/main/app/controller/Main.js b/apps/presentationeditor/main/app/controller/Main.js index 791ac9b2c..e195f8583 100644 --- a/apps/presentationeditor/main/app/controller/Main.js +++ b/apps/presentationeditor/main/app/controller/Main.js @@ -767,7 +767,7 @@ define([ this.appOptions.isEdit = this.appOptions.canLicense && this.appOptions.canEdit && this.editorConfig.mode !== 'view'; this.appOptions.canDownload = !this.appOptions.nativeApp && this.permissions.download !== false; this.appOptions.canAnalytics = params.asc_getIsAnalyticsEnable(); - this.appOptions.canComments = this.appOptions.canLicense && (this.permissions.comments===undefined ? this.appOptions.isEdit : this.permissions.comments); + this.appOptions.canComments = this.appOptions.canLicense && (this.permissions.comment===undefined ? this.appOptions.isEdit : this.permissions.comment); this.appOptions.canComments = this.appOptions.canComments && !((typeof (this.editorConfig.customization) == 'object') && this.editorConfig.customization.comments===false); this.appOptions.canChat = this.appOptions.canLicense && !this.appOptions.isOffline && !((typeof (this.editorConfig.customization) == 'object') && this.editorConfig.customization.chat===false); this.appOptions.canPrint = (this.permissions.print !== false); @@ -1939,7 +1939,7 @@ define([ errorBadImageUrl: 'Image url is incorrect', txtSlideText: 'Slide text', txtClipArt: 'Clip Art', - txtDiagram: 'Diagram', + txtDiagram: 'SmartArt', txtDateTime: 'Date and time', txtFooter: 'Footer', txtHeader: 'Header', diff --git a/apps/presentationeditor/main/app/template/Toolbar.template b/apps/presentationeditor/main/app/template/Toolbar.template index 480097a00..4594d9b51 100644 --- a/apps/presentationeditor/main/app/template/Toolbar.template +++ b/apps/presentationeditor/main/app/template/Toolbar.template @@ -32,11 +32,11 @@
    - +
    - +
    @@ -103,17 +103,11 @@
    - -
    -
    - -
    -
    -
    -
    +
    +
    diff --git a/apps/presentationeditor/main/app/view/ChartSettings.js b/apps/presentationeditor/main/app/view/ChartSettings.js index fe10f551b..354956e0b 100644 --- a/apps/presentationeditor/main/app/view/ChartSettings.js +++ b/apps/presentationeditor/main/app/view/ChartSettings.js @@ -128,7 +128,8 @@ define([ this.mnuChartTypePicker.selectRecord(record, true); if (record) { this.btnChartType.setIconCls('item-chartlist ' + record.get('iconCls')); - } + } else + this.btnChartType.setIconCls(''); this.updateChartStyles(this.api.asc_getChartPreviews(type)); this._state.ChartType = type; } @@ -220,6 +221,7 @@ define([ { id: 'menu-chart-group-area', caption: me.textArea, inline: true }, { id: 'menu-chart-group-scatter', caption: me.textPoint, inline: true }, { id: 'menu-chart-group-stock', caption: me.textStock, inline: true } + // { id: 'menu-chart-group-surface', caption: me.textSurface} ]), store: new Common.UI.DataViewStore([ { group: 'menu-chart-group-bar', type: Asc.c_oAscChartTypeSettings.barNormal, iconCls: 'column-normal', selected: true}, @@ -247,6 +249,10 @@ define([ { group: 'menu-chart-group-area', type: Asc.c_oAscChartTypeSettings.areaStackedPer, iconCls: 'area-pstack'}, { group: 'menu-chart-group-scatter', type: Asc.c_oAscChartTypeSettings.scatter, iconCls: 'point-normal'}, { group: 'menu-chart-group-stock', type: Asc.c_oAscChartTypeSettings.stock, iconCls: 'stock-normal'} + // { group: 'menu-chart-group-surface', type: Asc.c_oAscChartTypeSettings.surfaceNormal, iconCls: 'surface-normal'}, + // { group: 'menu-chart-group-surface', type: Asc.c_oAscChartTypeSettings.surfaceWireframe, iconCls: 'surface-wireframe'}, + // { group: 'menu-chart-group-surface', type: Asc.c_oAscChartTypeSettings.contourNormal, iconCls: 'contour-normal'}, + // { group: 'menu-chart-group-surface', type: Asc.c_oAscChartTypeSettings.contourWireframe, iconCls: 'contour-wireframe'} ]), itemTemplate: _.template('
    ') }); @@ -532,6 +538,7 @@ define([ textPoint: 'XY (Scatter)', textStock: 'Stock', textStyle: 'Style', - textAdvanced: 'Show advanced settings' + textAdvanced: 'Show advanced settings', + textSurface: 'Surface' }, PE.Views.ChartSettings || {})); }); \ No newline at end of file diff --git a/apps/presentationeditor/main/app/view/ParagraphSettingsAdvanced.js b/apps/presentationeditor/main/app/view/ParagraphSettingsAdvanced.js index afaaf6dc8..b849cc88d 100644 --- a/apps/presentationeditor/main/app/view/ParagraphSettingsAdvanced.js +++ b/apps/presentationeditor/main/app/view/ParagraphSettingsAdvanced.js @@ -507,6 +507,7 @@ define([ 'text!presentationeditor/main/app/template/ParagraphSettingsAdvanced }); if (rec) { rec.set('tabAlign', align); + this._tabListChanged = true; } else { rec = new Common.UI.DataViewModel(); rec.set({ diff --git a/apps/presentationeditor/main/app/view/ShapeSettingsAdvanced.js b/apps/presentationeditor/main/app/view/ShapeSettingsAdvanced.js index d4ac4aaef..a49e48575 100644 --- a/apps/presentationeditor/main/app/view/ShapeSettingsAdvanced.js +++ b/apps/presentationeditor/main/app/view/ShapeSettingsAdvanced.js @@ -501,6 +501,12 @@ define([ 'text!presentationeditor/main/app/template/ShapeSettingsAdvanced.tem } this.btnsCategory[2].setDisabled(null === margins); // Margins + var shapetype = props.asc_getType(); + this.btnsCategory[3].setDisabled(shapetype=='line' || shapetype=='bentConnector2' || shapetype=='bentConnector3' + || shapetype=='bentConnector4' || shapetype=='bentConnector5' || shapetype=='curvedConnector2' + || shapetype=='curvedConnector3' || shapetype=='curvedConnector4' || shapetype=='curvedConnector5' + || shapetype=='straightConnector1'); + value = props.asc_getColumnNumber(); this.spnColumns.setValue((null !== value && undefined !== value) ? value : '', true); diff --git a/apps/presentationeditor/main/app/view/Statusbar.js b/apps/presentationeditor/main/app/view/Statusbar.js index 63f0b5470..13a9ad775 100644 --- a/apps/presentationeditor/main/app/view/Statusbar.js +++ b/apps/presentationeditor/main/app/view/Statusbar.js @@ -92,6 +92,7 @@ define([ _.extend(this, options); this.pages = new PE.Models.Pages({current:1, count:1}); this.pages.on('change', _.bind(_updatePagesCaption,this)); + this._state = {no_paragraph: true}; }, render: function () { @@ -301,6 +302,7 @@ define([ if (this.api) { this.api.asc_registerCallback('asc_onCountPages', _.bind(_onCountPages, this)); this.api.asc_registerCallback('asc_onCurrentPage', _.bind(_onCurrentPage, this)); + this.api.asc_registerCallback('asc_onFocusObject', _.bind(this.onApiFocusObject, this)); } return this; @@ -341,7 +343,7 @@ define([ this.langMenu.doLayout(); if (this.langMenu.items.length>0) { - this.btnLanguage.setDisabled(false); + this.btnLanguage.setDisabled(false || this._state.no_paragraph); this.btnDocLanguage.setDisabled(false); } }, @@ -365,10 +367,27 @@ define([ SetDisabled: function(disable) { var langs = this.langMenu.items.length>0; - this.btnLanguage.setDisabled(disable || !langs); + this.btnLanguage.setDisabled(disable || !langs || this._state.no_paragraph); this.btnDocLanguage.setDisabled(disable || !langs); }, + onApiFocusObject: function(selectedObjects) { + if (!this.mode.isEdit) return; + + this._state.no_paragraph = true; + var i = -1; + while (++i < selectedObjects.length) { + var type = selectedObjects[i].get_ObjectType(); + if (type == Asc.c_oAscTypeSelectElement.Paragraph || type == Asc.c_oAscTypeSelectElement.Shape || type == Asc.c_oAscTypeSelectElement.Chart || type == Asc.c_oAscTypeSelectElement.Table) { + this._state.no_paragraph = selectedObjects[i].get_ObjectValue().get_Locked(); + if (this._state.no_paragraph) break; // break if one of the objects is locked + } + } + this._state.no_paragraph = this._state.no_paragraph || this.langMenu.items.length<1; + if (this._state.no_paragraph !== this.btnLanguage.isDisabled()) + this.btnLanguage.setDisabled(this._state.no_paragraph); + }, + pageIndexText : 'Slide {0} of {1}', goToPageText : 'Go to Slide', tipFitPage : 'Fit to Slide', diff --git a/apps/presentationeditor/main/app/view/Toolbar.js b/apps/presentationeditor/main/app/view/Toolbar.js index e09575257..520bbca01 100644 --- a/apps/presentationeditor/main/app/view/Toolbar.js +++ b/apps/presentationeditor/main/app/view/Toolbar.js @@ -1292,6 +1292,7 @@ define([ { id: 'menu-chart-group-area', caption: me.textArea, inline: true }, { id: 'menu-chart-group-scatter', caption: me.textPoint, inline: true }, { id: 'menu-chart-group-stock', caption: me.textStock, inline: true } + // { id: 'menu-chart-group-surface', caption: me.textSurface} ]), store: new Common.UI.DataViewStore([ { group: 'menu-chart-group-bar', type: Asc.c_oAscChartTypeSettings.barNormal, allowSelected: true, iconCls: 'column-normal', selected: true}, @@ -1319,6 +1320,10 @@ define([ { group: 'menu-chart-group-area', type: Asc.c_oAscChartTypeSettings.areaStackedPer, allowSelected: true, iconCls: 'area-pstack'}, { group: 'menu-chart-group-scatter', type: Asc.c_oAscChartTypeSettings.scatter, allowSelected: true, iconCls: 'point-normal'}, { group: 'menu-chart-group-stock', type: Asc.c_oAscChartTypeSettings.stock, allowSelected: true, iconCls: 'stock-normal'} + // { group: 'menu-chart-group-surface', type: Asc.c_oAscChartTypeSettings.surfaceNormal, allowSelected: true, iconCls: 'surface-normal'}, + // { group: 'menu-chart-group-surface', type: Asc.c_oAscChartTypeSettings.surfaceWireframe, allowSelected: true, iconCls: 'surface-wireframe'}, + // { group: 'menu-chart-group-surface', type: Asc.c_oAscChartTypeSettings.contourNormal, allowSelected: true, iconCls: 'contour-normal'}, + // { group: 'menu-chart-group-surface', type: Asc.c_oAscChartTypeSettings.contourWireframe, allowSelected: true, iconCls: 'contour-wireframe'} ]), itemTemplate: _.template('
    ') }); @@ -1823,7 +1828,8 @@ define([ capTabFile: 'File', capTabHome: 'Home', capTabInsert: 'Insert', - capBtnComment: 'Comment' + capBtnComment: 'Comment', + textSurface: 'Surface' } }()), PE.Views.Toolbar || {})); }); \ No newline at end of file diff --git a/apps/presentationeditor/main/index.html b/apps/presentationeditor/main/index.html index 381706589..67c13157c 100644 --- a/apps/presentationeditor/main/index.html +++ b/apps/presentationeditor/main/index.html @@ -6,12 +6,8 @@ - - - - - - + + + + +
    @@ -271,6 +272,12 @@ c0.552,0,1-0.447,1-1v-9C18,26.447,17.552,26,17,26z M17,36H3V25h7v1c0,0.553,0.448,1,1,1h6v1V36z"/> + + + diff --git a/apps/presentationeditor/main/index.html.deploy b/apps/presentationeditor/main/index.html.deploy index 4e6c4c5f7..1b3547397 100644 --- a/apps/presentationeditor/main/index.html.deploy +++ b/apps/presentationeditor/main/index.html.deploy @@ -7,7 +7,6 @@ - @@ -177,6 +176,83 @@ 100% { top:100px; background: #55bce6; } } + + + + @@ -292,6 +368,12 @@ c0.552,0,1-0.447,1-1v-9C18,26.447,17.552,26,17,26z M17,36H3V25h7v1c0,0.553,0.448,1,1,1h6v1V36z"/> + + +
    diff --git a/apps/presentationeditor/main/locale/cs.json b/apps/presentationeditor/main/locale/cs.json index 9be26601f..1f75e8ec0 100644 --- a/apps/presentationeditor/main/locale/cs.json +++ b/apps/presentationeditor/main/locale/cs.json @@ -23,10 +23,13 @@ "Common.UI.SearchDialog.textTitle": "Hledání", "Common.UI.SearchDialog.textTitle2": "Hledání", "Common.UI.SearchDialog.textWholeWords": "Pouze celá slova", + "Common.UI.SearchDialog.txtBtnHideReplace": "Hide Replace", "Common.UI.SearchDialog.txtBtnReplace": "Nahradit", "Common.UI.SearchDialog.txtBtnReplaceAll": "Nahradit vše", "Common.UI.SynchronizeTip.textDontShow": "Nezobrazovat znovu tuto zprávu", "Common.UI.SynchronizeTip.textSynchronize": "Dokument byl pozměněn jiným uživatelem.
    Kliněte prosím pro uložení vašich změn a načtení úprav.", + "Common.UI.ThemeColorPalette.textStandartColors": "Standard Colors", + "Common.UI.ThemeColorPalette.textThemeColors": "Theme Colors", "Common.UI.Window.cancelButtonText": "Zrušit", "Common.UI.Window.closeButtonText": "Zavřít", "Common.UI.Window.noButtonText": "Ne", @@ -37,6 +40,8 @@ "Common.UI.Window.textInformation": "Informace", "Common.UI.Window.textWarning": "Varování", "Common.UI.Window.yesButtonText": "Ano", + "Common.Utils.Metric.txtCm": "cm", + "Common.Utils.Metric.txtPt": "pt", "Common.Views.About.txtAddress": "adresa:", "Common.Views.About.txtAscAddress": "Lubanas st. 125a-25, Riga, Lotyšsko, EU, LV-1021", "Common.Views.About.txtLicensee": "DRŽITEL LICENCE", @@ -75,6 +80,7 @@ "Common.Views.ExternalDiagramEditor.textTitle": "Editor grafu", "Common.Views.Header.openNewTabText": "Otevřít v nové záložce", "Common.Views.Header.textBack": "Jít do dokumentů", + "Common.Views.Header.txtRename": "Rename", "Common.Views.ImageFromUrlDialog.cancelButtonText": "Zrušit", "Common.Views.ImageFromUrlDialog.okButtonText": "OK", "Common.Views.ImageFromUrlDialog.textUrl": "Vložit URL obrázku:", @@ -88,12 +94,28 @@ "Common.Views.InsertTableDialog.txtMinText": "Minimální hodnota tohoto pole je {0}.", "Common.Views.InsertTableDialog.txtRows": "Počet řádků", "Common.Views.InsertTableDialog.txtTitle": "Velikost tabulky", + "Common.Views.LanguageDialog.btnCancel": "Cancel", + "Common.Views.LanguageDialog.btnOk": "Ok", + "Common.Views.LanguageDialog.labelSelect": "Select document language", + "Common.Views.OpenDialog.cancelButtonText": "Cancel", + "Common.Views.OpenDialog.okButtonText": "OK", + "Common.Views.OpenDialog.txtEncoding": "Encoding ", + "Common.Views.OpenDialog.txtPassword": "Password", + "Common.Views.OpenDialog.txtTitle": "Choose %1 options", + "Common.Views.OpenDialog.txtTitleProtected": "Protected File", + "Common.Views.PluginDlg.textLoading": "Loading", + "Common.Views.Plugins.strPlugins": "Plugins", + "Common.Views.Plugins.textLoading": "Loading", + "Common.Views.Plugins.textStart": "Start", + "Common.Views.RenameDialog.cancelButtonText": "Cancel", + "Common.Views.RenameDialog.okButtonText": "Ok", + "Common.Views.RenameDialog.textName": "File name", + "Common.Views.RenameDialog.txtInvalidName": "The file name cannot contain any of the following characters: ", "PE.Controllers.LeftMenu.newDocumentTitle": "Nepojmenovaná prezentace", "PE.Controllers.LeftMenu.requestEditRightsText": "Žádání o editační práva...", "PE.Controllers.LeftMenu.textNoTextFound": "Data, které jste hledali nebyly nalezeny. Prosím pozměňte vyhledávací možnosti.", "PE.Controllers.Main.applyChangesTextText": "Načítání dat...", "PE.Controllers.Main.applyChangesTitleText": "Načítání dat", - "PE.Controllers.Main.convertationErrorText": "Konverze selhala.", "PE.Controllers.Main.convertationTimeoutText": "Vypršel čas konverze.", "PE.Controllers.Main.criticalErrorExtText": "Kliněte na \"OK\" pro návrat k seznamu dokumentů", "PE.Controllers.Main.criticalErrorTitle": "Chyba", @@ -101,6 +123,8 @@ "PE.Controllers.Main.downloadErrorText": "Stahování selhalo.", "PE.Controllers.Main.downloadTextText": "Stahování prezentace...", "PE.Controllers.Main.downloadTitleText": "Stahování prezentace", + "PE.Controllers.Main.errorAccessDeny": "You are trying to perform an action you do not have rights for.
    Please contact your Document Server administrator.", + "PE.Controllers.Main.errorBadImageUrl": "Image URL is incorrect", "PE.Controllers.Main.errorCoAuthoringDisconnect": "Spojení se serverem ztraceno. Dokument nyní nelze upravovat.", "PE.Controllers.Main.errorConnectToServer": "The document could not be saved. Please check connection settings or contact your administrator.
    When you click the 'OK' button, you will be prompted to download the document.

    Find more information about connecting Document Server here", "PE.Controllers.Main.errorDatabaseConnection": "Externí chyba.
    Chyba spojení s databází. Prosím kontaktujte podporu, pokud chyba přetrvává.", @@ -110,10 +134,17 @@ "PE.Controllers.Main.errorKeyEncrypt": "Neznámý klíč deskriptoru", "PE.Controllers.Main.errorKeyExpire": "Klíč deskriptoru vypršel", "PE.Controllers.Main.errorProcessSaveResult": "Ukládání selhalo.", + "PE.Controllers.Main.errorServerVersion": "The editor version has been updated. The page will be reloaded to apply the changes.", + "PE.Controllers.Main.errorSessionAbsolute": "The document editing session has expired. Please reload the page.", + "PE.Controllers.Main.errorSessionIdle": "The document has not been edited for quite a long time. Please reload the page.", + "PE.Controllers.Main.errorSessionToken": "The connection to the server has been interrupted. Please reload the page.", "PE.Controllers.Main.errorStockChart": "Nespravné pořadí řádků. Chcete-li vytvořit burzovní graf umístěte data na list v následujícím pořadí:
    otevírací cena, maximální cena, minimální cena, uzavírací cena.", + "PE.Controllers.Main.errorToken": "The document security token is not correctly formed.
    Please contact your Document Server administrator.", + "PE.Controllers.Main.errorTokenExpire": "The document security token has expired.
    Please contact your Document Server administrator.", "PE.Controllers.Main.errorUpdateVersion": "Verze souboru byla změněna. Stránka bude znovu načtena.", "PE.Controllers.Main.errorUserDrop": "Tento soubor není nyní přístupný.", "PE.Controllers.Main.errorUsersExceed": "Počet uživatelů povolených cenovým plánem byl překročen", + "PE.Controllers.Main.errorViewerDisconnect": "Connection is lost. You can still view the document,
    but will not be able to download or print until the connection is restored.", "PE.Controllers.Main.leavePageText": "Máte neuložené změny v této prezentaci. Klikněte na \"Zůstat na této stránce\", poté na \"Uložit\" pro uložení. Klikněte na \"Opustit tuto stránku\" pro zahození všech neuložených změn.", "PE.Controllers.Main.loadFontsTextText": "Načítání dat...", "PE.Controllers.Main.loadFontsTitleText": "Načítání dat", @@ -128,6 +159,7 @@ "PE.Controllers.Main.loadThemeTextText": "Loading theme...", "PE.Controllers.Main.loadThemeTitleText": "Loading Theme", "PE.Controllers.Main.notcriticalErrorTitle": "Varování", + "PE.Controllers.Main.openErrorText": "An error has occurred while opening the file", "PE.Controllers.Main.openTextText": "Otevírání prezentace...", "PE.Controllers.Main.openTitleText": "Otevírání prezentace", "PE.Controllers.Main.printTextText": "Tisknutí prezentace...", @@ -135,6 +167,7 @@ "PE.Controllers.Main.reloadButtonText": "Znovu načíst stránku", "PE.Controllers.Main.requestEditFailedMessageText": "Someone is editing this presentation right now. Please try again later.", "PE.Controllers.Main.requestEditFailedTitleText": "Přístup zamítnut", + "PE.Controllers.Main.saveErrorText": "An error has occurred while saving the file", "PE.Controllers.Main.savePreparingText": "Příprava na ukládání", "PE.Controllers.Main.savePreparingTitle": "Příprava ukládání. Prosím čekejte...", "PE.Controllers.Main.saveTextText": "Ukládání prezentace...", @@ -143,22 +176,36 @@ "PE.Controllers.Main.splitMaxColsErrorText": "Počet sloupců musí být menší než %1.", "PE.Controllers.Main.splitMaxRowsErrorText": "Počet řádků musí být menší než %1.", "PE.Controllers.Main.textAnonymous": "Anonymní", + "PE.Controllers.Main.textBuyNow": "Visit website", + "PE.Controllers.Main.textChangesSaved": "All changes saved", "PE.Controllers.Main.textCloseTip": "Zavřete tento tip kliknutím", + "PE.Controllers.Main.textContactUs": "Contact sales", "PE.Controllers.Main.textLoadingDocument": "Načítání prezentace", + "PE.Controllers.Main.textNoLicenseTitle": "ONLYOFFICE open source version", "PE.Controllers.Main.textShape": "Tvar", "PE.Controllers.Main.textStrict": "Strict mode", "PE.Controllers.Main.textTryUndoRedo": "The Undo/Redo functions are disabled for the Fast co-editing mode.
    Click the 'Strict mode' button to switch to the Strict co-editing mode to edit the file without other users interference and send your changes only after you save them. You can switch between the co-editing modes using the editor Advanced settings.", + "PE.Controllers.Main.titleLicenseExp": "License expired", + "PE.Controllers.Main.titleServerVersion": "Editor updated", "PE.Controllers.Main.txtArt": "Zde napište text", "PE.Controllers.Main.txtBasicShapes": "Základní tvary", "PE.Controllers.Main.txtButtons": "Tlačítka", "PE.Controllers.Main.txtCallouts": "Bubliny", "PE.Controllers.Main.txtCharts": "Grafy", + "PE.Controllers.Main.txtClipArt": "Clip Art", + "PE.Controllers.Main.txtDateTime": "Date and time", + "PE.Controllers.Main.txtDiagram": "SmartArt", "PE.Controllers.Main.txtDiagramTitle": "Nadpis grafu", "PE.Controllers.Main.txtEditingMode": "Nastavit editační režim...", "PE.Controllers.Main.txtFiguredArrows": "Šipky", + "PE.Controllers.Main.txtFooter": "Footer", + "PE.Controllers.Main.txtHeader": "Header", + "PE.Controllers.Main.txtImage": "Image", "PE.Controllers.Main.txtLines": "Čáry", "PE.Controllers.Main.txtMath": "Matematika", + "PE.Controllers.Main.txtMedia": "Media", "PE.Controllers.Main.txtNeedSynchronize": "Máte nové aktualizace", + "PE.Controllers.Main.txtPicture": "Picture", "PE.Controllers.Main.txtRectangles": "Obdelníky", "PE.Controllers.Main.txtSeries": "Řady", "PE.Controllers.Main.txtSldLtTBlank": "Blank", @@ -197,6 +244,10 @@ "PE.Controllers.Main.txtSldLtTVertTitleAndTx": "Vertical Title and Text", "PE.Controllers.Main.txtSldLtTVertTitleAndTxOverChart": "Vertical Title and Text Over Chart", "PE.Controllers.Main.txtSldLtTVertTx": "Svislý text", + "PE.Controllers.Main.txtSlideNumber": "Slide number", + "PE.Controllers.Main.txtSlideSubtitle": "Slide subtitle", + "PE.Controllers.Main.txtSlideText": "Slide text", + "PE.Controllers.Main.txtSlideTitle": "Slide title", "PE.Controllers.Main.txtStarsRibbons": "Hvězdy a stuhy", "PE.Controllers.Main.txtXAxis": "Osa X", "PE.Controllers.Main.txtYAxis": "Osa Y", @@ -209,12 +260,343 @@ "PE.Controllers.Main.uploadImageTitleText": "Nahrávání obrázku", "PE.Controllers.Main.warnBrowserIE9": "Aplikace má slabou podporu v IE9. Použíjte IE10 nebo vyšší", "PE.Controllers.Main.warnBrowserZoom": "Aktuální přiblížení prohlížeče není plně podporováno. Obnovte prosím původní přiblížení stiknem CTRL+0.", + "PE.Controllers.Main.warnLicenseExp": "Your license has expired.
    Please update your license and refresh the page.", + "PE.Controllers.Main.warnNoLicense": "You are using an open source version of ONLYOFFICE. The version has limitations for concurrent connections to the document server (20 connections at a time).
    If you need more please consider purchasing a commercial license.", "PE.Controllers.Main.warnProcessRightsChange": "Bylo Vám odebráno právo upravovat tento soubor", "PE.Controllers.Statusbar.zoomText": "Přiblížení {0}%", "PE.Controllers.Toolbar.confirmAddFontName": "Písmo, které se chystáte uložit není dostupné na stávajícím zařízení.
    Text bude zobrazen s jedním ze systémových písem, uložené písmo bude použito, jakmile bude dostupné.
    Chcete pokračovat?", + "PE.Controllers.Toolbar.textAccent": "Accents", + "PE.Controllers.Toolbar.textBracket": "Brackets", "PE.Controllers.Toolbar.textEmptyImgUrl": "Musíte upřesnit URL obrázku.", "PE.Controllers.Toolbar.textFontSizeErr": "Zadaná hodnota není správná.
    Zadejte prosím hodnotu mezi 1 a 100.", + "PE.Controllers.Toolbar.textFraction": "Fractions", + "PE.Controllers.Toolbar.textFunction": "Functions", + "PE.Controllers.Toolbar.textIntegral": "Integrals", + "PE.Controllers.Toolbar.textLargeOperator": "Large Operators", + "PE.Controllers.Toolbar.textLimitAndLog": "Limits And Logarithms", + "PE.Controllers.Toolbar.textMatrix": "Matrices", + "PE.Controllers.Toolbar.textOperator": "Operators", + "PE.Controllers.Toolbar.textRadical": "Radicals", + "PE.Controllers.Toolbar.textScript": "Scripts", + "PE.Controllers.Toolbar.textSymbols": "Symbols", "PE.Controllers.Toolbar.textWarning": "Varování", + "PE.Controllers.Toolbar.txtAccent_Accent": "Acute", + "PE.Controllers.Toolbar.txtAccent_ArrowD": "Right-Left Arrow Above", + "PE.Controllers.Toolbar.txtAccent_ArrowL": "Leftwards Arrow Above", + "PE.Controllers.Toolbar.txtAccent_ArrowR": "Rightwards Arrow Above", + "PE.Controllers.Toolbar.txtAccent_Bar": "Bar", + "PE.Controllers.Toolbar.txtAccent_BarBot": "Underbar", + "PE.Controllers.Toolbar.txtAccent_BarTop": "Overbar", + "PE.Controllers.Toolbar.txtAccent_BorderBox": "Boxed Formula (With Placeholder)", + "PE.Controllers.Toolbar.txtAccent_BorderBoxCustom": "Boxed Formula(Example)", + "PE.Controllers.Toolbar.txtAccent_Check": "Check", + "PE.Controllers.Toolbar.txtAccent_CurveBracketBot": "Underbrace", + "PE.Controllers.Toolbar.txtAccent_CurveBracketTop": "Overbrace", + "PE.Controllers.Toolbar.txtAccent_Custom_1": "Vector A", + "PE.Controllers.Toolbar.txtAccent_Custom_2": "ABC With Overbar", + "PE.Controllers.Toolbar.txtAccent_Custom_3": "x XOR y With Overbar", + "PE.Controllers.Toolbar.txtAccent_DDDot": "Triple Dot", + "PE.Controllers.Toolbar.txtAccent_DDot": "Double Dot", + "PE.Controllers.Toolbar.txtAccent_Dot": "Dot", + "PE.Controllers.Toolbar.txtAccent_DoubleBar": "Double Overbar", + "PE.Controllers.Toolbar.txtAccent_Grave": "Grave", + "PE.Controllers.Toolbar.txtAccent_GroupBot": "Grouping Character Below", + "PE.Controllers.Toolbar.txtAccent_GroupTop": "Grouping Character Above", + "PE.Controllers.Toolbar.txtAccent_HarpoonL": "Leftwards Harpoon Above", + "PE.Controllers.Toolbar.txtAccent_HarpoonR": "Rightwards Harpoon Above", + "PE.Controllers.Toolbar.txtAccent_Hat": "Hat", + "PE.Controllers.Toolbar.txtAccent_Smile": "Breve", + "PE.Controllers.Toolbar.txtAccent_Tilde": "Tilde", + "PE.Controllers.Toolbar.txtBracket_Angle": "Brackets", + "PE.Controllers.Toolbar.txtBracket_Angle_Delimiter_2": "Brackets with Separators", + "PE.Controllers.Toolbar.txtBracket_Angle_Delimiter_3": "Brackets with Separators", + "PE.Controllers.Toolbar.txtBracket_Angle_NoneOpen": "Single Bracket", + "PE.Controllers.Toolbar.txtBracket_Angle_OpenNone": "Single Bracket", + "PE.Controllers.Toolbar.txtBracket_Curve": "Brackets", + "PE.Controllers.Toolbar.txtBracket_Curve_Delimiter_2": "Brackets with Separators", + "PE.Controllers.Toolbar.txtBracket_Curve_NoneOpen": "Single Bracket", + "PE.Controllers.Toolbar.txtBracket_Curve_OpenNone": "Single Bracket", + "PE.Controllers.Toolbar.txtBracket_Custom_1": "Cases (Two Conditions)", + "PE.Controllers.Toolbar.txtBracket_Custom_2": "Cases (Three Conditions)", + "PE.Controllers.Toolbar.txtBracket_Custom_3": "Stack Object", + "PE.Controllers.Toolbar.txtBracket_Custom_4": "Stack Object", + "PE.Controllers.Toolbar.txtBracket_Custom_5": "Cases Example", + "PE.Controllers.Toolbar.txtBracket_Custom_6": "Binomial Coefficient", + "PE.Controllers.Toolbar.txtBracket_Custom_7": "Binomial Coefficient", + "PE.Controllers.Toolbar.txtBracket_Line": "Brackets", + "PE.Controllers.Toolbar.txtBracket_Line_NoneOpen": "Single Bracket", + "PE.Controllers.Toolbar.txtBracket_Line_OpenNone": "Single Bracket", + "PE.Controllers.Toolbar.txtBracket_LineDouble": "Brackets", + "PE.Controllers.Toolbar.txtBracket_LineDouble_NoneOpen": "Single Bracket", + "PE.Controllers.Toolbar.txtBracket_LineDouble_OpenNone": "Single Bracket", + "PE.Controllers.Toolbar.txtBracket_LowLim": "Brackets", + "PE.Controllers.Toolbar.txtBracket_LowLim_NoneNone": "Single Bracket", + "PE.Controllers.Toolbar.txtBracket_LowLim_OpenNone": "Single Bracket", + "PE.Controllers.Toolbar.txtBracket_Round": "Brackets", + "PE.Controllers.Toolbar.txtBracket_Round_Delimiter_2": "Brackets with Separators", + "PE.Controllers.Toolbar.txtBracket_Round_NoneOpen": "Single Bracket", + "PE.Controllers.Toolbar.txtBracket_Round_OpenNone": "Single Bracket", + "PE.Controllers.Toolbar.txtBracket_Square": "Brackets", + "PE.Controllers.Toolbar.txtBracket_Square_CloseClose": "Brackets", + "PE.Controllers.Toolbar.txtBracket_Square_CloseOpen": "Brackets", + "PE.Controllers.Toolbar.txtBracket_Square_NoneOpen": "Single Bracket", + "PE.Controllers.Toolbar.txtBracket_Square_OpenNone": "Single Bracket", + "PE.Controllers.Toolbar.txtBracket_Square_OpenOpen": "Brackets", + "PE.Controllers.Toolbar.txtBracket_SquareDouble": "Brackets", + "PE.Controllers.Toolbar.txtBracket_SquareDouble_NoneOpen": "Single Bracket", + "PE.Controllers.Toolbar.txtBracket_SquareDouble_OpenNone": "Single Bracket", + "PE.Controllers.Toolbar.txtBracket_UppLim": "Brackets", + "PE.Controllers.Toolbar.txtBracket_UppLim_NoneOpen": "Single Bracket", + "PE.Controllers.Toolbar.txtBracket_UppLim_OpenNone": "Single Bracket", + "PE.Controllers.Toolbar.txtFractionDiagonal": "Skewed Fraction", + "PE.Controllers.Toolbar.txtFractionDifferential_1": "Differential", + "PE.Controllers.Toolbar.txtFractionDifferential_2": "Differential", + "PE.Controllers.Toolbar.txtFractionDifferential_3": "Differential", + "PE.Controllers.Toolbar.txtFractionDifferential_4": "Differential", + "PE.Controllers.Toolbar.txtFractionHorizontal": "Linear Fraction", + "PE.Controllers.Toolbar.txtFractionPi_2": "Pi Over 2", + "PE.Controllers.Toolbar.txtFractionSmall": "Small Fraction", + "PE.Controllers.Toolbar.txtFractionVertical": "Stacked Fraction", + "PE.Controllers.Toolbar.txtFunction_1_Cos": "Inverse Cosine Function", + "PE.Controllers.Toolbar.txtFunction_1_Cosh": "Hyperbolic Inverse Cosine Function", + "PE.Controllers.Toolbar.txtFunction_1_Cot": "Inverse Cotangent Function", + "PE.Controllers.Toolbar.txtFunction_1_Coth": "Hyperbolic Inverse Cotangent Function", + "PE.Controllers.Toolbar.txtFunction_1_Csc": "Inverse Cosecant Function", + "PE.Controllers.Toolbar.txtFunction_1_Csch": "Hyperbolic Inverse Cosecant Function", + "PE.Controllers.Toolbar.txtFunction_1_Sec": "Inverse Secant Function", + "PE.Controllers.Toolbar.txtFunction_1_Sech": "Hyperbolic Inverse Secant Function", + "PE.Controllers.Toolbar.txtFunction_1_Sin": "Inverse Sine Function", + "PE.Controllers.Toolbar.txtFunction_1_Sinh": "Hyperbolic Inverse Sine Function", + "PE.Controllers.Toolbar.txtFunction_1_Tan": "Inverse Tangent Function", + "PE.Controllers.Toolbar.txtFunction_1_Tanh": "Hyperbolic Inverse Tangent Function", + "PE.Controllers.Toolbar.txtFunction_Cos": "Cosine Function", + "PE.Controllers.Toolbar.txtFunction_Cosh": "Hyperbolic Cosine Function", + "PE.Controllers.Toolbar.txtFunction_Cot": "Cotangent Function", + "PE.Controllers.Toolbar.txtFunction_Coth": "Hyperbolic Cotangent Function", + "PE.Controllers.Toolbar.txtFunction_Csc": "Cosecant Function", + "PE.Controllers.Toolbar.txtFunction_Csch": "Hyperbolic Cosecant Function", + "PE.Controllers.Toolbar.txtFunction_Custom_1": "Sine theta", + "PE.Controllers.Toolbar.txtFunction_Custom_2": "Cos 2x", + "PE.Controllers.Toolbar.txtFunction_Custom_3": "Tangent formula", + "PE.Controllers.Toolbar.txtFunction_Sec": "Secant Function", + "PE.Controllers.Toolbar.txtFunction_Sech": "Hyperbolic Secant Function", + "PE.Controllers.Toolbar.txtFunction_Sin": "Sine Function", + "PE.Controllers.Toolbar.txtFunction_Sinh": "Hyperbolic Sine Function", + "PE.Controllers.Toolbar.txtFunction_Tan": "Tangent Function", + "PE.Controllers.Toolbar.txtFunction_Tanh": "Hyperbolic Tangent Function", + "PE.Controllers.Toolbar.txtIntegral": "Integral", + "PE.Controllers.Toolbar.txtIntegral_dtheta": "Differential theta", + "PE.Controllers.Toolbar.txtIntegral_dx": "Differential x", + "PE.Controllers.Toolbar.txtIntegral_dy": "Differential y", + "PE.Controllers.Toolbar.txtIntegralCenterSubSup": "Integral", + "PE.Controllers.Toolbar.txtIntegralDouble": "Double Integral", + "PE.Controllers.Toolbar.txtIntegralDoubleCenterSubSup": "Double Integral", + "PE.Controllers.Toolbar.txtIntegralDoubleSubSup": "Double Integral", + "PE.Controllers.Toolbar.txtIntegralOriented": "Contour Integral", + "PE.Controllers.Toolbar.txtIntegralOrientedCenterSubSup": "Contour Integral", + "PE.Controllers.Toolbar.txtIntegralOrientedDouble": "Surface Integral", + "PE.Controllers.Toolbar.txtIntegralOrientedDoubleCenterSubSup": "Surface Integral", + "PE.Controllers.Toolbar.txtIntegralOrientedDoubleSubSup": "Surface Integral", + "PE.Controllers.Toolbar.txtIntegralOrientedSubSup": "Contour Integral", + "PE.Controllers.Toolbar.txtIntegralOrientedTriple": "Volume Integral", + "PE.Controllers.Toolbar.txtIntegralOrientedTripleCenterSubSup": "Volume Integral", + "PE.Controllers.Toolbar.txtIntegralOrientedTripleSubSup": "Volume Integral", + "PE.Controllers.Toolbar.txtIntegralSubSup": "Integral", + "PE.Controllers.Toolbar.txtIntegralTriple": "Triple Integral", + "PE.Controllers.Toolbar.txtIntegralTripleCenterSubSup": "Triple Integral", + "PE.Controllers.Toolbar.txtIntegralTripleSubSup": "Triple Integral", + "PE.Controllers.Toolbar.txtLargeOperator_Conjunction": "Wedge", + "PE.Controllers.Toolbar.txtLargeOperator_Conjunction_CenterSub": "Wedge", + "PE.Controllers.Toolbar.txtLargeOperator_Conjunction_CenterSubSup": "Wedge", + "PE.Controllers.Toolbar.txtLargeOperator_Conjunction_Sub": "Wedge", + "PE.Controllers.Toolbar.txtLargeOperator_Conjunction_SubSup": "Wedge", + "PE.Controllers.Toolbar.txtLargeOperator_CoProd": "Co-Product", + "PE.Controllers.Toolbar.txtLargeOperator_CoProd_CenterSub": "Co-Product", + "PE.Controllers.Toolbar.txtLargeOperator_CoProd_CenterSubSup": "Co-Product", + "PE.Controllers.Toolbar.txtLargeOperator_CoProd_Sub": "Co-Product", + "PE.Controllers.Toolbar.txtLargeOperator_CoProd_SubSup": "Co-Product", + "PE.Controllers.Toolbar.txtLargeOperator_Custom_1": "Summation", + "PE.Controllers.Toolbar.txtLargeOperator_Custom_2": "Summation", + "PE.Controllers.Toolbar.txtLargeOperator_Custom_3": "Summation", + "PE.Controllers.Toolbar.txtLargeOperator_Custom_4": "Product", + "PE.Controllers.Toolbar.txtLargeOperator_Custom_5": "Union", + "PE.Controllers.Toolbar.txtLargeOperator_Disjunction": "Vee", + "PE.Controllers.Toolbar.txtLargeOperator_Disjunction_CenterSub": "Vee", + "PE.Controllers.Toolbar.txtLargeOperator_Disjunction_CenterSubSup": "Vee", + "PE.Controllers.Toolbar.txtLargeOperator_Disjunction_Sub": "Vee", + "PE.Controllers.Toolbar.txtLargeOperator_Disjunction_SubSup": "Vee", + "PE.Controllers.Toolbar.txtLargeOperator_Intersection": "Intersection", + "PE.Controllers.Toolbar.txtLargeOperator_Intersection_CenterSub": "Intersection", + "PE.Controllers.Toolbar.txtLargeOperator_Intersection_CenterSubSup": "Intersection", + "PE.Controllers.Toolbar.txtLargeOperator_Intersection_Sub": "Intersection", + "PE.Controllers.Toolbar.txtLargeOperator_Intersection_SubSup": "Intersection", + "PE.Controllers.Toolbar.txtLargeOperator_Prod": "Product", + "PE.Controllers.Toolbar.txtLargeOperator_Prod_CenterSub": "Product", + "PE.Controllers.Toolbar.txtLargeOperator_Prod_CenterSubSup": "Product", + "PE.Controllers.Toolbar.txtLargeOperator_Prod_Sub": "Product", + "PE.Controllers.Toolbar.txtLargeOperator_Prod_SubSup": "Product", + "PE.Controllers.Toolbar.txtLargeOperator_Sum": "Summation", + "PE.Controllers.Toolbar.txtLargeOperator_Sum_CenterSub": "Summation", + "PE.Controllers.Toolbar.txtLargeOperator_Sum_CenterSubSup": "Summation", + "PE.Controllers.Toolbar.txtLargeOperator_Sum_Sub": "Summation", + "PE.Controllers.Toolbar.txtLargeOperator_Sum_SubSup": "Summation", + "PE.Controllers.Toolbar.txtLargeOperator_Union": "Union", + "PE.Controllers.Toolbar.txtLargeOperator_Union_CenterSub": "Union", + "PE.Controllers.Toolbar.txtLargeOperator_Union_CenterSubSup": "Union", + "PE.Controllers.Toolbar.txtLargeOperator_Union_Sub": "Union", + "PE.Controllers.Toolbar.txtLargeOperator_Union_SubSup": "Union", + "PE.Controllers.Toolbar.txtLimitLog_Custom_1": "Limit Example", + "PE.Controllers.Toolbar.txtLimitLog_Custom_2": "Maximum Example", + "PE.Controllers.Toolbar.txtLimitLog_Lim": "Limit", + "PE.Controllers.Toolbar.txtLimitLog_Ln": "Natural Logarithm", + "PE.Controllers.Toolbar.txtLimitLog_Log": "Logarithm", + "PE.Controllers.Toolbar.txtLimitLog_LogBase": "Logarithm", + "PE.Controllers.Toolbar.txtLimitLog_Max": "Maximum", + "PE.Controllers.Toolbar.txtLimitLog_Min": "Minimum", + "PE.Controllers.Toolbar.txtMatrix_1_2": "1x2 Empty Matrix", + "PE.Controllers.Toolbar.txtMatrix_1_3": "1x3 Empty Matrix", + "PE.Controllers.Toolbar.txtMatrix_2_1": "2x1 Empty Matrix", + "PE.Controllers.Toolbar.txtMatrix_2_2": "2x2 Empty Matrix", + "PE.Controllers.Toolbar.txtMatrix_2_2_DLineBracket": "Empty Matrix with Brackets", + "PE.Controllers.Toolbar.txtMatrix_2_2_LineBracket": "Empty Matrix with Brackets", + "PE.Controllers.Toolbar.txtMatrix_2_2_RoundBracket": "Empty Matrix with Brackets", + "PE.Controllers.Toolbar.txtMatrix_2_2_SquareBracket": "Empty Matrix with Brackets", + "PE.Controllers.Toolbar.txtMatrix_2_3": "2x3 Empty Matrix", + "PE.Controllers.Toolbar.txtMatrix_3_1": "3x1 Empty Matrix", + "PE.Controllers.Toolbar.txtMatrix_3_2": "3x2 Empty Matrix", + "PE.Controllers.Toolbar.txtMatrix_3_3": "3x3 Empty Matrix", + "PE.Controllers.Toolbar.txtMatrix_Dots_Baseline": "Baseline Dots", + "PE.Controllers.Toolbar.txtMatrix_Dots_Center": "Midline Dots", + "PE.Controllers.Toolbar.txtMatrix_Dots_Diagonal": "Diagonal Dots", + "PE.Controllers.Toolbar.txtMatrix_Dots_Vertical": "Vertical Dots", + "PE.Controllers.Toolbar.txtMatrix_Flat_Round": "Sparse Matrix", + "PE.Controllers.Toolbar.txtMatrix_Flat_Square": "Sparse Matrix", + "PE.Controllers.Toolbar.txtMatrix_Identity_2": "2x2 Identity Matrix", + "PE.Controllers.Toolbar.txtMatrix_Identity_2_NoZeros": "3x3 Identity Matrix", + "PE.Controllers.Toolbar.txtMatrix_Identity_3": "3x3 Identity Matrix", + "PE.Controllers.Toolbar.txtMatrix_Identity_3_NoZeros": "3x3 Identity Matrix", + "PE.Controllers.Toolbar.txtOperator_ArrowD_Bot": "Right-Left Arrow Below", + "PE.Controllers.Toolbar.txtOperator_ArrowD_Top": "Right-Left Arrow Above", + "PE.Controllers.Toolbar.txtOperator_ArrowL_Bot": "Leftwards Arrow Below", + "PE.Controllers.Toolbar.txtOperator_ArrowL_Top": "Leftwards Arrow Above", + "PE.Controllers.Toolbar.txtOperator_ArrowR_Bot": "Rightwards Arrow Below", + "PE.Controllers.Toolbar.txtOperator_ArrowR_Top": "Rightwards Arrow Above", + "PE.Controllers.Toolbar.txtOperator_ColonEquals": "Colon Equal", + "PE.Controllers.Toolbar.txtOperator_Custom_1": "Yields", + "PE.Controllers.Toolbar.txtOperator_Custom_2": "Delta Yields", + "PE.Controllers.Toolbar.txtOperator_Definition": "Equal to By Definition", + "PE.Controllers.Toolbar.txtOperator_DeltaEquals": "Delta Equal To", + "PE.Controllers.Toolbar.txtOperator_DoubleArrowD_Bot": "Right-Left Arrow Below", + "PE.Controllers.Toolbar.txtOperator_DoubleArrowD_Top": "Right-Left Arrow Above", + "PE.Controllers.Toolbar.txtOperator_DoubleArrowL_Bot": "Leftwards Arrow Below", + "PE.Controllers.Toolbar.txtOperator_DoubleArrowL_Top": "Leftwards Arrow Above", + "PE.Controllers.Toolbar.txtOperator_DoubleArrowR_Bot": "Rightwards Arrow Below", + "PE.Controllers.Toolbar.txtOperator_DoubleArrowR_Top": "Rightwards Arrow Above", + "PE.Controllers.Toolbar.txtOperator_EqualsEquals": "Equal Equal", + "PE.Controllers.Toolbar.txtOperator_MinusEquals": "Minus Equal", + "PE.Controllers.Toolbar.txtOperator_PlusEquals": "Plus Equal", + "PE.Controllers.Toolbar.txtOperator_UnitOfMeasure": "Measured By", + "PE.Controllers.Toolbar.txtRadicalCustom_1": "Radical", + "PE.Controllers.Toolbar.txtRadicalCustom_2": "Radical", + "PE.Controllers.Toolbar.txtRadicalRoot_2": "Square Root With Degree", + "PE.Controllers.Toolbar.txtRadicalRoot_3": "Cubic Root", + "PE.Controllers.Toolbar.txtRadicalRoot_n": "Radical With Degree", + "PE.Controllers.Toolbar.txtRadicalSqrt": "Square Root", + "PE.Controllers.Toolbar.txtScriptCustom_1": "Script", + "PE.Controllers.Toolbar.txtScriptCustom_2": "Script", + "PE.Controllers.Toolbar.txtScriptCustom_3": "Script", + "PE.Controllers.Toolbar.txtScriptCustom_4": "Script", + "PE.Controllers.Toolbar.txtScriptSub": "Subscript", + "PE.Controllers.Toolbar.txtScriptSubSup": "Subscript-Superscript", + "PE.Controllers.Toolbar.txtScriptSubSupLeft": "LeftSubscript-Superscript", + "PE.Controllers.Toolbar.txtScriptSup": "Superscript", + "PE.Controllers.Toolbar.txtSymbol_about": "Approximately", + "PE.Controllers.Toolbar.txtSymbol_additional": "Complement", + "PE.Controllers.Toolbar.txtSymbol_aleph": "Alef", + "PE.Controllers.Toolbar.txtSymbol_alpha": "Alpha", + "PE.Controllers.Toolbar.txtSymbol_approx": "Almost Equal To", + "PE.Controllers.Toolbar.txtSymbol_ast": "Asterisk Operator", + "PE.Controllers.Toolbar.txtSymbol_beta": "Beta", + "PE.Controllers.Toolbar.txtSymbol_beth": "Bet", + "PE.Controllers.Toolbar.txtSymbol_bullet": "Bullet Operator", + "PE.Controllers.Toolbar.txtSymbol_cap": "Intersection", + "PE.Controllers.Toolbar.txtSymbol_cbrt": "Cube Root", + "PE.Controllers.Toolbar.txtSymbol_cdots": "Midline Horizontal Ellipsis", + "PE.Controllers.Toolbar.txtSymbol_celsius": "Degrees Celsius", + "PE.Controllers.Toolbar.txtSymbol_chi": "Chi", + "PE.Controllers.Toolbar.txtSymbol_cong": "Approximately Equal To", + "PE.Controllers.Toolbar.txtSymbol_cup": "Union", + "PE.Controllers.Toolbar.txtSymbol_ddots": "Down Right Diagonal Ellipsis", + "PE.Controllers.Toolbar.txtSymbol_degree": "Degrees", + "PE.Controllers.Toolbar.txtSymbol_delta": "Delta", + "PE.Controllers.Toolbar.txtSymbol_div": "Division Sign", + "PE.Controllers.Toolbar.txtSymbol_downarrow": "Down Arrow", + "PE.Controllers.Toolbar.txtSymbol_emptyset": "Empty Set", + "PE.Controllers.Toolbar.txtSymbol_epsilon": "Epsilon", + "PE.Controllers.Toolbar.txtSymbol_equals": "Equal", + "PE.Controllers.Toolbar.txtSymbol_equiv": "Identical To", + "PE.Controllers.Toolbar.txtSymbol_eta": "Eta", + "PE.Controllers.Toolbar.txtSymbol_exists": "There Exist", + "PE.Controllers.Toolbar.txtSymbol_factorial": "Factorial", + "PE.Controllers.Toolbar.txtSymbol_fahrenheit": "Degrees Fahrenheit", + "PE.Controllers.Toolbar.txtSymbol_forall": "For All", + "PE.Controllers.Toolbar.txtSymbol_gamma": "Gamma", + "PE.Controllers.Toolbar.txtSymbol_geq": "Greater Than or Equal To", + "PE.Controllers.Toolbar.txtSymbol_gg": "Much Greater Than", + "PE.Controllers.Toolbar.txtSymbol_greater": "Greater Than", + "PE.Controllers.Toolbar.txtSymbol_in": "Element Of", + "PE.Controllers.Toolbar.txtSymbol_inc": "Increment", + "PE.Controllers.Toolbar.txtSymbol_infinity": "Infinity", + "PE.Controllers.Toolbar.txtSymbol_iota": "Iota", + "PE.Controllers.Toolbar.txtSymbol_kappa": "Kappa", + "PE.Controllers.Toolbar.txtSymbol_lambda": "Lambda", + "PE.Controllers.Toolbar.txtSymbol_leftarrow": "Left Arrow", + "PE.Controllers.Toolbar.txtSymbol_leftrightarrow": "Left-Right Arrow", + "PE.Controllers.Toolbar.txtSymbol_leq": "Less Than or Equal To", + "PE.Controllers.Toolbar.txtSymbol_less": "Less Than", + "PE.Controllers.Toolbar.txtSymbol_ll": "Much Less Than", + "PE.Controllers.Toolbar.txtSymbol_minus": "Minus", + "PE.Controllers.Toolbar.txtSymbol_mp": "Minus Plus", + "PE.Controllers.Toolbar.txtSymbol_mu": "Mu", + "PE.Controllers.Toolbar.txtSymbol_nabla": "Nabla", + "PE.Controllers.Toolbar.txtSymbol_neq": "Not Equal To", + "PE.Controllers.Toolbar.txtSymbol_ni": "Contains as Member", + "PE.Controllers.Toolbar.txtSymbol_not": "Not Sign", + "PE.Controllers.Toolbar.txtSymbol_notexists": "There Does Not Exist", + "PE.Controllers.Toolbar.txtSymbol_nu": "Nu", + "PE.Controllers.Toolbar.txtSymbol_o": "Omicron", + "PE.Controllers.Toolbar.txtSymbol_omega": "Omega", + "PE.Controllers.Toolbar.txtSymbol_partial": "Partial Differential", + "PE.Controllers.Toolbar.txtSymbol_percent": "Percentage", + "PE.Controllers.Toolbar.txtSymbol_phi": "Phi", + "PE.Controllers.Toolbar.txtSymbol_pi": "Pi", + "PE.Controllers.Toolbar.txtSymbol_plus": "Plus", + "PE.Controllers.Toolbar.txtSymbol_pm": "Plus Minus", + "PE.Controllers.Toolbar.txtSymbol_propto": "Proportional To", + "PE.Controllers.Toolbar.txtSymbol_psi": "Psi", + "PE.Controllers.Toolbar.txtSymbol_qdrt": "Fourth Root", + "PE.Controllers.Toolbar.txtSymbol_qed": "End of Proof", + "PE.Controllers.Toolbar.txtSymbol_rddots": "Up Right Diagonal Ellipsis", + "PE.Controllers.Toolbar.txtSymbol_rho": "Rho", + "PE.Controllers.Toolbar.txtSymbol_rightarrow": "Right Arrow", + "PE.Controllers.Toolbar.txtSymbol_sigma": "Sigma", + "PE.Controllers.Toolbar.txtSymbol_sqrt": "Radical Sign", + "PE.Controllers.Toolbar.txtSymbol_tau": "Tau", + "PE.Controllers.Toolbar.txtSymbol_therefore": "Therefore", + "PE.Controllers.Toolbar.txtSymbol_theta": "Theta", + "PE.Controllers.Toolbar.txtSymbol_times": "Multiplication Sign", + "PE.Controllers.Toolbar.txtSymbol_uparrow": "Up Arrow", + "PE.Controllers.Toolbar.txtSymbol_upsilon": "Upsilon", + "PE.Controllers.Toolbar.txtSymbol_varepsilon": "Epsilon Variant", + "PE.Controllers.Toolbar.txtSymbol_varphi": "Phi Variant", + "PE.Controllers.Toolbar.txtSymbol_varpi": "Pi Variant", + "PE.Controllers.Toolbar.txtSymbol_varrho": "Rho Variant", + "PE.Controllers.Toolbar.txtSymbol_varsigma": "Sigma Variant", + "PE.Controllers.Toolbar.txtSymbol_vartheta": "Theta Variant", + "PE.Controllers.Toolbar.txtSymbol_vdots": "Vertical Ellipsis", + "PE.Controllers.Toolbar.txtSymbol_xsi": "Xi", + "PE.Controllers.Toolbar.txtSymbol_zeta": "Zeta", + "PE.Views.ChartSettings.textAdvanced": "Show advanced settings", "PE.Views.ChartSettings.textArea": "Plošný graf", "PE.Views.ChartSettings.textBar": "Pruhový graf", "PE.Views.ChartSettings.textChartType": "Změnit typ grafu", @@ -228,18 +610,26 @@ "PE.Views.ChartSettings.textSize": "Velikost", "PE.Views.ChartSettings.textStock": "Burzovní graf", "PE.Views.ChartSettings.textStyle": "Styl", + "PE.Views.ChartSettings.textSurface": "Surface", "PE.Views.ChartSettings.textWidth": "Šířka", + "PE.Views.ChartSettingsAdvanced.cancelButtonText": "Cancel", + "PE.Views.ChartSettingsAdvanced.okButtonText": "Ok", + "PE.Views.ChartSettingsAdvanced.textAlt": "Alternative Text", + "PE.Views.ChartSettingsAdvanced.textAltDescription": "Description", + "PE.Views.ChartSettingsAdvanced.textAltTip": "The alternative text-based representation of the visual object information, which will be read to the people with vision or cognitive impairments to help them better understand what information there is in the image, autoshape, chart or table.", + "PE.Views.ChartSettingsAdvanced.textAltTitle": "Title", + "PE.Views.ChartSettingsAdvanced.textTitle": "Chart - Advanced Settings", "PE.Views.DocumentHolder.aboveText": "Nad", "PE.Views.DocumentHolder.addCommentText": "Přidat komentář", "PE.Views.DocumentHolder.advancedImageText": "Pokročilé nastavení obrázku", "PE.Views.DocumentHolder.advancedParagraphText": "Pokročilé nastavení textu", "PE.Views.DocumentHolder.advancedShapeText": "Pokročilé nastavení tvaru", "PE.Views.DocumentHolder.advancedTableText": "Pokročilé nastavení tabulky", + "PE.Views.DocumentHolder.alignmentText": "Alignment", "PE.Views.DocumentHolder.belowText": "Pod", - "PE.Views.DocumentHolder.bottomCellText": "Zarovnat dolů", "PE.Views.DocumentHolder.cellAlignText": "Svislé zarovnání buňky", "PE.Views.DocumentHolder.cellText": "Buňka", - "PE.Views.DocumentHolder.centerCellText": "Zarovnat na střed", + "PE.Views.DocumentHolder.centerText": "Center", "PE.Views.DocumentHolder.columnText": "Sloupec", "PE.Views.DocumentHolder.deleteColumnText": "Smazat sloupec", "PE.Views.DocumentHolder.deleteRowText": "Smazat řádek", @@ -252,6 +642,8 @@ "PE.Views.DocumentHolder.editChartText": "Upravit data", "PE.Views.DocumentHolder.editHyperlinkText": "Upravit hypertextový odkaz", "PE.Views.DocumentHolder.hyperlinkText": "Hypertextový odkaz", + "PE.Views.DocumentHolder.ignoreAllSpellText": "Ignore All", + "PE.Views.DocumentHolder.ignoreSpellText": "Ignore", "PE.Views.DocumentHolder.insertColumnLeftText": "Sloupec vlevo", "PE.Views.DocumentHolder.insertColumnRightText": "Sloupec vpravo", "PE.Views.DocumentHolder.insertColumnText": "Vložit sloupec", @@ -259,11 +651,18 @@ "PE.Views.DocumentHolder.insertRowBelowText": "Řádek pod", "PE.Views.DocumentHolder.insertRowText": "Vložit řádek", "PE.Views.DocumentHolder.insertText": "Vložit", + "PE.Views.DocumentHolder.langText": "Select Language", + "PE.Views.DocumentHolder.leftText": "Left", + "PE.Views.DocumentHolder.loadSpellText": "Loading variants...", "PE.Views.DocumentHolder.mergeCellsText": "Spojit buňky", + "PE.Views.DocumentHolder.moreText": "More variants...", + "PE.Views.DocumentHolder.noSpellVariantsText": "No variants", "PE.Views.DocumentHolder.originalSizeText": "Výchozí velikost", "PE.Views.DocumentHolder.removeHyperlinkText": "Odebrat Hypertextový odkaz", + "PE.Views.DocumentHolder.rightText": "Right", "PE.Views.DocumentHolder.rowText": "Řádek", "PE.Views.DocumentHolder.selectText": "Vybrat", + "PE.Views.DocumentHolder.spellcheckText": "Spellcheck", "PE.Views.DocumentHolder.splitCellsText": "Rozdělit buňku...", "PE.Views.DocumentHolder.splitCellTitleText": "Rozdělit buňku", "PE.Views.DocumentHolder.tableText": "Tabulka", @@ -283,22 +682,92 @@ "PE.Views.DocumentHolder.textShapeAlignRight": "Zarovnat vpravo", "PE.Views.DocumentHolder.textShapeAlignTop": "Zarovnat nahoru", "PE.Views.DocumentHolder.textSlideSettings": "Nastavení snímku", + "PE.Views.DocumentHolder.textUndo": "Undo", "PE.Views.DocumentHolder.tipIsLocked": "Tento element je upravován jiným uživatelem.", - "PE.Views.DocumentHolder.topCellText": "Zarovnat nahoru", + "PE.Views.DocumentHolder.txtAddBottom": "Add bottom border", + "PE.Views.DocumentHolder.txtAddFractionBar": "Add fraction bar", + "PE.Views.DocumentHolder.txtAddHor": "Add horizontal line", + "PE.Views.DocumentHolder.txtAddLB": "Add left bottom line", + "PE.Views.DocumentHolder.txtAddLeft": "Add left border", + "PE.Views.DocumentHolder.txtAddLT": "Add left top line", + "PE.Views.DocumentHolder.txtAddRight": "Add right border", + "PE.Views.DocumentHolder.txtAddTop": "Add top border", + "PE.Views.DocumentHolder.txtAddVer": "Add vertical line", "PE.Views.DocumentHolder.txtAlign": "Zarovnat", + "PE.Views.DocumentHolder.txtAlignToChar": "Align to character", "PE.Views.DocumentHolder.txtArrange": "Uspořádat", "PE.Views.DocumentHolder.txtBackground": "Pozadí", + "PE.Views.DocumentHolder.txtBorderProps": "Border properties", + "PE.Views.DocumentHolder.txtBottom": "Bottom", "PE.Views.DocumentHolder.txtChangeLayout": "Change Layout", + "PE.Views.DocumentHolder.txtColumnAlign": "Column alignment", + "PE.Views.DocumentHolder.txtDecreaseArg": "Decrease argument size", + "PE.Views.DocumentHolder.txtDeleteArg": "Delete argument", + "PE.Views.DocumentHolder.txtDeleteBreak": "Delete manual break", + "PE.Views.DocumentHolder.txtDeleteChars": "Delete enclosing characters", + "PE.Views.DocumentHolder.txtDeleteCharsAndSeparators": "Delete enclosing characters and separators", + "PE.Views.DocumentHolder.txtDeleteEq": "Delete equation", + "PE.Views.DocumentHolder.txtDeleteGroupChar": "Delete char", + "PE.Views.DocumentHolder.txtDeleteRadical": "Delete radical", "PE.Views.DocumentHolder.txtDeleteSlide": "Odstranit snímek", "PE.Views.DocumentHolder.txtDistribHor": "Distribute Horizontally", "PE.Views.DocumentHolder.txtDistribVert": "Distribute Vertically", "PE.Views.DocumentHolder.txtDuplicateSlide": "Duplicate Slide", + "PE.Views.DocumentHolder.txtFractionLinear": "Change to linear fraction", + "PE.Views.DocumentHolder.txtFractionSkewed": "Change to skewed fraction", + "PE.Views.DocumentHolder.txtFractionStacked": "Change to stacked fraction", "PE.Views.DocumentHolder.txtGroup": "Skupina", + "PE.Views.DocumentHolder.txtGroupCharOver": "Char over text", + "PE.Views.DocumentHolder.txtGroupCharUnder": "Char under text", + "PE.Views.DocumentHolder.txtHideBottom": "Hide bottom border", + "PE.Views.DocumentHolder.txtHideBottomLimit": "Hide bottom limit", + "PE.Views.DocumentHolder.txtHideCloseBracket": "Hide closing bracket", + "PE.Views.DocumentHolder.txtHideDegree": "Hide degree", + "PE.Views.DocumentHolder.txtHideHor": "Hide horizontal line", + "PE.Views.DocumentHolder.txtHideLB": "Hide left bottom line", + "PE.Views.DocumentHolder.txtHideLeft": "Hide left border", + "PE.Views.DocumentHolder.txtHideLT": "Hide left top line", + "PE.Views.DocumentHolder.txtHideOpenBracket": "Hide opening bracket", + "PE.Views.DocumentHolder.txtHidePlaceholder": "Hide placeholder", + "PE.Views.DocumentHolder.txtHideRight": "Hide right border", + "PE.Views.DocumentHolder.txtHideTop": "Hide top border", + "PE.Views.DocumentHolder.txtHideTopLimit": "Hide top limit", + "PE.Views.DocumentHolder.txtHideVer": "Hide vertical line", + "PE.Views.DocumentHolder.txtIncreaseArg": "Increase argument size", + "PE.Views.DocumentHolder.txtInsertArgAfter": "Insert argument after", + "PE.Views.DocumentHolder.txtInsertArgBefore": "Insert argument before", + "PE.Views.DocumentHolder.txtInsertBreak": "Insert manual break", + "PE.Views.DocumentHolder.txtInsertEqAfter": "Insert equation after", + "PE.Views.DocumentHolder.txtInsertEqBefore": "Insert equation before", + "PE.Views.DocumentHolder.txtLimitChange": "Change limits location", + "PE.Views.DocumentHolder.txtLimitOver": "Limit over text", + "PE.Views.DocumentHolder.txtLimitUnder": "Limit under text", + "PE.Views.DocumentHolder.txtMatchBrackets": "Match brackets to argument height", + "PE.Views.DocumentHolder.txtMatrixAlign": "Matrix alignment", "PE.Views.DocumentHolder.txtNewSlide": "Nový snímek", + "PE.Views.DocumentHolder.txtOverbar": "Bar over text", "PE.Views.DocumentHolder.txtPressLink": "Stikněte CTRL a klikněte na odkaz", "PE.Views.DocumentHolder.txtPreview": "Náhled", + "PE.Views.DocumentHolder.txtRemFractionBar": "Remove fraction bar", + "PE.Views.DocumentHolder.txtRemLimit": "Remove limit", + "PE.Views.DocumentHolder.txtRemoveAccentChar": "Remove accent character", + "PE.Views.DocumentHolder.txtRemoveBar": "Remove bar", + "PE.Views.DocumentHolder.txtRemScripts": "Remove scripts", + "PE.Views.DocumentHolder.txtRemSubscript": "Remove subscript", + "PE.Views.DocumentHolder.txtRemSuperscript": "Remove superscript", + "PE.Views.DocumentHolder.txtScriptsAfter": "Scripts after text", + "PE.Views.DocumentHolder.txtScriptsBefore": "Scripts before text", "PE.Views.DocumentHolder.txtSelectAll": "Vybrat vše", + "PE.Views.DocumentHolder.txtShowBottomLimit": "Show bottom limit", + "PE.Views.DocumentHolder.txtShowCloseBracket": "Show closing bracket", + "PE.Views.DocumentHolder.txtShowDegree": "Show degree", + "PE.Views.DocumentHolder.txtShowOpenBracket": "Show opening bracket", + "PE.Views.DocumentHolder.txtShowPlaceholder": "Show placeholder", + "PE.Views.DocumentHolder.txtShowTopLimit": "Show top limit", "PE.Views.DocumentHolder.txtSlide": "Snímek", + "PE.Views.DocumentHolder.txtStretchBrackets": "Stretch brackets", + "PE.Views.DocumentHolder.txtTop": "Top", + "PE.Views.DocumentHolder.txtUnderbar": "Bar under text", "PE.Views.DocumentHolder.txtUngroup": "Oddělit", "PE.Views.DocumentHolder.vertAlignText": "Svislé zarovnání", "PE.Views.DocumentPreview.goToSlideText": "Přejít na snímek", @@ -314,12 +783,14 @@ "PE.Views.DocumentPreview.txtPrev": "Předchozí snímek", "PE.Views.FileMenu.btnAboutCaption": "Informace", "PE.Views.FileMenu.btnBackCaption": "Jít do dokumentů", + "PE.Views.FileMenu.btnCloseMenuCaption": "Close Menu", "PE.Views.FileMenu.btnCreateNewCaption": "Vytvořit nový", "PE.Views.FileMenu.btnDownloadCaption": "Stáhnout jako...", "PE.Views.FileMenu.btnHelpCaption": "Pomoc...", "PE.Views.FileMenu.btnInfoCaption": "Informace o prezentaci", "PE.Views.FileMenu.btnPrintCaption": "Tisk", "PE.Views.FileMenu.btnRecentFilesCaption": "Otevřít nedávné...", + "PE.Views.FileMenu.btnRenameCaption": "Rename...", "PE.Views.FileMenu.btnReturnCaption": "Zpátky k prezentaci", "PE.Views.FileMenu.btnRightsCaption": "Přístupové práva...", "PE.Views.FileMenu.btnSaveAsCaption": "Save as", @@ -341,13 +812,16 @@ "PE.Views.FileMenuPanels.DocumentRights.txtRights": "Osoby, které mají práva", "PE.Views.FileMenuPanels.Settings.okButtonText": "Použít", "PE.Views.FileMenuPanels.Settings.strAlignGuides": "Zapnout tipy pro zarovnání", + "PE.Views.FileMenuPanels.Settings.strAutoRecover": "Turn on autorecover", "PE.Views.FileMenuPanels.Settings.strAutosave": "Zapnout automatické ukládání", "PE.Views.FileMenuPanels.Settings.strCoAuthMode": "Co-editing mode", "PE.Views.FileMenuPanels.Settings.strCoAuthModeDescFast": "Other users will see your changes at once", "PE.Views.FileMenuPanels.Settings.strCoAuthModeDescStrict": "You will need to accept changes before you can see them", "PE.Views.FileMenuPanels.Settings.strFast": "Fast", + "PE.Views.FileMenuPanels.Settings.strForcesave": "Always save to server (otherwise save to server on document close)", "PE.Views.FileMenuPanels.Settings.strInputMode": "Zapnout hieroglyfy", "PE.Views.FileMenuPanels.Settings.strShowChanges": "Změny spolupráce v reálném čase", + "PE.Views.FileMenuPanels.Settings.strSpellCheckMode": "Turn on spell checking option", "PE.Views.FileMenuPanels.Settings.strStrict": "Strict", "PE.Views.FileMenuPanels.Settings.strUnit": "Jednotky měření", "PE.Views.FileMenuPanels.Settings.strZoom": "Výchozí hodnota přiblížení", @@ -356,15 +830,20 @@ "PE.Views.FileMenuPanels.Settings.text5Minutes": "Každých 5 minut", "PE.Views.FileMenuPanels.Settings.text60Minutes": "Každou hodinu", "PE.Views.FileMenuPanels.Settings.textAlignGuides": "Nápověda zarovnání", + "PE.Views.FileMenuPanels.Settings.textAutoRecover": "Autorecover", "PE.Views.FileMenuPanels.Settings.textAutoSave": "Automatické ukládání", "PE.Views.FileMenuPanels.Settings.textDisabled": "Zakázáno", + "PE.Views.FileMenuPanels.Settings.textForceSave": "Save to Server", "PE.Views.FileMenuPanels.Settings.textMinute": "Každou minutu", "PE.Views.FileMenuPanels.Settings.txtAll": "Zobrazit všechny", "PE.Views.FileMenuPanels.Settings.txtCm": "Centimetr", "PE.Views.FileMenuPanels.Settings.txtFitSlide": "Fit Slide", + "PE.Views.FileMenuPanels.Settings.txtFitWidth": "Fit to Width", + "PE.Views.FileMenuPanels.Settings.txtInch": "Inch", "PE.Views.FileMenuPanels.Settings.txtInput": "Náhradní vstup", "PE.Views.FileMenuPanels.Settings.txtLast": "Zobraz poslední", "PE.Views.FileMenuPanels.Settings.txtPt": "Body", + "PE.Views.FileMenuPanels.Settings.txtSpellCheck": "Spell Checking", "PE.Views.HyperlinkSettingsDialog.cancelButtonText": "Zrušit", "PE.Views.HyperlinkSettingsDialog.okButtonText": "OK", "PE.Views.HyperlinkSettingsDialog.strDisplay": "Zobrazit", @@ -387,6 +866,8 @@ "PE.Views.HyperlinkSettingsDialog.txtPrev": "Předchozí snímek", "PE.Views.HyperlinkSettingsDialog.txtSlide": "Snímek", "PE.Views.ImageSettings.textAdvanced": "Zobrazit pokročilé nastavení", + "PE.Views.ImageSettings.textEdit": "Edit", + "PE.Views.ImageSettings.textEditObject": "Edit Object", "PE.Views.ImageSettings.textFromFile": "Ze souboru", "PE.Views.ImageSettings.textFromUrl": "Z adresy URL", "PE.Views.ImageSettings.textHeight": "Výška", @@ -396,9 +877,14 @@ "PE.Views.ImageSettings.textWidth": "Šířka", "PE.Views.ImageSettingsAdvanced.cancelButtonText": "Zrušit", "PE.Views.ImageSettingsAdvanced.okButtonText": "OK", + "PE.Views.ImageSettingsAdvanced.textAlt": "Alternative Text", + "PE.Views.ImageSettingsAdvanced.textAltDescription": "Description", + "PE.Views.ImageSettingsAdvanced.textAltTip": "The alternative text-based representation of the visual object information, which will be read to the people with vision or cognitive impairments to help them better understand what information there is in the image, autoshape, chart or table.", + "PE.Views.ImageSettingsAdvanced.textAltTitle": "Title", "PE.Views.ImageSettingsAdvanced.textHeight": "Výška", "PE.Views.ImageSettingsAdvanced.textKeepRatio": "Konstantní rozměry", "PE.Views.ImageSettingsAdvanced.textOriginalSize": "Výchozí velikost", + "PE.Views.ImageSettingsAdvanced.textPlacement": "Placement", "PE.Views.ImageSettingsAdvanced.textPosition": "Pozice", "PE.Views.ImageSettingsAdvanced.textSize": "Velikost", "PE.Views.ImageSettingsAdvanced.textTitle": "Obrázek - Pokročilé nastavení", @@ -407,10 +893,12 @@ "PE.Views.LeftMenu.tipChat": "Chat", "PE.Views.LeftMenu.tipComments": "Komentáře", "PE.Views.LeftMenu.tipFile": "Soubor", + "PE.Views.LeftMenu.tipPlugins": "Plugins", "PE.Views.LeftMenu.tipSearch": "Hledání", "PE.Views.LeftMenu.tipSlides": "Snímky", "PE.Views.LeftMenu.tipSupport": "Podpora a zpětná vazba", "PE.Views.LeftMenu.tipTitles": "Nadpisy", + "PE.Views.LeftMenu.txtDeveloper": "DEVELOPER MODE", "PE.Views.ParagraphSettings.strLineHeight": "Řádkování", "PE.Views.ParagraphSettings.strParagraphSpacing": "Řádkování", "PE.Views.ParagraphSettings.strSpacingAfter": "Za", @@ -464,6 +952,7 @@ "PE.Views.ShapeSettings.strSize": "Velikost", "PE.Views.ShapeSettings.strStroke": "Tloušťka", "PE.Views.ShapeSettings.strTransparency": "Průhlednost", + "PE.Views.ShapeSettings.strType": "Type", "PE.Views.ShapeSettings.textAdvanced": "Zobrazit pokročilé nastavení", "PE.Views.ShapeSettings.textBorderSizeErr": "Zadaná hodnota není správná.
    Zadejte prosím hodnotu mezi 0 a 1584.", "PE.Views.ShapeSettings.textColor": "Vyplnit barvou", @@ -480,11 +969,9 @@ "PE.Views.ShapeSettings.textPatternFill": "Vzor", "PE.Views.ShapeSettings.textRadial": "Kruhový", "PE.Views.ShapeSettings.textSelectTexture": "Vybrat", - "PE.Views.ShapeSettings.textStandartColors": "Standardní barvy", "PE.Views.ShapeSettings.textStretch": "Roztáhnout", "PE.Views.ShapeSettings.textStyle": "Styl", "PE.Views.ShapeSettings.textTexture": "Z textury", - "PE.Views.ShapeSettings.textThemeColors": "Barvy schématu", "PE.Views.ShapeSettings.textTile": "Dlaždice", "PE.Views.ShapeSettings.txtBrownPaper": "Hnědý papír", "PE.Views.ShapeSettings.txtCanvas": "Plátno", @@ -500,13 +987,19 @@ "PE.Views.ShapeSettings.txtWood": "Dřevo", "PE.Views.ShapeSettingsAdvanced.cancelButtonText": "Zrušit", "PE.Views.ShapeSettingsAdvanced.okButtonText": "OK", + "PE.Views.ShapeSettingsAdvanced.strColumns": "Columns", "PE.Views.ShapeSettingsAdvanced.strMargins": "Vnitřní odsazení textu", + "PE.Views.ShapeSettingsAdvanced.textAlt": "Alternative Text", + "PE.Views.ShapeSettingsAdvanced.textAltDescription": "Description", + "PE.Views.ShapeSettingsAdvanced.textAltTip": "The alternative text-based representation of the visual object information, which will be read to the people with vision or cognitive impairments to help them better understand what information there is in the image, autoshape, chart or table.", + "PE.Views.ShapeSettingsAdvanced.textAltTitle": "Title", "PE.Views.ShapeSettingsAdvanced.textArrows": "Šipky", "PE.Views.ShapeSettingsAdvanced.textBeginSize": "Velikost začátku", "PE.Views.ShapeSettingsAdvanced.textBeginStyle": "Styl začátku", "PE.Views.ShapeSettingsAdvanced.textBevel": "Zkosení", "PE.Views.ShapeSettingsAdvanced.textBottom": "Dole", "PE.Views.ShapeSettingsAdvanced.textCapType": "Typ zakončení", + "PE.Views.ShapeSettingsAdvanced.textColNumber": "Number of columns", "PE.Views.ShapeSettingsAdvanced.textEndSize": "Velikost konce", "PE.Views.ShapeSettingsAdvanced.textEndStyle": "Styl konce", "PE.Views.ShapeSettingsAdvanced.textFlat": "Plochý", @@ -519,6 +1012,7 @@ "PE.Views.ShapeSettingsAdvanced.textRight": "Vpravo", "PE.Views.ShapeSettingsAdvanced.textRound": "Zaoblené", "PE.Views.ShapeSettingsAdvanced.textSize": "Velikost", + "PE.Views.ShapeSettingsAdvanced.textSpacing": "Spacing between columns", "PE.Views.ShapeSettingsAdvanced.textSquare": "Čtverec", "PE.Views.ShapeSettingsAdvanced.textTitle": "Tvar - Pokročilé nastavení", "PE.Views.ShapeSettingsAdvanced.textTop": "Nahoře", @@ -566,14 +1060,13 @@ "PE.Views.SlideSettings.textRadial": "Kruhový", "PE.Views.SlideSettings.textReset": "Reset Changes", "PE.Views.SlideSettings.textRight": "Vpravo", + "PE.Views.SlideSettings.textSec": "s", "PE.Views.SlideSettings.textSelectTexture": "Vybrat", "PE.Views.SlideSettings.textSmoothly": "Smoothly", "PE.Views.SlideSettings.textSplit": "Split", - "PE.Views.SlideSettings.textStandartColors": "Standardní barvy", "PE.Views.SlideSettings.textStretch": "Roztáhnout", "PE.Views.SlideSettings.textStyle": "Styl", "PE.Views.SlideSettings.textTexture": "Z textury", - "PE.Views.SlideSettings.textThemeColors": "Barvy schématu", "PE.Views.SlideSettings.textTile": "Dlaždice", "PE.Views.SlideSettings.textTop": "Nahoře", "PE.Views.SlideSettings.textTopLeft": "Nahoře vlevo", @@ -598,9 +1091,16 @@ "PE.Views.SlideSettings.txtLeather": "Kůže", "PE.Views.SlideSettings.txtPapyrus": "Papyrus", "PE.Views.SlideSettings.txtWood": "Dřevo", + "PE.Views.SlideshowSettings.cancelButtonText": "Cancel", + "PE.Views.SlideshowSettings.okButtonText": "Ok", + "PE.Views.SlideshowSettings.textLoop": "Loop continuously until 'Esc' is pressed", + "PE.Views.SlideshowSettings.textTitle": "Show Settings", "PE.Views.SlideSizeSettings.cancelButtonText": "Zrušit", "PE.Views.SlideSizeSettings.okButtonText": "OK", + "PE.Views.SlideSizeSettings.strLandscape": "Landscape", + "PE.Views.SlideSizeSettings.strPortrait": "Portrait", "PE.Views.SlideSizeSettings.textHeight": "Výška", + "PE.Views.SlideSizeSettings.textSlideOrientation": "Slide Orientation", "PE.Views.SlideSizeSettings.textSlideSize": "Velikost snímku", "PE.Views.SlideSizeSettings.textTitle": "Nastavení velikosti snímku", "PE.Views.SlideSizeSettings.textWidth": "Šířka", @@ -624,6 +1124,9 @@ "PE.Views.Statusbar.tipFitWidth": "Přizpůsobit šířce", "PE.Views.Statusbar.tipMoreUsers": "a %1 uživatelů.", "PE.Views.Statusbar.tipPreview": "Spustit náhled", + "PE.Views.Statusbar.tipSetDocLang": "Set Document Language", + "PE.Views.Statusbar.tipSetLang": "Set Text Language", + "PE.Views.Statusbar.tipSetSpelling": "Spell checking", "PE.Views.Statusbar.tipShowUsers": "Pro zobrazená všech uživatelů klikněte na ikonu níže.", "PE.Views.Statusbar.tipUsers": "Dokument je aktuálně upravován několika uživateli.", "PE.Views.Statusbar.tipViewUsers": "View users and manage document access rights", @@ -660,9 +1163,7 @@ "PE.Views.TableSettings.textNewColor": "Vlastní barva", "PE.Views.TableSettings.textRows": "Řádky", "PE.Views.TableSettings.textSelectBorders": "Vyberte ohraničení, na které chcete použít styl vybraný výše.", - "PE.Views.TableSettings.textStandartColors": "Standardní barvy", "PE.Views.TableSettings.textTemplate": "Vybrat ze šablony", - "PE.Views.TableSettings.textThemeColors": "Barvy schématu", "PE.Views.TableSettings.textTotal": "Total", "PE.Views.TableSettings.tipAll": "Nastavit vnejší ohraničení a všechny vnitřní čáry", "PE.Views.TableSettings.tipBottom": "Nastavit pouze vnější spodní ohraničení", @@ -677,6 +1178,10 @@ "PE.Views.TableSettings.txtNoBorders": "Bez ohraničení", "PE.Views.TableSettingsAdvanced.cancelButtonText": "Zrušit", "PE.Views.TableSettingsAdvanced.okButtonText": "OK", + "PE.Views.TableSettingsAdvanced.textAlt": "Alternative Text", + "PE.Views.TableSettingsAdvanced.textAltDescription": "Description", + "PE.Views.TableSettingsAdvanced.textAltTip": "The alternative text-based representation of the visual object information, which will be read to the people with vision or cognitive impairments to help them better understand what information there is in the image, autoshape, chart or table.", + "PE.Views.TableSettingsAdvanced.textAltTitle": "Title", "PE.Views.TableSettingsAdvanced.textBottom": "Dole", "PE.Views.TableSettingsAdvanced.textCheckMargins": "Použít původní okraje", "PE.Views.TableSettingsAdvanced.textDefaultMargins": "Výchozí okraje", @@ -694,6 +1199,7 @@ "PE.Views.TextArtSettings.strSize": "Velikost", "PE.Views.TextArtSettings.strStroke": "Tloušťka", "PE.Views.TextArtSettings.strTransparency": "Průhlednost", + "PE.Views.TextArtSettings.strType": "Type", "PE.Views.TextArtSettings.textBorderSizeErr": "Zadaná hodnota není správná.
    Zadejte prosím hodnotu mezi 0 a 1584.", "PE.Views.TextArtSettings.textColor": "Vyplnit barvou", "PE.Views.TextArtSettings.textDirection": "Směr", @@ -709,12 +1215,10 @@ "PE.Views.TextArtSettings.textPatternFill": "Vzor", "PE.Views.TextArtSettings.textRadial": "Kruhový", "PE.Views.TextArtSettings.textSelectTexture": "Vybrat", - "PE.Views.TextArtSettings.textStandartColors": "Standardní barvy", "PE.Views.TextArtSettings.textStretch": "Roztáhnout", "PE.Views.TextArtSettings.textStyle": "Styl", "PE.Views.TextArtSettings.textTemplate": "Šablona", "PE.Views.TextArtSettings.textTexture": "Z textury", - "PE.Views.TextArtSettings.textThemeColors": "Barvy schématu", "PE.Views.TextArtSettings.textTile": "Dlaždice", "PE.Views.TextArtSettings.textTransform": "Transformovat", "PE.Views.TextArtSettings.txtBrownPaper": "Hnědý papír", @@ -750,6 +1254,7 @@ "PE.Views.Toolbar.textBar": "Pruhový graf", "PE.Views.Toolbar.textBold": "Tučně", "PE.Views.Toolbar.textCancel": "Zrušit", + "PE.Views.Toolbar.textCharts": "Charts", "PE.Views.Toolbar.textColumn": "Sloupcový graf", "PE.Views.Toolbar.textCompactView": "Zobrazit kompaktní lištu nástrojů", "PE.Views.Toolbar.textFitPage": "Fit Slide", @@ -771,18 +1276,21 @@ "PE.Views.Toolbar.textShapeAlignMiddle": "Zarovnat uprostřed", "PE.Views.Toolbar.textShapeAlignRight": "Zarovnat vpravo", "PE.Views.Toolbar.textShapeAlignTop": "Zarovnat nahoru", - "PE.Views.Toolbar.textStandartColors": "Standardní barvy", + "PE.Views.Toolbar.textShowBegin": "Show from Beginning", + "PE.Views.Toolbar.textShowCurrent": "Show from Current slide", + "PE.Views.Toolbar.textShowSettings": "Show Settings", "PE.Views.Toolbar.textStock": "Burzovní graf", "PE.Views.Toolbar.textStrikeout": "Přeškrtnout", "PE.Views.Toolbar.textSubscript": "Dolní index", "PE.Views.Toolbar.textSuperscript": "Horní index", - "PE.Views.Toolbar.textThemeColors": "Barvy schématu", + "PE.Views.Toolbar.textSurface": "Surface", "PE.Views.Toolbar.textTitleError": "Chyba", "PE.Views.Toolbar.textUnderline": "Podtržení", "PE.Views.Toolbar.textZoom": "Přiblížit", "PE.Views.Toolbar.tipAddSlide": "Přidat snímek", "PE.Views.Toolbar.tipAdvSettings": "Pokročilé nastavení", "PE.Views.Toolbar.tipBack": "Zpět", + "PE.Views.Toolbar.tipChangeChart": "Change Chart Type", "PE.Views.Toolbar.tipChangeSlide": "Change Slide Layout", "PE.Views.Toolbar.tipClearStyle": "Vymazat styl", "PE.Views.Toolbar.tipColorSchemas": "Změnit barevné schéma", @@ -796,6 +1304,7 @@ "PE.Views.Toolbar.tipHideBars": "Hide Title bar & Status bar", "PE.Views.Toolbar.tipIncPrLeft": "Zvětšit odsazení", "PE.Views.Toolbar.tipInsertChart": "Vložit graf", + "PE.Views.Toolbar.tipInsertEquation": "Insert Equation", "PE.Views.Toolbar.tipInsertHyperlink": "Přidat odkaz", "PE.Views.Toolbar.tipInsertImage": "Vložit obrázek", "PE.Views.Toolbar.tipInsertShape": "Vložit tvar", diff --git a/apps/presentationeditor/main/locale/de.json b/apps/presentationeditor/main/locale/de.json index c68b78536..afc437dbd 100644 --- a/apps/presentationeditor/main/locale/de.json +++ b/apps/presentationeditor/main/locale/de.json @@ -61,7 +61,7 @@ "Common.Views.Comments.textCancel": "Abbrechen", "Common.Views.Comments.textClose": "Schließen", "Common.Views.Comments.textComments": "Kommentare", - "Common.Views.Comments.textEdit": "Bearbeiten", + "Common.Views.Comments.textEdit": "OK", "Common.Views.Comments.textEnterCommentHint": "Geben Sie Ihren Kommentar hier ein", "Common.Views.Comments.textOpenAgain": "Erneut eröffnen", "Common.Views.Comments.textReply": "Antworten", @@ -192,12 +192,20 @@ "PE.Controllers.Main.txtButtons": "Buttons", "PE.Controllers.Main.txtCallouts": "Legenden", "PE.Controllers.Main.txtCharts": "Diagramme", + "PE.Controllers.Main.txtClipArt": "ClipArt", + "PE.Controllers.Main.txtDateTime": "Datum und Zeit", + "PE.Controllers.Main.txtDiagram": "SmartArt", "PE.Controllers.Main.txtDiagramTitle": "Diagrammtitel", "PE.Controllers.Main.txtEditingMode": "Bearbeitungsmodul festlegen...", "PE.Controllers.Main.txtFiguredArrows": "Geformte Pfeile", + "PE.Controllers.Main.txtFooter": "Fußzeile", + "PE.Controllers.Main.txtHeader": "Kopfzeile", + "PE.Controllers.Main.txtImage": "Bild", "PE.Controllers.Main.txtLines": "Linien", "PE.Controllers.Main.txtMath": "Mathematik", + "PE.Controllers.Main.txtMedia": "Medien", "PE.Controllers.Main.txtNeedSynchronize": "Änderungen wurden vorgenommen", + "PE.Controllers.Main.txtPicture": "Bild", "PE.Controllers.Main.txtRectangles": "Rechtecke", "PE.Controllers.Main.txtSeries": "Reihen", "PE.Controllers.Main.txtSldLtTBlank": "Leer", @@ -236,6 +244,10 @@ "PE.Controllers.Main.txtSldLtTVertTitleAndTx": "Vertikaler Titel und Text", "PE.Controllers.Main.txtSldLtTVertTitleAndTxOverChart": "Vertikaler Titel und Text über Diagramm", "PE.Controllers.Main.txtSldLtTVertTx": "Vertikaler Text", + "PE.Controllers.Main.txtSlideNumber": "Foliennummer", + "PE.Controllers.Main.txtSlideSubtitle": "Folienuntertitel", + "PE.Controllers.Main.txtSlideText": "Folientext", + "PE.Controllers.Main.txtSlideTitle": "Folientitel", "PE.Controllers.Main.txtStarsRibbons": "Sterne & Bänder", "PE.Controllers.Main.txtXAxis": "x-Achse", "PE.Controllers.Main.txtYAxis": "y-Achse", @@ -598,6 +610,7 @@ "PE.Views.ChartSettings.textSize": "Größe", "PE.Views.ChartSettings.textStock": "Bestand", "PE.Views.ChartSettings.textStyle": "Stil", + "PE.Views.ChartSettings.textSurface": "Oberfläche", "PE.Views.ChartSettings.textWidth": "Breite", "PE.Views.ChartSettingsAdvanced.cancelButtonText": "Abbrechen", "PE.Views.ChartSettingsAdvanced.okButtonText": "OK", @@ -669,7 +682,7 @@ "PE.Views.DocumentHolder.textShapeAlignRight": "Rechts ausrichten", "PE.Views.DocumentHolder.textShapeAlignTop": "Oben ausrichten", "PE.Views.DocumentHolder.textSlideSettings": "Folien-Einstellungen", - "PE.Views.DocumentHolder.textUndo": "Undo", + "PE.Views.DocumentHolder.textUndo": "Rückgängig machen", "PE.Views.DocumentHolder.tipIsLocked": "Dieses Element wird gerade von einem anderen Benutzer bearbeitet.", "PE.Views.DocumentHolder.txtAddBottom": "Unterer Rand hinzufügen", "PE.Views.DocumentHolder.txtAddFractionBar": "Bruchstrich einfügen", @@ -1270,6 +1283,7 @@ "PE.Views.Toolbar.textStrikeout": "Durchgestrichen", "PE.Views.Toolbar.textSubscript": "Tiefgestellt", "PE.Views.Toolbar.textSuperscript": "Hochgestellt", + "PE.Views.Toolbar.textSurface": "Oberfläche", "PE.Views.Toolbar.textTitleError": "Fehler", "PE.Views.Toolbar.textUnderline": "Unterstrichen", "PE.Views.Toolbar.textZoom": "Zoom", diff --git a/apps/presentationeditor/main/locale/en.json b/apps/presentationeditor/main/locale/en.json index 7780443f3..63063f84c 100644 --- a/apps/presentationeditor/main/locale/en.json +++ b/apps/presentationeditor/main/locale/en.json @@ -61,7 +61,7 @@ "Common.Views.Comments.textCancel": "Cancel", "Common.Views.Comments.textClose": "Close", "Common.Views.Comments.textComments": "Comments", - "Common.Views.Comments.textEdit": "Edit", + "Common.Views.Comments.textEdit": "OK", "Common.Views.Comments.textEnterCommentHint": "Enter your comment here", "Common.Views.Comments.textOpenAgain": "Open Again", "Common.Views.Comments.textReply": "Reply", @@ -203,12 +203,20 @@ "PE.Controllers.Main.txtButtons": "Buttons", "PE.Controllers.Main.txtCallouts": "Callouts", "PE.Controllers.Main.txtCharts": "Charts", + "PE.Controllers.Main.txtClipArt": "Clip Art", + "PE.Controllers.Main.txtDateTime": "Date and time", + "PE.Controllers.Main.txtDiagram": "SmartArt", "PE.Controllers.Main.txtDiagramTitle": "Chart Title", "PE.Controllers.Main.txtEditingMode": "Set editing mode...", "PE.Controllers.Main.txtFiguredArrows": "Figured Arrows", + "PE.Controllers.Main.txtFooter": "Footer", + "PE.Controllers.Main.txtHeader": "Header", + "PE.Controllers.Main.txtImage": "Image", "PE.Controllers.Main.txtLines": "Lines", "PE.Controllers.Main.txtMath": "Math", + "PE.Controllers.Main.txtMedia": "Media", "PE.Controllers.Main.txtNeedSynchronize": "You have updates", + "PE.Controllers.Main.txtPicture": "Picture", "PE.Controllers.Main.txtRectangles": "Rectangles", "PE.Controllers.Main.txtSeries": "Series", "PE.Controllers.Main.txtSldLtTBlank": "Blank", @@ -247,6 +255,10 @@ "PE.Controllers.Main.txtSldLtTVertTitleAndTx": "Vertical Title and Text", "PE.Controllers.Main.txtSldLtTVertTitleAndTxOverChart": "Vertical Title and Text Over Chart", "PE.Controllers.Main.txtSldLtTVertTx": "Vertical Text", + "PE.Controllers.Main.txtSlideNumber": "Slide number", + "PE.Controllers.Main.txtSlideSubtitle": "Slide subtitle", + "PE.Controllers.Main.txtSlideText": "Slide text", + "PE.Controllers.Main.txtSlideTitle": "Slide title", "PE.Controllers.Main.txtStarsRibbons": "Stars & Ribbons", "PE.Controllers.Main.txtXAxis": "X Axis", "PE.Controllers.Main.txtYAxis": "Y Axis", @@ -262,18 +274,6 @@ "PE.Controllers.Main.warnLicenseExp": "Your license has expired.
    Please update your license and refresh the page.", "PE.Controllers.Main.warnNoLicense": "You are using an open source version of ONLYOFFICE. The version has limitations for concurrent connections to the document server (20 connections at a time).
    If you need more please consider purchasing a commercial license.", "PE.Controllers.Main.warnProcessRightsChange": "You have been denied the right to edit the file.", - "PE.Controllers.Main.txtSlideText": "Slide text", - "PE.Controllers.Main.txtClipArt": "Clip Art", - "PE.Controllers.Main.txtDiagram": "Diagram", - "PE.Controllers.Main.txtDateTime": "Date and time", - "PE.Controllers.Main.txtFooter": "Footer", - "PE.Controllers.Main.txtHeader": "Header", - "PE.Controllers.Main.txtMedia": "Media", - "PE.Controllers.Main.txtPicture": "Picture", - "PE.Controllers.Main.txtImage": "Image", - "PE.Controllers.Main.txtSlideNumber": "Slide number", - "PE.Controllers.Main.txtSlideSubtitle": "Slide subtitle", - "PE.Controllers.Main.txtSlideTitle": "Slide title", "PE.Controllers.Statusbar.zoomText": "Zoom {0}%", "PE.Controllers.Toolbar.confirmAddFontName": "The font you are going to save is not available on the current device.
    The text style will be displayed using one of the system fonts, the saved font will be used when it is available.
    Do you want to continue?", "PE.Controllers.Toolbar.textAccent": "Accents", @@ -621,6 +621,7 @@ "PE.Views.ChartSettings.textSize": "Size", "PE.Views.ChartSettings.textStock": "Stock", "PE.Views.ChartSettings.textStyle": "Style", + "PE.Views.ChartSettings.textSurface": "Surface", "PE.Views.ChartSettings.textWidth": "Width", "PE.Views.ChartSettingsAdvanced.cancelButtonText": "Cancel", "PE.Views.ChartSettingsAdvanced.okButtonText": "Ok", @@ -692,6 +693,7 @@ "PE.Views.DocumentHolder.textShapeAlignRight": "Align Right", "PE.Views.DocumentHolder.textShapeAlignTop": "Align Top", "PE.Views.DocumentHolder.textSlideSettings": "Slide Settings", + "PE.Views.DocumentHolder.textUndo": "Undo", "PE.Views.DocumentHolder.tipIsLocked": "This element is currently being edited by another user.", "PE.Views.DocumentHolder.txtAddBottom": "Add bottom border", "PE.Views.DocumentHolder.txtAddFractionBar": "Add fraction bar", @@ -779,7 +781,6 @@ "PE.Views.DocumentHolder.txtUnderbar": "Bar under text", "PE.Views.DocumentHolder.txtUngroup": "Ungroup", "PE.Views.DocumentHolder.vertAlignText": "Vertical Alignment", - "PE.Views.DocumentHolder.textUndo": "Undo", "PE.Views.DocumentPreview.goToSlideText": "Go to Slide", "PE.Views.DocumentPreview.slideIndexText": "Slide {0} of {1}", "PE.Views.DocumentPreview.txtClose": "Close Slideshow", @@ -1293,6 +1294,7 @@ "PE.Views.Toolbar.textStrikeout": "Strikeout", "PE.Views.Toolbar.textSubscript": "Subscript", "PE.Views.Toolbar.textSuperscript": "Superscript", + "PE.Views.Toolbar.textSurface": "Surface", "PE.Views.Toolbar.textTitleError": "Error", "PE.Views.Toolbar.textUnderline": "Underline", "PE.Views.Toolbar.textZoom": "Zoom", diff --git a/apps/presentationeditor/main/locale/es.json b/apps/presentationeditor/main/locale/es.json index 93eb746c4..0e68f3387 100644 --- a/apps/presentationeditor/main/locale/es.json +++ b/apps/presentationeditor/main/locale/es.json @@ -47,7 +47,7 @@ "Common.Views.About.txtLicensee": "LICENCIATARIO ", "Common.Views.About.txtLicensor": "LICENCIANTE", "Common.Views.About.txtMail": "email: ", - "Common.Views.About.txtPoweredBy": "Impulsado por", + "Common.Views.About.txtPoweredBy": "Desarrollado por", "Common.Views.About.txtTel": "tel.: ", "Common.Views.About.txtVersion": "Versión ", "Common.Views.AdvancedSettingsWindow.cancelButtonText": "Cancelar", @@ -61,7 +61,7 @@ "Common.Views.Comments.textCancel": "Cancelar", "Common.Views.Comments.textClose": "Cerrar", "Common.Views.Comments.textComments": "Comentarios", - "Common.Views.Comments.textEdit": "Editar", + "Common.Views.Comments.textEdit": "OK", "Common.Views.Comments.textEnterCommentHint": "Introduzca su comentario aquí", "Common.Views.Comments.textOpenAgain": "Abrir de nuevo", "Common.Views.Comments.textReply": "Responder", @@ -192,12 +192,20 @@ "PE.Controllers.Main.txtButtons": "Botones", "PE.Controllers.Main.txtCallouts": "Llamadas", "PE.Controllers.Main.txtCharts": "Gráficos", + "PE.Controllers.Main.txtClipArt": "Clip Art", + "PE.Controllers.Main.txtDateTime": "Fecha y hora", + "PE.Controllers.Main.txtDiagram": "SmartArt", "PE.Controllers.Main.txtDiagramTitle": "Título del gráfico", "PE.Controllers.Main.txtEditingMode": "Establecer el modo de edición...", "PE.Controllers.Main.txtFiguredArrows": "Formas de flecha", + "PE.Controllers.Main.txtFooter": "Pie de página", + "PE.Controllers.Main.txtHeader": "Encabezado", + "PE.Controllers.Main.txtImage": "Imagen", "PE.Controllers.Main.txtLines": "Líneas", "PE.Controllers.Main.txtMath": "Matemáticas", + "PE.Controllers.Main.txtMedia": "Medios", "PE.Controllers.Main.txtNeedSynchronize": "Usted tiene actualizaciones", + "PE.Controllers.Main.txtPicture": "Imagen", "PE.Controllers.Main.txtRectangles": "Rectángulos", "PE.Controllers.Main.txtSeries": "Serie", "PE.Controllers.Main.txtSldLtTBlank": "En blanco", @@ -236,6 +244,10 @@ "PE.Controllers.Main.txtSldLtTVertTitleAndTx": "Título vertical y texto", "PE.Controllers.Main.txtSldLtTVertTitleAndTxOverChart": "Título vertical y texto encima de gráfico", "PE.Controllers.Main.txtSldLtTVertTx": "Texto vertical", + "PE.Controllers.Main.txtSlideNumber": "Número de diapositiva", + "PE.Controllers.Main.txtSlideSubtitle": "Subtítulo de diapositiva", + "PE.Controllers.Main.txtSlideText": "Texto de diapositiva", + "PE.Controllers.Main.txtSlideTitle": "Título de diapositiva", "PE.Controllers.Main.txtStarsRibbons": "Cintas y estrellas", "PE.Controllers.Main.txtXAxis": "Eje X", "PE.Controllers.Main.txtYAxis": "Eje Y", @@ -598,6 +610,7 @@ "PE.Views.ChartSettings.textSize": "Tamaño", "PE.Views.ChartSettings.textStock": "De cotizaciones", "PE.Views.ChartSettings.textStyle": "Estilo", + "PE.Views.ChartSettings.textSurface": "Superficie", "PE.Views.ChartSettings.textWidth": "Ancho", "PE.Views.ChartSettingsAdvanced.cancelButtonText": "Cancelar", "PE.Views.ChartSettingsAdvanced.okButtonText": "OK", @@ -622,8 +635,8 @@ "PE.Views.DocumentHolder.deleteRowText": "Borrar fila", "PE.Views.DocumentHolder.deleteTableText": "Borrar tabla", "PE.Views.DocumentHolder.deleteText": "Borrar", - "PE.Views.DocumentHolder.direct270Text": "Girar a 270°", - "PE.Views.DocumentHolder.direct90Text": "Girar a 90°", + "PE.Views.DocumentHolder.direct270Text": "Girar texto hacia arriba", + "PE.Views.DocumentHolder.direct90Text": "Girar texto hacia abajo", "PE.Views.DocumentHolder.directHText": "Horizontal ", "PE.Views.DocumentHolder.directionText": "Dirección de texto", "PE.Views.DocumentHolder.editChartText": "Editar datos", @@ -1270,6 +1283,7 @@ "PE.Views.Toolbar.textStrikeout": "Tachado", "PE.Views.Toolbar.textSubscript": "Subíndice", "PE.Views.Toolbar.textSuperscript": "Sobreíndice", + "PE.Views.Toolbar.textSurface": "Superficie", "PE.Views.Toolbar.textTitleError": "Error", "PE.Views.Toolbar.textUnderline": "Subrayar", "PE.Views.Toolbar.textZoom": "Zoom", diff --git a/apps/presentationeditor/main/locale/fr.json b/apps/presentationeditor/main/locale/fr.json index 73f8eb61e..1a4534215 100644 --- a/apps/presentationeditor/main/locale/fr.json +++ b/apps/presentationeditor/main/locale/fr.json @@ -61,7 +61,7 @@ "Common.Views.Comments.textCancel": "Annuler", "Common.Views.Comments.textClose": "Fermer", "Common.Views.Comments.textComments": "Commentaires", - "Common.Views.Comments.textEdit": "Modifier", + "Common.Views.Comments.textEdit": "OK", "Common.Views.Comments.textEnterCommentHint": "Entrez votre commentaire ici", "Common.Views.Comments.textOpenAgain": "Ouvrir à nouveau", "Common.Views.Comments.textReply": "Répondre", diff --git a/apps/presentationeditor/main/locale/it.json b/apps/presentationeditor/main/locale/it.json index 01ead96dc..755b8e6bc 100644 --- a/apps/presentationeditor/main/locale/it.json +++ b/apps/presentationeditor/main/locale/it.json @@ -56,7 +56,7 @@ "Common.Views.Comments.textCancel": "Annulla", "Common.Views.Comments.textClose": "Chiudi", "Common.Views.Comments.textComments": "Commenti", - "Common.Views.Comments.textEdit": "Modifica", + "Common.Views.Comments.textEdit": "OK", "Common.Views.Comments.textEnterCommentHint": "Inserisci commento qui", "Common.Views.Comments.textOpenAgain": "Apri di nuovo", "Common.Views.Comments.textReply": "Rispondi", diff --git a/apps/presentationeditor/main/locale/pt.json b/apps/presentationeditor/main/locale/pt.json index 24eb50a0f..a48e4abf4 100644 --- a/apps/presentationeditor/main/locale/pt.json +++ b/apps/presentationeditor/main/locale/pt.json @@ -23,10 +23,13 @@ "Common.UI.SearchDialog.textTitle": "Pesquisar", "Common.UI.SearchDialog.textTitle2": "Pesquisar", "Common.UI.SearchDialog.textWholeWords": "Palavras inteiras apenas", + "Common.UI.SearchDialog.txtBtnHideReplace": "Hide Replace", "Common.UI.SearchDialog.txtBtnReplace": "Substituir", "Common.UI.SearchDialog.txtBtnReplaceAll": "Substituir tudo", "Common.UI.SynchronizeTip.textDontShow": "Não exibir esta mensagem novamente", "Common.UI.SynchronizeTip.textSynchronize": "O documento foi alterado por outro usuário.
    Clique para salvar suas alterações e recarregar as atualizações.", + "Common.UI.ThemeColorPalette.textStandartColors": "Standard Colors", + "Common.UI.ThemeColorPalette.textThemeColors": "Theme Colors", "Common.UI.Window.cancelButtonText": "Cancelar", "Common.UI.Window.closeButtonText": "Fechar", "Common.UI.Window.noButtonText": "Não", @@ -37,6 +40,8 @@ "Common.UI.Window.textInformation": "Informações", "Common.UI.Window.textWarning": "Aviso", "Common.UI.Window.yesButtonText": "Sim", + "Common.Utils.Metric.txtCm": "cm", + "Common.Utils.Metric.txtPt": "pt", "Common.Views.About.txtAddress": "endereço:", "Common.Views.About.txtAscAddress": "Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021", "Common.Views.About.txtLicensee": "LICENÇA", @@ -75,6 +80,7 @@ "Common.Views.ExternalDiagramEditor.textTitle": "Editor de gráfico", "Common.Views.Header.openNewTabText": "Open in New Tab", "Common.Views.Header.textBack": "Ir para Documentos", + "Common.Views.Header.txtRename": "Rename", "Common.Views.ImageFromUrlDialog.cancelButtonText": "Cancelar", "Common.Views.ImageFromUrlDialog.okButtonText": "OK", "Common.Views.ImageFromUrlDialog.textUrl": "Colar uma URL de imagem:", @@ -88,12 +94,28 @@ "Common.Views.InsertTableDialog.txtMinText": "O valor mínimo para este campo é {0}.", "Common.Views.InsertTableDialog.txtRows": "Número de linhas", "Common.Views.InsertTableDialog.txtTitle": "Tamanho da tabela", + "Common.Views.LanguageDialog.btnCancel": "Cancel", + "Common.Views.LanguageDialog.btnOk": "Ok", + "Common.Views.LanguageDialog.labelSelect": "Select document language", + "Common.Views.OpenDialog.cancelButtonText": "Cancel", + "Common.Views.OpenDialog.okButtonText": "OK", + "Common.Views.OpenDialog.txtEncoding": "Encoding ", + "Common.Views.OpenDialog.txtPassword": "Password", + "Common.Views.OpenDialog.txtTitle": "Choose %1 options", + "Common.Views.OpenDialog.txtTitleProtected": "Protected File", + "Common.Views.PluginDlg.textLoading": "Loading", + "Common.Views.Plugins.strPlugins": "Plugins", + "Common.Views.Plugins.textLoading": "Loading", + "Common.Views.Plugins.textStart": "Start", + "Common.Views.RenameDialog.cancelButtonText": "Cancel", + "Common.Views.RenameDialog.okButtonText": "Ok", + "Common.Views.RenameDialog.textName": "File name", + "Common.Views.RenameDialog.txtInvalidName": "The file name cannot contain any of the following characters: ", "PE.Controllers.LeftMenu.newDocumentTitle": "Apresentação sem nome", "PE.Controllers.LeftMenu.requestEditRightsText": "Solicitando direitos de edição...", "PE.Controllers.LeftMenu.textNoTextFound": "Os dados que você tem estado procurando não podem ser encontrados. Ajuste suas opções de pesquisa.", "PE.Controllers.Main.applyChangesTextText": "Carregando dados...", "PE.Controllers.Main.applyChangesTitleText": "Carregando dados", - "PE.Controllers.Main.convertationErrorText": "Conversão falhou.", "PE.Controllers.Main.convertationTimeoutText": "Tempo limite de conversão excedido.", "PE.Controllers.Main.criticalErrorExtText": "Pressione \"OK\" para voltar para a lista de documentos.", "PE.Controllers.Main.criticalErrorTitle": "Erro", @@ -101,6 +123,8 @@ "PE.Controllers.Main.downloadErrorText": "Download falhou.", "PE.Controllers.Main.downloadTextText": "Baixando apresentação...", "PE.Controllers.Main.downloadTitleText": "Baixando apresentação", + "PE.Controllers.Main.errorAccessDeny": "You are trying to perform an action you do not have rights for.
    Please contact your Document Server administrator.", + "PE.Controllers.Main.errorBadImageUrl": "Image URL is incorrect", "PE.Controllers.Main.errorCoAuthoringDisconnect": "Conexão com servidor perdida. O documento não pode ser editado neste momento.", "PE.Controllers.Main.errorConnectToServer": "The document could not be saved. Please check connection settings or contact your administrator.
    When you click the 'OK' button, you will be prompted to download the document.

    Find more information about connecting Document Server here", "PE.Controllers.Main.errorDatabaseConnection": "Erro externo.
    Erro de conexão ao banco de dados. Entre em contato com o suporte caso o erro persista.", @@ -110,10 +134,17 @@ "PE.Controllers.Main.errorKeyEncrypt": "Descritor de chave desconhecido", "PE.Controllers.Main.errorKeyExpire": "Descritor de chave expirado", "PE.Controllers.Main.errorProcessSaveResult": "Salvamento falhou.", + "PE.Controllers.Main.errorServerVersion": "The editor version has been updated. The page will be reloaded to apply the changes.", + "PE.Controllers.Main.errorSessionAbsolute": "The document editing session has expired. Please reload the page.", + "PE.Controllers.Main.errorSessionIdle": "The document has not been edited for quite a long time. Please reload the page.", + "PE.Controllers.Main.errorSessionToken": "The connection to the server has been interrupted. Please reload the page.", "PE.Controllers.Main.errorStockChart": "Ordem da linha incorreta. Para criar um gráfico de ações coloque os dados na planilha na seguinte ordem:
    preço de abertura, preço máx., preço mín., preço de fechamento.", + "PE.Controllers.Main.errorToken": "The document security token is not correctly formed.
    Please contact your Document Server administrator.", + "PE.Controllers.Main.errorTokenExpire": "The document security token has expired.
    Please contact your Document Server administrator.", "PE.Controllers.Main.errorUpdateVersion": "A versão do arquivo foi alterada. A página será recarregada.", "PE.Controllers.Main.errorUserDrop": "O arquivo não pode ser acessado agora.", "PE.Controllers.Main.errorUsersExceed": "O número de usuários permitidos pelo plano de preços foi excedido", + "PE.Controllers.Main.errorViewerDisconnect": "Connection is lost. You can still view the document,
    but will not be able to download or print until the connection is restored.", "PE.Controllers.Main.leavePageText": "Você não salvou as alterações nesta apresentação. Clique em \"Permanecer nesta página\", em seguida em \"Salvar\" para salvá-las. Clique em \"Sair desta página\" para descartar todas as alterações não salvas.", "PE.Controllers.Main.loadFontsTextText": "Carregando dados...", "PE.Controllers.Main.loadFontsTitleText": "Carregando dados", @@ -128,6 +159,7 @@ "PE.Controllers.Main.loadThemeTextText": "Carregando temas...", "PE.Controllers.Main.loadThemeTitleText": "Carregando tema", "PE.Controllers.Main.notcriticalErrorTitle": "Aviso", + "PE.Controllers.Main.openErrorText": "An error has occurred while opening the file", "PE.Controllers.Main.openTextText": "Abrindo apresentação...", "PE.Controllers.Main.openTitleText": "Abrindo apresentação", "PE.Controllers.Main.printTextText": "Imprimindo apresentação...", @@ -135,6 +167,7 @@ "PE.Controllers.Main.reloadButtonText": "Recarregar página", "PE.Controllers.Main.requestEditFailedMessageText": "Alguém está editando esta apresentação neste momento. Tente novamente mais tarde.", "PE.Controllers.Main.requestEditFailedTitleText": "Acesso negado", + "PE.Controllers.Main.saveErrorText": "An error has occurred while saving the file", "PE.Controllers.Main.savePreparingText": "Preparando para salvar", "PE.Controllers.Main.savePreparingTitle": "Preparando para salvar. Aguarde...", "PE.Controllers.Main.saveTextText": "Salvando apresentação...", @@ -143,22 +176,36 @@ "PE.Controllers.Main.splitMaxColsErrorText": "O número de colunas deve ser inferior a %1.", "PE.Controllers.Main.splitMaxRowsErrorText": "O número de linhas deve ser inferior a %1.", "PE.Controllers.Main.textAnonymous": "Anônimo", + "PE.Controllers.Main.textBuyNow": "Visit website", + "PE.Controllers.Main.textChangesSaved": "All changes saved", "PE.Controllers.Main.textCloseTip": "Clique para fechar a dica", + "PE.Controllers.Main.textContactUs": "Contact sales", "PE.Controllers.Main.textLoadingDocument": "Carregando apresentação", + "PE.Controllers.Main.textNoLicenseTitle": "ONLYOFFICE open source version", "PE.Controllers.Main.textShape": "Forma", "PE.Controllers.Main.textStrict": "Strict mode", "PE.Controllers.Main.textTryUndoRedo": "The Undo/Redo functions are disabled for the Fast co-editing mode.
    Click the 'Strict mode' button to switch to the Strict co-editing mode to edit the file without other users interference and send your changes only after you save them. You can switch between the co-editing modes using the editor Advanced settings.", + "PE.Controllers.Main.titleLicenseExp": "License expired", + "PE.Controllers.Main.titleServerVersion": "Editor updated", "PE.Controllers.Main.txtArt": "Your text here", "PE.Controllers.Main.txtBasicShapes": "Formas básicas", "PE.Controllers.Main.txtButtons": "Botões", "PE.Controllers.Main.txtCallouts": "Textos explicativos", "PE.Controllers.Main.txtCharts": "Gráficos", + "PE.Controllers.Main.txtClipArt": "Clip Art", + "PE.Controllers.Main.txtDateTime": "Date and time", + "PE.Controllers.Main.txtDiagram": "SmartArt", "PE.Controllers.Main.txtDiagramTitle": "Título do diagrama", "PE.Controllers.Main.txtEditingMode": "Definir modo de edição...", "PE.Controllers.Main.txtFiguredArrows": "Setas figuradas", + "PE.Controllers.Main.txtFooter": "Footer", + "PE.Controllers.Main.txtHeader": "Header", + "PE.Controllers.Main.txtImage": "Image", "PE.Controllers.Main.txtLines": "Linhas", "PE.Controllers.Main.txtMath": "Matemática", + "PE.Controllers.Main.txtMedia": "Media", "PE.Controllers.Main.txtNeedSynchronize": "Você tem atualizações", + "PE.Controllers.Main.txtPicture": "Picture", "PE.Controllers.Main.txtRectangles": "Retângulos", "PE.Controllers.Main.txtSeries": "Série", "PE.Controllers.Main.txtSldLtTBlank": "Branco", @@ -197,6 +244,10 @@ "PE.Controllers.Main.txtSldLtTVertTitleAndTx": "Título vertical e Texto", "PE.Controllers.Main.txtSldLtTVertTitleAndTxOverChart": "Título vertical e Texto sobre gráfico", "PE.Controllers.Main.txtSldLtTVertTx": "Texto vertical", + "PE.Controllers.Main.txtSlideNumber": "Slide number", + "PE.Controllers.Main.txtSlideSubtitle": "Slide subtitle", + "PE.Controllers.Main.txtSlideText": "Slide text", + "PE.Controllers.Main.txtSlideTitle": "Slide title", "PE.Controllers.Main.txtStarsRibbons": "Estrelas e Arco-íris", "PE.Controllers.Main.txtXAxis": "Eixo X", "PE.Controllers.Main.txtYAxis": "Eixo Y", @@ -209,12 +260,343 @@ "PE.Controllers.Main.uploadImageTitleText": "Carregando imagem", "PE.Controllers.Main.warnBrowserIE9": "O aplicativo tem baixa capacidade no IE9. Usar IE10 ou superior", "PE.Controllers.Main.warnBrowserZoom": "A configuração de zoom atual de seu navegador não é completamente suportada. Redefina para o zoom padrão pressionando Ctrl+0.", + "PE.Controllers.Main.warnLicenseExp": "Your license has expired.
    Please update your license and refresh the page.", + "PE.Controllers.Main.warnNoLicense": "You are using an open source version of ONLYOFFICE. The version has limitations for concurrent connections to the document server (20 connections at a time).
    If you need more please consider purchasing a commercial license.", "PE.Controllers.Main.warnProcessRightsChange": "Foi negado a você o direito de editar o arquivo.", "PE.Controllers.Statusbar.zoomText": "Zoom {0}%", "PE.Controllers.Toolbar.confirmAddFontName": "The font you are going to save is not available on the current device.
    The text style will be displayed using one of the device fonts, the saved font will be used when it is available.
    Do you want to continue?", + "PE.Controllers.Toolbar.textAccent": "Accents", + "PE.Controllers.Toolbar.textBracket": "Brackets", "PE.Controllers.Toolbar.textEmptyImgUrl": "Você precisa especificar uma URL de imagem.", "PE.Controllers.Toolbar.textFontSizeErr": "O valor inserido está incorreto.
    Insira um valor numérico entre 1 e 100", + "PE.Controllers.Toolbar.textFraction": "Fractions", + "PE.Controllers.Toolbar.textFunction": "Functions", + "PE.Controllers.Toolbar.textIntegral": "Integrals", + "PE.Controllers.Toolbar.textLargeOperator": "Large Operators", + "PE.Controllers.Toolbar.textLimitAndLog": "Limits And Logarithms", + "PE.Controllers.Toolbar.textMatrix": "Matrices", + "PE.Controllers.Toolbar.textOperator": "Operators", + "PE.Controllers.Toolbar.textRadical": "Radicals", + "PE.Controllers.Toolbar.textScript": "Scripts", + "PE.Controllers.Toolbar.textSymbols": "Symbols", "PE.Controllers.Toolbar.textWarning": "Aviso", + "PE.Controllers.Toolbar.txtAccent_Accent": "Acute", + "PE.Controllers.Toolbar.txtAccent_ArrowD": "Right-Left Arrow Above", + "PE.Controllers.Toolbar.txtAccent_ArrowL": "Leftwards Arrow Above", + "PE.Controllers.Toolbar.txtAccent_ArrowR": "Rightwards Arrow Above", + "PE.Controllers.Toolbar.txtAccent_Bar": "Bar", + "PE.Controllers.Toolbar.txtAccent_BarBot": "Underbar", + "PE.Controllers.Toolbar.txtAccent_BarTop": "Overbar", + "PE.Controllers.Toolbar.txtAccent_BorderBox": "Boxed Formula (With Placeholder)", + "PE.Controllers.Toolbar.txtAccent_BorderBoxCustom": "Boxed Formula(Example)", + "PE.Controllers.Toolbar.txtAccent_Check": "Check", + "PE.Controllers.Toolbar.txtAccent_CurveBracketBot": "Underbrace", + "PE.Controllers.Toolbar.txtAccent_CurveBracketTop": "Overbrace", + "PE.Controllers.Toolbar.txtAccent_Custom_1": "Vector A", + "PE.Controllers.Toolbar.txtAccent_Custom_2": "ABC With Overbar", + "PE.Controllers.Toolbar.txtAccent_Custom_3": "x XOR y With Overbar", + "PE.Controllers.Toolbar.txtAccent_DDDot": "Triple Dot", + "PE.Controllers.Toolbar.txtAccent_DDot": "Double Dot", + "PE.Controllers.Toolbar.txtAccent_Dot": "Dot", + "PE.Controllers.Toolbar.txtAccent_DoubleBar": "Double Overbar", + "PE.Controllers.Toolbar.txtAccent_Grave": "Grave", + "PE.Controllers.Toolbar.txtAccent_GroupBot": "Grouping Character Below", + "PE.Controllers.Toolbar.txtAccent_GroupTop": "Grouping Character Above", + "PE.Controllers.Toolbar.txtAccent_HarpoonL": "Leftwards Harpoon Above", + "PE.Controllers.Toolbar.txtAccent_HarpoonR": "Rightwards Harpoon Above", + "PE.Controllers.Toolbar.txtAccent_Hat": "Hat", + "PE.Controllers.Toolbar.txtAccent_Smile": "Breve", + "PE.Controllers.Toolbar.txtAccent_Tilde": "Tilde", + "PE.Controllers.Toolbar.txtBracket_Angle": "Brackets", + "PE.Controllers.Toolbar.txtBracket_Angle_Delimiter_2": "Brackets with Separators", + "PE.Controllers.Toolbar.txtBracket_Angle_Delimiter_3": "Brackets with Separators", + "PE.Controllers.Toolbar.txtBracket_Angle_NoneOpen": "Single Bracket", + "PE.Controllers.Toolbar.txtBracket_Angle_OpenNone": "Single Bracket", + "PE.Controllers.Toolbar.txtBracket_Curve": "Brackets", + "PE.Controllers.Toolbar.txtBracket_Curve_Delimiter_2": "Brackets with Separators", + "PE.Controllers.Toolbar.txtBracket_Curve_NoneOpen": "Single Bracket", + "PE.Controllers.Toolbar.txtBracket_Curve_OpenNone": "Single Bracket", + "PE.Controllers.Toolbar.txtBracket_Custom_1": "Cases (Two Conditions)", + "PE.Controllers.Toolbar.txtBracket_Custom_2": "Cases (Three Conditions)", + "PE.Controllers.Toolbar.txtBracket_Custom_3": "Stack Object", + "PE.Controllers.Toolbar.txtBracket_Custom_4": "Stack Object", + "PE.Controllers.Toolbar.txtBracket_Custom_5": "Cases Example", + "PE.Controllers.Toolbar.txtBracket_Custom_6": "Binomial Coefficient", + "PE.Controllers.Toolbar.txtBracket_Custom_7": "Binomial Coefficient", + "PE.Controllers.Toolbar.txtBracket_Line": "Brackets", + "PE.Controllers.Toolbar.txtBracket_Line_NoneOpen": "Single Bracket", + "PE.Controllers.Toolbar.txtBracket_Line_OpenNone": "Single Bracket", + "PE.Controllers.Toolbar.txtBracket_LineDouble": "Brackets", + "PE.Controllers.Toolbar.txtBracket_LineDouble_NoneOpen": "Single Bracket", + "PE.Controllers.Toolbar.txtBracket_LineDouble_OpenNone": "Single Bracket", + "PE.Controllers.Toolbar.txtBracket_LowLim": "Brackets", + "PE.Controllers.Toolbar.txtBracket_LowLim_NoneNone": "Single Bracket", + "PE.Controllers.Toolbar.txtBracket_LowLim_OpenNone": "Single Bracket", + "PE.Controllers.Toolbar.txtBracket_Round": "Brackets", + "PE.Controllers.Toolbar.txtBracket_Round_Delimiter_2": "Brackets with Separators", + "PE.Controllers.Toolbar.txtBracket_Round_NoneOpen": "Single Bracket", + "PE.Controllers.Toolbar.txtBracket_Round_OpenNone": "Single Bracket", + "PE.Controllers.Toolbar.txtBracket_Square": "Brackets", + "PE.Controllers.Toolbar.txtBracket_Square_CloseClose": "Brackets", + "PE.Controllers.Toolbar.txtBracket_Square_CloseOpen": "Brackets", + "PE.Controllers.Toolbar.txtBracket_Square_NoneOpen": "Single Bracket", + "PE.Controllers.Toolbar.txtBracket_Square_OpenNone": "Single Bracket", + "PE.Controllers.Toolbar.txtBracket_Square_OpenOpen": "Brackets", + "PE.Controllers.Toolbar.txtBracket_SquareDouble": "Brackets", + "PE.Controllers.Toolbar.txtBracket_SquareDouble_NoneOpen": "Single Bracket", + "PE.Controllers.Toolbar.txtBracket_SquareDouble_OpenNone": "Single Bracket", + "PE.Controllers.Toolbar.txtBracket_UppLim": "Brackets", + "PE.Controllers.Toolbar.txtBracket_UppLim_NoneOpen": "Single Bracket", + "PE.Controllers.Toolbar.txtBracket_UppLim_OpenNone": "Single Bracket", + "PE.Controllers.Toolbar.txtFractionDiagonal": "Skewed Fraction", + "PE.Controllers.Toolbar.txtFractionDifferential_1": "Differential", + "PE.Controllers.Toolbar.txtFractionDifferential_2": "Differential", + "PE.Controllers.Toolbar.txtFractionDifferential_3": "Differential", + "PE.Controllers.Toolbar.txtFractionDifferential_4": "Differential", + "PE.Controllers.Toolbar.txtFractionHorizontal": "Linear Fraction", + "PE.Controllers.Toolbar.txtFractionPi_2": "Pi Over 2", + "PE.Controllers.Toolbar.txtFractionSmall": "Small Fraction", + "PE.Controllers.Toolbar.txtFractionVertical": "Stacked Fraction", + "PE.Controllers.Toolbar.txtFunction_1_Cos": "Inverse Cosine Function", + "PE.Controllers.Toolbar.txtFunction_1_Cosh": "Hyperbolic Inverse Cosine Function", + "PE.Controllers.Toolbar.txtFunction_1_Cot": "Inverse Cotangent Function", + "PE.Controllers.Toolbar.txtFunction_1_Coth": "Hyperbolic Inverse Cotangent Function", + "PE.Controllers.Toolbar.txtFunction_1_Csc": "Inverse Cosecant Function", + "PE.Controllers.Toolbar.txtFunction_1_Csch": "Hyperbolic Inverse Cosecant Function", + "PE.Controllers.Toolbar.txtFunction_1_Sec": "Inverse Secant Function", + "PE.Controllers.Toolbar.txtFunction_1_Sech": "Hyperbolic Inverse Secant Function", + "PE.Controllers.Toolbar.txtFunction_1_Sin": "Inverse Sine Function", + "PE.Controllers.Toolbar.txtFunction_1_Sinh": "Hyperbolic Inverse Sine Function", + "PE.Controllers.Toolbar.txtFunction_1_Tan": "Inverse Tangent Function", + "PE.Controllers.Toolbar.txtFunction_1_Tanh": "Hyperbolic Inverse Tangent Function", + "PE.Controllers.Toolbar.txtFunction_Cos": "Cosine Function", + "PE.Controllers.Toolbar.txtFunction_Cosh": "Hyperbolic Cosine Function", + "PE.Controllers.Toolbar.txtFunction_Cot": "Cotangent Function", + "PE.Controllers.Toolbar.txtFunction_Coth": "Hyperbolic Cotangent Function", + "PE.Controllers.Toolbar.txtFunction_Csc": "Cosecant Function", + "PE.Controllers.Toolbar.txtFunction_Csch": "Hyperbolic Cosecant Function", + "PE.Controllers.Toolbar.txtFunction_Custom_1": "Sine theta", + "PE.Controllers.Toolbar.txtFunction_Custom_2": "Cos 2x", + "PE.Controllers.Toolbar.txtFunction_Custom_3": "Tangent formula", + "PE.Controllers.Toolbar.txtFunction_Sec": "Secant Function", + "PE.Controllers.Toolbar.txtFunction_Sech": "Hyperbolic Secant Function", + "PE.Controllers.Toolbar.txtFunction_Sin": "Sine Function", + "PE.Controllers.Toolbar.txtFunction_Sinh": "Hyperbolic Sine Function", + "PE.Controllers.Toolbar.txtFunction_Tan": "Tangent Function", + "PE.Controllers.Toolbar.txtFunction_Tanh": "Hyperbolic Tangent Function", + "PE.Controllers.Toolbar.txtIntegral": "Integral", + "PE.Controllers.Toolbar.txtIntegral_dtheta": "Differential theta", + "PE.Controllers.Toolbar.txtIntegral_dx": "Differential x", + "PE.Controllers.Toolbar.txtIntegral_dy": "Differential y", + "PE.Controllers.Toolbar.txtIntegralCenterSubSup": "Integral", + "PE.Controllers.Toolbar.txtIntegralDouble": "Double Integral", + "PE.Controllers.Toolbar.txtIntegralDoubleCenterSubSup": "Double Integral", + "PE.Controllers.Toolbar.txtIntegralDoubleSubSup": "Double Integral", + "PE.Controllers.Toolbar.txtIntegralOriented": "Contour Integral", + "PE.Controllers.Toolbar.txtIntegralOrientedCenterSubSup": "Contour Integral", + "PE.Controllers.Toolbar.txtIntegralOrientedDouble": "Surface Integral", + "PE.Controllers.Toolbar.txtIntegralOrientedDoubleCenterSubSup": "Surface Integral", + "PE.Controllers.Toolbar.txtIntegralOrientedDoubleSubSup": "Surface Integral", + "PE.Controllers.Toolbar.txtIntegralOrientedSubSup": "Contour Integral", + "PE.Controllers.Toolbar.txtIntegralOrientedTriple": "Volume Integral", + "PE.Controllers.Toolbar.txtIntegralOrientedTripleCenterSubSup": "Volume Integral", + "PE.Controllers.Toolbar.txtIntegralOrientedTripleSubSup": "Volume Integral", + "PE.Controllers.Toolbar.txtIntegralSubSup": "Integral", + "PE.Controllers.Toolbar.txtIntegralTriple": "Triple Integral", + "PE.Controllers.Toolbar.txtIntegralTripleCenterSubSup": "Triple Integral", + "PE.Controllers.Toolbar.txtIntegralTripleSubSup": "Triple Integral", + "PE.Controllers.Toolbar.txtLargeOperator_Conjunction": "Wedge", + "PE.Controllers.Toolbar.txtLargeOperator_Conjunction_CenterSub": "Wedge", + "PE.Controllers.Toolbar.txtLargeOperator_Conjunction_CenterSubSup": "Wedge", + "PE.Controllers.Toolbar.txtLargeOperator_Conjunction_Sub": "Wedge", + "PE.Controllers.Toolbar.txtLargeOperator_Conjunction_SubSup": "Wedge", + "PE.Controllers.Toolbar.txtLargeOperator_CoProd": "Co-Product", + "PE.Controllers.Toolbar.txtLargeOperator_CoProd_CenterSub": "Co-Product", + "PE.Controllers.Toolbar.txtLargeOperator_CoProd_CenterSubSup": "Co-Product", + "PE.Controllers.Toolbar.txtLargeOperator_CoProd_Sub": "Co-Product", + "PE.Controllers.Toolbar.txtLargeOperator_CoProd_SubSup": "Co-Product", + "PE.Controllers.Toolbar.txtLargeOperator_Custom_1": "Summation", + "PE.Controllers.Toolbar.txtLargeOperator_Custom_2": "Summation", + "PE.Controllers.Toolbar.txtLargeOperator_Custom_3": "Summation", + "PE.Controllers.Toolbar.txtLargeOperator_Custom_4": "Product", + "PE.Controllers.Toolbar.txtLargeOperator_Custom_5": "Union", + "PE.Controllers.Toolbar.txtLargeOperator_Disjunction": "Vee", + "PE.Controllers.Toolbar.txtLargeOperator_Disjunction_CenterSub": "Vee", + "PE.Controllers.Toolbar.txtLargeOperator_Disjunction_CenterSubSup": "Vee", + "PE.Controllers.Toolbar.txtLargeOperator_Disjunction_Sub": "Vee", + "PE.Controllers.Toolbar.txtLargeOperator_Disjunction_SubSup": "Vee", + "PE.Controllers.Toolbar.txtLargeOperator_Intersection": "Intersection", + "PE.Controllers.Toolbar.txtLargeOperator_Intersection_CenterSub": "Intersection", + "PE.Controllers.Toolbar.txtLargeOperator_Intersection_CenterSubSup": "Intersection", + "PE.Controllers.Toolbar.txtLargeOperator_Intersection_Sub": "Intersection", + "PE.Controllers.Toolbar.txtLargeOperator_Intersection_SubSup": "Intersection", + "PE.Controllers.Toolbar.txtLargeOperator_Prod": "Product", + "PE.Controllers.Toolbar.txtLargeOperator_Prod_CenterSub": "Product", + "PE.Controllers.Toolbar.txtLargeOperator_Prod_CenterSubSup": "Product", + "PE.Controllers.Toolbar.txtLargeOperator_Prod_Sub": "Product", + "PE.Controllers.Toolbar.txtLargeOperator_Prod_SubSup": "Product", + "PE.Controllers.Toolbar.txtLargeOperator_Sum": "Summation", + "PE.Controllers.Toolbar.txtLargeOperator_Sum_CenterSub": "Summation", + "PE.Controllers.Toolbar.txtLargeOperator_Sum_CenterSubSup": "Summation", + "PE.Controllers.Toolbar.txtLargeOperator_Sum_Sub": "Summation", + "PE.Controllers.Toolbar.txtLargeOperator_Sum_SubSup": "Summation", + "PE.Controllers.Toolbar.txtLargeOperator_Union": "Union", + "PE.Controllers.Toolbar.txtLargeOperator_Union_CenterSub": "Union", + "PE.Controllers.Toolbar.txtLargeOperator_Union_CenterSubSup": "Union", + "PE.Controllers.Toolbar.txtLargeOperator_Union_Sub": "Union", + "PE.Controllers.Toolbar.txtLargeOperator_Union_SubSup": "Union", + "PE.Controllers.Toolbar.txtLimitLog_Custom_1": "Limit Example", + "PE.Controllers.Toolbar.txtLimitLog_Custom_2": "Maximum Example", + "PE.Controllers.Toolbar.txtLimitLog_Lim": "Limit", + "PE.Controllers.Toolbar.txtLimitLog_Ln": "Natural Logarithm", + "PE.Controllers.Toolbar.txtLimitLog_Log": "Logarithm", + "PE.Controllers.Toolbar.txtLimitLog_LogBase": "Logarithm", + "PE.Controllers.Toolbar.txtLimitLog_Max": "Maximum", + "PE.Controllers.Toolbar.txtLimitLog_Min": "Minimum", + "PE.Controllers.Toolbar.txtMatrix_1_2": "Matriz Vazia 1x2", + "PE.Controllers.Toolbar.txtMatrix_1_3": "Matriz Vazia 1x3", + "PE.Controllers.Toolbar.txtMatrix_2_1": "Matriz Vazia 2x1", + "PE.Controllers.Toolbar.txtMatrix_2_2": "Matriz Vazia 2x2", + "PE.Controllers.Toolbar.txtMatrix_2_2_DLineBracket": "Empty Matrix with Brackets", + "PE.Controllers.Toolbar.txtMatrix_2_2_LineBracket": "Empty Matrix with Brackets", + "PE.Controllers.Toolbar.txtMatrix_2_2_RoundBracket": "Empty Matrix with Brackets", + "PE.Controllers.Toolbar.txtMatrix_2_2_SquareBracket": "Empty Matrix with Brackets", + "PE.Controllers.Toolbar.txtMatrix_2_3": "Matriz Vazia 2x3", + "PE.Controllers.Toolbar.txtMatrix_3_1": "Matriz Vazia 3x1", + "PE.Controllers.Toolbar.txtMatrix_3_2": "Matriz Vazia 3x2", + "PE.Controllers.Toolbar.txtMatrix_3_3": "Matriz Vazia 3x3", + "PE.Controllers.Toolbar.txtMatrix_Dots_Baseline": "Baseline Dots", + "PE.Controllers.Toolbar.txtMatrix_Dots_Center": "Midline Dots", + "PE.Controllers.Toolbar.txtMatrix_Dots_Diagonal": "Diagonal Dots", + "PE.Controllers.Toolbar.txtMatrix_Dots_Vertical": "Vertical Dots", + "PE.Controllers.Toolbar.txtMatrix_Flat_Round": "Sparse Matrix", + "PE.Controllers.Toolbar.txtMatrix_Flat_Square": "Sparse Matrix", + "PE.Controllers.Toolbar.txtMatrix_Identity_2": "Matriz da identidade 2x2", + "PE.Controllers.Toolbar.txtMatrix_Identity_2_NoZeros": "Matriz da identidade 3x3", + "PE.Controllers.Toolbar.txtMatrix_Identity_3": "Matriz da identidade 3x3", + "PE.Controllers.Toolbar.txtMatrix_Identity_3_NoZeros": "Matriz da identidade 3x3", + "PE.Controllers.Toolbar.txtOperator_ArrowD_Bot": "Right-Left Arrow Below", + "PE.Controllers.Toolbar.txtOperator_ArrowD_Top": "Right-Left Arrow Above", + "PE.Controllers.Toolbar.txtOperator_ArrowL_Bot": "Leftwards Arrow Below", + "PE.Controllers.Toolbar.txtOperator_ArrowL_Top": "Leftwards Arrow Above", + "PE.Controllers.Toolbar.txtOperator_ArrowR_Bot": "Rightwards Arrow Below", + "PE.Controllers.Toolbar.txtOperator_ArrowR_Top": "Rightwards Arrow Above", + "PE.Controllers.Toolbar.txtOperator_ColonEquals": "Colon Equal", + "PE.Controllers.Toolbar.txtOperator_Custom_1": "Yields", + "PE.Controllers.Toolbar.txtOperator_Custom_2": "Delta Yields", + "PE.Controllers.Toolbar.txtOperator_Definition": "Equal to By Definition", + "PE.Controllers.Toolbar.txtOperator_DeltaEquals": "Delta Equal To", + "PE.Controllers.Toolbar.txtOperator_DoubleArrowD_Bot": "Right-Left Arrow Below", + "PE.Controllers.Toolbar.txtOperator_DoubleArrowD_Top": "Right-Left Arrow Above", + "PE.Controllers.Toolbar.txtOperator_DoubleArrowL_Bot": "Leftwards Arrow Below", + "PE.Controllers.Toolbar.txtOperator_DoubleArrowL_Top": "Leftwards Arrow Above", + "PE.Controllers.Toolbar.txtOperator_DoubleArrowR_Bot": "Rightwards Arrow Below", + "PE.Controllers.Toolbar.txtOperator_DoubleArrowR_Top": "Rightwards Arrow Above", + "PE.Controllers.Toolbar.txtOperator_EqualsEquals": "Equal Equal", + "PE.Controllers.Toolbar.txtOperator_MinusEquals": "Minus Equal", + "PE.Controllers.Toolbar.txtOperator_PlusEquals": "Plus Equal", + "PE.Controllers.Toolbar.txtOperator_UnitOfMeasure": "Measured By", + "PE.Controllers.Toolbar.txtRadicalCustom_1": "Radical", + "PE.Controllers.Toolbar.txtRadicalCustom_2": "Radical", + "PE.Controllers.Toolbar.txtRadicalRoot_2": "Square Root With Degree", + "PE.Controllers.Toolbar.txtRadicalRoot_3": "Cubic Root", + "PE.Controllers.Toolbar.txtRadicalRoot_n": "Radical With Degree", + "PE.Controllers.Toolbar.txtRadicalSqrt": "Square Root", + "PE.Controllers.Toolbar.txtScriptCustom_1": "Script", + "PE.Controllers.Toolbar.txtScriptCustom_2": "Script", + "PE.Controllers.Toolbar.txtScriptCustom_3": "Script", + "PE.Controllers.Toolbar.txtScriptCustom_4": "Script", + "PE.Controllers.Toolbar.txtScriptSub": "Subscript", + "PE.Controllers.Toolbar.txtScriptSubSup": "Subscript-Superscript", + "PE.Controllers.Toolbar.txtScriptSubSupLeft": "LeftSubscript-Superscript", + "PE.Controllers.Toolbar.txtScriptSup": "Superscript", + "PE.Controllers.Toolbar.txtSymbol_about": "Approximately", + "PE.Controllers.Toolbar.txtSymbol_additional": "Complement", + "PE.Controllers.Toolbar.txtSymbol_aleph": "Alef", + "PE.Controllers.Toolbar.txtSymbol_alpha": "Alpha", + "PE.Controllers.Toolbar.txtSymbol_approx": "Almost Equal To", + "PE.Controllers.Toolbar.txtSymbol_ast": "Asterisk Operator", + "PE.Controllers.Toolbar.txtSymbol_beta": "Beta", + "PE.Controllers.Toolbar.txtSymbol_beth": "Bet", + "PE.Controllers.Toolbar.txtSymbol_bullet": "Bullet Operator", + "PE.Controllers.Toolbar.txtSymbol_cap": "Intersection", + "PE.Controllers.Toolbar.txtSymbol_cbrt": "Cube Root", + "PE.Controllers.Toolbar.txtSymbol_cdots": "Midline Horizontal Ellipsis", + "PE.Controllers.Toolbar.txtSymbol_celsius": "Degrees Celsius", + "PE.Controllers.Toolbar.txtSymbol_chi": "Chi", + "PE.Controllers.Toolbar.txtSymbol_cong": "Approximately Equal To", + "PE.Controllers.Toolbar.txtSymbol_cup": "Union", + "PE.Controllers.Toolbar.txtSymbol_ddots": "Down Right Diagonal Ellipsis", + "PE.Controllers.Toolbar.txtSymbol_degree": "Degrees", + "PE.Controllers.Toolbar.txtSymbol_delta": "Delta", + "PE.Controllers.Toolbar.txtSymbol_div": "Division Sign", + "PE.Controllers.Toolbar.txtSymbol_downarrow": "Down Arrow", + "PE.Controllers.Toolbar.txtSymbol_emptyset": "Empty Set", + "PE.Controllers.Toolbar.txtSymbol_epsilon": "Epsilon", + "PE.Controllers.Toolbar.txtSymbol_equals": "Equal", + "PE.Controllers.Toolbar.txtSymbol_equiv": "Identical To", + "PE.Controllers.Toolbar.txtSymbol_eta": "Eta", + "PE.Controllers.Toolbar.txtSymbol_exists": "There Exist", + "PE.Controllers.Toolbar.txtSymbol_factorial": "Factorial", + "PE.Controllers.Toolbar.txtSymbol_fahrenheit": "Degrees Fahrenheit", + "PE.Controllers.Toolbar.txtSymbol_forall": "For All", + "PE.Controllers.Toolbar.txtSymbol_gamma": "Gamma", + "PE.Controllers.Toolbar.txtSymbol_geq": "Greater Than or Equal To", + "PE.Controllers.Toolbar.txtSymbol_gg": "Much Greater Than", + "PE.Controllers.Toolbar.txtSymbol_greater": "Greater Than", + "PE.Controllers.Toolbar.txtSymbol_in": "Element Of", + "PE.Controllers.Toolbar.txtSymbol_inc": "Increment", + "PE.Controllers.Toolbar.txtSymbol_infinity": "Infinity", + "PE.Controllers.Toolbar.txtSymbol_iota": "Iota", + "PE.Controllers.Toolbar.txtSymbol_kappa": "Kappa", + "PE.Controllers.Toolbar.txtSymbol_lambda": "Lambda", + "PE.Controllers.Toolbar.txtSymbol_leftarrow": "Left Arrow", + "PE.Controllers.Toolbar.txtSymbol_leftrightarrow": "Left-Right Arrow", + "PE.Controllers.Toolbar.txtSymbol_leq": "Less Than or Equal To", + "PE.Controllers.Toolbar.txtSymbol_less": "Less Than", + "PE.Controllers.Toolbar.txtSymbol_ll": "Much Less Than", + "PE.Controllers.Toolbar.txtSymbol_minus": "Minus", + "PE.Controllers.Toolbar.txtSymbol_mp": "Minus Plus", + "PE.Controllers.Toolbar.txtSymbol_mu": "Mu", + "PE.Controllers.Toolbar.txtSymbol_nabla": "Nabla", + "PE.Controllers.Toolbar.txtSymbol_neq": "Not Equal To", + "PE.Controllers.Toolbar.txtSymbol_ni": "Contains as Member", + "PE.Controllers.Toolbar.txtSymbol_not": "Not Sign", + "PE.Controllers.Toolbar.txtSymbol_notexists": "There Does Not Exist", + "PE.Controllers.Toolbar.txtSymbol_nu": "Nu", + "PE.Controllers.Toolbar.txtSymbol_o": "Omicron", + "PE.Controllers.Toolbar.txtSymbol_omega": "Omega", + "PE.Controllers.Toolbar.txtSymbol_partial": "Partial Differential", + "PE.Controllers.Toolbar.txtSymbol_percent": "Percentage", + "PE.Controllers.Toolbar.txtSymbol_phi": "Phi", + "PE.Controllers.Toolbar.txtSymbol_pi": "Pi", + "PE.Controllers.Toolbar.txtSymbol_plus": "Plus", + "PE.Controllers.Toolbar.txtSymbol_pm": "Plus Minus", + "PE.Controllers.Toolbar.txtSymbol_propto": "Proportional To", + "PE.Controllers.Toolbar.txtSymbol_psi": "Psi", + "PE.Controllers.Toolbar.txtSymbol_qdrt": "Fourth Root", + "PE.Controllers.Toolbar.txtSymbol_qed": "End of Proof", + "PE.Controllers.Toolbar.txtSymbol_rddots": "Up Right Diagonal Ellipsis", + "PE.Controllers.Toolbar.txtSymbol_rho": "Rho", + "PE.Controllers.Toolbar.txtSymbol_rightarrow": "Right Arrow", + "PE.Controllers.Toolbar.txtSymbol_sigma": "Sigma", + "PE.Controllers.Toolbar.txtSymbol_sqrt": "Radical Sign", + "PE.Controllers.Toolbar.txtSymbol_tau": "Tau", + "PE.Controllers.Toolbar.txtSymbol_therefore": "Therefore", + "PE.Controllers.Toolbar.txtSymbol_theta": "Theta", + "PE.Controllers.Toolbar.txtSymbol_times": "Multiplication Sign", + "PE.Controllers.Toolbar.txtSymbol_uparrow": "Up Arrow", + "PE.Controllers.Toolbar.txtSymbol_upsilon": "Upsilon", + "PE.Controllers.Toolbar.txtSymbol_varepsilon": "Epsilon Variant", + "PE.Controllers.Toolbar.txtSymbol_varphi": "Phi Variant", + "PE.Controllers.Toolbar.txtSymbol_varpi": "Pi Variant", + "PE.Controllers.Toolbar.txtSymbol_varrho": "Rho Variant", + "PE.Controllers.Toolbar.txtSymbol_varsigma": "Sigma Variant", + "PE.Controllers.Toolbar.txtSymbol_vartheta": "Theta Variant", + "PE.Controllers.Toolbar.txtSymbol_vdots": "Vertical Ellipsis", + "PE.Controllers.Toolbar.txtSymbol_xsi": "Xi", + "PE.Controllers.Toolbar.txtSymbol_zeta": "Zeta", + "PE.Views.ChartSettings.textAdvanced": "Show advanced settings", "PE.Views.ChartSettings.textArea": "Gráfico de área", "PE.Views.ChartSettings.textBar": "Gráfico de barras", "PE.Views.ChartSettings.textChartType": "Alterar tipo de gráfico", @@ -228,18 +610,26 @@ "PE.Views.ChartSettings.textSize": "Tamanho", "PE.Views.ChartSettings.textStock": "Gráfico de ações", "PE.Views.ChartSettings.textStyle": "Estilo", + "PE.Views.ChartSettings.textSurface": "Surface", "PE.Views.ChartSettings.textWidth": "Largura", + "PE.Views.ChartSettingsAdvanced.cancelButtonText": "Cancel", + "PE.Views.ChartSettingsAdvanced.okButtonText": "Ok", + "PE.Views.ChartSettingsAdvanced.textAlt": "Alternative Text", + "PE.Views.ChartSettingsAdvanced.textAltDescription": "Description", + "PE.Views.ChartSettingsAdvanced.textAltTip": "The alternative text-based representation of the visual object information, which will be read to the people with vision or cognitive impairments to help them better understand what information there is in the image, autoshape, chart or table.", + "PE.Views.ChartSettingsAdvanced.textAltTitle": "Title", + "PE.Views.ChartSettingsAdvanced.textTitle": "Chart - Advanced Settings", "PE.Views.DocumentHolder.aboveText": "Acima", "PE.Views.DocumentHolder.addCommentText": "Adicionar comentário", "PE.Views.DocumentHolder.advancedImageText": "Configurações avançadas de imagem", "PE.Views.DocumentHolder.advancedParagraphText": "Configurações avançadas de texto", "PE.Views.DocumentHolder.advancedShapeText": "Configurações avançadas de forma", "PE.Views.DocumentHolder.advancedTableText": "Configurações avançadas de tabela", + "PE.Views.DocumentHolder.alignmentText": "Alignment", "PE.Views.DocumentHolder.belowText": "Abaixo", - "PE.Views.DocumentHolder.bottomCellText": "Alinhar à parte inferior", "PE.Views.DocumentHolder.cellAlignText": "Alinhamento vertical da célula", "PE.Views.DocumentHolder.cellText": "Célula", - "PE.Views.DocumentHolder.centerCellText": "Alinhar ao centro", + "PE.Views.DocumentHolder.centerText": "Center", "PE.Views.DocumentHolder.columnText": "Coluna", "PE.Views.DocumentHolder.deleteColumnText": "Excluir coluna", "PE.Views.DocumentHolder.deleteRowText": "Excluir linha", @@ -252,6 +642,8 @@ "PE.Views.DocumentHolder.editChartText": "Editar dados", "PE.Views.DocumentHolder.editHyperlinkText": "Editar hiperlink", "PE.Views.DocumentHolder.hyperlinkText": "Hiperlink", + "PE.Views.DocumentHolder.ignoreAllSpellText": "Ignore All", + "PE.Views.DocumentHolder.ignoreSpellText": "Ignore", "PE.Views.DocumentHolder.insertColumnLeftText": "Coluna esquerda", "PE.Views.DocumentHolder.insertColumnRightText": "Coluna direita", "PE.Views.DocumentHolder.insertColumnText": "Inserir coluna", @@ -259,11 +651,18 @@ "PE.Views.DocumentHolder.insertRowBelowText": "Linha abaixo", "PE.Views.DocumentHolder.insertRowText": "Inserir linha", "PE.Views.DocumentHolder.insertText": "Inserir", + "PE.Views.DocumentHolder.langText": "Select Language", + "PE.Views.DocumentHolder.leftText": "Left", + "PE.Views.DocumentHolder.loadSpellText": "Loading variants...", "PE.Views.DocumentHolder.mergeCellsText": "Mesclar células", + "PE.Views.DocumentHolder.moreText": "More variants...", + "PE.Views.DocumentHolder.noSpellVariantsText": "No variants", "PE.Views.DocumentHolder.originalSizeText": "Tamanho padrão", "PE.Views.DocumentHolder.removeHyperlinkText": "Remover hiperlink", + "PE.Views.DocumentHolder.rightText": "Right", "PE.Views.DocumentHolder.rowText": "Linha", "PE.Views.DocumentHolder.selectText": "Selecionar", + "PE.Views.DocumentHolder.spellcheckText": "Spellcheck", "PE.Views.DocumentHolder.splitCellsText": "Dividir célula...", "PE.Views.DocumentHolder.splitCellTitleText": "Dividir célula", "PE.Views.DocumentHolder.tableText": "Tabela", @@ -283,22 +682,92 @@ "PE.Views.DocumentHolder.textShapeAlignRight": "Alinhar à direita", "PE.Views.DocumentHolder.textShapeAlignTop": "Alinhar à parte superior", "PE.Views.DocumentHolder.textSlideSettings": "Configurações de slide", + "PE.Views.DocumentHolder.textUndo": "Undo", "PE.Views.DocumentHolder.tipIsLocked": "Este elemento está sendo atualmente editado por outro usuário.", - "PE.Views.DocumentHolder.topCellText": "Alinhar à parte superior", + "PE.Views.DocumentHolder.txtAddBottom": "Add bottom border", + "PE.Views.DocumentHolder.txtAddFractionBar": "Add fraction bar", + "PE.Views.DocumentHolder.txtAddHor": "Add horizontal line", + "PE.Views.DocumentHolder.txtAddLB": "Add left bottom line", + "PE.Views.DocumentHolder.txtAddLeft": "Add left border", + "PE.Views.DocumentHolder.txtAddLT": "Add left top line", + "PE.Views.DocumentHolder.txtAddRight": "Add right border", + "PE.Views.DocumentHolder.txtAddTop": "Add top border", + "PE.Views.DocumentHolder.txtAddVer": "Add vertical line", "PE.Views.DocumentHolder.txtAlign": "Alinhar", + "PE.Views.DocumentHolder.txtAlignToChar": "Align to character", "PE.Views.DocumentHolder.txtArrange": "Organizar", "PE.Views.DocumentHolder.txtBackground": "Plano de fundo", + "PE.Views.DocumentHolder.txtBorderProps": "Border properties", + "PE.Views.DocumentHolder.txtBottom": "Bottom", "PE.Views.DocumentHolder.txtChangeLayout": "Alterar layout", + "PE.Views.DocumentHolder.txtColumnAlign": "Column alignment", + "PE.Views.DocumentHolder.txtDecreaseArg": "Decrease argument size", + "PE.Views.DocumentHolder.txtDeleteArg": "Delete argument", + "PE.Views.DocumentHolder.txtDeleteBreak": "Delete manual break", + "PE.Views.DocumentHolder.txtDeleteChars": "Delete enclosing characters", + "PE.Views.DocumentHolder.txtDeleteCharsAndSeparators": "Delete enclosing characters and separators", + "PE.Views.DocumentHolder.txtDeleteEq": "Delete equation", + "PE.Views.DocumentHolder.txtDeleteGroupChar": "Delete char", + "PE.Views.DocumentHolder.txtDeleteRadical": "Delete radical", "PE.Views.DocumentHolder.txtDeleteSlide": "Excluir slide", "PE.Views.DocumentHolder.txtDistribHor": "Distribuir horizontalmente", "PE.Views.DocumentHolder.txtDistribVert": "Distribuir verticalmente", "PE.Views.DocumentHolder.txtDuplicateSlide": "Slide duplicado", + "PE.Views.DocumentHolder.txtFractionLinear": "Change to linear fraction", + "PE.Views.DocumentHolder.txtFractionSkewed": "Change to skewed fraction", + "PE.Views.DocumentHolder.txtFractionStacked": "Change to stacked fraction", "PE.Views.DocumentHolder.txtGroup": "Grupo", + "PE.Views.DocumentHolder.txtGroupCharOver": "Char over text", + "PE.Views.DocumentHolder.txtGroupCharUnder": "Char under text", + "PE.Views.DocumentHolder.txtHideBottom": "Hide bottom border", + "PE.Views.DocumentHolder.txtHideBottomLimit": "Hide bottom limit", + "PE.Views.DocumentHolder.txtHideCloseBracket": "Hide closing bracket", + "PE.Views.DocumentHolder.txtHideDegree": "Hide degree", + "PE.Views.DocumentHolder.txtHideHor": "Hide horizontal line", + "PE.Views.DocumentHolder.txtHideLB": "Hide left bottom line", + "PE.Views.DocumentHolder.txtHideLeft": "Hide left border", + "PE.Views.DocumentHolder.txtHideLT": "Hide left top line", + "PE.Views.DocumentHolder.txtHideOpenBracket": "Hide opening bracket", + "PE.Views.DocumentHolder.txtHidePlaceholder": "Hide placeholder", + "PE.Views.DocumentHolder.txtHideRight": "Hide right border", + "PE.Views.DocumentHolder.txtHideTop": "Hide top border", + "PE.Views.DocumentHolder.txtHideTopLimit": "Hide top limit", + "PE.Views.DocumentHolder.txtHideVer": "Hide vertical line", + "PE.Views.DocumentHolder.txtIncreaseArg": "Increase argument size", + "PE.Views.DocumentHolder.txtInsertArgAfter": "Insert argument after", + "PE.Views.DocumentHolder.txtInsertArgBefore": "Insert argument before", + "PE.Views.DocumentHolder.txtInsertBreak": "Insert manual break", + "PE.Views.DocumentHolder.txtInsertEqAfter": "Insert equation after", + "PE.Views.DocumentHolder.txtInsertEqBefore": "Insert equation before", + "PE.Views.DocumentHolder.txtLimitChange": "Change limits location", + "PE.Views.DocumentHolder.txtLimitOver": "Limit over text", + "PE.Views.DocumentHolder.txtLimitUnder": "Limit under text", + "PE.Views.DocumentHolder.txtMatchBrackets": "Match brackets to argument height", + "PE.Views.DocumentHolder.txtMatrixAlign": "Matrix alignment", "PE.Views.DocumentHolder.txtNewSlide": "Novo slide", + "PE.Views.DocumentHolder.txtOverbar": "Bar over text", "PE.Views.DocumentHolder.txtPressLink": "Pressione CTRL e clique no link", "PE.Views.DocumentHolder.txtPreview": "Pré-visualizar", + "PE.Views.DocumentHolder.txtRemFractionBar": "Remove fraction bar", + "PE.Views.DocumentHolder.txtRemLimit": "Remove limit", + "PE.Views.DocumentHolder.txtRemoveAccentChar": "Remove accent character", + "PE.Views.DocumentHolder.txtRemoveBar": "Remove bar", + "PE.Views.DocumentHolder.txtRemScripts": "Remove scripts", + "PE.Views.DocumentHolder.txtRemSubscript": "Remove subscript", + "PE.Views.DocumentHolder.txtRemSuperscript": "Remove superscript", + "PE.Views.DocumentHolder.txtScriptsAfter": "Scripts after text", + "PE.Views.DocumentHolder.txtScriptsBefore": "Scripts before text", "PE.Views.DocumentHolder.txtSelectAll": "Selecionar tudo", + "PE.Views.DocumentHolder.txtShowBottomLimit": "Show bottom limit", + "PE.Views.DocumentHolder.txtShowCloseBracket": "Show closing bracket", + "PE.Views.DocumentHolder.txtShowDegree": "Show degree", + "PE.Views.DocumentHolder.txtShowOpenBracket": "Show opening bracket", + "PE.Views.DocumentHolder.txtShowPlaceholder": "Show placeholder", + "PE.Views.DocumentHolder.txtShowTopLimit": "Show top limit", "PE.Views.DocumentHolder.txtSlide": "Slide", + "PE.Views.DocumentHolder.txtStretchBrackets": "Stretch brackets", + "PE.Views.DocumentHolder.txtTop": "Top", + "PE.Views.DocumentHolder.txtUnderbar": "Bar under text", "PE.Views.DocumentHolder.txtUngroup": "Desagrupar", "PE.Views.DocumentHolder.vertAlignText": "Alinhamento vertical", "PE.Views.DocumentPreview.goToSlideText": "Ir para Slide", @@ -314,12 +783,14 @@ "PE.Views.DocumentPreview.txtPrev": "Slide anterior", "PE.Views.FileMenu.btnAboutCaption": "Sobre", "PE.Views.FileMenu.btnBackCaption": "Ir para Documentos", + "PE.Views.FileMenu.btnCloseMenuCaption": "Close Menu", "PE.Views.FileMenu.btnCreateNewCaption": "Criar novo", "PE.Views.FileMenu.btnDownloadCaption": "Baixar como...", "PE.Views.FileMenu.btnHelpCaption": "Ajuda...", "PE.Views.FileMenu.btnInfoCaption": "Informações de apresentação...", "PE.Views.FileMenu.btnPrintCaption": "Imprimir", "PE.Views.FileMenu.btnRecentFilesCaption": "Abrir recente...", + "PE.Views.FileMenu.btnRenameCaption": "Rename...", "PE.Views.FileMenu.btnReturnCaption": "Voltar para a apresentação", "PE.Views.FileMenu.btnRightsCaption": "Access Rights...", "PE.Views.FileMenu.btnSaveAsCaption": "Save as", @@ -341,13 +812,16 @@ "PE.Views.FileMenuPanels.DocumentRights.txtRights": "Pessoas que têm direitos", "PE.Views.FileMenuPanels.Settings.okButtonText": "Aplicar", "PE.Views.FileMenuPanels.Settings.strAlignGuides": "Ativar guias de alinhamento", + "PE.Views.FileMenuPanels.Settings.strAutoRecover": "Turn on autorecover", "PE.Views.FileMenuPanels.Settings.strAutosave": "Ativar salvamento automático", "PE.Views.FileMenuPanels.Settings.strCoAuthMode": "Co-editing mode", "PE.Views.FileMenuPanels.Settings.strCoAuthModeDescFast": "Other users will see your changes at once", "PE.Views.FileMenuPanels.Settings.strCoAuthModeDescStrict": "You will need to accept changes before you can see them", "PE.Views.FileMenuPanels.Settings.strFast": "Fast", + "PE.Views.FileMenuPanels.Settings.strForcesave": "Always save to server (otherwise save to server on document close)", "PE.Views.FileMenuPanels.Settings.strInputMode": "Ativar hieróglifos", "PE.Views.FileMenuPanels.Settings.strShowChanges": "Alterações de colaboração em tempo real", + "PE.Views.FileMenuPanels.Settings.strSpellCheckMode": "Turn on spell checking option", "PE.Views.FileMenuPanels.Settings.strStrict": "Strict", "PE.Views.FileMenuPanels.Settings.strUnit": "Unidade de medida", "PE.Views.FileMenuPanels.Settings.strZoom": "Valor de zoom padrão", @@ -356,15 +830,20 @@ "PE.Views.FileMenuPanels.Settings.text5Minutes": "A cada 5 minutos", "PE.Views.FileMenuPanels.Settings.text60Minutes": "A cada hora", "PE.Views.FileMenuPanels.Settings.textAlignGuides": "Guias de alinhamento", + "PE.Views.FileMenuPanels.Settings.textAutoRecover": "Autorecover", "PE.Views.FileMenuPanels.Settings.textAutoSave": "Salvamento automático", "PE.Views.FileMenuPanels.Settings.textDisabled": "Desabilitado", + "PE.Views.FileMenuPanels.Settings.textForceSave": "Save to Server", "PE.Views.FileMenuPanels.Settings.textMinute": "A cada minuto", "PE.Views.FileMenuPanels.Settings.txtAll": "Visualizar tudo", "PE.Views.FileMenuPanels.Settings.txtCm": "Centímetro", "PE.Views.FileMenuPanels.Settings.txtFitSlide": "Ajustar slide", + "PE.Views.FileMenuPanels.Settings.txtFitWidth": "Fit to Width", + "PE.Views.FileMenuPanels.Settings.txtInch": "Inch", "PE.Views.FileMenuPanels.Settings.txtInput": "Entrada alternativa", "PE.Views.FileMenuPanels.Settings.txtLast": "Visualizar último", "PE.Views.FileMenuPanels.Settings.txtPt": "Ponto", + "PE.Views.FileMenuPanels.Settings.txtSpellCheck": "Spell Checking", "PE.Views.HyperlinkSettingsDialog.cancelButtonText": "Cancelar", "PE.Views.HyperlinkSettingsDialog.okButtonText": "OK", "PE.Views.HyperlinkSettingsDialog.strDisplay": "Exibir", @@ -387,6 +866,8 @@ "PE.Views.HyperlinkSettingsDialog.txtPrev": "Slide anterior", "PE.Views.HyperlinkSettingsDialog.txtSlide": "Slide", "PE.Views.ImageSettings.textAdvanced": "Exibir configurações avançadas", + "PE.Views.ImageSettings.textEdit": "Edit", + "PE.Views.ImageSettings.textEditObject": "Edit Object", "PE.Views.ImageSettings.textFromFile": "Do arquivo", "PE.Views.ImageSettings.textFromUrl": "Da URL", "PE.Views.ImageSettings.textHeight": "Altura", @@ -396,9 +877,14 @@ "PE.Views.ImageSettings.textWidth": "Largura", "PE.Views.ImageSettingsAdvanced.cancelButtonText": "Cancelar", "PE.Views.ImageSettingsAdvanced.okButtonText": "OK", + "PE.Views.ImageSettingsAdvanced.textAlt": "Alternative Text", + "PE.Views.ImageSettingsAdvanced.textAltDescription": "Description", + "PE.Views.ImageSettingsAdvanced.textAltTip": "The alternative text-based representation of the visual object information, which will be read to the people with vision or cognitive impairments to help them better understand what information there is in the image, autoshape, chart or table.", + "PE.Views.ImageSettingsAdvanced.textAltTitle": "Title", "PE.Views.ImageSettingsAdvanced.textHeight": "Altura", "PE.Views.ImageSettingsAdvanced.textKeepRatio": "Proporções constantes", "PE.Views.ImageSettingsAdvanced.textOriginalSize": "Tamanho padrão", + "PE.Views.ImageSettingsAdvanced.textPlacement": "Placement", "PE.Views.ImageSettingsAdvanced.textPosition": "Posição", "PE.Views.ImageSettingsAdvanced.textSize": "Tamanho", "PE.Views.ImageSettingsAdvanced.textTitle": "Imagem - Configurações avançadas", @@ -407,10 +893,12 @@ "PE.Views.LeftMenu.tipChat": "Gráfico", "PE.Views.LeftMenu.tipComments": "Comentários", "PE.Views.LeftMenu.tipFile": "Arquivo", + "PE.Views.LeftMenu.tipPlugins": "Plugins", "PE.Views.LeftMenu.tipSearch": "Pesquisar", "PE.Views.LeftMenu.tipSlides": "Slides", "PE.Views.LeftMenu.tipSupport": "Feedback e Suporte", "PE.Views.LeftMenu.tipTitles": "Títulos", + "PE.Views.LeftMenu.txtDeveloper": "DEVELOPER MODE", "PE.Views.ParagraphSettings.strLineHeight": "Espaçamento de linha", "PE.Views.ParagraphSettings.strParagraphSpacing": "Espaçamento", "PE.Views.ParagraphSettings.strSpacingAfter": "Depois", @@ -464,6 +952,7 @@ "PE.Views.ShapeSettings.strSize": "Tamanho", "PE.Views.ShapeSettings.strStroke": "Traço", "PE.Views.ShapeSettings.strTransparency": "Opacidade", + "PE.Views.ShapeSettings.strType": "Type", "PE.Views.ShapeSettings.textAdvanced": "Exibir configurações avançadas", "PE.Views.ShapeSettings.textBorderSizeErr": "O valor inserido está incorreto.
    Insira um valor entre 0 pt e 1.584 pt.", "PE.Views.ShapeSettings.textColor": "Preenchimento de cor", @@ -480,11 +969,9 @@ "PE.Views.ShapeSettings.textPatternFill": "Padrão", "PE.Views.ShapeSettings.textRadial": "Radial", "PE.Views.ShapeSettings.textSelectTexture": "Selecionar", - "PE.Views.ShapeSettings.textStandartColors": "Cores padrão", "PE.Views.ShapeSettings.textStretch": "Alongar", "PE.Views.ShapeSettings.textStyle": "Estilo", "PE.Views.ShapeSettings.textTexture": "Da textura", - "PE.Views.ShapeSettings.textThemeColors": "Cores do tema", "PE.Views.ShapeSettings.textTile": "Lado a lado", "PE.Views.ShapeSettings.txtBrownPaper": "Papel pardo", "PE.Views.ShapeSettings.txtCanvas": "Canvas", @@ -500,13 +987,19 @@ "PE.Views.ShapeSettings.txtWood": "Madeira", "PE.Views.ShapeSettingsAdvanced.cancelButtonText": "Cancelar", "PE.Views.ShapeSettingsAdvanced.okButtonText": "OK", + "PE.Views.ShapeSettingsAdvanced.strColumns": "Columns", "PE.Views.ShapeSettingsAdvanced.strMargins": "Preenchimento de texto", + "PE.Views.ShapeSettingsAdvanced.textAlt": "Alternative Text", + "PE.Views.ShapeSettingsAdvanced.textAltDescription": "Description", + "PE.Views.ShapeSettingsAdvanced.textAltTip": "The alternative text-based representation of the visual object information, which will be read to the people with vision or cognitive impairments to help them better understand what information there is in the image, autoshape, chart or table.", + "PE.Views.ShapeSettingsAdvanced.textAltTitle": "Title", "PE.Views.ShapeSettingsAdvanced.textArrows": "Setas", "PE.Views.ShapeSettingsAdvanced.textBeginSize": "Tamanho inicial", "PE.Views.ShapeSettingsAdvanced.textBeginStyle": "Estilo inicial", "PE.Views.ShapeSettingsAdvanced.textBevel": "Bisel", "PE.Views.ShapeSettingsAdvanced.textBottom": "Inferior", "PE.Views.ShapeSettingsAdvanced.textCapType": "Tipo de letra", + "PE.Views.ShapeSettingsAdvanced.textColNumber": "Number of columns", "PE.Views.ShapeSettingsAdvanced.textEndSize": "Tamanho final", "PE.Views.ShapeSettingsAdvanced.textEndStyle": "Estilo final", "PE.Views.ShapeSettingsAdvanced.textFlat": "Plano", @@ -519,6 +1012,7 @@ "PE.Views.ShapeSettingsAdvanced.textRight": "Direita", "PE.Views.ShapeSettingsAdvanced.textRound": "Rodada", "PE.Views.ShapeSettingsAdvanced.textSize": "Tamanho", + "PE.Views.ShapeSettingsAdvanced.textSpacing": "Spacing between columns", "PE.Views.ShapeSettingsAdvanced.textSquare": "Quadrado", "PE.Views.ShapeSettingsAdvanced.textTitle": "Forma - Configurações avançadas", "PE.Views.ShapeSettingsAdvanced.textTop": "Parte superior", @@ -566,14 +1060,13 @@ "PE.Views.SlideSettings.textRadial": "Radial", "PE.Views.SlideSettings.textReset": "Resetar alterações", "PE.Views.SlideSettings.textRight": "Direita", + "PE.Views.SlideSettings.textSec": "s", "PE.Views.SlideSettings.textSelectTexture": "Selecionar", "PE.Views.SlideSettings.textSmoothly": "Suavemente", "PE.Views.SlideSettings.textSplit": "Dividir", - "PE.Views.SlideSettings.textStandartColors": "Cores padrão", "PE.Views.SlideSettings.textStretch": "Alongar", "PE.Views.SlideSettings.textStyle": "Estilo", "PE.Views.SlideSettings.textTexture": "Da textura", - "PE.Views.SlideSettings.textThemeColors": "Cores do tema", "PE.Views.SlideSettings.textTile": "Lado a lado", "PE.Views.SlideSettings.textTop": "Parte superior", "PE.Views.SlideSettings.textTopLeft": "Superior esquerdo", @@ -598,9 +1091,16 @@ "PE.Views.SlideSettings.txtLeather": "Couro", "PE.Views.SlideSettings.txtPapyrus": "Papiro", "PE.Views.SlideSettings.txtWood": "Madeira", + "PE.Views.SlideshowSettings.cancelButtonText": "Cancel", + "PE.Views.SlideshowSettings.okButtonText": "Ok", + "PE.Views.SlideshowSettings.textLoop": "Loop continuously until 'Esc' is pressed", + "PE.Views.SlideshowSettings.textTitle": "Show Settings", "PE.Views.SlideSizeSettings.cancelButtonText": "Cancelar", "PE.Views.SlideSizeSettings.okButtonText": "OK", + "PE.Views.SlideSizeSettings.strLandscape": "Landscape", + "PE.Views.SlideSizeSettings.strPortrait": "Portrait", "PE.Views.SlideSizeSettings.textHeight": "Altura", + "PE.Views.SlideSizeSettings.textSlideOrientation": "Slide Orientation", "PE.Views.SlideSizeSettings.textSlideSize": "Tamanho de slide", "PE.Views.SlideSizeSettings.textTitle": "Configurações de tamanho do slide", "PE.Views.SlideSizeSettings.textWidth": "Largura", @@ -624,6 +1124,9 @@ "PE.Views.Statusbar.tipFitWidth": "Ajustar largura", "PE.Views.Statusbar.tipMoreUsers": "e %1 usuários.", "PE.Views.Statusbar.tipPreview": "Start Preview", + "PE.Views.Statusbar.tipSetDocLang": "Set Document Language", + "PE.Views.Statusbar.tipSetLang": "Set Text Language", + "PE.Views.Statusbar.tipSetSpelling": "Spell checking", "PE.Views.Statusbar.tipShowUsers": "Para ver todos os usuários clique no ícone abaixo.", "PE.Views.Statusbar.tipUsers": "O documento atualmente está sendo editado por vários usuários.", "PE.Views.Statusbar.tipViewUsers": "View users and manage document access rights", @@ -660,9 +1163,7 @@ "PE.Views.TableSettings.textNewColor": "Cor personalizada", "PE.Views.TableSettings.textRows": "Linhas", "PE.Views.TableSettings.textSelectBorders": "Selecione as bordas que você deseja alterar aplicando o estilo escolhido acima", - "PE.Views.TableSettings.textStandartColors": "Cores padrão", "PE.Views.TableSettings.textTemplate": "Selecionar a partir do modelo", - "PE.Views.TableSettings.textThemeColors": "Cores do tema", "PE.Views.TableSettings.textTotal": "Total", "PE.Views.TableSettings.tipAll": "Definir borda externa e todas as linhas internas", "PE.Views.TableSettings.tipBottom": "Definir apenas borda inferior externa", @@ -677,6 +1178,10 @@ "PE.Views.TableSettings.txtNoBorders": "Sem bordas", "PE.Views.TableSettingsAdvanced.cancelButtonText": "Cancelar", "PE.Views.TableSettingsAdvanced.okButtonText": "OK", + "PE.Views.TableSettingsAdvanced.textAlt": "Alternative Text", + "PE.Views.TableSettingsAdvanced.textAltDescription": "Description", + "PE.Views.TableSettingsAdvanced.textAltTip": "The alternative text-based representation of the visual object information, which will be read to the people with vision or cognitive impairments to help them better understand what information there is in the image, autoshape, chart or table.", + "PE.Views.TableSettingsAdvanced.textAltTitle": "Title", "PE.Views.TableSettingsAdvanced.textBottom": "Inferior", "PE.Views.TableSettingsAdvanced.textCheckMargins": "Usar margens padrão", "PE.Views.TableSettingsAdvanced.textDefaultMargins": "Margens padrão", @@ -694,6 +1199,7 @@ "PE.Views.TextArtSettings.strSize": "Size", "PE.Views.TextArtSettings.strStroke": "Stroke", "PE.Views.TextArtSettings.strTransparency": "Opacity", + "PE.Views.TextArtSettings.strType": "Type", "PE.Views.TextArtSettings.textBorderSizeErr": "The entered value is incorrect.
    Please enter a value between 0 pt and 1584 pt.", "PE.Views.TextArtSettings.textColor": "Color Fill", "PE.Views.TextArtSettings.textDirection": "Direction", @@ -709,12 +1215,10 @@ "PE.Views.TextArtSettings.textPatternFill": "Pattern", "PE.Views.TextArtSettings.textRadial": "Radial", "PE.Views.TextArtSettings.textSelectTexture": "Select", - "PE.Views.TextArtSettings.textStandartColors": "Standard Colors", "PE.Views.TextArtSettings.textStretch": "Stretch", "PE.Views.TextArtSettings.textStyle": "Style", "PE.Views.TextArtSettings.textTemplate": "Template", "PE.Views.TextArtSettings.textTexture": "From Texture", - "PE.Views.TextArtSettings.textThemeColors": "Theme Colors", "PE.Views.TextArtSettings.textTile": "Tile", "PE.Views.TextArtSettings.textTransform": "Transform", "PE.Views.TextArtSettings.txtBrownPaper": "Brown Paper", @@ -750,6 +1254,7 @@ "PE.Views.Toolbar.textBar": "Gráfico de barras", "PE.Views.Toolbar.textBold": "Negrito", "PE.Views.Toolbar.textCancel": "Cancelar", + "PE.Views.Toolbar.textCharts": "Charts", "PE.Views.Toolbar.textColumn": "Gráfico de coluna", "PE.Views.Toolbar.textCompactView": "Visualizar barra de ferramentas compacta", "PE.Views.Toolbar.textFitPage": "Ajustar slide", @@ -771,18 +1276,21 @@ "PE.Views.Toolbar.textShapeAlignMiddle": "Alinhar ao meio", "PE.Views.Toolbar.textShapeAlignRight": "Alinhar à direita", "PE.Views.Toolbar.textShapeAlignTop": "Alinhar à parte superior", - "PE.Views.Toolbar.textStandartColors": "Cores padrão", + "PE.Views.Toolbar.textShowBegin": "Show from Beginning", + "PE.Views.Toolbar.textShowCurrent": "Show from Current slide", + "PE.Views.Toolbar.textShowSettings": "Show Settings", "PE.Views.Toolbar.textStock": "Gráfico de ações", "PE.Views.Toolbar.textStrikeout": "Riscado", "PE.Views.Toolbar.textSubscript": "Subscrito", "PE.Views.Toolbar.textSuperscript": "Sobrescrito", - "PE.Views.Toolbar.textThemeColors": "Cores do tema", + "PE.Views.Toolbar.textSurface": "Surface", "PE.Views.Toolbar.textTitleError": "Erro", "PE.Views.Toolbar.textUnderline": "Sublinhado", "PE.Views.Toolbar.textZoom": "Zoom", "PE.Views.Toolbar.tipAddSlide": "Adicionar slide", "PE.Views.Toolbar.tipAdvSettings": "Configurações avançadas", "PE.Views.Toolbar.tipBack": "Voltar", + "PE.Views.Toolbar.tipChangeChart": "Change Chart Type", "PE.Views.Toolbar.tipChangeSlide": "Alterar slide de layout", "PE.Views.Toolbar.tipClearStyle": "Limpar estilo", "PE.Views.Toolbar.tipColorSchemas": "Alterar esquema de cor", @@ -796,6 +1304,7 @@ "PE.Views.Toolbar.tipHideBars": "Ocultar barra de título e barra de status", "PE.Views.Toolbar.tipIncPrLeft": "Aumentar recuo", "PE.Views.Toolbar.tipInsertChart": "Inserir gráfico", + "PE.Views.Toolbar.tipInsertEquation": "Insert Equation", "PE.Views.Toolbar.tipInsertHyperlink": "Adicionar hiperlink", "PE.Views.Toolbar.tipInsertImage": "Inserir imagem", "PE.Views.Toolbar.tipInsertShape": "Inserir forma automática", diff --git a/apps/presentationeditor/main/locale/ru.json b/apps/presentationeditor/main/locale/ru.json index 9de1bf52e..8eb957094 100644 --- a/apps/presentationeditor/main/locale/ru.json +++ b/apps/presentationeditor/main/locale/ru.json @@ -61,7 +61,7 @@ "Common.Views.Comments.textCancel": "Отмена", "Common.Views.Comments.textClose": "Закрыть", "Common.Views.Comments.textComments": "Комментарии", - "Common.Views.Comments.textEdit": "Правка", + "Common.Views.Comments.textEdit": "OK", "Common.Views.Comments.textEnterCommentHint": "Введите здесь свой комментарий", "Common.Views.Comments.textOpenAgain": "Открыть снова", "Common.Views.Comments.textReply": "Ответить", @@ -192,12 +192,20 @@ "PE.Controllers.Main.txtButtons": "Кнопки", "PE.Controllers.Main.txtCallouts": "Выноски", "PE.Controllers.Main.txtCharts": "Схемы", + "PE.Controllers.Main.txtClipArt": "Картинка", + "PE.Controllers.Main.txtDateTime": "Дата и время", + "PE.Controllers.Main.txtDiagram": "Рисунок SmartArt", "PE.Controllers.Main.txtDiagramTitle": "Заголовок диаграммы", "PE.Controllers.Main.txtEditingMode": "Установка режима редактирования...", "PE.Controllers.Main.txtFiguredArrows": "Фигурные стрелки", + "PE.Controllers.Main.txtFooter": "Нижний колонтитул", + "PE.Controllers.Main.txtHeader": "Верхний колонтитул", + "PE.Controllers.Main.txtImage": "Образ слайда", "PE.Controllers.Main.txtLines": "Линии", "PE.Controllers.Main.txtMath": "Математические знаки", + "PE.Controllers.Main.txtMedia": "Клип мультимедиа", "PE.Controllers.Main.txtNeedSynchronize": "Есть обновления", + "PE.Controllers.Main.txtPicture": "Рисунок", "PE.Controllers.Main.txtRectangles": "Прямоугольники", "PE.Controllers.Main.txtSeries": "Ряд", "PE.Controllers.Main.txtSldLtTBlank": "Пустой слайд", @@ -236,6 +244,10 @@ "PE.Controllers.Main.txtSldLtTVertTitleAndTx": "Вертикальный заголовок и текст", "PE.Controllers.Main.txtSldLtTVertTitleAndTxOverChart": "Вертикальный заголовок и текст над диаграммой", "PE.Controllers.Main.txtSldLtTVertTx": "Вертикальный текст", + "PE.Controllers.Main.txtSlideNumber": "Номер слайда", + "PE.Controllers.Main.txtSlideSubtitle": "Подзаголовок слайда", + "PE.Controllers.Main.txtSlideText": "Текст слайда", + "PE.Controllers.Main.txtSlideTitle": "Заголовок слайда", "PE.Controllers.Main.txtStarsRibbons": "Звезды и ленты", "PE.Controllers.Main.txtXAxis": "Ось X", "PE.Controllers.Main.txtYAxis": "Ось Y", @@ -598,6 +610,7 @@ "PE.Views.ChartSettings.textSize": "Размер", "PE.Views.ChartSettings.textStock": "Биржевая", "PE.Views.ChartSettings.textStyle": "Стиль", + "PE.Views.ChartSettings.textSurface": "Поверхность", "PE.Views.ChartSettings.textWidth": "Ширина", "PE.Views.ChartSettingsAdvanced.cancelButtonText": "Отмена", "PE.Views.ChartSettingsAdvanced.okButtonText": "Ok", @@ -1270,6 +1283,7 @@ "PE.Views.Toolbar.textStrikeout": "Зачеркнутый", "PE.Views.Toolbar.textSubscript": "Подстрочные знаки", "PE.Views.Toolbar.textSuperscript": "Надстрочные знаки", + "PE.Views.Toolbar.textSurface": "Поверхность", "PE.Views.Toolbar.textTitleError": "Ошибка", "PE.Views.Toolbar.textUnderline": "Подчеркнутый", "PE.Views.Toolbar.textZoom": "Масштаб", diff --git a/apps/presentationeditor/main/locale/zh.json b/apps/presentationeditor/main/locale/zh.json index c51fd47ef..0dbc78524 100644 --- a/apps/presentationeditor/main/locale/zh.json +++ b/apps/presentationeditor/main/locale/zh.json @@ -192,12 +192,20 @@ "PE.Controllers.Main.txtButtons": "按钮", "PE.Controllers.Main.txtCallouts": "标注", "PE.Controllers.Main.txtCharts": "图表", + "PE.Controllers.Main.txtClipArt": "Clip Art", + "PE.Controllers.Main.txtDateTime": "Date and time", + "PE.Controllers.Main.txtDiagram": "SmartArt", "PE.Controllers.Main.txtDiagramTitle": "图表标题", "PE.Controllers.Main.txtEditingMode": "设置编辑模式..", "PE.Controllers.Main.txtFiguredArrows": "图形箭头", + "PE.Controllers.Main.txtFooter": "Footer", + "PE.Controllers.Main.txtHeader": "Header", + "PE.Controllers.Main.txtImage": "Image", "PE.Controllers.Main.txtLines": "行", "PE.Controllers.Main.txtMath": "数学", + "PE.Controllers.Main.txtMedia": "Media", "PE.Controllers.Main.txtNeedSynchronize": "你有更新", + "PE.Controllers.Main.txtPicture": "Picture", "PE.Controllers.Main.txtRectangles": "矩形", "PE.Controllers.Main.txtSeries": "系列", "PE.Controllers.Main.txtSldLtTBlank": "空白", @@ -236,6 +244,10 @@ "PE.Controllers.Main.txtSldLtTVertTitleAndTx": "垂直标题和文字", "PE.Controllers.Main.txtSldLtTVertTitleAndTxOverChart": "垂直标题和文字在图表上", "PE.Controllers.Main.txtSldLtTVertTx": "垂直文本", + "PE.Controllers.Main.txtSlideNumber": "Slide number", + "PE.Controllers.Main.txtSlideSubtitle": "Slide subtitle", + "PE.Controllers.Main.txtSlideText": "Slide text", + "PE.Controllers.Main.txtSlideTitle": "Slide title", "PE.Controllers.Main.txtStarsRibbons": "星星和丝带", "PE.Controllers.Main.txtXAxis": "X轴", "PE.Controllers.Main.txtYAxis": "Y轴", @@ -598,6 +610,7 @@ "PE.Views.ChartSettings.textSize": "大小", "PE.Views.ChartSettings.textStock": "股票", "PE.Views.ChartSettings.textStyle": "类型", + "PE.Views.ChartSettings.textSurface": "Surface", "PE.Views.ChartSettings.textWidth": "宽度", "PE.Views.ChartSettingsAdvanced.cancelButtonText": "取消", "PE.Views.ChartSettingsAdvanced.okButtonText": "确定", @@ -1270,6 +1283,7 @@ "PE.Views.Toolbar.textStrikeout": "加删除线", "PE.Views.Toolbar.textSubscript": "下标", "PE.Views.Toolbar.textSuperscript": "上标", + "PE.Views.Toolbar.textSurface": "Surface", "PE.Views.Toolbar.textTitleError": "错误", "PE.Views.Toolbar.textUnderline": "下划线", "PE.Views.Toolbar.textZoom": "放大", diff --git a/apps/presentationeditor/main/resources/help/en/HelpfulHints/CollaborativeEditing.htm b/apps/presentationeditor/main/resources/help/en/HelpfulHints/CollaborativeEditing.htm index 2c2139530..36f3e0e7a 100644 --- a/apps/presentationeditor/main/resources/help/en/HelpfulHints/CollaborativeEditing.htm +++ b/apps/presentationeditor/main/resources/help/en/HelpfulHints/CollaborativeEditing.htm @@ -25,7 +25,7 @@

    The number of users who are working at the current presentation is specified in the left lower corner at the status bar - Number of users icon. If you want to see who exactly are editing the file now, you can open the Chat panel with the full list of the users.

    When no users are viewing or editing the file, the icon in the status bar will look like Manage document access rights icon allowing you to manage the users who have access to the file right from the document: invite new users giving them either full or read-only access, or denying some users access rights to the file. Click this icon to manage the access to the file; this can be done both when there are no other users who view or co-edit the document at the moment and when there are other users and the icon looks like Number of users icon.

    As soon as one of the users saves his/her changes by clicking the Save icon icon, the others will see a note within the status bar stating that they have updates. To save the changes you made, so that other users can view them, and get the updates saved by your co-editors, click the Save icon icon in the left upper corner of the top toolbar. The updates will be highlighted for you to check what exactly has been changed.

    -

    Chat*

    +

    Chat

    You can use this tool to coordinate the co-editing process on-the-fly, for example, to arrange with your collaborators about who is doing what, which paragraph you are going to edit now etc.

    The chat messages are stored during one session only. To discuss the document content it is better to use comments which are stored until you decide to delete them.

    To access the chat and leave a message for other users,

    @@ -37,7 +37,7 @@

    All the messages left by users will be displayed on the panel on the left. If there are new messages you haven't read yet, the chat icon will look like this - Chat icon.

    To close the panel with chat messages, click the Chat icon icon once again.

    -

    Comments*

    +

    Comments

    To leave a comment:

    1. select an object where you think there is an error or problem,
    2. @@ -58,7 +58,6 @@

      New comments added by other users will become visible only after you click the Save icon icon in the left upper corner of the top toolbar.

      To close the panel with comments, click the Comments icon icon once again.

      -

      *available for paid versions only

      \ No newline at end of file diff --git a/apps/presentationeditor/main/resources/help/en/HelpfulHints/KeyboardShortcuts.htm b/apps/presentationeditor/main/resources/help/en/HelpfulHints/KeyboardShortcuts.htm index c26920c68..218ed8753 100644 --- a/apps/presentationeditor/main/resources/help/en/HelpfulHints/KeyboardShortcuts.htm +++ b/apps/presentationeditor/main/resources/help/en/HelpfulHints/KeyboardShortcuts.htm @@ -25,17 +25,17 @@ Open the Search panel to start searching for a character/word/phrase in the currently edited presentation. - Open 'Comments' panel* + Open 'Comments' panel Ctrl+Shift+H Open the Comments panel to add your own comment or reply to other users' comments. - Open comment field* + Open comment field Alt+H Open a data entry field where you can add the text of your comment. - Open 'Chat' panel* + Open 'Chat' panel Alt+Q Open the Chat panel and send a message. @@ -360,7 +360,6 @@ Remove a paragraph indent from the left incrementally. --> -

      *available for paid versions only

      \ No newline at end of file diff --git a/apps/presentationeditor/main/resources/help/ru/HelpfulHints/CollaborativeEditing.htm b/apps/presentationeditor/main/resources/help/ru/HelpfulHints/CollaborativeEditing.htm index 254c50273..479e26685 100644 --- a/apps/presentationeditor/main/resources/help/ru/HelpfulHints/CollaborativeEditing.htm +++ b/apps/presentationeditor/main/resources/help/ru/HelpfulHints/CollaborativeEditing.htm @@ -25,7 +25,7 @@

      Количество пользователей, которые в данный момент работают над текущей презентацией, отображается в левом нижнем углу в строке состояния - Значок Количество пользователей. Чтобы увидеть, кто именно редактирует файл в настоящий момент, откройте панель Чата с полным списком пользователей.

      Если файл не просматривают или не редактируют другие пользователи, значок в строке состояния будет выглядеть следующим образом: Значок Управление правами доступа к документу, с его помощью можно непосредственно из документа управлять пользователями, имеющими доступ к файлу: приглашать новых пользователей, предоставляя им полный доступ или доступ только для чтения, или запрещать доступ к файлу для некоторых пользователей. Нажмите на этот значок для управления доступом к файлу; это можно сделать и в отсутствие других пользователей, которые просматривают или совместно редактируют документ в настоящий момент, и при наличии других пользователей, когда значок выглядит так: Значок Количество пользователей.

      Как только один из пользователей сохранит свои изменения, нажав на значок Значок Сохранить, все остальные увидят в строке состояния примечание, которое сообщает о наличии обновлений. Чтобы сохранить внесенные вами изменения и сделать их доступными для других пользователей, а также получить обновления, сохраненные другими пользователями, нажмите на значок Значок Сохранить и получить обновления в левом верхнем углу верхней панели инструментов. Обновления будут подсвечены, чтобы Вы могли проверить, что конкретно изменилось.

      -

      Чат*

      +

      Чат

      Этот инструмент можно использовать для оперативного согласования процесса совместного редактирования, например, для того, чтобы договориться с другими участниками, кто и что должен делать, какой абзац вы собираетесь сейчас отредактировать и т.д.

      Сообщения в чате хранятся только в течение одной сессии. Для обсуждения содержания документа лучше использовать комментарии, которые хранятся до тех пор, пока вы не решите их удалить.

      Чтобы войти в чат и оставить сообщение для других пользователей:

      @@ -37,7 +37,7 @@

      Все сообщения, оставленные пользователями, будут отображаться на панели слева. Если есть новые сообщения, которые Вы еще не прочитали, значок чата будет выглядеть так - Значок Чат.

      Чтобы закрыть панель с сообщениями чата, нажмите на значок Значок Чат еще раз.

      -

      Комментарии*

      +

      Комментарии

      Чтобы оставить комментарий:

      1. выделите объект, в котором, по Вашему мнению, содержится какая-то ошибка или проблема,
      2. @@ -58,7 +58,6 @@

        Новые комментарии, добавленные другими пользователями, станут видимыми только после того, как Вы нажмете на значок Значок Сохранить и получить обновления в левом верхнем углу верхней панели инструментов.

        Чтобы закрыть панель с комментариями, нажмите на значок Значок Комментарии еще раз.

        -

        *доступно только для платных версий

        \ No newline at end of file diff --git a/apps/presentationeditor/main/resources/help/ru/HelpfulHints/KeyboardShortcuts.htm b/apps/presentationeditor/main/resources/help/ru/HelpfulHints/KeyboardShortcuts.htm index a0a7a5dd6..5a6988982 100644 --- a/apps/presentationeditor/main/resources/help/ru/HelpfulHints/KeyboardShortcuts.htm +++ b/apps/presentationeditor/main/resources/help/ru/HelpfulHints/KeyboardShortcuts.htm @@ -25,17 +25,17 @@ Открыть панель Поиск, чтобы начать поиск символа/слова/фразы в редактируемой презентации. - Открыть панель 'Комментарии'* + Открыть панель 'Комментарии' Ctrl+Shift+H Открыть панель Комментарии, чтобы добавить свой комментарий или ответить на комментарии других пользователей. - Открыть поле комментария* + Открыть поле комментария Alt+H Открыть поле ввода данных, в котором можно добавить текст комментария. - Открыть панель 'Чат'* + Открыть панель 'Чат' Alt+Q Открыть панель Чат и отправить сообщение. @@ -360,7 +360,6 @@ Remove a paragraph indent from the left incrementally. --> -

        *доступно только для платных версий

        \ No newline at end of file diff --git a/apps/presentationeditor/main/resources/less/toolbar.less b/apps/presentationeditor/main/resources/less/toolbar.less index 687417ca8..37c1aa167 100644 --- a/apps/presentationeditor/main/resources/less/toolbar.less +++ b/apps/presentationeditor/main/resources/less/toolbar.less @@ -222,6 +222,22 @@ background-position: -200px 0; } +.surface-normal{ + background-position: -100px -200px; +} + +.surface-wireframe{ + background-position: -100px -200px; +} + +.contour-normal{ + background-position: -100px -200px; +} + +.contour-wireframe{ + background-position: -100px -200px; +} + @toolbar-icon-size: 20px; .toolbar-btn-icon(btn-changeslide, 7, @toolbar-icon-size); .toolbar-btn-icon(btn-preview, 8, @toolbar-icon-size); diff --git a/apps/presentationeditor/mobile/app/controller/Main.js b/apps/presentationeditor/mobile/app/controller/Main.js index e6f225b8f..3ec2750a0 100644 --- a/apps/presentationeditor/mobile/app/controller/Main.js +++ b/apps/presentationeditor/mobile/app/controller/Main.js @@ -1233,7 +1233,7 @@ define([ errorBadImageUrl: 'Image url is incorrect', txtSlideText: 'Slide text', txtClipArt: 'Clip Art', - txtDiagram: 'Diagram', + txtDiagram: 'SmartArt', txtDateTime: 'Date and time', txtFooter: 'Footer', txtHeader: 'Header', diff --git a/apps/presentationeditor/mobile/locale/en.json b/apps/presentationeditor/mobile/locale/en.json index 19daf8fd4..f704df1d5 100644 --- a/apps/presentationeditor/mobile/locale/en.json +++ b/apps/presentationeditor/mobile/locale/en.json @@ -195,7 +195,7 @@ "PE.Controllers.Main.warnProcessRightsChange": "You have been denied the right to edit the file.", "PE.Controllers.Main.txtSlideText": "Slide text", "PE.Controllers.Main.txtClipArt": "Clip Art", - "PE.Controllers.Main.txtDiagram": "Diagram", + "PE.Controllers.Main.txtDiagram": "SmartArt", "PE.Controllers.Main.txtDateTime": "Date and time", "PE.Controllers.Main.txtFooter": "Footer", "PE.Controllers.Main.txtHeader": "Header", diff --git a/apps/presentationeditor/mobile/locale/ru.json b/apps/presentationeditor/mobile/locale/ru.json index 4269f7a60..9ce0ac2b6 100644 --- a/apps/presentationeditor/mobile/locale/ru.json +++ b/apps/presentationeditor/mobile/locale/ru.json @@ -193,6 +193,18 @@ "PE.Controllers.Main.warnLicenseExp": "Истек срок действия лицензии.
        Обновите лицензию, а затем обновите страницу.", "PE.Controllers.Main.warnNoLicense": "Вы используете open source версию ONLYOFFICE. Эта версия имеет ограничения по количеству одновременных подключений к серверу документов (20 подключений одновременно).
        Если требуется больше, рассмотрите вопрос о покупке коммерческой лицензии.", "PE.Controllers.Main.warnProcessRightsChange": "Вам было отказано в праве на редактирование этого файла.", + "PE.Controllers.Main.txtSlideText": "Текст слайда", + "PE.Controllers.Main.txtClipArt": "Картинка", + "PE.Controllers.Main.txtDiagram": "Рисунок SmartArt", + "PE.Controllers.Main.txtDateTime": "Дата и время", + "PE.Controllers.Main.txtFooter": "Нижний колонтитул", + "PE.Controllers.Main.txtHeader": "Верхний колонтитул", + "PE.Controllers.Main.txtMedia": "Клип мультимедиа", + "PE.Controllers.Main.txtPicture": "Рисунок", + "PE.Controllers.Main.txtImage": "Образ слайда", + "PE.Controllers.Main.txtSlideNumber": "Номер слайда", + "PE.Controllers.Main.txtSlideSubtitle": "Подзаголовок слайда", + "PE.Controllers.Main.txtSlideTitle": "Заголовок слайда", "PE.Controllers.Search.textNoTextFound": "Текст не найден", "PE.Controllers.Settings.notcriticalErrorTitle": "Внимание", "PE.Controllers.Settings.txtLoading": "Загрузка...", diff --git a/apps/spreadsheeteditor/main/app/controller/Main.js b/apps/spreadsheeteditor/main/app/controller/Main.js index cef1da893..0635b5234 100644 --- a/apps/spreadsheeteditor/main/app/controller/Main.js +++ b/apps/spreadsheeteditor/main/app/controller/Main.js @@ -105,6 +105,7 @@ define([ var me = this; this._state = {isDisconnected: false, usersCount: 1, fastCoauth: true, lostEditingRights: false, licenseWarning: false}; + this.translationTable = []; if (!Common.Utils.isBrowserSupported()){ Common.Utils.showBrowserRestriction(); @@ -129,16 +130,16 @@ define([ 'Your text here': this.txtArt }; styleNames.forEach(function(item){ - translate[item] = me['txtStyle_' + item.replace(/ /g, '_')] || item; + translate[item] = me.translationTable[item] = me['txtStyle_' + item.replace(/ /g, '_')] || item; }); - translate['Currency [0]'] = me.txtStyle_Currency + ' [0]'; - translate['Comma [0]'] = me.txtStyle_Comma + ' [0]'; + translate['Currency [0]'] = me.translationTable['Currency [0]'] = me.txtStyle_Currency + ' [0]'; + translate['Comma [0]'] = me.translationTable['Comma [0]'] = me.txtStyle_Comma + ' [0]'; for (var i=1; i<7; i++) { - translate['Accent'+i] = me.txtAccent + i; - translate['20% - Accent'+i] = '20% - ' + me.txtAccent + i; - translate['40% - Accent'+i] = '40% - ' + me.txtAccent + i; - translate['60% - Accent'+i] = '60% - ' + me.txtAccent + i; + translate['Accent'+i] = me.translationTable['Accent'+i] = me.txtAccent + i; + translate['20% - Accent'+i] = me.translationTable['20% - Accent'+i] = '20% - ' + me.txtAccent + i; + translate['40% - Accent'+i] = me.translationTable['40% - Accent'+i] = '40% - ' + me.txtAccent + i; + translate['60% - Accent'+i] = me.translationTable['60% - Accent'+i] = '60% - ' + me.txtAccent + i; } this.api = new Asc.spreadsheet_api({ @@ -791,7 +792,7 @@ define([ /** coauthoring begin **/ this.appOptions.canCoAuthoring = !this.appOptions.isLightVersion; /** coauthoring end **/ - this.appOptions.canComments = this.appOptions.canLicense && (this.permissions.comments===undefined ? (this.permissions.edit !== false && this.editorConfig.mode !== 'view') : this.permissions.comments); + this.appOptions.canComments = this.appOptions.canLicense && (this.permissions.comment===undefined ? (this.permissions.edit !== false && this.editorConfig.mode !== 'view') : this.permissions.comment); this.appOptions.canComments = this.appOptions.canComments && !((typeof (this.editorConfig.customization) == 'object') && this.editorConfig.customization.comments===false); this.appOptions.canChat = this.appOptions.canLicense && !this.appOptions.isOffline && !((typeof (this.editorConfig.customization) == 'object') && this.editorConfig.customization.chat===false); this.appOptions.canRename = !!this.permissions.rename; diff --git a/apps/spreadsheeteditor/main/app/controller/RightMenu.js b/apps/spreadsheeteditor/main/app/controller/RightMenu.js index 9596d7808..85af0e8a4 100644 --- a/apps/spreadsheeteditor/main/app/controller/RightMenu.js +++ b/apps/spreadsheeteditor/main/app/controller/RightMenu.js @@ -106,7 +106,6 @@ define([ panel.ChangeSettings.call(panel, props); } Common.NotificationCenter.trigger('layout:changed', 'rightmenu'); - Common.NotificationCenter.trigger('edit:complete', this.rightmenu); }, onSelectionChanged: function(info) { diff --git a/apps/spreadsheeteditor/main/app/controller/Toolbar.js b/apps/spreadsheeteditor/main/app/controller/Toolbar.js index 5635626a3..5d65fa450 100644 --- a/apps/spreadsheeteditor/main/app/controller/Toolbar.js +++ b/apps/spreadsheeteditor/main/app/controller/Toolbar.js @@ -1539,11 +1539,13 @@ define([ listStyles.menuPicker.store.reset([]); // remove all + var mainController = this.getApplication().getController('Main'); var merged_array = styles.asc_getDefaultStyles().concat(styles.asc_getDocStyles()); _.each(merged_array, function(style){ listStyles.menuPicker.store.add({ imageUrl: style.asc_getImage(), name : style.asc_getName(), + tip : mainController.translationTable[style.get_Name()] || style.get_Name(), uid : Common.UI.getId() }); }); diff --git a/apps/spreadsheeteditor/main/app/template/ChartSettingsDlg.template b/apps/spreadsheeteditor/main/app/template/ChartSettingsDlg.template index 693beaab9..31d81f931 100644 --- a/apps/spreadsheeteditor/main/app/template/ChartSettingsDlg.template +++ b/apps/spreadsheeteditor/main/app/template/ChartSettingsDlg.template @@ -370,7 +370,7 @@ - +
        diff --git a/apps/spreadsheeteditor/main/app/template/Toolbar.template b/apps/spreadsheeteditor/main/app/template/Toolbar.template index 3ac6b9e23..6cfbb24e4 100644 --- a/apps/spreadsheeteditor/main/app/template/Toolbar.template +++ b/apps/spreadsheeteditor/main/app/template/Toolbar.template @@ -33,11 +33,11 @@
        - +
        - +
        @@ -64,17 +64,17 @@
        - - - - + + + +
        - - - - + + + +
        @@ -90,11 +90,11 @@
        - +
        - +
        diff --git a/apps/spreadsheeteditor/main/app/view/ChartSettings.js b/apps/spreadsheeteditor/main/app/view/ChartSettings.js index 9f353da74..9d7f453cf 100644 --- a/apps/spreadsheeteditor/main/app/view/ChartSettings.js +++ b/apps/spreadsheeteditor/main/app/view/ChartSettings.js @@ -160,7 +160,8 @@ define([ this.mnuChartTypePicker.selectRecord(record, true); if (record) { this.btnChartType.setIconCls('item-chartlist ' + record.get('iconCls')); - } + } else + this.btnChartType.setIconCls(''); this.updateChartStyles(this.api.asc_getChartPreviews(type)); this._state.ChartType = type; } @@ -226,7 +227,8 @@ define([ this.mnuSparkTypePicker.selectRecord(record, true); if (record) { this.btnSparkType.setIconCls('item-chartlist ' + record.get('iconCls')); - } + } else + this.btnSparkType.setIconCls(''); this._state.SparkType = type; styleChanged = true; } @@ -674,6 +676,7 @@ define([ { id: 'menu-chart-group-area', caption: me.textArea, inline: true }, { id: 'menu-chart-group-scatter', caption: me.textPoint, inline: true }, { id: 'menu-chart-group-stock', caption: me.textStock, inline: true } + // { id: 'menu-chart-group-surface', caption: me.textSurface} ]), store: new Common.UI.DataViewStore([ { group: 'menu-chart-group-bar', type: Asc.c_oAscChartTypeSettings.barNormal, iconCls: 'column-normal', selected: true}, @@ -701,6 +704,10 @@ define([ { group: 'menu-chart-group-area', type: Asc.c_oAscChartTypeSettings.areaStackedPer, iconCls: 'area-pstack'}, { group: 'menu-chart-group-scatter', type: Asc.c_oAscChartTypeSettings.scatter, iconCls: 'point-normal'}, { group: 'menu-chart-group-stock', type: Asc.c_oAscChartTypeSettings.stock, iconCls: 'stock-normal'} + // { group: 'menu-chart-group-surface', type: Asc.c_oAscChartTypeSettings.surfaceNormal, iconCls: 'surface-normal'}, + // { group: 'menu-chart-group-surface', type: Asc.c_oAscChartTypeSettings.surfaceWireframe, iconCls: 'surface-wireframe'}, + // { group: 'menu-chart-group-surface', type: Asc.c_oAscChartTypeSettings.contourNormal, iconCls: 'contour-normal'}, + // { group: 'menu-chart-group-surface', type: Asc.c_oAscChartTypeSettings.contourWireframe, iconCls: 'contour-wireframe'} ]), itemTemplate: _.template('
        ') }); @@ -1337,7 +1344,8 @@ define([ textType: 'Type', textSelectData: 'Select Data', textRanges: 'Data Range', - textBorderSizeErr: 'The entered value is incorrect.
        Please enter a value between 0 pt and 1584 pt.' + textBorderSizeErr: 'The entered value is incorrect.
        Please enter a value between 0 pt and 1584 pt.', + textSurface: 'Surface' }, SSE.Views.ChartSettings || {})); }); \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/app/view/ChartSettingsDlg.js b/apps/spreadsheeteditor/main/app/view/ChartSettingsDlg.js index afa6d701e..dcf98fae2 100644 --- a/apps/spreadsheeteditor/main/app/view/ChartSettingsDlg.js +++ b/apps/spreadsheeteditor/main/app/view/ChartSettingsDlg.js @@ -150,6 +150,7 @@ define([ 'text!spreadsheeteditor/main/app/template/ChartSettingsDlg.template' { id: 'menu-chart-group-area', caption: me.textArea, inline: true }, { id: 'menu-chart-group-scatter', caption: me.textPoint, inline: true }, { id: 'menu-chart-group-stock', caption: me.textStock, inline: true } + // { id: 'menu-chart-group-surface', caption: me.textSurface} ]), store: new Common.UI.DataViewStore([ { group: 'menu-chart-group-bar', type: Asc.c_oAscChartTypeSettings.barNormal, iconCls: 'column-normal', selected: true}, @@ -177,6 +178,10 @@ define([ 'text!spreadsheeteditor/main/app/template/ChartSettingsDlg.template' { group: 'menu-chart-group-area', type: Asc.c_oAscChartTypeSettings.areaStackedPer, iconCls: 'area-pstack'}, { group: 'menu-chart-group-scatter', type: Asc.c_oAscChartTypeSettings.scatter, iconCls: 'point-normal'}, { group: 'menu-chart-group-stock', type: Asc.c_oAscChartTypeSettings.stock, iconCls: 'stock-normal'} + // { group: 'menu-chart-group-surface', type: Asc.c_oAscChartTypeSettings.surfaceNormal, iconCls: 'surface-normal'}, + // { group: 'menu-chart-group-surface', type: Asc.c_oAscChartTypeSettings.surfaceWireframe, iconCls: 'surface-wireframe'}, + // { group: 'menu-chart-group-surface', type: Asc.c_oAscChartTypeSettings.contourNormal, iconCls: 'contour-normal'}, + // { group: 'menu-chart-group-surface', type: Asc.c_oAscChartTypeSettings.contourWireframe, iconCls: 'contour-wireframe'} ]), itemTemplate: _.template('
        ') }); @@ -883,7 +888,7 @@ define([ 'text!spreadsheeteditor/main/app/template/ChartSettingsDlg.template' ]; this.cmbEmptyCells = new Common.UI.ComboBox({ el : $('#spark-dlg-combo-empty'), - menuStyle : 'min-width: 188px;', + menuStyle : 'min-width: 220px;', editable : false, cls : 'input-group-nr' }); @@ -1283,7 +1288,6 @@ define([ 'text!spreadsheeteditor/main/app/template/ChartSettingsDlg.template' if (this._changedProps) { this._changedProps.asc_setType(rawData.type); } - this.chartSettings.asc_setType(rawData.type); this._state.SparkType = rawData.type; var changed = false, @@ -1300,7 +1304,7 @@ define([ 'text!spreadsheeteditor/main/app/template/ChartSettingsDlg.template' this.cmbEmptyCells.setValue((rawData.type !== Asc.c_oAscSparklineType.Line && value==Asc.c_oAscEDispBlanksAs.Span) ? this.textEmptyLine : value); } - this.updateSparkStyles(this.chartSettings.asc_getStyles()); + this.updateSparkStyles(this.chartSettings.asc_getStyles(rawData.type)); }, @@ -1327,7 +1331,8 @@ define([ 'text!spreadsheeteditor/main/app/template/ChartSettingsDlg.template' this.mnuChartTypePicker.selectRecord(record, true); if (record) { this.btnChartType.setIconCls('item-chartlist ' + record.get('iconCls')); - } + } else + this.btnChartType.setIconCls(''); this._noApply = false; @@ -1384,6 +1389,8 @@ define([ 'text!spreadsheeteditor/main/app/template/ChartSettingsDlg.template' this.mnuSparkTypePicker.selectRecord(record, true); if (record) this.btnSparkType.setIconCls('item-chartlist ' + record.get('iconCls')); + else + this.btnSparkType.setIconCls(''); this.updateSparkStyles((this.sparklineStyles) ? this.sparklineStyles : props.asc_getStyles()); @@ -1438,10 +1445,12 @@ define([ 'text!spreadsheeteditor/main/app/template/ChartSettingsDlg.template' }, getSettings: function() { - var value, - type = this.mnuChartTypePicker.getSelectedRec()[0].get('type'); + var value; if (this.isChart) { + var rec = this.mnuChartTypePicker.getSelectedRec(), + type = (rec && rec.length>0) ? rec[0].get('type') : this.currentChartType; + this.chartSettings.putType(type); this.chartSettings.putInColumns(this.cmbDataDirect.getValue()==1); @@ -1498,7 +1507,10 @@ define([ 'text!spreadsheeteditor/main/app/template/ChartSettingsDlg.template' if (this.isChart) { var isvalid; if (!_.isEmpty(this.txtDataRange.getValue())) { - isvalid = this.api.asc_checkDataRange(Asc.c_oAscSelectionDialogType.Chart, this.txtDataRange.getValue(), true, this.cmbDataDirect.getValue()==0, this.mnuChartTypePicker.getSelectedRec()[0].get('type')); + var rec = this.mnuChartTypePicker.getSelectedRec(), + type = (rec && rec.length>0) ? rec[0].get('type') : this.currentChartType; + + isvalid = this.api.asc_checkDataRange(Asc.c_oAscSelectionDialogType.Chart, this.txtDataRange.getValue(), true, this.cmbDataDirect.getValue()==0, type); if (isvalid == Asc.c_oAscError.ID.No) return true; } else @@ -1760,7 +1772,8 @@ define([ 'text!spreadsheeteditor/main/app/template/ChartSettingsDlg.template' textAlt: 'Alternative Text', textAltTitle: 'Title', textAltDescription: 'Description', - textAltTip: 'The alternative text-based representation of the visual object information, which will be read to the people with vision or cognitive impairments to help them better understand what information there is in the image, autoshape, chart or table.' + textAltTip: 'The alternative text-based representation of the visual object information, which will be read to the people with vision or cognitive impairments to help them better understand what information there is in the image, autoshape, chart or table.', + textSurface: 'Surface' }, SSE.Views.ChartSettingsDlg || {})); }); diff --git a/apps/spreadsheeteditor/main/app/view/ParagraphSettingsAdvanced.js b/apps/spreadsheeteditor/main/app/view/ParagraphSettingsAdvanced.js index c907ecda2..423adf91d 100644 --- a/apps/spreadsheeteditor/main/app/view/ParagraphSettingsAdvanced.js +++ b/apps/spreadsheeteditor/main/app/view/ParagraphSettingsAdvanced.js @@ -506,6 +506,7 @@ define([ 'text!spreadsheeteditor/main/app/template/ParagraphSettingsAdvanced. }); if (rec) { rec.set('tabAlign', align); + this._tabListChanged = true; } else { rec = new Common.UI.DataViewModel(); rec.set({ diff --git a/apps/spreadsheeteditor/main/app/view/ShapeSettingsAdvanced.js b/apps/spreadsheeteditor/main/app/view/ShapeSettingsAdvanced.js index bcda24275..640458a70 100644 --- a/apps/spreadsheeteditor/main/app/view/ShapeSettingsAdvanced.js +++ b/apps/spreadsheeteditor/main/app/view/ShapeSettingsAdvanced.js @@ -535,6 +535,12 @@ define([ 'text!spreadsheeteditor/main/app/template/ShapeSettingsAdvanced.temp } this.btnsCategory[2].setDisabled(null === margins); // Margins + var shapetype = shapeprops.asc_getType(); + this.btnsCategory[3].setDisabled(shapetype=='line' || shapetype=='bentConnector2' || shapetype=='bentConnector3' + || shapetype=='bentConnector4' || shapetype=='bentConnector5' || shapetype=='curvedConnector2' + || shapetype=='curvedConnector3' || shapetype=='curvedConnector4' || shapetype=='curvedConnector5' + || shapetype=='straightConnector1'); + value = shapeprops.asc_getColumnNumber(); this.spnColumns.setValue((null !== value && undefined !== value) ? value : '', true); diff --git a/apps/spreadsheeteditor/main/app/view/Toolbar.js b/apps/spreadsheeteditor/main/app/view/Toolbar.js index 43aeec780..da28e9417 100644 --- a/apps/spreadsheeteditor/main/app/view/Toolbar.js +++ b/apps/spreadsheeteditor/main/app/view/Toolbar.js @@ -728,7 +728,6 @@ define([ enableKeyEvents : true, itemWidth : 112, itemHeight : 38, - hint : this.tipCellStyle, menuMaxHeight : 226, lock : [_set.editCell, _set.selChart, _set.selChartText, _set.selShape, _set.selShapeText, _set.selImage, _set.lostConnect, _set.coAuth], beforeOpenHandler: function(e) { @@ -1632,6 +1631,7 @@ define([ { id: 'menu-chart-group-area', caption: me.textArea, inline: true }, { id: 'menu-chart-group-scatter', caption: me.textPoint, inline: true }, { id: 'menu-chart-group-stock', caption: me.textStock, inline: true } + // { id: 'menu-chart-group-surface', caption: me.textSurface} // ,{ id: 'menu-chart-group-sparkcolumn', inline: true, headername: me.textSparks }, // { id: 'menu-chart-group-sparkline', inline: true }, // { id: 'menu-chart-group-sparkwin', inline: true } @@ -1662,6 +1662,10 @@ define([ { group: 'menu-chart-group-area', type: Asc.c_oAscChartTypeSettings.areaStackedPer, allowSelected: true, iconCls: 'area-pstack'}, { group: 'menu-chart-group-scatter', type: Asc.c_oAscChartTypeSettings.scatter, allowSelected: true, iconCls: 'point-normal'}, { group: 'menu-chart-group-stock', type: Asc.c_oAscChartTypeSettings.stock, allowSelected: true, iconCls: 'stock-normal'} + // { group: 'menu-chart-group-surface', type: Asc.c_oAscChartTypeSettings.surfaceNormal, allowSelected: true, iconCls: 'surface-normal'}, + // { group: 'menu-chart-group-surface', type: Asc.c_oAscChartTypeSettings.surfaceWireframe, allowSelected: true, iconCls: 'surface-wireframe'}, + // { group: 'menu-chart-group-surface', type: Asc.c_oAscChartTypeSettings.contourNormal, allowSelected: true, iconCls: 'contour-normal'}, + // { group: 'menu-chart-group-surface', type: Asc.c_oAscChartTypeSettings.contourWireframe, allowSelected: true, iconCls: 'contour-wireframe'} // ,{ group: 'menu-chart-group-sparkcolumn', type: Asc.c_oAscSparklineType.Column, allowSelected: true, iconCls: 'spark-column', tip: me.textColumnSpark}, // { group: 'menu-chart-group-sparkline', type: Asc.c_oAscSparklineType.Line, allowSelected: true, iconCls: 'spark-line', tip: me.textLineSpark}, // { group: 'menu-chart-group-sparkwin', type: Asc.c_oAscSparklineType.Stacked, allowSelected: true, iconCls: 'spark-win', tip: me.textWinLossSpark} @@ -2052,6 +2056,7 @@ define([ capInsertChart: 'Chart', capInsertHyperlink: 'Hyperlink', capInsertEquation: 'Equation', - capBtnComment: 'Comment' + capBtnComment: 'Comment', + textSurface: 'Surface' }, SSE.Views.Toolbar || {})); }); \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/index.html b/apps/spreadsheeteditor/main/index.html index 2c02a9a88..38f8b1ced 100644 --- a/apps/spreadsheeteditor/main/index.html +++ b/apps/spreadsheeteditor/main/index.html @@ -6,14 +6,7 @@ - - - - - - - - + - - + + + + + + + +
        @@ -271,6 +272,12 @@ + + + diff --git a/apps/spreadsheeteditor/main/index.html.deploy b/apps/spreadsheeteditor/main/index.html.deploy index 65d8b6e2d..f0c9d2caf 100644 --- a/apps/spreadsheeteditor/main/index.html.deploy +++ b/apps/spreadsheeteditor/main/index.html.deploy @@ -8,11 +8,7 @@ - - - - - + - - + + + + + +