diff options
-rw-r--r-- | src/pages/About.vue | 2 | ||||
-rw-r--r-- | src/tools/json-diff/json-diff.vue | 8 | ||||
-rw-r--r-- | src/tools/json-minify/json-minify.vue | 6 | ||||
-rw-r--r-- | src/tools/json-to-csv/json-to-csv.vue | 4 | ||||
-rw-r--r-- | src/tools/json-viewer/json-viewer.vue | 6 |
5 files changed, 13 insertions, 13 deletions
diff --git a/src/pages/About.vue b/src/pages/About.vue index 780767f..3fada35 100644 --- a/src/pages/About.vue +++ b/src/pages/About.vue @@ -55,7 +55,7 @@ const { tracker } = useTracker(); in the GitHub repository. </n-p> <n-p> - And if you found a bug, or something doesn't work as expected, please fill a bug report in the + And if you found a bug, or something doesn't work as expected, please file a bug report in the <c-link href="https://github.com/CorentinTh/it-tools/issues/new/choose" rel="noopener" diff --git a/src/tools/json-diff/json-diff.vue b/src/tools/json-diff/json-diff.vue index 2ef3de0..2e57c50 100644 --- a/src/tools/json-diff/json-diff.vue +++ b/src/tools/json-diff/json-diff.vue @@ -23,8 +23,8 @@ const jsonValidationRules = [ <c-input-text v-model:value="rawLeftJson" :validation-rules="jsonValidationRules" - label="Your first json" - placeholder="Paste your first json here..." + label="Your first JSON" + placeholder="Paste your first JSON here..." rows="20" multiline test-id="leftJson" @@ -34,8 +34,8 @@ const jsonValidationRules = [ <c-input-text v-model:value="rawRightJson" :validation-rules="jsonValidationRules" - label="Your json to compare" - placeholder="Paste your json to compare here..." + label="Your JSON to compare" + placeholder="Paste your JSON to compare here..." rows="20" multiline test-id="rightJson" diff --git a/src/tools/json-minify/json-minify.vue b/src/tools/json-minify/json-minify.vue index 4ee588d..51d6270 100644 --- a/src/tools/json-minify/json-minify.vue +++ b/src/tools/json-minify/json-minify.vue @@ -16,10 +16,10 @@ const rules: UseValidationRule<string>[] = [ <template> <format-transformer - input-label="Your raw json" + input-label="Your raw JSON" :input-default="defaultValue" - input-placeholder="Paste your raw json here..." - output-label="Minify version of your JSON" + input-placeholder="Paste your raw JSON here..." + output-label="Minified version of your JSON" output-language="json" :input-validation-rules="rules" :transformer="transformer" diff --git a/src/tools/json-to-csv/json-to-csv.vue b/src/tools/json-to-csv/json-to-csv.vue index cf15400..e2f5ddb 100644 --- a/src/tools/json-to-csv/json-to-csv.vue +++ b/src/tools/json-to-csv/json-to-csv.vue @@ -23,8 +23,8 @@ const rules: UseValidationRule<string>[] = [ <template> <format-transformer - input-label="Your raw json" - input-placeholder="Paste your raw json here..." + input-label="Your raw JSON" + input-placeholder="Paste your raw JSON here..." output-label="CSV version of your JSON" :input-validation-rules="rules" :transformer="transformer" diff --git a/src/tools/json-viewer/json-viewer.vue b/src/tools/json-viewer/json-viewer.vue index fd3b884..8abf77e 100644 --- a/src/tools/json-viewer/json-viewer.vue +++ b/src/tools/json-viewer/json-viewer.vue @@ -37,14 +37,14 @@ const rawJsonValidation = useValidation({ </div> <n-form-item - label="Your raw json" + label="Your raw JSON" :feedback="rawJsonValidation.message" :validation-status="rawJsonValidation.status" > <n-input ref="inputElement" v-model:value="rawJson" - placeholder="Paste your raw json here..." + placeholder="Paste your raw JSON here..." type="textarea" rows="20" autocomplete="off" @@ -53,7 +53,7 @@ const rawJsonValidation = useValidation({ spellcheck="false" /> </n-form-item> - <n-form-item label="Prettify version of your json"> + <n-form-item label="Prettified version of your JSON"> <TextareaCopyable :value="cleanJson" language="json" :follow-height-of="inputElement" /> </n-form-item> </template> |