diff --git a/src/assets/main.css b/src/assets/main.css
index bfeda21..472276a 100644
--- a/src/assets/main.css
+++ b/src/assets/main.css
@@ -40,24 +40,6 @@ body {
border-radius: 3rem !important;
}
-/* Fuentes */
- .font-bold {
- font-weight: bold;
- }
-
- .fsize-1 {
- font-size: 1rem;
- }
-
- .fsize-1-5 {
- font-size: 1.5rem;
- }
-
- .fsize-2 {
- font-size: 2rem;
- }
-/* *********** */
-
.divider {
display: block;
height: 2px;
diff --git a/src/assets/styles/fonts.css b/src/assets/styles/fonts.css
new file mode 100644
index 0000000..667c920
--- /dev/null
+++ b/src/assets/styles/fonts.css
@@ -0,0 +1,15 @@
+.font-bold {
+ font-weight: bold;
+}
+
+.fsize-1 {
+ font-size: 1rem;
+}
+
+.fsize-1-5 {
+ font-size: 1.5rem;
+}
+
+.fsize-2 {
+ font-size: 2rem;
+}
\ No newline at end of file
diff --git a/src/components/MakeProposalModal.vue b/src/components/MakeProposalModal.vue
index a5b7a68..78e8ca9 100644
--- a/src/components/MakeProposalModal.vue
+++ b/src/components/MakeProposalModal.vue
@@ -198,7 +198,7 @@
diff --git a/src/i18n/en.js b/src/i18n/en.js
index 412549c..4a4b227 100644
--- a/src/i18n/en.js
+++ b/src/i18n/en.js
@@ -159,7 +159,8 @@ const en = {
loading: 'Please wait!',
savingChanes: 'Saving changes',
observerWarehouse: 'Warehouse observers will receive notifications about the load location, including arrival and departure times, and will be able to view the cargo on the warehouse dashboard.',
- observerClient: 'Observers will receive notifications about the load, including the loading and unloading date, as well as any changes in the load status. They can monitor the cargo on their customer dashboard.'
+ observerClient: 'Observers will receive notifications about the load, including the loading and unloading date, as well as any changes in the load status. They can monitor the cargo on their customer dashboard.',
+ notDriverAssign: 'This offer does not include an assigned driver. Please request that the carrier assign an operator to continue the loading process.'
},
global: {
signIn: "Sign In",
@@ -208,6 +209,8 @@ const en = {
delivered: 'Delivered',
downloading: 'Downloading',
add: 'Add',
+ dashboard: 'Dashboard',
+ notDriver: 'Without driver'
},
login: {
title: 'Sign in',
diff --git a/src/i18n/es.js b/src/i18n/es.js
index fc56a9c..47b7b1b 100644
--- a/src/i18n/es.js
+++ b/src/i18n/es.js
@@ -162,7 +162,8 @@ const es = {
loading: 'Por favor espere!',
savingChanes: 'Guardando cambios',
observerWarehouse: 'Los observadores de bodega recibirán notificaciones sobre la ubicación de la carga, incluyendo la hora de llegada y salida, podran visualizar la carga en el panel de bodega.',
- observerClient: 'Los observadores recibirán notificaciones sobre la carga, incluyendo la fecha de carga y descarga, así como cualquier cambio en el estado de la carga. podran monitorer la carga en el panel de clientes.'
+ observerClient: 'Los observadores recibirán notificaciones sobre la carga, incluyendo la fecha de carga y descarga, así como cualquier cambio en el estado de la carga. podran monitorer la carga en el panel de clientes.',
+ notDriverAssign: 'Oferta sin conductor asignado. Solicite al transportista que asigne un operador para continuar con el proceso de carga.'
},
global: {
signIn: 'Ingresar',
@@ -211,6 +212,8 @@ const es = {
delivered: 'Entregado',
downloading: 'Descargando',
add: 'Agregar',
+ dashboard: 'Panel',
+ notDriver: 'Sin conductor'
},
login: {
title: 'Iniciar sesión',
diff --git a/src/layouts/AdminLayout.vue b/src/layouts/AdminLayout.vue
index 4d7f985..4a6cf66 100644
--- a/src/layouts/AdminLayout.vue
+++ b/src/layouts/AdminLayout.vue
@@ -4,8 +4,6 @@
import Sidebar from './components/Sidebar.vue';
import ProfilePopup from '../views/profile/modals/ProfilePopup.vue';
import NotificationsPopup from './components/NotificationsPopup.vue';
-import ConfigPopup from './components/ConfigPopup.vue';
-
@@ -20,7 +18,7 @@ import ConfigPopup from './components/ConfigPopup.vue';
-
+
diff --git a/src/layouts/components/NavBar.vue b/src/layouts/components/NavBar.vue
index fe10b15..c06befe 100644
--- a/src/layouts/components/NavBar.vue
+++ b/src/layouts/components/NavBar.vue
@@ -75,13 +75,16 @@
-
+
+
+
diff --git a/src/layouts/components/Sidebar.vue b/src/layouts/components/Sidebar.vue
index af848ab..570e1f6 100644
--- a/src/layouts/components/Sidebar.vue
+++ b/src/layouts/components/Sidebar.vue
@@ -65,7 +65,7 @@
Dashboard
+ class="nav-link" :to="{name: 'home'}">{{ t('global.dashboard') }}
- Oferta sin conductor asignado. Solicite al transportista que asigne un operador para continuar con el proceso de carga.
+ {{ t('messages.notDriverAssign') }}