Browse Source

fix: i18n for Signup page

pull/6519/head
Muhammed Mustafa 1 year ago
parent
commit
5a15c5d305
  1. 3
      packages/nc-gui/lang/en.json
  2. 8
      packages/nc-gui/pages/signup/[[token]].vue

3
packages/nc-gui/lang/en.json

@ -292,6 +292,7 @@
"rowData": "Row data",
"creator": "Creator",
"qrCode": "QR Code",
"termsOfService": "Terms of Service",
"updateSelectedRows": "Update Selected Rows",
"noFiltersAdded": "No filters added",
"editCards": "Edit Cards",
@ -843,6 +844,8 @@
"key": "Key"
},
"msg": {
"bySigningUp": "By signing up, you agree to the",
"subscribeToOurWeeklyNewsletter": "Subscribe to our weekly newsletter",
"verifyingPassword": "Verifying Password",
"thisSharedViewIsProtected": "This shared view is protected",
"successfullySubmittedFormData": "Successfully submitted form data",

8
packages/nc-gui/pages/signup/[[token]].vue

@ -214,7 +214,7 @@ onMounted(async () => {
size="small"
class="my-1 hover:(ring ring-accent ring-opacity-100) focus:(!ring !ring-accent ring-opacity-100)"
/>
<div class="prose-xs text-gray-500">Subscribe to our weekly newsletter</div>
<div class="prose-xs text-gray-500">{{ $t('msg.subscribeToOurWeeklyNewsletter') }}</div>
</div>
<div class="text-end prose-sm">
@ -227,8 +227,10 @@ onMounted(async () => {
</div>
<div class="prose-sm mt-4 text-gray-500">
By signing up, you agree to the
<a class="prose-sm !text-gray-500 underline" target="_blank" href="https://nocodb.com/policy-nocodb">Terms of Service</a>
{{ $t('msg.bySigningUp') }}
<a class="prose-sm !text-gray-500 underline" target="_blank" href="https://nocodb.com/policy-nocodb">
{{ $t('title.termsOfService') }}</a
>
</div>
</div>
</NuxtLayout>

Loading…
Cancel
Save