feat: init new i18n format

This commit is contained in:
liyasthomas
2021-08-02 20:57:18 +05:30
parent 8a268ee6de
commit b615fe7529
66 changed files with 476 additions and 428 deletions

View File

@@ -41,7 +41,7 @@
px-4
focus:outline-none
"
:placeholder="$t('parameter_count', { count: index + 1 })"
:placeholder="$t('count.parameter', { count: index + 1 })"
:name="'param' + index"
:value="param.key"
autofocus
@@ -59,7 +59,7 @@
px-4
focus:outline-none
"
:placeholder="$t('value_count', { count: index + 1 })"
:placeholder="$t('count.value', { count: index + 1 })"
:name="'value' + index"
:value="param.value"
@change="
@@ -86,9 +86,9 @@
:title="
param.hasOwnProperty('active')
? param.active
? $t('turn_off')
: $t('turn_on')
: $t('turn_off')
? $t('action.turn_off')
: $t('action.turn_on')
: $t('action.turn_off')
"
:icon="
param.hasOwnProperty('active')

View File

@@ -75,11 +75,14 @@
<template #footer>
<ButtonPrimary
ref="copyRequestCode"
:label="$t('copy')"
:label="$t('action.copy')"
:icon="copyIcon"
@click.native="copyRequestCode"
/>
<ButtonSecondary :label="$t('dismiss')" @click.native="hideModal" />
<ButtonSecondary
:label="$t('action.dismiss')"
@click.native="hideModal"
/>
</template>
</SmartModal>
</template>

View File

@@ -25,7 +25,7 @@
/>
<ButtonSecondary
v-tippy="{ theme: 'tooltip' }"
:title="$t('add_new')"
:title="$t('add.new')"
icon="add"
@click.native="addHeader"
/>
@@ -38,7 +38,7 @@
:class="{ 'border-t': index == 0 }"
>
<SmartAutoComplete
:placeholder="$t('header_count', { count: index + 1 })"
:placeholder="$t('count.header', { count: index + 1 })"
:source="commonHeaders"
:spellcheck="false"
:value="header.key"
@@ -63,7 +63,7 @@
<SmartEnvInput
v-if="EXPERIMENTAL_URL_BAR_ENABLED"
v-model="header.value"
:placeholder="$t('value_count', { count: index + 1 })"
:placeholder="$t('count.value', { count: index + 1 })"
styles="
bg-primaryLight
flex
@@ -92,7 +92,7 @@
px-4
focus:outline-none
"
:placeholder="$t('value_count', { count: index + 1 })"
:placeholder="$t('count.value', { count: index + 1 })"
:name="'value' + index"
:value="header.value"
@change="
@@ -109,9 +109,9 @@
:title="
header.hasOwnProperty('active')
? header.active
? $t('turn_off')
: $t('turn_on')
: $t('turn_off')
? $t('action.turn_off')
: $t('action.turn_on')
: $t('action.turn_off')
"
:icon="
header.hasOwnProperty('active')
@@ -146,11 +146,11 @@
>
<i class="opacity-75 pb-2 material-icons">post_add</i>
<span class="text-center pb-4">
{{ $t("headers_empty") }}
{{ $t("empty.headers") }}
</span>
<ButtonSecondary
outline
:label="$t('add_new')"
:label="$t('add.new')"
@click.native="addHeader"
/>
</div>

View File

@@ -1,7 +1,7 @@
<template>
<SmartModal v-if="show" @close="hideModal">
<template #header>
<h3 class="heading">{{ $t("import_curl") }}</h3>
<h3 class="heading">{{ $t("import.curl") }}</h3>
<div>
<ButtonSecondary icon="close" @click.native="hideModal" />
</div>
@@ -20,7 +20,10 @@
</template>
<template #footer>
<span>
<ButtonPrimary :label="$t('import')" @click.native="handleImport" />
<ButtonPrimary
:label="$t('import.title')"
@click.native="handleImport"
/>
<ButtonSecondary :label="$t('cancel')" @click.native="hideModal" />
</span>
</template>

View File

@@ -25,7 +25,7 @@
/>
<ButtonSecondary
v-tippy="{ theme: 'tooltip' }"
:title="$t('add_new')"
:title="$t('add.new')"
icon="add"
@click.native="addParam"
/>
@@ -40,7 +40,7 @@
<SmartEnvInput
v-if="EXPERIMENTAL_URL_BAR_ENABLED"
v-model="param.key"
:placeholder="$t('parameter_count', { count: index + 1 })"
:placeholder="$t('count.parameter', { count: index + 1 })"
styles="
bg-primaryLight
flex
@@ -69,7 +69,7 @@
px-4
focus:outline-none
"
:placeholder="$t('parameter_count', { count: index + 1 })"
:placeholder="$t('count.parameter', { count: index + 1 })"
:name="'param' + index"
:value="param.key"
autofocus
@@ -84,7 +84,7 @@
<SmartEnvInput
v-if="EXPERIMENTAL_URL_BAR_ENABLED"
v-model="param.value"
:placeholder="$t('value_count', { count: index + 1 })"
:placeholder="$t('count.value', { count: index + 1 })"
styles="
bg-primaryLight
flex
@@ -113,7 +113,7 @@
px-4
focus:outline-none
"
:placeholder="$t('value_count', { count: index + 1 })"
:placeholder="$t('count.value', { count: index + 1 })"
:name="'value' + index"
:value="param.value"
@change="
@@ -130,9 +130,9 @@
:title="
param.hasOwnProperty('active')
? param.active
? $t('turn_off')
: $t('turn_on')
: $t('turn_off')
? $t('action.turn_off')
: $t('action.turn_on')
: $t('action.turn_off')
"
:icon="
param.hasOwnProperty('active')
@@ -167,10 +167,10 @@
>
<i class="opacity-75 pb-2 material-icons">post_add</i>
<span class="text-center pb-4">
{{ $t("parameters_empty") }}
{{ $t("empty.parameters") }}
</span>
<ButtonSecondary
:label="$t('add_new')"
:label="$t('add.new')"
outline
@click.native="addParam"
/>

View File

@@ -28,7 +28,7 @@
<label for="payload">
<ButtonSecondary
v-tippy="{ theme: 'tooltip' }"
:title="$t('import_json')"
:title="$t('import.json')"
icon="post_add"
@click.native="$refs.payload.click()"
/>

View File

@@ -108,7 +108,7 @@
<ButtonPrimary class="rounded-l-none" icon="keyboard_arrow_down" />
</template>
<SmartItem
:label="$t('import_curl')"
:label="$t('import.curl')"
icon="import_export"
@click.native="
showCurlImportModal = !showCurlImportModal
@@ -116,7 +116,7 @@
"
/>
<SmartItem
:label="$t('show_code')"
:label="$t('show.code')"
icon="code"
@click.native="
showCodegenModal = !showCodegenModal
@@ -167,7 +167,7 @@
/>
<SmartItem
ref="copyRequest"
:label="$t('copy_request_link')"
:label="$t('request.copy_link')"
:icon="hasNavigatorShare ? 'share' : 'content_copy'"
@click.native="
copyRequest()
@@ -176,7 +176,7 @@
/>
<SmartItem
ref="saveRequest"
:label="$t('save_to_collections')"
:label="$t('request.save_as')"
icon="create_new_folder"
@click.native="
showSaveRequestModal = true

View File

@@ -11,11 +11,15 @@
>
<div class="flex space-x-2 pb-8">
<div class="flex flex-col space-y-4 items-end">
<span class="flex flex-1 items-center">{{ $t("send_request") }}</span>
<span class="flex flex-1 items-center">{{
$t("reset_request")
}}</span>
<span class="flex flex-1 items-center"> Show all Shortcuts </span>
<span class="flex flex-1 items-center">
{{ $t("shortcut.send_request") }}
</span>
<span class="flex flex-1 items-center">
{{ $t("shortcut.reset_request") }}
</span>
<span class="flex flex-1 items-center">
{{ $t("shortcut.show_all") }}
</span>
</div>
<div class="flex flex-col space-y-4">
<div class="flex">
@@ -27,7 +31,6 @@
<span class="shortcut-key">I</span>
</div>
<div class="flex">
<span class="shortcut-key">{{ getSpecialKey() }}</span>
<span class="shortcut-key">?</span>
</div>
</div>

View File

@@ -1,6 +1,6 @@
<template>
<SmartTabs styles="sticky top-24 z-20">
<SmartTab id="script" :label="$t('script')" :selected="true">
<SmartTab id="script" :label="$t('test.script')" :selected="true">
<div
class="
bg-primary
@@ -40,7 +40,7 @@
</SmartTab>
<SmartTab
id="results"
:label="$t('results')"
:label="$t('test.results')"
:info="totalTests ? totalTests.toString() : ''"
>
<div
@@ -101,7 +101,7 @@
>
<i class="opacity-75 pb-2 material-icons">bug_report</i>
<span class="text-center">
{{ $t("add_test_scripts") }}
{{ $t("empty.tests") }}
</span>
</div>
</SmartTab>

View File

@@ -56,7 +56,7 @@
</div>
</ul>
<p v-if="tokens.length === 0">
{{ $t("empty") }}
{{ $t("empty.protocols") }}
</p>
</template>
</SmartModal>