chore(i18n): updated translations
This commit is contained in:
@@ -59,10 +59,8 @@
|
||||
<template #body>
|
||||
<div class="flex flex-col space-y-2 px-2">
|
||||
<SmartItem
|
||||
v-tippy="{ theme: 'tooltip' }"
|
||||
:title="t('action.preserve_current')"
|
||||
svg="folder-plus"
|
||||
:label="t('import.json')"
|
||||
:label="t('import.from_json')"
|
||||
@click.native="openDialogChooseFileToImportFrom"
|
||||
/>
|
||||
<input
|
||||
@@ -72,20 +70,6 @@
|
||||
accept="application/json"
|
||||
@change="importFromJSON"
|
||||
/>
|
||||
<SmartItem
|
||||
v-tippy="{ theme: 'tooltip' }"
|
||||
:title="t('action.replace_current')"
|
||||
svg="file"
|
||||
:label="t('action.replace_json')"
|
||||
@click.native="openDialogChooseFileToReplaceWith"
|
||||
/>
|
||||
<input
|
||||
ref="inputChooseFileToReplaceWith"
|
||||
class="input"
|
||||
type="file"
|
||||
accept="application/json"
|
||||
@change="replaceWithJSON"
|
||||
/>
|
||||
<hr />
|
||||
<SmartItem
|
||||
v-tippy="{ theme: 'tooltip' }"
|
||||
@@ -130,7 +114,6 @@ const currentUser = useReadonlyStream(currentUser$, null)
|
||||
|
||||
// Template refs
|
||||
const options = ref<any>()
|
||||
const inputChooseFileToReplaceWith = ref<HTMLInputElement>()
|
||||
const inputChooseFileToImportFrom = ref<HTMLInputElement>()
|
||||
|
||||
const collectionJson = computed(() => {
|
||||
@@ -211,56 +194,11 @@ const hideModal = () => {
|
||||
emit("hide-modal")
|
||||
}
|
||||
|
||||
const openDialogChooseFileToReplaceWith = () => {
|
||||
if (inputChooseFileToReplaceWith.value)
|
||||
inputChooseFileToReplaceWith.value.click()
|
||||
}
|
||||
|
||||
const openDialogChooseFileToImportFrom = () => {
|
||||
if (inputChooseFileToImportFrom.value)
|
||||
inputChooseFileToImportFrom.value.click()
|
||||
}
|
||||
|
||||
const replaceWithJSON = () => {
|
||||
if (!inputChooseFileToReplaceWith.value) return
|
||||
|
||||
if (
|
||||
!inputChooseFileToReplaceWith.value.files ||
|
||||
inputChooseFileToReplaceWith.value.files.length === 0
|
||||
) {
|
||||
toast.show(t("action.choose_file").toString())
|
||||
return
|
||||
}
|
||||
|
||||
const reader = new FileReader()
|
||||
|
||||
reader.onload = ({ target }) => {
|
||||
const content = target!.result as string | null
|
||||
|
||||
if (!content) {
|
||||
toast.show(t("action.choose_file").toString())
|
||||
return
|
||||
}
|
||||
|
||||
const collections = JSON.parse(content)
|
||||
|
||||
// TODO: File validation
|
||||
if (collections[0]) {
|
||||
const [name, folders, requests] = Object.keys(collections[0])
|
||||
if (name === "name" && folders === "folders" && requests === "requests") {
|
||||
// Do nothing
|
||||
}
|
||||
} else {
|
||||
failedImport()
|
||||
}
|
||||
setGraphqlCollections(collections)
|
||||
fileImported()
|
||||
}
|
||||
|
||||
reader.readAsText(inputChooseFileToReplaceWith.value.files[0])
|
||||
inputChooseFileToReplaceWith.value.value = ""
|
||||
}
|
||||
|
||||
const importFromJSON = () => {
|
||||
if (!inputChooseFileToImportFrom.value) return
|
||||
|
||||
|
||||
@@ -59,10 +59,8 @@
|
||||
<template #body>
|
||||
<div class="flex flex-col px-2 space-y-2">
|
||||
<SmartItem
|
||||
v-tippy="{ theme: 'tooltip' }"
|
||||
:title="t('action.preserve_current')"
|
||||
svg="folder-plus"
|
||||
:label="t('import.json')"
|
||||
:label="t('import.from_json')"
|
||||
@click.native="openDialogChooseFileToImportFrom"
|
||||
/>
|
||||
<input
|
||||
@@ -72,20 +70,6 @@
|
||||
accept="application/json"
|
||||
@change="importFromJSON"
|
||||
/>
|
||||
<SmartItem
|
||||
v-tippy="{ theme: 'tooltip' }"
|
||||
:title="t('action.replace_current')"
|
||||
svg="file"
|
||||
:label="t('action.replace_json')"
|
||||
@click.native="openDialogChooseFileToReplaceWith"
|
||||
/>
|
||||
<input
|
||||
ref="inputChooseFileToReplaceWith"
|
||||
class="input"
|
||||
type="file"
|
||||
accept="application/json"
|
||||
@change="replaceWithJSON"
|
||||
/>
|
||||
<hr />
|
||||
<SmartItem
|
||||
v-tippy="{ theme: 'tooltip' }"
|
||||
@@ -131,7 +115,6 @@ const currentUser = useReadonlyStream(currentUser$, null)
|
||||
|
||||
// Template refs
|
||||
const options = ref<any>()
|
||||
const inputChooseFileToReplaceWith = ref<HTMLInputElement>()
|
||||
const inputChooseFileToImportFrom = ref<HTMLInputElement>()
|
||||
|
||||
const environmentJson = computed(() => {
|
||||
@@ -211,56 +194,11 @@ const hideModal = () => {
|
||||
emit("hide-modal")
|
||||
}
|
||||
|
||||
const openDialogChooseFileToReplaceWith = () => {
|
||||
if (inputChooseFileToReplaceWith.value)
|
||||
inputChooseFileToReplaceWith.value.click()
|
||||
}
|
||||
|
||||
const openDialogChooseFileToImportFrom = () => {
|
||||
if (inputChooseFileToImportFrom.value)
|
||||
inputChooseFileToImportFrom.value.click()
|
||||
}
|
||||
|
||||
const replaceWithJSON = () => {
|
||||
if (!inputChooseFileToReplaceWith.value) return
|
||||
|
||||
if (
|
||||
!inputChooseFileToReplaceWith.value.files ||
|
||||
inputChooseFileToReplaceWith.value.files.length === 0
|
||||
) {
|
||||
toast.show(t("action.choose_file").toString())
|
||||
return
|
||||
}
|
||||
|
||||
const reader = new FileReader()
|
||||
|
||||
reader.onload = ({ target }) => {
|
||||
const content = target!.result as string | null
|
||||
|
||||
if (!content) {
|
||||
toast.show(t("action.choose_file").toString())
|
||||
return
|
||||
}
|
||||
|
||||
const environments = JSON.parse(content)
|
||||
|
||||
// TODO: File validation
|
||||
if (environments[0]) {
|
||||
const [name, variables] = Object.keys(environments[0])
|
||||
if (name === "name" && variables === "variables") {
|
||||
// Do nothing
|
||||
}
|
||||
} else {
|
||||
failedImport()
|
||||
}
|
||||
|
||||
replaceEnvironments(environments)
|
||||
fileImported()
|
||||
}
|
||||
reader.readAsText(inputChooseFileToReplaceWith.value.files[0])
|
||||
inputChooseFileToReplaceWith.value.value = ""
|
||||
}
|
||||
|
||||
const importFromJSON = () => {
|
||||
if (!inputChooseFileToImportFrom.value) return
|
||||
|
||||
|
||||
@@ -38,7 +38,7 @@
|
||||
<label for="payload">
|
||||
<ButtonSecondary
|
||||
v-tippy="{ theme: 'tooltip' }"
|
||||
:title="t('import.json')"
|
||||
:title="t('import.title')"
|
||||
svg="file-plus"
|
||||
@click.native="$refs.payload.click()"
|
||||
/>
|
||||
|
||||
@@ -33,10 +33,7 @@
|
||||
"turn_off": "Skakel af",
|
||||
"turn_on": "Sit aan",
|
||||
"undo": "Ontdoen",
|
||||
"yes": "Ja",
|
||||
"preserve_current": "Bewaar stroom",
|
||||
"replace_current": "Vervang stroom",
|
||||
"replace_json": "Vervang deur JSON"
|
||||
"yes": "Ja"
|
||||
},
|
||||
"add": {
|
||||
"new": "Voeg nuwe",
|
||||
@@ -247,10 +244,7 @@
|
||||
"from_json_description": "Import from Hoppscotch collection file",
|
||||
"gist_url": "Voer Gist URL in",
|
||||
"json_description": "Import collections from a Hoppscotch Collections JSON file",
|
||||
"title": "Invoer",
|
||||
"gist": "Import from Gist",
|
||||
"gist_description": "Import a Gist",
|
||||
"json": "Invoer vanaf JSON"
|
||||
"title": "Invoer"
|
||||
},
|
||||
"layout": {
|
||||
"column": "Vertical layout",
|
||||
|
||||
@@ -33,10 +33,7 @@
|
||||
"turn_off": "اطفئه",
|
||||
"turn_on": "شغله",
|
||||
"undo": "الغاء التحميل",
|
||||
"yes": "نعم",
|
||||
"preserve_current": "الحفاظ على التيار",
|
||||
"replace_current": "استبدال التيار",
|
||||
"replace_json": "استبدل بـ JSON"
|
||||
"yes": "نعم"
|
||||
},
|
||||
"add": {
|
||||
"new": "اضف جديد",
|
||||
@@ -247,10 +244,7 @@
|
||||
"from_json_description": "Import from Hoppscotch collection file",
|
||||
"gist_url": "أدخل عنوان URL لـ Gist",
|
||||
"json_description": "Import collections from a Hoppscotch Collections JSON file",
|
||||
"title": "يستورد",
|
||||
"gist": "Import from Gist",
|
||||
"gist_description": "Import a Gist",
|
||||
"json": "استيراد من JSON"
|
||||
"title": "يستورد"
|
||||
},
|
||||
"layout": {
|
||||
"column": "Vertical layout",
|
||||
|
||||
@@ -33,10 +33,7 @@
|
||||
"turn_off": "Tanca",
|
||||
"turn_on": "Encendre",
|
||||
"undo": "Desfés",
|
||||
"yes": "Sí",
|
||||
"preserve_current": "Conservar el corrent",
|
||||
"replace_current": "Substitueix el corrent",
|
||||
"replace_json": "Substitueix per JSON"
|
||||
"yes": "Sí"
|
||||
},
|
||||
"add": {
|
||||
"new": "Afegir nou",
|
||||
@@ -247,10 +244,7 @@
|
||||
"from_json_description": "Import from Hoppscotch collection file",
|
||||
"gist_url": "Introduïu l'URL Gist",
|
||||
"json_description": "Import collections from a Hoppscotch Collections JSON file",
|
||||
"title": "Importació",
|
||||
"gist": "Import from Gist",
|
||||
"gist_description": "Import a Gist",
|
||||
"json": "Importa de JSON"
|
||||
"title": "Importació"
|
||||
},
|
||||
"layout": {
|
||||
"column": "Vertical layout",
|
||||
|
||||
@@ -33,10 +33,7 @@
|
||||
"turn_off": "关闭",
|
||||
"turn_on": "开启",
|
||||
"undo": "撤消",
|
||||
"yes": "是",
|
||||
"preserve_current": "保持当前",
|
||||
"replace_current": "替换当前",
|
||||
"replace_json": "替换为 JSON"
|
||||
"yes": "是"
|
||||
},
|
||||
"add": {
|
||||
"new": "新增",
|
||||
@@ -247,10 +244,7 @@
|
||||
"from_json_description": "Import from Hoppscotch collection file",
|
||||
"gist_url": "输入 Gist URL",
|
||||
"json_description": "Import collections from a Hoppscotch Collections JSON file",
|
||||
"title": "导入",
|
||||
"gist": "Import from Gist",
|
||||
"gist_description": "Import a Gist",
|
||||
"json": "从 JSON 导入"
|
||||
"title": "导入"
|
||||
},
|
||||
"layout": {
|
||||
"column": "垂直布局",
|
||||
|
||||
@@ -33,10 +33,7 @@
|
||||
"turn_off": "Vypnout",
|
||||
"turn_on": "Zapnout",
|
||||
"undo": "vrátit",
|
||||
"yes": "Ano",
|
||||
"preserve_current": "Zachovat proud",
|
||||
"replace_current": "Vyměňte proud",
|
||||
"replace_json": "Nahradit za JSON"
|
||||
"yes": "Ano"
|
||||
},
|
||||
"add": {
|
||||
"new": "Přidat nový",
|
||||
@@ -247,10 +244,7 @@
|
||||
"from_json_description": "Import from Hoppscotch collection file",
|
||||
"gist_url": "Zadejte URL adresy",
|
||||
"json_description": "Import collections from a Hoppscotch Collections JSON file",
|
||||
"title": "Import",
|
||||
"gist": "Import from Gist",
|
||||
"gist_description": "Import a Gist",
|
||||
"json": "Import z JSON"
|
||||
"title": "Import"
|
||||
},
|
||||
"layout": {
|
||||
"column": "Vertical layout",
|
||||
|
||||
@@ -33,10 +33,7 @@
|
||||
"turn_off": "Sluk",
|
||||
"turn_on": "Tænde for",
|
||||
"undo": "Fortryd",
|
||||
"yes": "Ja",
|
||||
"preserve_current": "Bevar strøm",
|
||||
"replace_current": "Udskift strøm",
|
||||
"replace_json": "Udskift med JSON"
|
||||
"yes": "Ja"
|
||||
},
|
||||
"add": {
|
||||
"new": "Tilføj ny",
|
||||
@@ -247,10 +244,7 @@
|
||||
"from_json_description": "Import from Hoppscotch collection file",
|
||||
"gist_url": "Indtast Gist URL",
|
||||
"json_description": "Import collections from a Hoppscotch Collections JSON file",
|
||||
"title": "Importere",
|
||||
"gist": "Import from Gist",
|
||||
"gist_description": "Import a Gist",
|
||||
"json": "Import fra JSON"
|
||||
"title": "Importere"
|
||||
},
|
||||
"layout": {
|
||||
"column": "Vertical layout",
|
||||
|
||||
@@ -33,10 +33,7 @@
|
||||
"turn_off": "Ausschalten",
|
||||
"turn_on": "Einschalten",
|
||||
"undo": "Rückgängig machen",
|
||||
"yes": "Ja",
|
||||
"preserve_current": "Aktuelles behalten",
|
||||
"replace_current": "Aktuelles ersetzen",
|
||||
"replace_json": "Durch JSON ersetzen"
|
||||
"yes": "Ja"
|
||||
},
|
||||
"add": {
|
||||
"new": "Neue hinzufügen",
|
||||
@@ -247,10 +244,7 @@
|
||||
"from_json_description": "Import from Hoppscotch collection file",
|
||||
"gist_url": "Gist-URL eingeben",
|
||||
"json_description": "Import collections from a Hoppscotch Collections JSON file",
|
||||
"title": "Importieren",
|
||||
"gist": "Import from Gist",
|
||||
"gist_description": "Import a Gist",
|
||||
"json": "Aus JSON importieren"
|
||||
"title": "Importieren"
|
||||
},
|
||||
"layout": {
|
||||
"column": "Vertical layout",
|
||||
|
||||
@@ -33,10 +33,7 @@
|
||||
"turn_off": "Σβήνω",
|
||||
"turn_on": "Ανάβω",
|
||||
"undo": "Ξεκάνω",
|
||||
"yes": "Ναί",
|
||||
"preserve_current": "Διατήρηση ρεύματος",
|
||||
"replace_current": "Αντικαταστήστε το ρεύμα",
|
||||
"replace_json": "Αντικαταστήστε με JSON"
|
||||
"yes": "Ναί"
|
||||
},
|
||||
"add": {
|
||||
"new": "Προσθεσε νεο",
|
||||
@@ -247,10 +244,7 @@
|
||||
"from_json_description": "Import from Hoppscotch collection file",
|
||||
"gist_url": "Εισαγάγετε Gist URL",
|
||||
"json_description": "Import collections from a Hoppscotch Collections JSON file",
|
||||
"title": "Εισαγωγή",
|
||||
"gist": "Import from Gist",
|
||||
"gist_description": "Import a Gist",
|
||||
"json": "Εισαγωγή από JSON"
|
||||
"title": "Εισαγωγή"
|
||||
},
|
||||
"layout": {
|
||||
"column": "Vertical layout",
|
||||
|
||||
@@ -33,10 +33,7 @@
|
||||
"turn_off": "Desactivar",
|
||||
"turn_on": "Activar",
|
||||
"undo": "Deshacer",
|
||||
"yes": "Sí",
|
||||
"preserve_current": "Mantener actual",
|
||||
"replace_current": "Reemplazar actual",
|
||||
"replace_json": "Reemplazar JSON"
|
||||
"yes": "Sí"
|
||||
},
|
||||
"add": {
|
||||
"new": "Agregar nuevo",
|
||||
@@ -247,10 +244,7 @@
|
||||
"from_json_description": "Import from Hoppscotch collection file",
|
||||
"gist_url": "Ingrese la URL de Gist",
|
||||
"json_description": "Import collections from a Hoppscotch Collections JSON file",
|
||||
"title": "Importar",
|
||||
"gist": "Import from Gist",
|
||||
"gist_description": "Import a Gist",
|
||||
"json": "Importar desde JSON"
|
||||
"title": "Importar"
|
||||
},
|
||||
"layout": {
|
||||
"column": "Layout vertical",
|
||||
|
||||
@@ -33,10 +33,7 @@
|
||||
"turn_off": "Sammuttaa",
|
||||
"turn_on": "Kiihottua",
|
||||
"undo": "Kumoa",
|
||||
"yes": "Joo",
|
||||
"preserve_current": "Säilytä virta",
|
||||
"replace_current": "Vaihda virta",
|
||||
"replace_json": "Korvaa JSONilla"
|
||||
"yes": "Joo"
|
||||
},
|
||||
"add": {
|
||||
"new": "Lisää uusi",
|
||||
@@ -247,10 +244,7 @@
|
||||
"from_json_description": "Import from Hoppscotch collection file",
|
||||
"gist_url": "Anna Gist URL",
|
||||
"json_description": "Import collections from a Hoppscotch Collections JSON file",
|
||||
"title": "Tuonti",
|
||||
"gist": "Import from Gist",
|
||||
"gist_description": "Import a Gist",
|
||||
"json": "Tuo JSONista"
|
||||
"title": "Tuonti"
|
||||
},
|
||||
"layout": {
|
||||
"column": "Vertical layout",
|
||||
|
||||
@@ -33,10 +33,7 @@
|
||||
"turn_off": "Éteindre",
|
||||
"turn_on": "Allumer",
|
||||
"undo": "Annuler",
|
||||
"yes": "Oui",
|
||||
"preserve_current": "Conserver l'actuel",
|
||||
"replace_current": "Remplacer l'actuel",
|
||||
"replace_json": "Remplacer par JSON"
|
||||
"yes": "Oui"
|
||||
},
|
||||
"add": {
|
||||
"new": "Ajouter un nouveau",
|
||||
@@ -247,10 +244,7 @@
|
||||
"from_json_description": "Import from Hoppscotch collection file",
|
||||
"gist_url": "Entrez l'URL principale",
|
||||
"json_description": "Import collections from a Hoppscotch Collections JSON file",
|
||||
"title": "Importer",
|
||||
"gist": "Import from Gist",
|
||||
"gist_description": "Import a Gist",
|
||||
"json": "Importer depuis JSON"
|
||||
"title": "Importer"
|
||||
},
|
||||
"layout": {
|
||||
"column": "Disposition verticale",
|
||||
|
||||
@@ -33,10 +33,7 @@
|
||||
"turn_off": "לכבות",
|
||||
"turn_on": "להדליק",
|
||||
"undo": "לבטל",
|
||||
"yes": "כן",
|
||||
"preserve_current": "שמור על זרם",
|
||||
"replace_current": "החלף זרם",
|
||||
"replace_json": "החלף ב- JSON"
|
||||
"yes": "כן"
|
||||
},
|
||||
"add": {
|
||||
"new": "הוסף חדש",
|
||||
@@ -247,10 +244,7 @@
|
||||
"from_json_description": "Import from Hoppscotch collection file",
|
||||
"gist_url": "הזן Gist URL",
|
||||
"json_description": "Import collections from a Hoppscotch Collections JSON file",
|
||||
"title": "יְבוּא",
|
||||
"gist": "Import from Gist",
|
||||
"gist_description": "Import a Gist",
|
||||
"json": "ייבוא מ- JSON"
|
||||
"title": "יְבוּא"
|
||||
},
|
||||
"layout": {
|
||||
"column": "Vertical layout",
|
||||
|
||||
@@ -33,10 +33,7 @@
|
||||
"turn_off": "Kikapcsolni",
|
||||
"turn_on": "Bekapcsol",
|
||||
"undo": "Visszavonás",
|
||||
"yes": "Igen",
|
||||
"preserve_current": "Tartsa meg az áramot",
|
||||
"replace_current": "Cserélje ki az áramot",
|
||||
"replace_json": "Cserélje ki JSON -ra"
|
||||
"yes": "Igen"
|
||||
},
|
||||
"add": {
|
||||
"new": "Új hozzáadása",
|
||||
@@ -247,10 +244,7 @@
|
||||
"from_json_description": "Import from Hoppscotch collection file",
|
||||
"gist_url": "Írja be a lényeg URL -jét",
|
||||
"json_description": "Import collections from a Hoppscotch Collections JSON file",
|
||||
"title": "Importálás",
|
||||
"gist": "Import from Gist",
|
||||
"gist_description": "Import a Gist",
|
||||
"json": "Importálás a JSON -ból"
|
||||
"title": "Importálás"
|
||||
},
|
||||
"layout": {
|
||||
"column": "Vertical layout",
|
||||
|
||||
@@ -33,10 +33,7 @@
|
||||
"turn_off": "Spegni",
|
||||
"turn_on": "Accendi",
|
||||
"undo": "Annulla",
|
||||
"yes": "Sì",
|
||||
"preserve_current": "Conserva attuale",
|
||||
"replace_current": "Sostituisci attuale",
|
||||
"replace_json": "Sostituisci con JSON"
|
||||
"yes": "Sì"
|
||||
},
|
||||
"add": {
|
||||
"new": "Aggiungi nuova",
|
||||
@@ -247,10 +244,7 @@
|
||||
"from_json_description": "Import from Hoppscotch collection file",
|
||||
"gist_url": "Inserisci l'URL del Gist",
|
||||
"json_description": "Import collections from a Hoppscotch Collections JSON file",
|
||||
"title": "Importa",
|
||||
"gist": "Import from Gist",
|
||||
"gist_description": "Import a Gist",
|
||||
"json": "Importa da JSON"
|
||||
"title": "Importa"
|
||||
},
|
||||
"layout": {
|
||||
"column": "Disposizione verticale",
|
||||
|
||||
@@ -33,10 +33,7 @@
|
||||
"turn_off": "消す",
|
||||
"turn_on": "オンにする",
|
||||
"undo": "元に戻す",
|
||||
"yes": "はい",
|
||||
"preserve_current": "現在を維持する",
|
||||
"replace_current": "現在を交換してください",
|
||||
"replace_json": "JSONに置き換えます"
|
||||
"yes": "はい"
|
||||
},
|
||||
"add": {
|
||||
"new": "新しく追加する",
|
||||
@@ -247,10 +244,7 @@
|
||||
"from_json_description": "Import from Hoppscotch collection file",
|
||||
"gist_url": "要旨URLを入力してください",
|
||||
"json_description": "Import collections from a Hoppscotch Collections JSON file",
|
||||
"title": "輸入",
|
||||
"gist": "Import from Gist",
|
||||
"gist_description": "Import a Gist",
|
||||
"json": "JSONからインポート"
|
||||
"title": "輸入"
|
||||
},
|
||||
"layout": {
|
||||
"column": "Vertical layout",
|
||||
|
||||
@@ -33,10 +33,7 @@
|
||||
"turn_off": "끄기",
|
||||
"turn_on": "켜기",
|
||||
"undo": "실행 취소",
|
||||
"yes": "예",
|
||||
"preserve_current": "현재 보존",
|
||||
"replace_current": "현재 교체",
|
||||
"replace_json": "JSON으로 바꾸기"
|
||||
"yes": "예"
|
||||
},
|
||||
"add": {
|
||||
"new": "추가",
|
||||
@@ -247,10 +244,7 @@
|
||||
"from_json_description": "Import from Hoppscotch collection file",
|
||||
"gist_url": "요점 URL 입력",
|
||||
"json_description": "Import collections from a Hoppscotch Collections JSON file",
|
||||
"title": "가저오기",
|
||||
"gist": "Import from Gist",
|
||||
"gist_description": "Import a Gist",
|
||||
"json": "JSON에서 가져오기"
|
||||
"title": "가저오기"
|
||||
},
|
||||
"layout": {
|
||||
"column": "Vertical layout",
|
||||
|
||||
@@ -33,10 +33,7 @@
|
||||
"turn_off": "Uitschakelen",
|
||||
"turn_on": "Inschakelen",
|
||||
"undo": "Ongedaan maken",
|
||||
"yes": "Ja",
|
||||
"preserve_current": "Huidige behouden",
|
||||
"replace_current": "Vervang huidige",
|
||||
"replace_json": "Vervang door JSON"
|
||||
"yes": "Ja"
|
||||
},
|
||||
"add": {
|
||||
"new": "Nieuwe toevoegen",
|
||||
@@ -247,10 +244,7 @@
|
||||
"from_json_description": "Import from Hoppscotch collection file",
|
||||
"gist_url": "Vul de hoofd-URL in",
|
||||
"json_description": "Import collections from a Hoppscotch Collections JSON file",
|
||||
"title": "Importeren",
|
||||
"gist": "Import from Gist",
|
||||
"gist_description": "Import a Gist",
|
||||
"json": "Importeren uit JSON"
|
||||
"title": "Importeren"
|
||||
},
|
||||
"layout": {
|
||||
"column": "Vertical layout",
|
||||
|
||||
@@ -33,10 +33,7 @@
|
||||
"turn_off": "Skru av",
|
||||
"turn_on": "Slå på",
|
||||
"undo": "Angre",
|
||||
"yes": "Ja",
|
||||
"preserve_current": "Bevar nåværende",
|
||||
"replace_current": "Bytt ut nåværende",
|
||||
"replace_json": "Erstatt JSON"
|
||||
"yes": "Ja"
|
||||
},
|
||||
"add": {
|
||||
"new": "Legg til ny",
|
||||
@@ -247,10 +244,7 @@
|
||||
"from_json_description": "Import from Hoppscotch collection file",
|
||||
"gist_url": "Skriv inn Gist URL",
|
||||
"json_description": "Import collections from a Hoppscotch Collections JSON file",
|
||||
"title": "Import",
|
||||
"gist": "Import from Gist",
|
||||
"gist_description": "Import a Gist",
|
||||
"json": "Import fra JSON"
|
||||
"title": "Import"
|
||||
},
|
||||
"layout": {
|
||||
"column": "Vertical layout",
|
||||
|
||||
@@ -33,10 +33,7 @@
|
||||
"turn_off": "Wyłącz",
|
||||
"turn_on": "Włącz",
|
||||
"undo": "Cofnij",
|
||||
"yes": "Tak",
|
||||
"preserve_current": "Zachowaj bieżący",
|
||||
"replace_current": "Zastąp bieżący",
|
||||
"replace_json": "Zastąp JSON"
|
||||
"yes": "Tak"
|
||||
},
|
||||
"add": {
|
||||
"new": "Dodaj nowe",
|
||||
@@ -247,10 +244,7 @@
|
||||
"from_json_description": "Import from Hoppscotch collection file",
|
||||
"gist_url": "Wpisz adres URL Gist",
|
||||
"json_description": "Import collections from a Hoppscotch Collections JSON file",
|
||||
"title": "Import",
|
||||
"gist": "Import from Gist",
|
||||
"gist_description": "Import a Gist",
|
||||
"json": "Importuj z JSON"
|
||||
"title": "Import"
|
||||
},
|
||||
"layout": {
|
||||
"column": "Pionowy układ",
|
||||
|
||||
@@ -33,10 +33,7 @@
|
||||
"turn_off": "Desligar",
|
||||
"turn_on": "Ligar",
|
||||
"undo": "Desfazer",
|
||||
"yes": "sim",
|
||||
"preserve_current": "Preservar corrente",
|
||||
"replace_current": "Substitua a corrente",
|
||||
"replace_json": "Substitua por JSON"
|
||||
"yes": "sim"
|
||||
},
|
||||
"add": {
|
||||
"new": "Adicionar novo",
|
||||
@@ -247,10 +244,7 @@
|
||||
"from_json_description": "Import from Hoppscotch collection file",
|
||||
"gist_url": "Insira o URL da essência",
|
||||
"json_description": "Import collections from a Hoppscotch Collections JSON file",
|
||||
"title": "Importar",
|
||||
"gist": "Import from Gist",
|
||||
"gist_description": "Import a Gist",
|
||||
"json": "Importar de JSON"
|
||||
"title": "Importar"
|
||||
},
|
||||
"layout": {
|
||||
"column": "Vertical layout",
|
||||
|
||||
@@ -33,10 +33,7 @@
|
||||
"turn_off": "Desligar",
|
||||
"turn_on": "Ligar",
|
||||
"undo": "Desfazer",
|
||||
"yes": "sim",
|
||||
"preserve_current": "Preservar corrente",
|
||||
"replace_current": "Substitua a corrente",
|
||||
"replace_json": "Substitua por JSON"
|
||||
"yes": "sim"
|
||||
},
|
||||
"add": {
|
||||
"new": "Adicionar novo",
|
||||
@@ -247,10 +244,7 @@
|
||||
"from_json_description": "Import from Hoppscotch collection file",
|
||||
"gist_url": "Insira o URL da essência",
|
||||
"json_description": "Import collections from a Hoppscotch Collections JSON file",
|
||||
"title": "Importar",
|
||||
"gist": "Import from Gist",
|
||||
"gist_description": "Import a Gist",
|
||||
"json": "Importar de JSON"
|
||||
"title": "Importar"
|
||||
},
|
||||
"layout": {
|
||||
"column": "Vertical layout",
|
||||
|
||||
@@ -33,10 +33,7 @@
|
||||
"turn_off": "Opriți",
|
||||
"turn_on": "Aprinde",
|
||||
"undo": "Anula",
|
||||
"yes": "da",
|
||||
"preserve_current": "Păstrați curentul",
|
||||
"replace_current": "Înlocuiți curentul",
|
||||
"replace_json": "Înlocuiți cu JSON"
|
||||
"yes": "da"
|
||||
},
|
||||
"add": {
|
||||
"new": "Adăuga nou",
|
||||
@@ -247,10 +244,7 @@
|
||||
"from_json_description": "Import from Hoppscotch collection file",
|
||||
"gist_url": "Introduceți adresa URL Gist",
|
||||
"json_description": "Import collections from a Hoppscotch Collections JSON file",
|
||||
"title": "Import",
|
||||
"gist": "Import from Gist",
|
||||
"gist_description": "Import a Gist",
|
||||
"json": "Importați din JSON"
|
||||
"title": "Import"
|
||||
},
|
||||
"layout": {
|
||||
"column": "Vertical layout",
|
||||
|
||||
@@ -33,10 +33,7 @@
|
||||
"turn_off": "Выключить",
|
||||
"turn_on": "Включить",
|
||||
"undo": "Отменить",
|
||||
"yes": "Да",
|
||||
"preserve_current": "Сохранить текущий",
|
||||
"replace_current": "Заменить текущий",
|
||||
"replace_json": "Заменить на JSON"
|
||||
"yes": "Да"
|
||||
},
|
||||
"add": {
|
||||
"new": "Добавить новое",
|
||||
@@ -247,10 +244,7 @@
|
||||
"from_json_description": "Import from Hoppscotch collection file",
|
||||
"gist_url": "Введите URL-адрес Gist",
|
||||
"json_description": "Import collections from a Hoppscotch Collections JSON file",
|
||||
"title": "Импортировать",
|
||||
"gist": "Import from Gist",
|
||||
"gist_description": "Import a Gist",
|
||||
"json": "Импорт из JSON"
|
||||
"title": "Импортировать"
|
||||
},
|
||||
"layout": {
|
||||
"column": "Вертикальное оформление",
|
||||
|
||||
@@ -33,10 +33,7 @@
|
||||
"turn_off": "Искључити",
|
||||
"turn_on": "Укључити",
|
||||
"undo": "Поништи",
|
||||
"yes": "да",
|
||||
"preserve_current": "Очувајте струју",
|
||||
"replace_current": "Замените струју",
|
||||
"replace_json": "Замените са ЈСОН"
|
||||
"yes": "да"
|
||||
},
|
||||
"add": {
|
||||
"new": "Додај нови",
|
||||
@@ -247,10 +244,7 @@
|
||||
"from_json_description": "Import from Hoppscotch collection file",
|
||||
"gist_url": "Унесите Гист УРЛ",
|
||||
"json_description": "Import collections from a Hoppscotch Collections JSON file",
|
||||
"title": "Увоз",
|
||||
"gist": "Import from Gist",
|
||||
"gist_description": "Import a Gist",
|
||||
"json": "Увези из ЈСОН -а"
|
||||
"title": "Увоз"
|
||||
},
|
||||
"layout": {
|
||||
"column": "Vertical layout",
|
||||
|
||||
@@ -33,10 +33,7 @@
|
||||
"turn_off": "Stäng av",
|
||||
"turn_on": "Sätta på",
|
||||
"undo": "Ångra",
|
||||
"yes": "Ja",
|
||||
"preserve_current": "Behåll ström",
|
||||
"replace_current": "Byt ut ström",
|
||||
"replace_json": "Ersätt med JSON"
|
||||
"yes": "Ja"
|
||||
},
|
||||
"add": {
|
||||
"new": "Lägg till ny",
|
||||
@@ -247,10 +244,7 @@
|
||||
"from_json_description": "Import from Hoppscotch collection file",
|
||||
"gist_url": "Ange Gist URL",
|
||||
"json_description": "Import collections from a Hoppscotch Collections JSON file",
|
||||
"title": "Importera",
|
||||
"gist": "Import from Gist",
|
||||
"gist_description": "Import a Gist",
|
||||
"json": "Importera från JSON"
|
||||
"title": "Importera"
|
||||
},
|
||||
"layout": {
|
||||
"column": "Vertical layout",
|
||||
|
||||
@@ -33,10 +33,7 @@
|
||||
"turn_off": "Kapat",
|
||||
"turn_on": "Aç",
|
||||
"undo": "Geri al",
|
||||
"yes": "Evet",
|
||||
"preserve_current": "Şimdikini koru",
|
||||
"replace_current": "Şimdikini değiştir",
|
||||
"replace_json": "JSON ile değiştir"
|
||||
"yes": "Evet"
|
||||
},
|
||||
"add": {
|
||||
"new": "Yeni ekle",
|
||||
@@ -247,10 +244,7 @@
|
||||
"from_json_description": "Import from Hoppscotch collection file",
|
||||
"gist_url": "Gist URL'sini girin",
|
||||
"json_description": "Import collections from a Hoppscotch Collections JSON file",
|
||||
"title": "İçe aktar",
|
||||
"gist": "Import from Gist",
|
||||
"gist_description": "Import a Gist",
|
||||
"json": "JSON'dan içe aktar"
|
||||
"title": "İçe aktar"
|
||||
},
|
||||
"layout": {
|
||||
"column": "Dikey görünüm",
|
||||
|
||||
@@ -33,10 +33,7 @@
|
||||
"turn_off": "關閉",
|
||||
"turn_on": "開啟",
|
||||
"undo": "復原",
|
||||
"yes": "是",
|
||||
"preserve_current": "保持目前",
|
||||
"replace_current": "替換目前",
|
||||
"replace_json": "替換為 JSON"
|
||||
"yes": "是"
|
||||
},
|
||||
"add": {
|
||||
"new": "新增",
|
||||
@@ -247,10 +244,7 @@
|
||||
"from_json_description": "Import from Hoppscotch collection file",
|
||||
"gist_url": "輸入 Gist URL",
|
||||
"json_description": "Import collections from a Hoppscotch Collections JSON file",
|
||||
"title": "匯入",
|
||||
"gist": "Import from Gist",
|
||||
"gist_description": "Import a Gist",
|
||||
"json": "從 JSON 匯入"
|
||||
"title": "匯入"
|
||||
},
|
||||
"layout": {
|
||||
"column": "垂直布局",
|
||||
|
||||
@@ -33,10 +33,7 @@
|
||||
"turn_off": "Вимкнути",
|
||||
"turn_on": "Ввімкнути",
|
||||
"undo": "Скасувати",
|
||||
"yes": "Так",
|
||||
"preserve_current": "Зберегти струм",
|
||||
"replace_current": "Замінити струм",
|
||||
"replace_json": "Замінити на JSON"
|
||||
"yes": "Так"
|
||||
},
|
||||
"add": {
|
||||
"new": "Додати новий",
|
||||
@@ -247,10 +244,7 @@
|
||||
"from_json_description": "Import from Hoppscotch collection file",
|
||||
"gist_url": "Введіть URL -адресу Gist",
|
||||
"json_description": "Import collections from a Hoppscotch Collections JSON file",
|
||||
"title": "Імпорт",
|
||||
"gist": "Import from Gist",
|
||||
"gist_description": "Import a Gist",
|
||||
"json": "Імпорт із JSON"
|
||||
"title": "Імпорт"
|
||||
},
|
||||
"layout": {
|
||||
"column": "Vertical layout",
|
||||
|
||||
@@ -33,10 +33,7 @@
|
||||
"turn_off": "Tắt",
|
||||
"turn_on": "Bật",
|
||||
"undo": "Hoàn tác",
|
||||
"yes": "đúng",
|
||||
"preserve_current": "Bảo tồn hiện tại",
|
||||
"replace_current": "Thay thế hiện tại",
|
||||
"replace_json": "Thay thế bằng JSON"
|
||||
"yes": "đúng"
|
||||
},
|
||||
"add": {
|
||||
"new": "Thêm mới",
|
||||
@@ -247,10 +244,7 @@
|
||||
"from_json_description": "Import from Hoppscotch collection file",
|
||||
"gist_url": "Nhập URL Gist",
|
||||
"json_description": "Import collections from a Hoppscotch Collections JSON file",
|
||||
"title": "Nhập khẩu",
|
||||
"gist": "Import from Gist",
|
||||
"gist_description": "Import a Gist",
|
||||
"json": "Nhập từ JSON"
|
||||
"title": "Nhập khẩu"
|
||||
},
|
||||
"layout": {
|
||||
"column": "Vertical layout",
|
||||
|
||||
Reference in New Issue
Block a user