diff --git a/client/modules/IDE/components/CollectionList/CollectionList.jsx b/client/modules/IDE/components/CollectionList/CollectionList.jsx index 2f556d36ec..bd1f30e10e 100644 --- a/client/modules/IDE/components/CollectionList/CollectionList.jsx +++ b/client/modules/IDE/components/CollectionList/CollectionList.jsx @@ -140,7 +140,7 @@ class CollectionList extends React.Component { {this._renderLoader()} {this._renderEmptyTable()} {this.hasCollections() && - +
{this._renderFieldHeader('name', this.props.t('CollectionList.HeaderName'))} diff --git a/client/modules/IDE/components/SketchList.jsx b/client/modules/IDE/components/SketchList.jsx index 17aa1d41fc..ae00dbe105 100644 --- a/client/modules/IDE/components/SketchList.jsx +++ b/client/modules/IDE/components/SketchList.jsx @@ -433,7 +433,7 @@ class SketchList extends React.Component { {this._renderLoader()} {this._renderEmptyTable()} {this.hasSketches() && -
+
{this._renderFieldHeader('name', this.props.t('SketchList.HeaderName'))} diff --git a/client/modules/IDE/components/Toolbar.jsx b/client/modules/IDE/components/Toolbar.jsx index 5da3856064..0f6f94811b 100644 --- a/client/modules/IDE/components/Toolbar.jsx +++ b/client/modules/IDE/components/Toolbar.jsx @@ -156,7 +156,7 @@ class Toolbar extends React.Component { if (this.props.owner) { return (

- by {this.props.owner.username} + {this.props.t('Toolbar.By')} {this.props.owner.username}

); } diff --git a/client/modules/User/components/Collection.jsx b/client/modules/User/components/Collection.jsx index 7e9a8e3825..8a9329b372 100644 --- a/client/modules/User/components/Collection.jsx +++ b/client/modules/User/components/Collection.jsx @@ -371,7 +371,7 @@ class Collection extends React.Component {
{this._renderEmptyTable()} {this.hasCollectionItems() && -
+
{this._renderFieldHeader('name', this.props.t('Collection.HeaderName'))} diff --git a/translations/locales/en-US/translations.json b/translations/locales/en-US/translations.json index ab64c317eb..939a6198fb 100644 --- a/translations/locales/en-US/translations.json +++ b/translations/locales/en-US/translations.json @@ -99,7 +99,8 @@ "PlayOnlyVisualSketchARIA": "Play only visual sketch", "StopSketchARIA": "Stop sketch", "EditSketchARIA": "Edit sketch name", - "NewSketchNameARIA": "New sketch name" + "NewSketchNameARIA": "New sketch name", + "By": " by " }, "Console": { "Title": "Console", @@ -407,6 +408,7 @@ "NumSketches_plural": "{{count}} sketches", "By":"Collection by ", "NoSketches": "No sketches in collection", + "TableSummary": "table containing all collections", "HeaderName": "Name", "HeaderCreatedAt": "Date Added", "HeaderUser": "Owner", @@ -445,6 +447,7 @@ "Title": "p5.js Web Editor | My collections", "AnothersTitle": "p5.js Web Editor | {{anotheruser}}'s collections", "NoCollections": "No collections.", + "TableSummary": "table containing all collections", "HeaderName": "Name", "HeaderCreatedAt": "Date Created", "HeaderCreatedAt_mobile": "Created", @@ -487,6 +490,7 @@ "ButtonLabelAscendingARIA": "Sort by {{displayName}} ascending.", "ButtonLabelDescendingARIA": "Sort by {{displayName}} descending.", "AddToCollectionOverlayTitle": "Add to collection", + "TableSummary": "table containing all saved projects", "HeaderName": "Sketch", "HeaderCreatedAt": "Date Created", "HeaderCreatedAt_mobile": "Created", diff --git a/translations/locales/es-419/translations.json b/translations/locales/es-419/translations.json index 8a531b384d..01d957b4af 100644 --- a/translations/locales/es-419/translations.json +++ b/translations/locales/es-419/translations.json @@ -99,7 +99,8 @@ "PlayOnlyVisualSketchARIA": "Ejecutar bosquejo visual", "StopSketchARIA": "Detener bosquejo", "EditSketchARIA": "Editar nombre de bosquejo", - "NewSketchNameARIA": "Nuevo nombre de bosquejo" + "NewSketchNameARIA": "Nuevo nombre de bosquejo", + "By": " de " }, "Console": { "Title": "Consola", @@ -407,6 +408,7 @@ "NumSketches_plural": "{{count}} bosquejos", "By":"Colección por ", "NoSketches": "No hay bosquejos en la colección", + "TableSummary": "tabla que contiene todas las colecciones", "HeaderName": "Nombre", "HeaderCreatedAt": "Fecha de agregación", "HeaderUser": "Propietario", @@ -445,6 +447,7 @@ "Title": "p5.js Web Editor | Mis colecciones", "AnothersTitle": "Editor Web p5.js | Colecciones de {{anotheruser}}", "NoCollections": "No hay colecciones.", + "TableSummary": "la tabla contiene todas las colecciones", "HeaderName": "Nombre", "HeaderCreatedAt": "Fecha Creación", "HeaderCreatedAt_mobile": "Creación", @@ -487,6 +490,7 @@ "ButtonLabelAscendingARIA": "Ordenar por {{displayName}} ascendente.", "ButtonLabelDescendingARIA": "Ordenar por {{displayName}} descendente.", "AddToCollectionOverlayTitle": "Agregar a colección", + "TableSummary": "la tabla contiene todos los proyectos guardados", "HeaderName": "Bosquejo", "HeaderCreatedAt": "Fecha Creación", "HeaderCreatedAt_mobile": "Creación",