Browse Source

chore: revise i18n keys

Signed-off-by: Wing-Kam Wong <wingkwong.code@gmail.com>
pull/256/head
Wing-Kam Wong 3 years ago
parent
commit
47eaadbb29
  1. 110
      packages/nc-gui/components/createOrEditProject.vue
  2. 58
      packages/nc-gui/pages/projects/index.vue
  3. 134
      packages/nc-gui/static/lang/en.json
  4. 134
      packages/nc-gui/static/lang/ja.json
  5. 134
      packages/nc-gui/static/lang/zh.json

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

@ -36,20 +36,20 @@
>
<v-toolbar-title class="title">
<!-- Edit Project -->
<span v-if="edit">{{ $t('project.ext_db.title.edit') }}</span>
<span v-if="edit">{{ $t('projects.ext_db.title.edit') }}</span>
<!-- Create Project -->
<span v-else>{{ $t('project.ext_db.title.create') }}</span>
<span v-else>{{ $t('projects.ext_db.title.create') }}</span>
</v-toolbar-title>
<v-spacer></v-spacer>
<!-- Cancel and Return -->
<x-btn
v-bind:tooltip="$t('project.ext_db.button.cancel_tooltip')"
v-bind:tooltip="$t('projects.ext_db.button.cancel_tooltip')"
to="/"
v-ge="['project', 'cancel']"
class="elevation-20"
>
<!-- Cancel -->
{{ $t('project.ext_db.button.cancel') }}
{{ $t('projects.ext_db.button.cancel') }}
</x-btn>
<x-btn
:disabled="!valid || !envStatusValid"
@ -58,9 +58,9 @@
@click="createOrUpdateProject()"
>
<!-- Update & Restart -->
<span v-if="edit">{{ $t('project.ext_db.button.update_and_restart') }}</span>
<span v-if="edit">{{ $t('projects.ext_db.button.update_and_restart') }}</span>
<!-- Save Project -->
<span v-else>{{ $t('project.ext_db.button.save_project') }}</span>
<span v-else>{{ $t('projects.ext_db.button.save_project') }}</span>
</x-btn>
<v-progress-linear
v-if="projectReloading"
@ -161,7 +161,7 @@
:rules="form.titleRequiredRule"
:height="20"
v-model="project.title"
v-bind:label="$t('project.ext_db.project_name')"
v-bind:label="$t('projects.ext_db.project_name')"
autofocus
>
<!-- <v-icon color="info" class="blink_me mt-n1" slot="prepend">-->
@ -170,7 +170,7 @@
</v-text-field>
<!-- Access Project via -->
<label class="caption"> {{ $t('project.ext_db.project_name') }}</label>
<label class="caption"> {{ $t('projects.ext_db.project_name') }}</label>
<v-radio-group
row
hide-details
@ -226,7 +226,7 @@
'text-center mb-2 mt-3 grey--text': edit,
}"
>
{{ $t('project.ext_db.credentials') }}
{{ $t('projects.ext_db.credentials') }}
</p>
<v-expansion-panels
v-model="panel"
@ -378,7 +378,7 @@
class="body-2 db-select"
:items="Object.keys(databaseNames)"
v-model="client[dbIndex]"
v-bind:label="$t('project.ext_db.credentials.label_1')"
v-bind:label="$t('projects.ext_db.credentials.label_1')"
@change="
onDatabaseTypeChanged(
client[dbIndex],
@ -429,7 +429,7 @@
<v-text-field
:rules="form.folderRequiredRule"
v-model="db.connection.connection.filename"
v-bind:label="$t('project.ext_db.credentials.label_2')"
v-bind:label="$t('projects.ext_db.credentials.label_2')"
v-ge="['project', 'env-db-file']"
@click="selectSqliteFile(db)"
>
@ -445,7 +445,7 @@
class="body-2"
:rules="form.requiredRule"
v-model="db.connection.host"
v-bind:label="$t('project.ext_db.credentials.label_3')"
v-bind:label="$t('projects.ext_db.credentials.label_3')"
></v-text-field>
</v-col>
<!-- Port Number -->
@ -454,7 +454,7 @@
class="body-2"
v-ge="['project', 'env-db-port']"
v-model="db.connection.port"
v-bind:label="$t('project.ext_db.credentials.label_4')"
v-bind:label="$t('projects.ext_db.credentials.label_4')"
:rules="form.portValidationRule"
></v-text-field>
</v-col>
@ -465,7 +465,7 @@
v-ge="['project', 'env-db-user']"
:rules="form.requiredRule"
v-model="db.connection.user"
v-bind:label="$t('project.ext_db.credentials.label_5')"
v-bind:label="$t('projects.ext_db.credentials.label_5')"
></v-text-field>
</v-col>
<!-- Password -->
@ -480,7 +480,7 @@
:ref="`password${envKey}`"
v-ge="['project', 'env-db-password']"
v-model="db.connection.password"
v-bind:label="$t('project.ext_db.credentials.label_6')"
v-bind:label="$t('projects.ext_db.credentials.label_6')"
>
<template v-slot:append>
<v-icon
@ -508,7 +508,7 @@
:rules="form.requiredRule"
v-model="db.connection.database"
v-ge="['project', 'env-db-name']"
v-bind:label="$t('project.ext_db.credentials.label_7')"
v-bind:label="$t('projects.ext_db.credentials.label_7')"
></v-text-field>
</v-col>
<v-col class="" v-if="db.client !== 'sqlite3'">
@ -517,7 +517,7 @@
<v-expansion-panel-header>
<!-- SSL & Advanced parameters -->
<span class="grey--text caption">{{
$t('project.ext_db.credentials.advanced')
$t('projects.ext_db.credentials.advanced')
}}</span>
</v-expansion-panel-header>
<v-expansion-panel-content>
@ -551,7 +551,7 @@
<x-btn
v-bind:tooltip="
$t(
'project.ext_db.credentials.advanced.ssl.option2.toolip'
'projects.ext_db.credentials.advanced.ssl.option2.toolip'
)
"
small
@ -581,7 +581,7 @@
<x-btn
v-bind:tooltip="
$t(
'project.ext_db.credentials.advanced.ssl.option1.toolip'
'projects.ext_db.credentials.advanced.ssl.option1.toolip'
)
"
small
@ -611,7 +611,7 @@
<x-btn
v-bind:tooltip="
$t(
'project.ext_db.credentials.advanced.ssl.option3.toolip'
'projects.ext_db.credentials.advanced.ssl.option3.toolip'
)
"
small
@ -637,7 +637,7 @@
class="caption"
v-bind:label="
$t(
'project.ext_db.credentials.advanced.inflection.table_name'
'projects.ext_db.credentials.advanced.inflection.table_name'
)
"
multiple
@ -655,7 +655,7 @@
class="caption"
v-bind:label="
$t(
'project.ext_db.credentials.advanced.inflection.column_name'
'projects.ext_db.credentials.advanced.inflection.column_name'
)
"
multiple
@ -679,7 +679,7 @@
btn.class="text-capitalize"
v-bind:tooltip="
$t(
'project.ext_db.credentials.advanced.button.edit_conn_json'
'projects.ext_db.credentials.advanced.button.edit_conn_json'
)
"
outlined
@ -697,7 +697,7 @@
<!-- Edit connection JSON -->
{{
$t(
'project.ext_db.credentials.advanced.button.edit_conn_json'
'projects.ext_db.credentials.advanced.button.edit_conn_json'
)
}}
</x-btn>
@ -715,7 +715,7 @@
<!-- Test Database Connection -->
<x-btn
v-bind:tooltip="
$t('project.ext_db.credentials.button.test_db_conn')
$t('projects.ext_db.credentials.button.test_db_conn')
"
outlined
small
@ -723,13 +723,13 @@
@click="testConnection(db, envKey, panelIndex)"
>
<!-- Test Database Connection -->
{{ $t('project.ext_db.credentials.button.test_db_conn') }}
{{ $t('projects.ext_db.credentials.button.test_db_conn') }}
</x-btn>
<!-- Remove Database from environment -->
<x-btn
v-bind:tooltip="
$t(
'project.ext_db.credentials.button.remove_db_from_env'
'projects.ext_db.credentials.button.remove_db_from_env'
)
"
text
@ -1120,9 +1120,9 @@ export default {
ui: {
setup: -1,
ssl: {
key: this.$t('project.ext_db.credentials.advanced.ssl.option1'), // Client Key
cert: this.$t('project.ext_db.credentials.advanced.ssl.option2'), // Client Cert
ca: this.$t('project.ext_db.credentials.advanced.ssl.option3'), // Server CA
key: this.$t('projects.ext_db.credentials.advanced.ssl.option1'), // Client Key
cert: this.$t('projects.ext_db.credentials.advanced.ssl.option2'), // Client Cert
ca: this.$t('projects.ext_db.credentials.advanced.ssl.option3'), // Server CA
},
sslUse: 'Preferred',
},
@ -1297,7 +1297,7 @@ export default {
type: 'primary',
},
// TODO: apply i18n for sslUsage
// See project.ext_db.credentials.advanced.ssl.usage.option1 - 5 in en.json
// See projects.ext_db.credentials.advanced.ssl.usage.option1 - 5 in en.json
sslUsage: {
No: 'No',
Preferred: 'Preferred',
@ -1305,11 +1305,11 @@ export default {
'Required-CA': 'Required-CA',
'Required-IDENTITY': 'Required-IDENTITY',
},
sslUse: this.$t('project.ext_db.credentials.advanced.ssl.preferred'), // Preferred
sslUse: this.$t('projects.ext_db.credentials.advanced.ssl.preferred'), // Preferred
ssl: {
key: this.$t('project.ext_db.credentials.advanced.ssl.option1'), // Client Key
cert: this.$t('project.ext_db.credentials.advanced.ssl.option2'), // Client Cert
ca: this.$t('project.ext_db.credentials.advanced.ssl.option3'), // Server CA
key: this.$t('projects.ext_db.credentials.advanced.ssl.option1'), // Client Key
cert: this.$t('projects.ext_db.credentials.advanced.ssl.option2'), // Client Cert
ca: this.$t('projects.ext_db.credentials.advanced.ssl.option3'), // Server CA
},
databaseNames: {
MySQL: 'mysql2',
@ -1349,10 +1349,10 @@ export default {
},
compErrorMessages: [
this.$t('project.ext_db.error.message_1'), // Invalid character in folder path
this.$t('project.ext_db.error.message_2'), // Invalid database credentials
this.$t('project.ext_db.error.message_3'), // Unable to connect to database, please check your database is up
this.$t('project.ext_db.error.message_4'), // User does not exist or have sufficient permission to create schema
this.$t('projects.ext_db.error.message_1'), // Invalid character in folder path
this.$t('projects.ext_db.error.message_2'), // Invalid database credentials
this.$t('projects.ext_db.error.message_3'), // Unable to connect to database, please check your database is up
this.$t('projects.ext_db.error.message_4'), // User does not exist or have sufficient permission to create schema
],
compErrorMessage: '',
};
@ -1583,11 +1583,11 @@ export default {
Vue.set(db, 'ui', {
setup: 0,
ssl: {
key: this.$t('project.ext_db.credentials.advanced.ssl.option1'), // Client Key
cert: this.$t('project.ext_db.credentials.advanced.ssl.option2'), // Client Cert
ca: this.$t('project.ext_db.credentials.advanced.ssl.option3'), // Server CA
key: this.$t('projects.ext_db.credentials.advanced.ssl.option1'), // Client Key
cert: this.$t('projects.ext_db.credentials.advanced.ssl.option2'), // Client Cert
ca: this.$t('projects.ext_db.credentials.advanced.ssl.option3'), // Server CA
},
sslUse: this.$t('project.ext_db.credentials.advanced.ssl.preferred'), // Preferred
sslUse: this.$t('projects.ext_db.credentials.advanced.ssl.preferred'), // Preferred
});
}
}
@ -1714,11 +1714,11 @@ export default {
ui: {
setup: 0,
ssl: {
key: this.$t('project.ext_db.credentials.advanced.ssl.option1'), // Client Key
cert: this.$t('project.ext_db.credentials.advanced.ssl.option2'), // Client Cert
ca: this.$t('project.ext_db.credentials.advanced.ssl.option3'), // Server CA
key: this.$t('projects.ext_db.credentials.advanced.ssl.option1'), // Client Key
cert: this.$t('projects.ext_db.credentials.advanced.ssl.option2'), // Client Cert
ca: this.$t('projects.ext_db.credentials.advanced.ssl.option3'), // Server CA
},
sslUse: this.$t('project.ext_db.credentials.advanced.ssl.preferred'), // Preferred
sslUse: this.$t('projects.ext_db.credentials.advanced.ssl.preferred'), // Preferred
},
},
],
@ -1762,11 +1762,11 @@ export default {
},
ui: {
setup: 0,
sslUse: this.$t('project.ext_db.credentials.advanced.ssl.preferred'), // Preferred
sslUse: this.$t('projects.ext_db.credentials.advanced.ssl.preferred'), // Preferred
ssl: {
key: this.$t('project.ext_db.credentials.advanced.ssl.option1'), // Client Key
cert: this.$t('project.ext_db.credentials.advanced.ssl.option2'), // Client Cert
ca: this.$t('project.ext_db.credentials.advanced.ssl.option3'), // Server CA
key: this.$t('projects.ext_db.credentials.advanced.ssl.option1'), // Client Key
cert: this.$t('projects.ext_db.credentials.advanced.ssl.option2'), // Client Cert
ca: this.$t('projects.ext_db.credentials.advanced.ssl.option3'), // Server CA
},
},
});
@ -1900,14 +1900,14 @@ export default {
this.panel = null;
} else {
// Connection was successful
this.dialog.heading = this.$t('project.ext_db.dialog.success');
this.dialog.heading = this.$t('projects.ext_db.dialog.success');
this.dialog.type = 'success';
this.dialog.show = true;
}
} else {
db.ui.setup = -1;
// Connection Failure:
this.dialog.heading = this.$t('project.ext_db.dialog.failure') + result.message;
this.dialog.heading = this.$t('projects.ext_db.dialog.failure') + result.message;
this.dialog.type = 'error';
this.dialog.show = true;
}
@ -1994,7 +1994,7 @@ export default {
} else {
db.ui.setup = -1;
// this.activeDbNode.testConnectionStatus = false;
this.dialog.heading = this.$t('project.ext_db.dialog.failure') + result.message;
this.dialog.heading = this.$t('projects.ext_db.dialog.failure') + result.message;
this.dialog.type = 'error';
this.dialog.show = true;
}
@ -2171,7 +2171,7 @@ export default {
},
head() {
return {
title: this.$t('project.ext_db.head.title'),
title: this.$t('projects.ext_db.head.title'),
};
},
props: {

58
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
>&nbsp;
@ -48,7 +48,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']"
@ -61,7 +61,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="
@ -93,7 +93,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">
@ -109,7 +109,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>
@ -125,7 +125,7 @@
<v-list-item-title>
<!-- Create -->
<span class="caption font-weight-regular">{{
$t('home.create_new_project_button.subtext_1')
$t('projects.create_new_project_button.subtext_1')
}}</span>
</v-list-item-title>
<v-spacer></v-spacer>
@ -137,7 +137,7 @@
</template>
<!-- Create a new project -->
<span class="caption">{{
$t('home.create_new_project_button.subtext_1_tooltip')
$t('projects.create_new_project_button.subtext_1_tooltip')
}}</span>
</v-tooltip>
</v-list-item>
@ -155,7 +155,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>
@ -168,7 +168,7 @@
</template>
<!-- Supports MySQL, PostgreSQL, SQL Server & SQLite -->
<span class="caption">{{
$t('home.create_new_project_button.subtext_2_tooltip')
$t('projects.create_new_project_button.subtext_2_tooltip')
}}</span>
</v-tooltip>
</v-list-item>
@ -184,7 +184,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>
@ -225,8 +225,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="
@ -259,7 +259,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"
@ -270,7 +270,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"
@ -290,7 +290,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"
@ -301,7 +301,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"
@ -330,7 +330,7 @@
<v-list-item-title>
<!-- Import Metadata -->
<span class="caption font-weight-regular">{{
$t('home.project_verticial_option_1')
$t('projects.verticial_option_1')
}}</span>
</v-list-item-title>
</v-list-item>
@ -344,7 +344,7 @@
<v-list-item-title>
<!-- Export Metadata -->
<span class="caption font-weight-regular">{{
$t('home.project_verticial_option_2')
$t('projects.verticial_option_2')
}}</span>
</v-list-item-title>
</v-list-item>
@ -358,7 +358,7 @@
<v-list-item-title>
<!-- Clear Metadata -->
<span class="caption font-weight-regular">{{
$t('home.project_verticial_option_3')
$t('projects.verticial_option_3')
}}</span>
</v-list-item-title>
</v-list-item>
@ -374,7 +374,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-->
@ -396,7 +396,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>
@ -423,7 +423,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">
@ -438,7 +438,7 @@
mdi-lightbulb-on </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>
@ -493,10 +493,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>
@ -512,7 +512,7 @@
</v-list-item-icon>
<!-- Book a Free DEMO -->
<v-list-item-title>{{
$t('home.show_community_message_2')
$t('projects.show_community_message_2')
}}</v-list-item-title>
</v-list-item>
<v-divider></v-divider>
@ -522,7 +522,7 @@
</v-list-item-icon>
<!-- Get your questions answered -->
<v-list-item-title>{{
$t('home.show_community_message_3')
$t('projects.show_community_message_3')
}}</v-list-item-title>
</v-list-item>
<v-divider></v-divider>
@ -532,7 +532,7 @@
</v-list-item-icon>
<!-- Follow NocoDB -->
<v-list-item-title>{{
$t('home.show_community_message_4')
$t('projects.show_community_message_4')
}}</v-list-item-title>
</v-list-item>
</v-list>

134
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",
@ -37,46 +78,5 @@
"signin.head.title": "Log In | Noco",
"signin.head.meta.hid": "Log In To Noco",
"signin.head.meta.name": "Log In To Noco",
"signin.head.meta.content": "Log In To Noco",
"project.ext_db.title.edit": "Edit Project",
"project.ext_db.title.create": "Create Project",
"project.ext_db.project_name": "Enter Project Name",
"project.ext_db.project_type": "Access Project via",
"project.ext_db.button.save_project": "Save Project",
"project.ext_db.button.update_and_restart": "Update & Restart",
"project.ext_db.button.cancel": "Cancel",
"project.ext_db.button.cancel_tooltip": "Cancel and Return",
"project.ext_db.credentials": "Database Credentials",
"project.ext_db.credentials.label_1": "Database Type",
"project.ext_db.credentials.label_2": "SQLite File",
"project.ext_db.credentials.label_3": "Host Address",
"project.ext_db.credentials.label_4": "Port Number",
"project.ext_db.credentials.label_5": "Username",
"project.ext_db.credentials.label_6": "Password",
"project.ext_db.credentials.label_7": "Database : create if not exists",
"project.ext_db.credentials.button.test_db_conn": "Test Database Connection",
"project.ext_db.credentials.button.remove_db_from_env": "Remove Database from environment",
"project.ext_db.credentials.advanced": "SSL & Advanced parameters",
"project.ext_db.credentials.advanced.ssl.option1": "Client Key",
"project.ext_db.credentials.advanced.ssl.option2": "Client Cert",
"project.ext_db.credentials.advanced.ssl.option3": "Server CA",
"project.ext_db.credentials.advanced.ssl.option1.toolip": "Select .key file",
"project.ext_db.credentials.advanced.ssl.option2.toolip": "Select .cert file",
"project.ext_db.credentials.advanced.ssl.option3.toolip": "Select CA file",
"project.ext_db.credentials.advanced.ssl.preferred": "Preferred",
"project.ext_db.credentials.advanced.ssl.usage.option1": "No",
"project.ext_db.credentials.advanced.ssl.usage.option2": "Preferred",
"project.ext_db.credentials.advanced.ssl.usage.option3": "Required",
"project.ext_db.credentials.advanced.ssl.usage.option4": "Required-CA",
"project.ext_db.credentials.advanced.ssl.usage.option5": "Required-IDENTITY",
"project.ext_db.credentials.advanced.inflection.table_name": "Inflection - Table name",
"project.ext_db.credentials.advanced.inflection.column_name": "Inflection - Column name",
"project.ext_db.credentials.advanced.button.edit_conn_json": "Edit connection JSON",
"project.ext_db.error.message_1": "Invalid character in folder path.",
"project.ext_db.error.message_2": "Invalid database credentials.",
"project.ext_db.error.message_3": "Unable to connect to database, please check your database is up.",
"project.ext_db.error.message_4": "User does not exist or have sufficient permission to create schema.",
"project.ext_db.head.title": "Create Project | Noco",
"project.ext_db.dialog.success": "Connection was successful",
"project.ext_db.dialog.failure": "Connection Failure:"
"signin.head.meta.content": "Log In To Noco"
}

134
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",
@ -37,46 +78,5 @@
"signin.head.title": "Log In | Noco",
"signin.head.meta.hid": "Log In To Noco",
"signin.head.meta.name": "Log In To Noco",
"signin.head.meta.content": "Log In To Noco",
"project.ext_db.title.edit": "Edit Project",
"project.ext_db.title.create": "Create Project",
"project.ext_db.project_name": "Enter Project Name",
"project.ext_db.project_type": "Access Project via",
"project.ext_db.button.save_project": "Save Project",
"project.ext_db.button.update_and_restart": "Update & Restart",
"project.ext_db.button.cancel": "Cancel",
"project.ext_db.button.cancel_tooltip": "Cancel and Return",
"project.ext_db.credentials": "Database Credentials",
"project.ext_db.credentials.label_1": "Database Type",
"project.ext_db.credentials.label_2": "SQLite File",
"project.ext_db.credentials.label_3": "Host Address",
"project.ext_db.credentials.label_4": "Port Number",
"project.ext_db.credentials.label_5": "Username",
"project.ext_db.credentials.label_6": "Password",
"project.ext_db.credentials.label_7": "Database : create if not exists",
"project.ext_db.credentials.button.test_db_conn": "Test Database Connection",
"project.ext_db.credentials.button.remove_db_from_env": "Remove Database from environment",
"project.ext_db.credentials.advanced": "SSL & Advanced parameters",
"project.ext_db.credentials.advanced.ssl.option1": "Client Key",
"project.ext_db.credentials.advanced.ssl.option2": "Client Cert",
"project.ext_db.credentials.advanced.ssl.option3": "Server CA",
"project.ext_db.credentials.advanced.ssl.option1.toolip": "Select .key file",
"project.ext_db.credentials.advanced.ssl.option2.toolip": "Select .cert file",
"project.ext_db.credentials.advanced.ssl.option3.toolip": "Select CA file",
"project.ext_db.credentials.advanced.ssl.preferred": "Preferred",
"project.ext_db.credentials.advanced.ssl.usage.option1": "No",
"project.ext_db.credentials.advanced.ssl.usage.option2": "Preferred",
"project.ext_db.credentials.advanced.ssl.usage.option3": "Required",
"project.ext_db.credentials.advanced.ssl.usage.option4": "Required-CA",
"project.ext_db.credentials.advanced.ssl.usage.option5": "Required-IDENTITY",
"project.ext_db.credentials.advanced.inflection.table_name": "Inflection - Table name",
"project.ext_db.credentials.advanced.inflection.column_name": "Inflection - Column name",
"project.ext_db.credentials.advanced.button.edit_conn_json": "Edit connection JSON",
"project.ext_db.error.message_1": "Invalid character in folder path.",
"project.ext_db.error.message_2": "Invalid database credentials.",
"project.ext_db.error.message_3": "Unable to connect to database, please check your database is up.",
"project.ext_db.error.message_4": "User does not exist or have sufficient permission to create schema.",
"project.ext_db.head.title": "Create Project | Noco",
"project.ext_db.dialog.success": "Connection was successful",
"project.ext_db.dialog.failure": "Connection Failure:"
"signin.head.meta.content": "Log In To Noco"
}

134
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",
@ -37,47 +78,6 @@
"signin.head.title": "Log In | Noco",
"signin.head.meta.hid": "Log In To Noco",
"signin.head.meta.name": "Log In To Noco",
"signin.head.meta.content": "Log In To Noco",
"project.ext_db.title.edit": "Edit Project",
"project.ext_db.title.create": "Create Project",
"project.ext_db.project_name": "Enter Project Name",
"project.ext_db.project_type": "Access Project via",
"project.ext_db.button.save_project": "Save Project",
"project.ext_db.button.update_and_restart": "Update & Restart",
"project.ext_db.button.cancel": "Cancel",
"project.ext_db.button.cancel_tooltip": "Cancel and Return",
"project.ext_db.credentials": "Database Credentials",
"project.ext_db.credentials.label_1": "Database Type",
"project.ext_db.credentials.label_2": "SQLite File",
"project.ext_db.credentials.label_3": "Host Address",
"project.ext_db.credentials.label_4": "Port Number",
"project.ext_db.credentials.label_5": "Username",
"project.ext_db.credentials.label_6": "Password",
"project.ext_db.credentials.label_7": "Database : create if not exists",
"project.ext_db.credentials.button.test_db_conn": "Test Database Connection",
"project.ext_db.credentials.button.remove_db_from_env": "Remove Database from environment",
"project.ext_db.credentials.advanced": "SSL & Advanced parameters",
"project.ext_db.credentials.advanced.ssl.option1": "Client Key",
"project.ext_db.credentials.advanced.ssl.option2": "Client Cert",
"project.ext_db.credentials.advanced.ssl.option3": "Server CA",
"project.ext_db.credentials.advanced.ssl.option1.toolip": "Select .key file",
"project.ext_db.credentials.advanced.ssl.option2.toolip": "Select .cert file",
"project.ext_db.credentials.advanced.ssl.option3.toolip": "Select CA file",
"project.ext_db.credentials.advanced.ssl.preferred": "Preferred",
"project.ext_db.credentials.advanced.ssl.usage.option1": "No",
"project.ext_db.credentials.advanced.ssl.usage.option2": "Preferred",
"project.ext_db.credentials.advanced.ssl.usage.option3": "Required",
"project.ext_db.credentials.advanced.ssl.usage.option4": "Required-CA",
"project.ext_db.credentials.advanced.ssl.usage.option5": "Required-IDENTITY",
"project.ext_db.credentials.advanced.inflection.table_name": "Inflection - Table name",
"project.ext_db.credentials.advanced.inflection.column_name": "Inflection - Column name",
"project.ext_db.credentials.advanced.button.edit_conn_json": "Edit connection JSON",
"project.ext_db.error.message_1": "Invalid character in folder path.",
"project.ext_db.error.message_2": "Invalid database credentials.",
"project.ext_db.error.message_3": "Unable to connect to database, please check your database is up.",
"project.ext_db.error.message_4": "User does not exist or have sufficient permission to create schema.",
"project.ext_db.head.title": "Create Project | Noco",
"project.ext_db.dialog.success": "Connection was successful",
"project.ext_db.dialog.failure": "Connection Failure:"
"signin.head.meta.content": "Log In To Noco"
}
Loading…
Cancel
Save