fix:more title case fixes
This commit is contained in:
+6
-6
@@ -123,7 +123,7 @@
|
||||
"Realized Gain/Loss": "Realized Gain/Loss",
|
||||
"Dividends Earned": "Dividends Earned",
|
||||
"Dividends": "Dividends",
|
||||
"Holding options": "Holding options",
|
||||
"Holding Options": "Holding Options",
|
||||
"Holding options saved": "Holding options saved",
|
||||
"Reinvest dividends": "Reinvest dividends",
|
||||
"Automatically generate buy transactions for any dividends earned": "Automatically generate buy transactions for any dividends earned",
|
||||
@@ -187,9 +187,9 @@
|
||||
"Performance": "Performance",
|
||||
"Reset chart": "Reset chart",
|
||||
"Choose time period": "Choose time period",
|
||||
"Manage portfolio": "Manage portfolio",
|
||||
"Create transaction": "Create transaction",
|
||||
"Manage transaction": "Manage transaction",
|
||||
"Manage Portfolio": "Manage Portfolio",
|
||||
"Create Transaction": "Create Transaction",
|
||||
"Manage Transaction": "Manage Transaction",
|
||||
"Holding": "Holding",
|
||||
"Holdings": "Holdings",
|
||||
"Recent activity": "Recent activity",
|
||||
@@ -339,7 +339,7 @@
|
||||
"auth.password": "The provided password is incorrect.",
|
||||
"auth.throttle": "Too many login attempts. Please try again in :seconds seconds.",
|
||||
|
||||
"Add people": "Add people",
|
||||
"Add People": "Add People",
|
||||
"People with access": "People with access",
|
||||
"Owner": "Owner",
|
||||
"Read only": "Read only",
|
||||
@@ -348,7 +348,7 @@
|
||||
"Updated user's access permission to portfolio": "Updated user's access permission to portfolio",
|
||||
"Removed user's access to portfolio": "Removed user's access to portfolio",
|
||||
"Shared portfolio with user": "Shared portfolio with user",
|
||||
"Share portfolio": "Share portfolio",
|
||||
"Share Portfolio": "Share portfolio",
|
||||
"Type an email address to share portfolio": "Type an email address to share portfolio",
|
||||
"Grant full access": "Grant full access",
|
||||
"Allow this user to manage portfolio details and create or update transactions": "Allow this user to manage portfolio details and create or update transactions",
|
||||
|
||||
+6
-6
@@ -123,7 +123,7 @@
|
||||
"Realized Gain/Loss": "Ganancia/Pérdida Realizada",
|
||||
"Dividends Earned": "Dividendos Ganados",
|
||||
"Dividends": "Dividendos",
|
||||
"Holding options": "Opciones de participaciones",
|
||||
"Holding Options": "Opciones de Participaciones",
|
||||
"Holding options saved": "Opciones de participaciones guardadas",
|
||||
"Reinvest dividends": "Reinvertir dividendos",
|
||||
"Automatically generate buy transactions for any dividends earned": "Genere automáticamente transacciones de compra para cualquier dividendo obtenido",
|
||||
@@ -187,9 +187,9 @@
|
||||
"Performance": "Desempeño",
|
||||
"Reset chart": "Restablecer gráfico",
|
||||
"Choose time period": "Elegir período de tiempo",
|
||||
"Manage portfolio": "Editar portafolio",
|
||||
"Create transaction": "Crear transacción",
|
||||
"Manage transaction": "Editar transacción",
|
||||
"Manage Portfolio": "Editar Portafolio",
|
||||
"Create Transaction": "Crear Transacción",
|
||||
"Manage Transaction": "Editar Transacción",
|
||||
"Holding": "Tenencia",
|
||||
"Holdings": "Tenencias",
|
||||
"Recent activity": "Actividad reciente",
|
||||
@@ -339,7 +339,7 @@
|
||||
"auth.password": "La contraseña es incorrecta.",
|
||||
"auth.throttle": "Demasiados intentos de acceso. Por favor intente nuevamente en :seconds segundos.",
|
||||
|
||||
"Add people": "Agregar personas",
|
||||
"Add people": "Agregar Personas",
|
||||
"People with access": "Personas con acceso",
|
||||
"Read only": "Sólo lectura",
|
||||
"Full access": "Acceso completo",
|
||||
@@ -348,7 +348,7 @@
|
||||
"Updated user's access permission to portfolio": "Se actualizó el permiso de acceso del usuario al portafolio",
|
||||
"Removed user's access to portfolio": "Se eliminó el acceso del usuario al portafolio",
|
||||
"Shared portfolio with user": "Portafolio compartido con usuario",
|
||||
"Share portfolio": "Compartir portafolio",
|
||||
"Share Portfolio": "Compartir Portafolio",
|
||||
"Type an email address to share portfolio": "Escribe una dirección de correo electrónico para compartir portafolio",
|
||||
"Grant full access": "Otorgar acceso completo",
|
||||
"Allow this user to manage portfolio details and create or update transactions": "Permitir a este usuario administrar detalles de portafolio y crear o actualizar transacciones",
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
|
||||
<x-ib-modal
|
||||
key="create-transaction"
|
||||
title="{{ __('Create transaction') }}"
|
||||
title="{{ __('Create Transaction') }}"
|
||||
>
|
||||
@livewire('manage-transaction-form', [
|
||||
'portfolio' => $portfolio,
|
||||
@@ -14,7 +14,7 @@
|
||||
|
||||
<x-ib-modal
|
||||
key="holding-options"
|
||||
title="{{ __('Holding options') }}"
|
||||
title="{{ __('Holding Options') }}"
|
||||
>
|
||||
@livewire('holding-options-form', [
|
||||
'holding' => $holding
|
||||
|
||||
@@ -91,7 +91,7 @@ new class extends Component {
|
||||
|
||||
<x-ib-modal
|
||||
key="manage-transaction"
|
||||
title="{{ __('Manage transaction') }}"
|
||||
title="{{ __('Manage Transaction') }}"
|
||||
>
|
||||
@livewire('manage-transaction-form', [
|
||||
'portfolio' => $portfolio,
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
|
||||
<x-ib-modal
|
||||
key="create-transaction"
|
||||
title="{{ __('Create transaction') }}"
|
||||
title="{{ __('Create Transaction') }}"
|
||||
>
|
||||
@livewire('manage-transaction-form', [
|
||||
'portfolio' => $portfolio,
|
||||
@@ -13,7 +13,7 @@
|
||||
|
||||
<x-ib-drawer
|
||||
key="manage-portfolio"
|
||||
title="{{ __('Manage portfolio') }}"
|
||||
title="{{ __('Manage Portfolio') }}"
|
||||
>
|
||||
@livewire('manage-portfolio-form', [
|
||||
'portfolio' => $portfolio,
|
||||
@@ -30,7 +30,7 @@
|
||||
|
||||
@can('fullAccess', $portfolio)
|
||||
<x-button
|
||||
title="{{ __('Manage portfolio') }}"
|
||||
title="{{ __('Manage Portfolio') }}"
|
||||
icon="o-pencil"
|
||||
class="btn-circle btn-ghost btn-sm text-secondary"
|
||||
@click="$dispatch('toggle-manage-portfolio')"
|
||||
@@ -42,7 +42,7 @@
|
||||
@can('fullAccess', $portfolio)
|
||||
<div>
|
||||
<x-button
|
||||
label="{{ __('Create transaction') }}"
|
||||
label="{{ __('Create Transaction') }}"
|
||||
class="btn-sm btn-primary whitespace-nowrap"
|
||||
@click="$dispatch('toggle-create-transaction')"
|
||||
/>
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
|
||||
<x-ib-modal
|
||||
key="create-transaction"
|
||||
title="{{ __('Create transaction') }}"
|
||||
title="{{ __('Create Transaction') }}"
|
||||
>
|
||||
@livewire('manage-transaction-form')
|
||||
|
||||
@@ -15,7 +15,7 @@
|
||||
|
||||
<div>
|
||||
<x-button
|
||||
label="{{ __('Create transaction') }}"
|
||||
label="{{ __('Create Transaction') }}"
|
||||
class="btn-sm btn-primary whitespace-nowrap "
|
||||
@click="$dispatch('toggle-create-transaction')"
|
||||
/>
|
||||
|
||||
Reference in New Issue
Block a user