summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Makefile2
-rw-r--r--i18n/es.json16
-rw-r--r--web/react/components/tutorial/tutorial_tip.jsx2
-rw-r--r--web/sass-files/sass/partials/_tutorial.scss1
4 files changed, 19 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 1012b786e..9c4e6ee1f 100644
--- a/Makefile
+++ b/Makefile
@@ -255,7 +255,7 @@ nuke: | clean clean-docker
touch $@
-.prepare-jsx:
+.prepare-jsx: web/react/package.json
@echo Preparation for compiling jsx code
cd web/react/ && npm install
diff --git a/i18n/es.json b/i18n/es.json
index 70802b07a..c4e7a552c 100644
--- a/i18n/es.json
+++ b/i18n/es.json
@@ -580,6 +580,10 @@
"translation": "Archivo de licencia inválido."
},
{
+ "id": "api.license.add_license.invalid_count.app_error",
+ "translation": "No se pudo obtener el número total de usuarios únicos."
+ },
+ {
"id": "api.license.add_license.no_file.app_error",
"translation": "No hay un archivo bajo 'license' en la solicitud"
},
@@ -592,6 +596,10 @@
"translation": "La licencia no fue guardada correctamente."
},
{
+ "id": "api.license.add_license.unique_users.app_error",
+ "translation": "Esta licencia sólo soporta {{.Users}} usuarios, cuando tu sistema tiene {{.Count}} usuarios únicos. Los usuarios únicos se cuentan por direcciónes de correo electrónico distintas. Puedes ver el totoal de usuarios en REPORTES DEL SITIO -> Ver Estadísticas."
+ },
+ {
"id": "api.license.init.debug",
"translation": "Inicializando rutas del API para las licencias"
},
@@ -1564,6 +1572,10 @@
"translation": "No se pudo actualizar la imagen del perfil. El archivo es muy grande."
},
{
+ "id": "api.user.upload_profile_user.upload_profile.app_error",
+ "translation": "No se pudo subir la imagen del perfil"
+ },
+ {
"id": "api.web_conn.new_web_conn.last_activity.error",
"translation": "Falla al actualizar LastActivityAt para user_id=%v and session_id=%v, err=%v"
},
@@ -2764,6 +2776,10 @@
"translation": "No se puede actualizar la sesión"
},
{
+ "id": "store.sql_session.update_device_id.app_error",
+ "translation": "No pudimos actualizar el id del dispositivo"
+ },
+ {
"id": "store.sql_session.update_last_activity.app_error",
"translation": "No pudimos actualizar el campo last_activity_at"
},
diff --git a/web/react/components/tutorial/tutorial_tip.jsx b/web/react/components/tutorial/tutorial_tip.jsx
index 03ecdabab..23daa4707 100644
--- a/web/react/components/tutorial/tutorial_tip.jsx
+++ b/web/react/components/tutorial/tutorial_tip.jsx
@@ -71,7 +71,7 @@ export default class TutorialTip extends React.Component {
}
var tipColor = '';
- if (this.props.overlayClass === 'tip-overlay--header') {
+ if (this.props.overlayClass === 'tip-overlay--header' || this.props.overlayClass === 'tip-overlay--sidebar') {
tipColor = 'White';
}
diff --git a/web/sass-files/sass/partials/_tutorial.scss b/web/sass-files/sass/partials/_tutorial.scss
index 20a15441e..0a2d1e704 100644
--- a/web/sass-files/sass/partials/_tutorial.scss
+++ b/web/sass-files/sass/partials/_tutorial.scss
@@ -146,6 +146,7 @@
&.tip-overlay--sidebar {
left: 0;
+ @include opacity(0.8);
top: -9px;
}