Browse Source

Merge branch 'master' of github.com:nocodb/nocodb

pull/269/head
Pranav C Balan 3 years ago
parent
commit
d89eabe2a3
  1. 1498
      packages/nc-gui/components/createOrEditProject.vue
  2. 79
      packages/nc-gui/pages/projects/index.vue
  3. 91
      packages/nc-gui/static/lang/en.json
  4. 91
      packages/nc-gui/static/lang/ja.json
  5. 91
      packages/nc-gui/static/lang/zh.json

1498
packages/nc-gui/components/createOrEditProject.vue

File diff suppressed because it is too large Load Diff

79
packages/nc-gui/pages/projects/index.vue

@ -23,7 +23,7 @@
<!-- <v-icon large>mdi-folder-multiple-outline</v-icon>&nbsp;-->
<!-- My Projects -->
<b>{{ $t('home.my_projects') }}</b>
<b>{{ $t('projects.my_projects') }}</b>
<!-- <x-btn-->
<!-- large-->
@ -34,7 +34,7 @@
small
color="primary grey"
@click="projectsLoad"
v-bind:tooltip="$t('home.reload_projects_tooltip')"
v-bind:tooltip="$t('projects.reload_projects_tooltip')"
>
mdi-refresh
</x-icon
@ -49,7 +49,7 @@
ref="search1"
v-model="search"
class="caption pt-0 mt-0"
v-bind:placeholder="$t('home.search_project')"
v-bind:placeholder="$t('projects.search_project')"
single-line
hide-details
v-ge="['home', 'project-search']"
@ -62,7 +62,7 @@
<v-spacer></v-spacer>
<!-- Import NocoDB Project by uploading metadata zip file -->
<x-btn
vbind:tooltip="$t('home.import_button.text')"
vbind:tooltip="$t('projects.import_button.text')"
outlined
color="grey"
@click="
@ -94,7 +94,7 @@
v-ge="['home','project-new']"
@click="onCreateProject()">
<v-icon class="mr-1" small>mdi-plus</v-icon>
{{ $t('home.create_new_project_button.text') }}
{{ $t('projects.create_new_project_button.text') }}
</x-btn>-->
<template v-if="connectToExternalDB">
@ -110,7 +110,7 @@
v-on="on"
>
<!-- New Project -->
{{ $t('home.create_new_project_button.text') }}
{{ $t('projects.create_new_project_button.text') }}
<v-icon class="mr-1" small>mdi-menu-down</v-icon>
</x-btn>
</div>
@ -126,8 +126,8 @@
<v-list-item-title>
<!-- Create -->
<span class="caption font-weight-regular">{{
$t('home.create_new_project_button.subtext_1')
}}</span>
$t('projects.create_new_project_button.subtext_1')
}}</span>
</v-list-item-title>
<v-spacer></v-spacer>
<v-tooltip right>
@ -139,8 +139,8 @@
</template>
<!-- Create a new project -->
<span class="caption">{{
$t('home.create_new_project_button.subtext_1_tooltip')
}}</span>
$t('projects.create_new_project_button.subtext_1_tooltip')
}}</span>
</v-tooltip>
</v-list-item>
<v-divider></v-divider>
@ -157,7 +157,7 @@
<span
class="caption font-weight-regular"
v-html="
$t('home.create_new_project_button.subtext_2')
$t('projects.create_new_project_button.subtext_2')
"
></span>
</v-list-item-title>
@ -171,8 +171,8 @@
</template>
<!-- Supports MySQL, PostgreSQL, SQL Server & SQLite -->
<span class="caption">{{
$t('home.create_new_project_button.subtext_2_tooltip')
}}</span>
$t('projects.create_new_project_button.subtext_2_tooltip')
}}</span>
</v-tooltip>
</v-list-item>
</v-list>
@ -187,7 +187,7 @@
v-ge="['home', 'project-new']"
>
<!-- New Project -->
{{ $t('home.create_new_project_button.text') }}
{{ $t('projects.create_new_project_button.text') }}
</x-btn>
</v-row>
@ -228,8 +228,8 @@
small
:tooltip="
props.item.projectType === 'graphql'
? $t('home.project_api_type_tooltip_graphql')
: $t('home.project_api_type_tooltip_rest')
? $t('projects.project_api_type_tooltip_graphql')
: $t('projects.project_api_type_tooltip_rest')
"
icon.class="mr-2"
:color="
@ -262,7 +262,7 @@
<!-- Stop Project -->
<x-icon
v-bind:tooltip="
$t('home.project_horizontal_option_1')
$t('projects.horizontal_option_1')
"
class="pointer mr-2"
color="orange grey"
@ -273,7 +273,7 @@
<!-- Start Project -->
<x-icon
v-bind:tooltip="
$t('home.project_horizontal_option_2')
$t('projects.horizontal_option_2')
"
class="pointer mr-2"
color="green grey"
@ -293,7 +293,7 @@
<!-- Restart Project -->
<x-icon
v-bind:tooltip="
$t('home.project_horizontal_option_3')
$t('projects.horizontal_option_3')
"
class="pointer mr-2"
color="primary grey"
@ -304,7 +304,7 @@
<!-- Delete Project -->
<x-icon
v-bind:tooltip="
$t('home.project_horizontal_option_4')
$t('projects.horizontal_option_4')
"
class="pointer mr-2"
color="red grey"
@ -334,8 +334,8 @@
<v-list-item-title>
<!-- Import Metadata -->
<span class="caption font-weight-regular">{{
$t('home.project_verticial_option_1')
}}</span>
$t('projects.verticial_option_1')
}}</span>
</v-list-item-title>
</v-list-item>
<v-list-item
@ -348,8 +348,8 @@
<v-list-item-title>
<!-- Export Metadata -->
<span class="caption font-weight-regular">{{
$t('home.project_verticial_option_2')
}}</span>
$t('home.project_verticial_option_2')
}}</span>
</v-list-item-title>
</v-list-item>
<v-list-item
@ -362,8 +362,8 @@
<v-list-item-title>
<!-- Clear Metadata -->
<span class="caption font-weight-regular">{{
$t('home.project_verticial_option_3')
}}</span>
$t('projects.verticial_option_3')
}}</span>
</v-list-item-title>
</v-list-item>
</v-list>
@ -378,7 +378,7 @@
:value="true"
color="error"
icon="warning"
>{{ $t('home.search.no_result', {search}) }}
>{{ $t('projects.search.no_result', { search }) }}
</v-alert>
<!-- <template v-slot:no-data>-->
<!-- <v-alert :value="true" outlined color="success" icon="mdi-information-outline">Create a new project-->
@ -400,7 +400,7 @@
icon="mdi-information-outline"
>
<!-- Get started by creating a new project -->
{{ $t('home.project_empty_message') }}
{{ $t('projects.project_empty_message') }}
</v-alert>
</v-col>
</v-row>
@ -427,7 +427,7 @@
"
>
<!-- Create By Connecting <br>To An External Database -->
<span v-html="$t('home.create_new_project_button.subtext_2')">
<span v-html="$t('projects.create_new_project_button.subtext_2')">
</span>
</p>
<v-card-actions class="justify-center pb-10">
@ -443,7 +443,7 @@
</v-icon
>&nbsp;
<!-- New Project -->
{{ $t('home.create_new_project_button.text') }}
{{ $t('projects.create_new_project_button.text') }}
</x-btn>
</v-card-actions>
</v-card>
@ -498,10 +498,10 @@
</v-list-item-icon>
<v-list-item-title>
<!-- Star -->
{{ $t('home.show_community_message_1_1') }}
{{ $t('projects.show_community_message_1_1') }}
<v-icon small>mdi-star-outline</v-icon>
<!-- us on Github -->
{{ $t('home.show_community_message_1_2') }}
{{ $t('projects.show_community_message_1_2') }}
</v-list-item-title>
</v-list-item>
<v-divider></v-divider>
@ -518,9 +518,8 @@
</v-list-item-icon>
<!-- Book a Free DEMO -->
<v-list-item-title>{{
$t('home.show_community_message_2')
}}
</v-list-item-title>
$t('projects.show_community_message_2')
}}</v-list-item-title>
</v-list-item>
<v-divider></v-divider>
<v-list-item dense href="https://discord.gg/5RgZmkW" target="_blank">
@ -529,9 +528,8 @@
</v-list-item-icon>
<!-- Get your questions answered -->
<v-list-item-title>{{
$t('home.show_community_message_3')
}}
</v-list-item-title>
$t('projects.show_community_message_3')
}}</v-list-item-title>
</v-list-item>
<v-divider></v-divider>
<v-list-item dense href="https://twitter.com/NocoDB" target="_blank">
@ -540,9 +538,8 @@
</v-list-item-icon>
<!-- Follow NocoDB -->
<v-list-item-title>{{
$t('home.show_community_message_4')
}}
</v-list-item-title>
$t('projects.show_community_message_4')
}}</v-list-item-title>
</v-list-item>
</v-list>
</div>

91
packages/nc-gui/static/lang/en.json

@ -1,29 +1,70 @@
{
"home.my_projects": "My Projects",
"home.reload_projects_tooltip": "Refresh projects",
"home.create_new_project_button.text": "New Project",
"home.create_new_project_button.subtext_1": "Create",
"home.create_new_project_button.subtext_1_tooltip": "Create a new project",
"home.create_new_project_button.subtext_2": "Create By Connecting <br>To An External Database",
"home.create_new_project_button.subtext_2_tooltip": "Supports MySQL, PostgreSQL, SQL Server & SQLite",
"home.search_project": "Search Project",
"home.project_verticial_option_1": "Import Metadata",
"home.project_verticial_option_2": "Export Metadata",
"home.project_verticial_option_3": "Clear Metadata",
"home.project_horizontal_option_1": "Stop Project",
"home.project_horizontal_option_2": "Start Project",
"home.project_horizontal_option_3": "Restart Project",
"home.project_horizontal_option_4": "Delete Project",
"home.project_api_type_tooltip_graphql": "Accessible via GraphQL APIs",
"home.project_api_type_tooltip_rest": "Accessible via REST APIs",
"home.project_empty_message": "Get started by creating a new project",
"home.import_button.text": "Import NocoDB Project by uploading metadata zip file",
"home.show_community_message_1_1": "Star",
"home.show_community_message_1_2": "us on Github",
"home.show_community_message_2": "Book a Free DEMO",
"home.show_community_message_3": "Get your questions answered",
"home.show_community_message_4": "Follow NocoDB",
"home.search.no_result": "Your search for {search} found no results",
"projects.my_projects": "My Projects",
"projects.reload_projects_tooltip": "Refresh projects",
"projects.create_new_project_button.text": "New Project",
"projects.create_new_project_button.subtext_1": "Create",
"projects.create_new_project_button.subtext_1_tooltip": "Create a new project",
"projects.create_new_project_button.subtext_2": "Create By Connecting <br>To An External Database",
"projects.create_new_project_button.subtext_2_tooltip": "Supports MySQL, PostgreSQL, SQL Server & SQLite",
"projects.search_project": "Search Project",
"projects.verticial_option_1": "Import Metadata",
"projects.verticial_option_2": "Export Metadata",
"projects.verticial_option_3": "Clear Metadata",
"projects.horizontal_option_1": "Stop Project",
"projects.horizontal_option_2": "Start Project",
"projects.horizontal_option_3": "Restart Project",
"projects.horizontal_option_4": "Delete Project",
"projects.project_api_type_tooltip_graphql": "Accessible via GraphQL APIs",
"projects.project_api_type_tooltip_rest": "Accessible via REST APIs",
"projects.project_empty_message": "Get started by creating a new project",
"projects.import_button.text": "Import NocoDB Project by uploading metadata zip file",
"projects.show_community_message_1_1": "Star",
"projects.show_community_message_1_2": "us on Github",
"projects.show_community_message_2": "Book a Free DEMO",
"projects.show_community_message_3": "Get your questions answered",
"projects.show_community_message_4": "Follow NocoDB",
"projects.search.no_result": "Your search for {search} found no results",
"projects.ext_db.title.edit": "Edit Project",
"projects.ext_db.title.create": "Create Project",
"projects.ext_db.project_name": "Enter Project Name",
"projects.ext_db.project_type": "Access Project via",
"projects.ext_db.button.save_project": "Save Project",
"projects.ext_db.button.update_and_restart": "Update & Restart",
"projects.ext_db.button.cancel": "Cancel",
"projects.ext_db.button.cancel_tooltip": "Cancel and Return",
"projects.ext_db.credentials": "Database Credentials",
"projects.ext_db.credentials.label_1": "Database Type",
"projects.ext_db.credentials.label_2": "SQLite File",
"projects.ext_db.credentials.label_3": "Host Address",
"projects.ext_db.credentials.label_4": "Port Number",
"projects.ext_db.credentials.label_5": "Username",
"projects.ext_db.credentials.label_6": "Password",
"projects.ext_db.credentials.label_7": "Database : create if not exists",
"projects.ext_db.credentials.button.test_db_conn": "Test Database Connection",
"projects.ext_db.credentials.button.remove_db_from_env": "Remove Database from environment",
"projects.ext_db.credentials.advanced": "SSL & Advanced parameters",
"projects.ext_db.credentials.advanced.ssl.option1": "Client Key",
"projects.ext_db.credentials.advanced.ssl.option2": "Client Cert",
"projects.ext_db.credentials.advanced.ssl.option3": "Server CA",
"projects.ext_db.credentials.advanced.ssl.option1.toolip": "Select .key file",
"projects.ext_db.credentials.advanced.ssl.option2.toolip": "Select .cert file",
"projects.ext_db.credentials.advanced.ssl.option3.toolip": "Select CA file",
"projects.ext_db.credentials.advanced.ssl.preferred": "Preferred",
"projects.ext_db.credentials.advanced.ssl.usage.option1": "No",
"projects.ext_db.credentials.advanced.ssl.usage.option2": "Preferred",
"projects.ext_db.credentials.advanced.ssl.usage.option3": "Required",
"projects.ext_db.credentials.advanced.ssl.usage.option4": "Required-CA",
"projects.ext_db.credentials.advanced.ssl.usage.option5": "Required-IDENTITY",
"projects.ext_db.credentials.advanced.inflection.table_name": "Inflection - Table name",
"projects.ext_db.credentials.advanced.inflection.column_name": "Inflection - Column name",
"projects.ext_db.credentials.advanced.button.edit_conn_json": "Edit connection JSON",
"projects.ext_db.error.message_1": "Invalid character in folder path.",
"projects.ext_db.error.message_2": "Invalid database credentials.",
"projects.ext_db.error.message_3": "Unable to connect to database, please check your database is up.",
"projects.ext_db.error.message_4": "User does not exist or have sufficient permission to create schema.",
"projects.ext_db.head.title": "Create Project | Noco",
"projects.ext_db.dialog.success": "Connection was successful",
"projects.ext_db.dialog.failure": "Connection Failure:",
"signin.title": "SIGN IN",
"signin.input_1": "Enter your work email",
"signin.input_2": "Enter your password",

91
packages/nc-gui/static/lang/ja.json

@ -1,29 +1,70 @@
{
"home.my_projects": "My Projects",
"home.reload_projects_tooltip": "Refresh projects",
"home.create_new_project_button.text": "新しいプロジェクトを作成する",
"home.create_new_project_button.subtext_1": "Create",
"home.create_new_project_button.subtext_1_tooltip": "Create a new project",
"home.create_new_project_button.subtext_2": "Create By Connecting <br>To An External Database",
"home.create_new_project_button.subtext_2_tooltip": "Supports MySQL, PostgreSQL, SQL Server & SQLite",
"home.search_project": "Search Project",
"home.project_verticial_option_1": "Import Metadata",
"home.project_verticial_option_2": "Export Metadata",
"home.project_verticial_option_3": "Clear Metadata",
"home.project_horizontal_option_1": "Stop Project",
"home.project_horizontal_option_2": "Start Project",
"home.project_horizontal_option_3": "Restart Project",
"home.project_horizontal_option_4": "Delete Project",
"home.project_api_type_tooltip_graphql": "Accessible via GraphQL APIs",
"home.project_api_type_tooltip_rest": "Accessible via REST APIs",
"home.project_empty_message": "Get started by creating a new project",
"home.import_button.text": "Import NocoDB Project by uploading metadata zip file",
"home.show_community_message_1_1": "Star",
"home.show_community_message_1_2": "us on Github",
"home.show_community_message_2": "Book a Free DEMO",
"home.show_community_message_3": "Get your questions answered",
"home.show_community_message_4": "Follow NocoDB",
"home.search.no_result": "Your search for {search} found no results",
"projects.my_projects": "My Projects",
"projects.reload_projects_tooltip": "Refresh projects",
"projects.create_new_project_button.text": "新しいプロジェクトを作成する",
"projects.create_new_project_button.subtext_1": "Create",
"projects.create_new_project_button.subtext_1_tooltip": "Create a new project",
"projects.create_new_project_button.subtext_2": "Create By Connecting <br>To An External Database",
"projects.create_new_project_button.subtext_2_tooltip": "Supports MySQL, PostgreSQL, SQL Server & SQLite",
"projects.search_project": "Search Project",
"projects.verticial_option_1": "Import Metadata",
"projects.verticial_option_2": "Export Metadata",
"projects.verticial_option_3": "Clear Metadata",
"projects.horizontal_option_1": "Stop Project",
"projects.horizontal_option_2": "Start Project",
"projects.horizontal_option_3": "Restart Project",
"projects.horizontal_option_4": "Delete Project",
"projects.project_api_type_tooltip_graphql": "Accessible via GraphQL APIs",
"projects.project_api_type_tooltip_rest": "Accessible via REST APIs",
"projects.project_empty_message": "Get started by creating a new project",
"projects.import_button.text": "Import NocoDB Project by uploading metadata zip file",
"projects.show_community_message_1_1": "Star",
"projects.show_community_message_1_2": "us on Github",
"projects.show_community_message_2": "Book a Free DEMO",
"projects.show_community_message_3": "Get your questions answered",
"projects.show_community_message_4": "Follow NocoDB",
"projects.search.no_result": "Your search for {search} found no results",
"projects.ext_db.title.edit": "Edit Project",
"projects.ext_db.title.create": "Create Project",
"projects.ext_db.project_name": "Enter Project Name",
"projects.ext_db.project_type": "Access Project via",
"projects.ext_db.button.save_project": "Save Project",
"projects.ext_db.button.update_and_restart": "Update & Restart",
"projects.ext_db.button.cancel": "Cancel",
"projects.ext_db.button.cancel_tooltip": "Cancel and Return",
"projects.ext_db.credentials": "Database Credentials",
"projects.ext_db.credentials.label_1": "Database Type",
"projects.ext_db.credentials.label_2": "SQLite File",
"projects.ext_db.credentials.label_3": "Host Address",
"projects.ext_db.credentials.label_4": "Port Number",
"projects.ext_db.credentials.label_5": "Username",
"projects.ext_db.credentials.label_6": "Password",
"projects.ext_db.credentials.label_7": "Database : create if not exists",
"projects.ext_db.credentials.button.test_db_conn": "Test Database Connection",
"projects.ext_db.credentials.button.remove_db_from_env": "Remove Database from environment",
"projects.ext_db.credentials.advanced": "SSL & Advanced parameters",
"projects.ext_db.credentials.advanced.ssl.option1": "Client Key",
"projects.ext_db.credentials.advanced.ssl.option2": "Client Cert",
"projects.ext_db.credentials.advanced.ssl.option3": "Server CA",
"projects.ext_db.credentials.advanced.ssl.option1.toolip": "Select .key file",
"projects.ext_db.credentials.advanced.ssl.option2.toolip": "Select .cert file",
"projects.ext_db.credentials.advanced.ssl.option3.toolip": "Select CA file",
"projects.ext_db.credentials.advanced.ssl.preferred": "Preferred",
"projects.ext_db.credentials.advanced.ssl.usage.option1": "No",
"projects.ext_db.credentials.advanced.ssl.usage.option2": "Preferred",
"projects.ext_db.credentials.advanced.ssl.usage.option3": "Required",
"projects.ext_db.credentials.advanced.ssl.usage.option4": "Required-CA",
"projects.ext_db.credentials.advanced.ssl.usage.option5": "Required-IDENTITY",
"projects.ext_db.credentials.advanced.inflection.table_name": "Inflection - Table name",
"projects.ext_db.credentials.advanced.inflection.column_name": "Inflection - Column name",
"projects.ext_db.credentials.advanced.button.edit_conn_json": "Edit connection JSON",
"projects.ext_db.error.message_1": "Invalid character in folder path.",
"projects.ext_db.error.message_2": "Invalid database credentials.",
"projects.ext_db.error.message_3": "Unable to connect to database, please check your database is up.",
"projects.ext_db.error.message_4": "User does not exist or have sufficient permission to create schema.",
"projects.ext_db.head.title": "Create Project | Noco",
"projects.ext_db.dialog.success": "Connection was successful",
"projects.ext_db.dialog.failure": "Connection Failure:",
"signin.title": "SIGN IN",
"signin.input_1": "Enter your work email",
"signin.input_2": "Enter your password",

91
packages/nc-gui/static/lang/zh.json

@ -1,29 +1,70 @@
{
"home.my_projects": "My Projects",
"home.reload_projects_tooltip": "Refresh projects",
"home.create_new_project_button.text": "创建新项目",
"home.create_new_project_button.subtext_1": "Create",
"home.create_new_project_button.subtext_1_tooltip": "Create a new project",
"home.create_new_project_button.subtext_2": "Create By Connecting <br>To An External Database",
"home.create_new_project_button.subtext_2_tooltip": "Supports MySQL, PostgreSQL, SQL Server & SQLite",
"home.search_project": "Search Project",
"home.project_verticial_option_1": "Import Metadata",
"home.project_verticial_option_2": "Export Metadata",
"home.project_verticial_option_3": "Clear Metadata",
"home.project_horizontal_option_1": "Stop Project",
"home.project_horizontal_option_2": "Start Project",
"home.project_horizontal_option_3": "Restart Project",
"home.project_horizontal_option_4": "Delete Project",
"home.project_api_type_tooltip_graphql": "Accessible via GraphQL APIs",
"home.project_api_type_tooltip_rest": "Accessible via REST APIs",
"home.project_empty_message": "Get started by creating a new project",
"home.import_button.text": "Import NocoDB Project by uploading metadata zip file",
"home.show_community_message_1_1": "Star",
"home.show_community_message_1_2": "us on Github",
"home.show_community_message_2": "Book a Free DEMO",
"home.show_community_message_3": "Get your questions answered",
"home.show_community_message_4": "Follow NocoDB",
"home.search.no_result": "Your search for {search} found no results",
"projects.my_projects": "My Projects",
"projects.reload_projects_tooltip": "Refresh projects",
"projects.create_new_project_button.text": "创建新项目",
"projects.create_new_project_button.subtext_1": "Create",
"projects.create_new_project_button.subtext_1_tooltip": "Create a new project",
"projects.create_new_project_button.subtext_2": "Create By Connecting <br>To An External Database",
"projects.create_new_project_button.subtext_2_tooltip": "Supports MySQL, PostgreSQL, SQL Server & SQLite",
"projects.search_project": "Search Project",
"projects.verticial_option_1": "Import Metadata",
"projects.verticial_option_2": "Export Metadata",
"projects.verticial_option_3": "Clear Metadata",
"projects.horizontal_option_1": "Stop Project",
"projects.horizontal_option_2": "Start Project",
"projects.horizontal_option_3": "Restart Project",
"projects.horizontal_option_4": "Delete Project",
"projects.project_api_type_tooltip_graphql": "Accessible via GraphQL APIs",
"projects.project_api_type_tooltip_rest": "Accessible via REST APIs",
"projects.project_empty_message": "Get started by creating a new project",
"projects.import_button.text": "Import NocoDB Project by uploading metadata zip file",
"projects.show_community_message_1_1": "Star",
"projects.show_community_message_1_2": "us on Github",
"projects.show_community_message_2": "Book a Free DEMO",
"projects.show_community_message_3": "Get your questions answered",
"projects.show_community_message_4": "Follow NocoDB",
"projects.search.no_result": "Your search for {search} found no results",
"projects.ext_db.title.edit": "Edit Project",
"projects.ext_db.title.create": "Create Project",
"projects.ext_db.project_name": "Enter Project Name",
"projects.ext_db.project_type": "Access Project via",
"projects.ext_db.button.save_project": "Save Project",
"projects.ext_db.button.update_and_restart": "Update & Restart",
"projects.ext_db.button.cancel": "Cancel",
"projects.ext_db.button.cancel_tooltip": "Cancel and Return",
"projects.ext_db.credentials": "Database Credentials",
"projects.ext_db.credentials.label_1": "Database Type",
"projects.ext_db.credentials.label_2": "SQLite File",
"projects.ext_db.credentials.label_3": "Host Address",
"projects.ext_db.credentials.label_4": "Port Number",
"projects.ext_db.credentials.label_5": "Username",
"projects.ext_db.credentials.label_6": "Password",
"projects.ext_db.credentials.label_7": "Database : create if not exists",
"projects.ext_db.credentials.button.test_db_conn": "Test Database Connection",
"projects.ext_db.credentials.button.remove_db_from_env": "Remove Database from environment",
"projects.ext_db.credentials.advanced": "SSL & Advanced parameters",
"projects.ext_db.credentials.advanced.ssl.option1": "Client Key",
"projects.ext_db.credentials.advanced.ssl.option2": "Client Cert",
"projects.ext_db.credentials.advanced.ssl.option3": "Server CA",
"projects.ext_db.credentials.advanced.ssl.option1.toolip": "Select .key file",
"projects.ext_db.credentials.advanced.ssl.option2.toolip": "Select .cert file",
"projects.ext_db.credentials.advanced.ssl.option3.toolip": "Select CA file",
"projects.ext_db.credentials.advanced.ssl.preferred": "Preferred",
"projects.ext_db.credentials.advanced.ssl.usage.option1": "No",
"projects.ext_db.credentials.advanced.ssl.usage.option2": "Preferred",
"projects.ext_db.credentials.advanced.ssl.usage.option3": "Required",
"projects.ext_db.credentials.advanced.ssl.usage.option4": "Required-CA",
"projects.ext_db.credentials.advanced.ssl.usage.option5": "Required-IDENTITY",
"projects.ext_db.credentials.advanced.inflection.table_name": "Inflection - Table name",
"projects.ext_db.credentials.advanced.inflection.column_name": "Inflection - Column name",
"projects.ext_db.credentials.advanced.button.edit_conn_json": "Edit connection JSON",
"projects.ext_db.error.message_1": "Invalid character in folder path.",
"projects.ext_db.error.message_2": "Invalid database credentials.",
"projects.ext_db.error.message_3": "Unable to connect to database, please check your database is up.",
"projects.ext_db.error.message_4": "User does not exist or have sufficient permission to create schema.",
"projects.ext_db.head.title": "Create Project | Noco",
"projects.ext_db.dialog.success": "Connection was successful",
"projects.ext_db.dialog.failure": "Connection Failure:",
"signin.title": "SIGN IN",
"signin.input_1": "Enter your work email",
"signin.input_2": "Enter your password",

Loading…
Cancel
Save