chore(i18n): updated translations

This commit is contained in:
liyasthomas
2022-01-19 19:39:14 +05:30
parent 647c347eb1
commit ed73f4179a
32 changed files with 61 additions and 359 deletions

View File

@@ -59,10 +59,8 @@
<template #body> <template #body>
<div class="flex flex-col space-y-2 px-2"> <div class="flex flex-col space-y-2 px-2">
<SmartItem <SmartItem
v-tippy="{ theme: 'tooltip' }"
:title="t('action.preserve_current')"
svg="folder-plus" svg="folder-plus"
:label="t('import.json')" :label="t('import.from_json')"
@click.native="openDialogChooseFileToImportFrom" @click.native="openDialogChooseFileToImportFrom"
/> />
<input <input
@@ -72,20 +70,6 @@
accept="application/json" accept="application/json"
@change="importFromJSON" @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 /> <hr />
<SmartItem <SmartItem
v-tippy="{ theme: 'tooltip' }" v-tippy="{ theme: 'tooltip' }"
@@ -130,7 +114,6 @@ const currentUser = useReadonlyStream(currentUser$, null)
// Template refs // Template refs
const options = ref<any>() const options = ref<any>()
const inputChooseFileToReplaceWith = ref<HTMLInputElement>()
const inputChooseFileToImportFrom = ref<HTMLInputElement>() const inputChooseFileToImportFrom = ref<HTMLInputElement>()
const collectionJson = computed(() => { const collectionJson = computed(() => {
@@ -211,56 +194,11 @@ const hideModal = () => {
emit("hide-modal") emit("hide-modal")
} }
const openDialogChooseFileToReplaceWith = () => {
if (inputChooseFileToReplaceWith.value)
inputChooseFileToReplaceWith.value.click()
}
const openDialogChooseFileToImportFrom = () => { const openDialogChooseFileToImportFrom = () => {
if (inputChooseFileToImportFrom.value) if (inputChooseFileToImportFrom.value)
inputChooseFileToImportFrom.value.click() 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 = () => { const importFromJSON = () => {
if (!inputChooseFileToImportFrom.value) return if (!inputChooseFileToImportFrom.value) return

View File

@@ -59,10 +59,8 @@
<template #body> <template #body>
<div class="flex flex-col px-2 space-y-2"> <div class="flex flex-col px-2 space-y-2">
<SmartItem <SmartItem
v-tippy="{ theme: 'tooltip' }"
:title="t('action.preserve_current')"
svg="folder-plus" svg="folder-plus"
:label="t('import.json')" :label="t('import.from_json')"
@click.native="openDialogChooseFileToImportFrom" @click.native="openDialogChooseFileToImportFrom"
/> />
<input <input
@@ -72,20 +70,6 @@
accept="application/json" accept="application/json"
@change="importFromJSON" @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 /> <hr />
<SmartItem <SmartItem
v-tippy="{ theme: 'tooltip' }" v-tippy="{ theme: 'tooltip' }"
@@ -131,7 +115,6 @@ const currentUser = useReadonlyStream(currentUser$, null)
// Template refs // Template refs
const options = ref<any>() const options = ref<any>()
const inputChooseFileToReplaceWith = ref<HTMLInputElement>()
const inputChooseFileToImportFrom = ref<HTMLInputElement>() const inputChooseFileToImportFrom = ref<HTMLInputElement>()
const environmentJson = computed(() => { const environmentJson = computed(() => {
@@ -211,56 +194,11 @@ const hideModal = () => {
emit("hide-modal") emit("hide-modal")
} }
const openDialogChooseFileToReplaceWith = () => {
if (inputChooseFileToReplaceWith.value)
inputChooseFileToReplaceWith.value.click()
}
const openDialogChooseFileToImportFrom = () => { const openDialogChooseFileToImportFrom = () => {
if (inputChooseFileToImportFrom.value) if (inputChooseFileToImportFrom.value)
inputChooseFileToImportFrom.value.click() 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 = () => { const importFromJSON = () => {
if (!inputChooseFileToImportFrom.value) return if (!inputChooseFileToImportFrom.value) return

View File

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

View File

@@ -33,10 +33,7 @@
"turn_off": "Skakel af", "turn_off": "Skakel af",
"turn_on": "Sit aan", "turn_on": "Sit aan",
"undo": "Ontdoen", "undo": "Ontdoen",
"yes": "Ja", "yes": "Ja"
"preserve_current": "Bewaar stroom",
"replace_current": "Vervang stroom",
"replace_json": "Vervang deur JSON"
}, },
"add": { "add": {
"new": "Voeg nuwe", "new": "Voeg nuwe",
@@ -247,10 +244,7 @@
"from_json_description": "Import from Hoppscotch collection file", "from_json_description": "Import from Hoppscotch collection file",
"gist_url": "Voer Gist URL in", "gist_url": "Voer Gist URL in",
"json_description": "Import collections from a Hoppscotch Collections JSON file", "json_description": "Import collections from a Hoppscotch Collections JSON file",
"title": "Invoer", "title": "Invoer"
"gist": "Import from Gist",
"gist_description": "Import a Gist",
"json": "Invoer vanaf JSON"
}, },
"layout": { "layout": {
"column": "Vertical layout", "column": "Vertical layout",

View File

@@ -33,10 +33,7 @@
"turn_off": "اطفئه", "turn_off": "اطفئه",
"turn_on": "شغله", "turn_on": "شغله",
"undo": "الغاء التحميل", "undo": "الغاء التحميل",
"yes": "نعم", "yes": "نعم"
"preserve_current": "الحفاظ على التيار",
"replace_current": "استبدال التيار",
"replace_json": "استبدل بـ JSON"
}, },
"add": { "add": {
"new": "اضف جديد", "new": "اضف جديد",
@@ -247,10 +244,7 @@
"from_json_description": "Import from Hoppscotch collection file", "from_json_description": "Import from Hoppscotch collection file",
"gist_url": "أدخل عنوان URL لـ Gist", "gist_url": "أدخل عنوان URL لـ Gist",
"json_description": "Import collections from a Hoppscotch Collections JSON file", "json_description": "Import collections from a Hoppscotch Collections JSON file",
"title": "يستورد", "title": "يستورد"
"gist": "Import from Gist",
"gist_description": "Import a Gist",
"json": "استيراد من JSON"
}, },
"layout": { "layout": {
"column": "Vertical layout", "column": "Vertical layout",

View File

@@ -33,10 +33,7 @@
"turn_off": "Tanca", "turn_off": "Tanca",
"turn_on": "Encendre", "turn_on": "Encendre",
"undo": "Desfés", "undo": "Desfés",
"yes": "Sí", "yes": "Sí"
"preserve_current": "Conservar el corrent",
"replace_current": "Substitueix el corrent",
"replace_json": "Substitueix per JSON"
}, },
"add": { "add": {
"new": "Afegir nou", "new": "Afegir nou",
@@ -247,10 +244,7 @@
"from_json_description": "Import from Hoppscotch collection file", "from_json_description": "Import from Hoppscotch collection file",
"gist_url": "Introduïu l'URL Gist", "gist_url": "Introduïu l'URL Gist",
"json_description": "Import collections from a Hoppscotch Collections JSON file", "json_description": "Import collections from a Hoppscotch Collections JSON file",
"title": "Importació", "title": "Importació"
"gist": "Import from Gist",
"gist_description": "Import a Gist",
"json": "Importa de JSON"
}, },
"layout": { "layout": {
"column": "Vertical layout", "column": "Vertical layout",

View File

@@ -33,10 +33,7 @@
"turn_off": "关闭", "turn_off": "关闭",
"turn_on": "开启", "turn_on": "开启",
"undo": "撤消", "undo": "撤消",
"yes": "是", "yes": "是"
"preserve_current": "保持当前",
"replace_current": "替换当前",
"replace_json": "替换为 JSON"
}, },
"add": { "add": {
"new": "新增", "new": "新增",
@@ -247,10 +244,7 @@
"from_json_description": "Import from Hoppscotch collection file", "from_json_description": "Import from Hoppscotch collection file",
"gist_url": "输入 Gist URL", "gist_url": "输入 Gist URL",
"json_description": "Import collections from a Hoppscotch Collections JSON file", "json_description": "Import collections from a Hoppscotch Collections JSON file",
"title": "导入", "title": "导入"
"gist": "Import from Gist",
"gist_description": "Import a Gist",
"json": "从 JSON 导入"
}, },
"layout": { "layout": {
"column": "垂直布局", "column": "垂直布局",

View File

@@ -33,10 +33,7 @@
"turn_off": "Vypnout", "turn_off": "Vypnout",
"turn_on": "Zapnout", "turn_on": "Zapnout",
"undo": "vrátit", "undo": "vrátit",
"yes": "Ano", "yes": "Ano"
"preserve_current": "Zachovat proud",
"replace_current": "Vyměňte proud",
"replace_json": "Nahradit za JSON"
}, },
"add": { "add": {
"new": "Přidat nový", "new": "Přidat nový",
@@ -247,10 +244,7 @@
"from_json_description": "Import from Hoppscotch collection file", "from_json_description": "Import from Hoppscotch collection file",
"gist_url": "Zadejte URL adresy", "gist_url": "Zadejte URL adresy",
"json_description": "Import collections from a Hoppscotch Collections JSON file", "json_description": "Import collections from a Hoppscotch Collections JSON file",
"title": "Import", "title": "Import"
"gist": "Import from Gist",
"gist_description": "Import a Gist",
"json": "Import z JSON"
}, },
"layout": { "layout": {
"column": "Vertical layout", "column": "Vertical layout",

View File

@@ -33,10 +33,7 @@
"turn_off": "Sluk", "turn_off": "Sluk",
"turn_on": "Tænde for", "turn_on": "Tænde for",
"undo": "Fortryd", "undo": "Fortryd",
"yes": "Ja", "yes": "Ja"
"preserve_current": "Bevar strøm",
"replace_current": "Udskift strøm",
"replace_json": "Udskift med JSON"
}, },
"add": { "add": {
"new": "Tilføj ny", "new": "Tilføj ny",
@@ -247,10 +244,7 @@
"from_json_description": "Import from Hoppscotch collection file", "from_json_description": "Import from Hoppscotch collection file",
"gist_url": "Indtast Gist URL", "gist_url": "Indtast Gist URL",
"json_description": "Import collections from a Hoppscotch Collections JSON file", "json_description": "Import collections from a Hoppscotch Collections JSON file",
"title": "Importere", "title": "Importere"
"gist": "Import from Gist",
"gist_description": "Import a Gist",
"json": "Import fra JSON"
}, },
"layout": { "layout": {
"column": "Vertical layout", "column": "Vertical layout",

View File

@@ -33,10 +33,7 @@
"turn_off": "Ausschalten", "turn_off": "Ausschalten",
"turn_on": "Einschalten", "turn_on": "Einschalten",
"undo": "Rückgängig machen", "undo": "Rückgängig machen",
"yes": "Ja", "yes": "Ja"
"preserve_current": "Aktuelles behalten",
"replace_current": "Aktuelles ersetzen",
"replace_json": "Durch JSON ersetzen"
}, },
"add": { "add": {
"new": "Neue hinzufügen", "new": "Neue hinzufügen",
@@ -247,10 +244,7 @@
"from_json_description": "Import from Hoppscotch collection file", "from_json_description": "Import from Hoppscotch collection file",
"gist_url": "Gist-URL eingeben", "gist_url": "Gist-URL eingeben",
"json_description": "Import collections from a Hoppscotch Collections JSON file", "json_description": "Import collections from a Hoppscotch Collections JSON file",
"title": "Importieren", "title": "Importieren"
"gist": "Import from Gist",
"gist_description": "Import a Gist",
"json": "Aus JSON importieren"
}, },
"layout": { "layout": {
"column": "Vertical layout", "column": "Vertical layout",

View File

@@ -33,10 +33,7 @@
"turn_off": "Σβήνω", "turn_off": "Σβήνω",
"turn_on": "Ανάβω", "turn_on": "Ανάβω",
"undo": "Ξεκάνω", "undo": "Ξεκάνω",
"yes": "Ναί", "yes": "Ναί"
"preserve_current": "Διατήρηση ρεύματος",
"replace_current": "Αντικαταστήστε το ρεύμα",
"replace_json": "Αντικαταστήστε με JSON"
}, },
"add": { "add": {
"new": "Προσθεσε νεο", "new": "Προσθεσε νεο",
@@ -247,10 +244,7 @@
"from_json_description": "Import from Hoppscotch collection file", "from_json_description": "Import from Hoppscotch collection file",
"gist_url": "Εισαγάγετε Gist URL", "gist_url": "Εισαγάγετε Gist URL",
"json_description": "Import collections from a Hoppscotch Collections JSON file", "json_description": "Import collections from a Hoppscotch Collections JSON file",
"title": "Εισαγωγή", "title": "Εισαγωγή"
"gist": "Import from Gist",
"gist_description": "Import a Gist",
"json": "Εισαγωγή από JSON"
}, },
"layout": { "layout": {
"column": "Vertical layout", "column": "Vertical layout",

View File

@@ -33,10 +33,7 @@
"turn_off": "Desactivar", "turn_off": "Desactivar",
"turn_on": "Activar", "turn_on": "Activar",
"undo": "Deshacer", "undo": "Deshacer",
"yes": "Sí", "yes": "Sí"
"preserve_current": "Mantener actual",
"replace_current": "Reemplazar actual",
"replace_json": "Reemplazar JSON"
}, },
"add": { "add": {
"new": "Agregar nuevo", "new": "Agregar nuevo",
@@ -247,10 +244,7 @@
"from_json_description": "Import from Hoppscotch collection file", "from_json_description": "Import from Hoppscotch collection file",
"gist_url": "Ingrese la URL de Gist", "gist_url": "Ingrese la URL de Gist",
"json_description": "Import collections from a Hoppscotch Collections JSON file", "json_description": "Import collections from a Hoppscotch Collections JSON file",
"title": "Importar", "title": "Importar"
"gist": "Import from Gist",
"gist_description": "Import a Gist",
"json": "Importar desde JSON"
}, },
"layout": { "layout": {
"column": "Layout vertical", "column": "Layout vertical",

View File

@@ -33,10 +33,7 @@
"turn_off": "Sammuttaa", "turn_off": "Sammuttaa",
"turn_on": "Kiihottua", "turn_on": "Kiihottua",
"undo": "Kumoa", "undo": "Kumoa",
"yes": "Joo", "yes": "Joo"
"preserve_current": "Säilytä virta",
"replace_current": "Vaihda virta",
"replace_json": "Korvaa JSONilla"
}, },
"add": { "add": {
"new": "Lisää uusi", "new": "Lisää uusi",
@@ -247,10 +244,7 @@
"from_json_description": "Import from Hoppscotch collection file", "from_json_description": "Import from Hoppscotch collection file",
"gist_url": "Anna Gist URL", "gist_url": "Anna Gist URL",
"json_description": "Import collections from a Hoppscotch Collections JSON file", "json_description": "Import collections from a Hoppscotch Collections JSON file",
"title": "Tuonti", "title": "Tuonti"
"gist": "Import from Gist",
"gist_description": "Import a Gist",
"json": "Tuo JSONista"
}, },
"layout": { "layout": {
"column": "Vertical layout", "column": "Vertical layout",

View File

@@ -33,10 +33,7 @@
"turn_off": "Éteindre", "turn_off": "Éteindre",
"turn_on": "Allumer", "turn_on": "Allumer",
"undo": "Annuler", "undo": "Annuler",
"yes": "Oui", "yes": "Oui"
"preserve_current": "Conserver l'actuel",
"replace_current": "Remplacer l'actuel",
"replace_json": "Remplacer par JSON"
}, },
"add": { "add": {
"new": "Ajouter un nouveau", "new": "Ajouter un nouveau",
@@ -247,10 +244,7 @@
"from_json_description": "Import from Hoppscotch collection file", "from_json_description": "Import from Hoppscotch collection file",
"gist_url": "Entrez l'URL principale", "gist_url": "Entrez l'URL principale",
"json_description": "Import collections from a Hoppscotch Collections JSON file", "json_description": "Import collections from a Hoppscotch Collections JSON file",
"title": "Importer", "title": "Importer"
"gist": "Import from Gist",
"gist_description": "Import a Gist",
"json": "Importer depuis JSON"
}, },
"layout": { "layout": {
"column": "Disposition verticale", "column": "Disposition verticale",

View File

@@ -33,10 +33,7 @@
"turn_off": "לכבות", "turn_off": "לכבות",
"turn_on": "להדליק", "turn_on": "להדליק",
"undo": "לבטל", "undo": "לבטל",
"yes": "כן", "yes": "כן"
"preserve_current": "שמור על זרם",
"replace_current": "החלף זרם",
"replace_json": "החלף ב- JSON"
}, },
"add": { "add": {
"new": "הוסף חדש", "new": "הוסף חדש",
@@ -247,10 +244,7 @@
"from_json_description": "Import from Hoppscotch collection file", "from_json_description": "Import from Hoppscotch collection file",
"gist_url": "הזן Gist URL", "gist_url": "הזן Gist URL",
"json_description": "Import collections from a Hoppscotch Collections JSON file", "json_description": "Import collections from a Hoppscotch Collections JSON file",
"title": "יְבוּא", "title": "יְבוּא"
"gist": "Import from Gist",
"gist_description": "Import a Gist",
"json": "ייבוא מ- JSON"
}, },
"layout": { "layout": {
"column": "Vertical layout", "column": "Vertical layout",

View File

@@ -33,10 +33,7 @@
"turn_off": "Kikapcsolni", "turn_off": "Kikapcsolni",
"turn_on": "Bekapcsol", "turn_on": "Bekapcsol",
"undo": "Visszavonás", "undo": "Visszavonás",
"yes": "Igen", "yes": "Igen"
"preserve_current": "Tartsa meg az áramot",
"replace_current": "Cserélje ki az áramot",
"replace_json": "Cserélje ki JSON -ra"
}, },
"add": { "add": {
"new": "Új hozzáadása", "new": "Új hozzáadása",
@@ -247,10 +244,7 @@
"from_json_description": "Import from Hoppscotch collection file", "from_json_description": "Import from Hoppscotch collection file",
"gist_url": "Írja be a lényeg URL -jét", "gist_url": "Írja be a lényeg URL -jét",
"json_description": "Import collections from a Hoppscotch Collections JSON file", "json_description": "Import collections from a Hoppscotch Collections JSON file",
"title": "Importálás", "title": "Importálás"
"gist": "Import from Gist",
"gist_description": "Import a Gist",
"json": "Importálás a JSON -ból"
}, },
"layout": { "layout": {
"column": "Vertical layout", "column": "Vertical layout",

View File

@@ -33,10 +33,7 @@
"turn_off": "Spegni", "turn_off": "Spegni",
"turn_on": "Accendi", "turn_on": "Accendi",
"undo": "Annulla", "undo": "Annulla",
"yes": "Sì", "yes": "Sì"
"preserve_current": "Conserva attuale",
"replace_current": "Sostituisci attuale",
"replace_json": "Sostituisci con JSON"
}, },
"add": { "add": {
"new": "Aggiungi nuova", "new": "Aggiungi nuova",
@@ -247,10 +244,7 @@
"from_json_description": "Import from Hoppscotch collection file", "from_json_description": "Import from Hoppscotch collection file",
"gist_url": "Inserisci l'URL del Gist", "gist_url": "Inserisci l'URL del Gist",
"json_description": "Import collections from a Hoppscotch Collections JSON file", "json_description": "Import collections from a Hoppscotch Collections JSON file",
"title": "Importa", "title": "Importa"
"gist": "Import from Gist",
"gist_description": "Import a Gist",
"json": "Importa da JSON"
}, },
"layout": { "layout": {
"column": "Disposizione verticale", "column": "Disposizione verticale",

View File

@@ -33,10 +33,7 @@
"turn_off": "消す", "turn_off": "消す",
"turn_on": "オンにする", "turn_on": "オンにする",
"undo": "元に戻す", "undo": "元に戻す",
"yes": "はい", "yes": "はい"
"preserve_current": "現在を維持する",
"replace_current": "現在を交換してください",
"replace_json": "JSONに置き換えます"
}, },
"add": { "add": {
"new": "新しく追加する", "new": "新しく追加する",
@@ -247,10 +244,7 @@
"from_json_description": "Import from Hoppscotch collection file", "from_json_description": "Import from Hoppscotch collection file",
"gist_url": "要旨URLを入力してください", "gist_url": "要旨URLを入力してください",
"json_description": "Import collections from a Hoppscotch Collections JSON file", "json_description": "Import collections from a Hoppscotch Collections JSON file",
"title": "輸入", "title": "輸入"
"gist": "Import from Gist",
"gist_description": "Import a Gist",
"json": "JSONからインポート"
}, },
"layout": { "layout": {
"column": "Vertical layout", "column": "Vertical layout",

View File

@@ -33,10 +33,7 @@
"turn_off": "끄기", "turn_off": "끄기",
"turn_on": "켜기", "turn_on": "켜기",
"undo": "실행 취소", "undo": "실행 취소",
"yes": "예", "yes": "예"
"preserve_current": "현재 보존",
"replace_current": "현재 교체",
"replace_json": "JSON으로 바꾸기"
}, },
"add": { "add": {
"new": "추가", "new": "추가",
@@ -247,10 +244,7 @@
"from_json_description": "Import from Hoppscotch collection file", "from_json_description": "Import from Hoppscotch collection file",
"gist_url": "요점 URL 입력", "gist_url": "요점 URL 입력",
"json_description": "Import collections from a Hoppscotch Collections JSON file", "json_description": "Import collections from a Hoppscotch Collections JSON file",
"title": "가저오기", "title": "가저오기"
"gist": "Import from Gist",
"gist_description": "Import a Gist",
"json": "JSON에서 가져오기"
}, },
"layout": { "layout": {
"column": "Vertical layout", "column": "Vertical layout",

View File

@@ -33,10 +33,7 @@
"turn_off": "Uitschakelen", "turn_off": "Uitschakelen",
"turn_on": "Inschakelen", "turn_on": "Inschakelen",
"undo": "Ongedaan maken", "undo": "Ongedaan maken",
"yes": "Ja", "yes": "Ja"
"preserve_current": "Huidige behouden",
"replace_current": "Vervang huidige",
"replace_json": "Vervang door JSON"
}, },
"add": { "add": {
"new": "Nieuwe toevoegen", "new": "Nieuwe toevoegen",
@@ -247,10 +244,7 @@
"from_json_description": "Import from Hoppscotch collection file", "from_json_description": "Import from Hoppscotch collection file",
"gist_url": "Vul de hoofd-URL in", "gist_url": "Vul de hoofd-URL in",
"json_description": "Import collections from a Hoppscotch Collections JSON file", "json_description": "Import collections from a Hoppscotch Collections JSON file",
"title": "Importeren", "title": "Importeren"
"gist": "Import from Gist",
"gist_description": "Import a Gist",
"json": "Importeren uit JSON"
}, },
"layout": { "layout": {
"column": "Vertical layout", "column": "Vertical layout",

View File

@@ -33,10 +33,7 @@
"turn_off": "Skru av", "turn_off": "Skru av",
"turn_on": "Slå på", "turn_on": "Slå på",
"undo": "Angre", "undo": "Angre",
"yes": "Ja", "yes": "Ja"
"preserve_current": "Bevar nåværende",
"replace_current": "Bytt ut nåværende",
"replace_json": "Erstatt JSON"
}, },
"add": { "add": {
"new": "Legg til ny", "new": "Legg til ny",
@@ -247,10 +244,7 @@
"from_json_description": "Import from Hoppscotch collection file", "from_json_description": "Import from Hoppscotch collection file",
"gist_url": "Skriv inn Gist URL", "gist_url": "Skriv inn Gist URL",
"json_description": "Import collections from a Hoppscotch Collections JSON file", "json_description": "Import collections from a Hoppscotch Collections JSON file",
"title": "Import", "title": "Import"
"gist": "Import from Gist",
"gist_description": "Import a Gist",
"json": "Import fra JSON"
}, },
"layout": { "layout": {
"column": "Vertical layout", "column": "Vertical layout",

View File

@@ -33,10 +33,7 @@
"turn_off": "Wyłącz", "turn_off": "Wyłącz",
"turn_on": "Włącz", "turn_on": "Włącz",
"undo": "Cofnij", "undo": "Cofnij",
"yes": "Tak", "yes": "Tak"
"preserve_current": "Zachowaj bieżący",
"replace_current": "Zastąp bieżący",
"replace_json": "Zastąp JSON"
}, },
"add": { "add": {
"new": "Dodaj nowe", "new": "Dodaj nowe",
@@ -247,10 +244,7 @@
"from_json_description": "Import from Hoppscotch collection file", "from_json_description": "Import from Hoppscotch collection file",
"gist_url": "Wpisz adres URL Gist", "gist_url": "Wpisz adres URL Gist",
"json_description": "Import collections from a Hoppscotch Collections JSON file", "json_description": "Import collections from a Hoppscotch Collections JSON file",
"title": "Import", "title": "Import"
"gist": "Import from Gist",
"gist_description": "Import a Gist",
"json": "Importuj z JSON"
}, },
"layout": { "layout": {
"column": "Pionowy układ", "column": "Pionowy układ",

View File

@@ -33,10 +33,7 @@
"turn_off": "Desligar", "turn_off": "Desligar",
"turn_on": "Ligar", "turn_on": "Ligar",
"undo": "Desfazer", "undo": "Desfazer",
"yes": "sim", "yes": "sim"
"preserve_current": "Preservar corrente",
"replace_current": "Substitua a corrente",
"replace_json": "Substitua por JSON"
}, },
"add": { "add": {
"new": "Adicionar novo", "new": "Adicionar novo",
@@ -247,10 +244,7 @@
"from_json_description": "Import from Hoppscotch collection file", "from_json_description": "Import from Hoppscotch collection file",
"gist_url": "Insira o URL da essência", "gist_url": "Insira o URL da essência",
"json_description": "Import collections from a Hoppscotch Collections JSON file", "json_description": "Import collections from a Hoppscotch Collections JSON file",
"title": "Importar", "title": "Importar"
"gist": "Import from Gist",
"gist_description": "Import a Gist",
"json": "Importar de JSON"
}, },
"layout": { "layout": {
"column": "Vertical layout", "column": "Vertical layout",

View File

@@ -33,10 +33,7 @@
"turn_off": "Desligar", "turn_off": "Desligar",
"turn_on": "Ligar", "turn_on": "Ligar",
"undo": "Desfazer", "undo": "Desfazer",
"yes": "sim", "yes": "sim"
"preserve_current": "Preservar corrente",
"replace_current": "Substitua a corrente",
"replace_json": "Substitua por JSON"
}, },
"add": { "add": {
"new": "Adicionar novo", "new": "Adicionar novo",
@@ -247,10 +244,7 @@
"from_json_description": "Import from Hoppscotch collection file", "from_json_description": "Import from Hoppscotch collection file",
"gist_url": "Insira o URL da essência", "gist_url": "Insira o URL da essência",
"json_description": "Import collections from a Hoppscotch Collections JSON file", "json_description": "Import collections from a Hoppscotch Collections JSON file",
"title": "Importar", "title": "Importar"
"gist": "Import from Gist",
"gist_description": "Import a Gist",
"json": "Importar de JSON"
}, },
"layout": { "layout": {
"column": "Vertical layout", "column": "Vertical layout",

View File

@@ -33,10 +33,7 @@
"turn_off": "Opriți", "turn_off": "Opriți",
"turn_on": "Aprinde", "turn_on": "Aprinde",
"undo": "Anula", "undo": "Anula",
"yes": "da", "yes": "da"
"preserve_current": "Păstrați curentul",
"replace_current": "Înlocuiți curentul",
"replace_json": "Înlocuiți cu JSON"
}, },
"add": { "add": {
"new": "Adăuga nou", "new": "Adăuga nou",
@@ -247,10 +244,7 @@
"from_json_description": "Import from Hoppscotch collection file", "from_json_description": "Import from Hoppscotch collection file",
"gist_url": "Introduceți adresa URL Gist", "gist_url": "Introduceți adresa URL Gist",
"json_description": "Import collections from a Hoppscotch Collections JSON file", "json_description": "Import collections from a Hoppscotch Collections JSON file",
"title": "Import", "title": "Import"
"gist": "Import from Gist",
"gist_description": "Import a Gist",
"json": "Importați din JSON"
}, },
"layout": { "layout": {
"column": "Vertical layout", "column": "Vertical layout",

View File

@@ -33,10 +33,7 @@
"turn_off": "Выключить", "turn_off": "Выключить",
"turn_on": "Включить", "turn_on": "Включить",
"undo": "Отменить", "undo": "Отменить",
"yes": "Да", "yes": "Да"
"preserve_current": "Сохранить текущий",
"replace_current": "Заменить текущий",
"replace_json": "Заменить на JSON"
}, },
"add": { "add": {
"new": "Добавить новое", "new": "Добавить новое",
@@ -247,10 +244,7 @@
"from_json_description": "Import from Hoppscotch collection file", "from_json_description": "Import from Hoppscotch collection file",
"gist_url": "Введите URL-адрес Gist", "gist_url": "Введите URL-адрес Gist",
"json_description": "Import collections from a Hoppscotch Collections JSON file", "json_description": "Import collections from a Hoppscotch Collections JSON file",
"title": "Импортировать", "title": "Импортировать"
"gist": "Import from Gist",
"gist_description": "Import a Gist",
"json": "Импорт из JSON"
}, },
"layout": { "layout": {
"column": "Вертикальное оформление", "column": "Вертикальное оформление",

View File

@@ -33,10 +33,7 @@
"turn_off": "Искључити", "turn_off": "Искључити",
"turn_on": "Укључити", "turn_on": "Укључити",
"undo": "Поништи", "undo": "Поништи",
"yes": "да", "yes": "да"
"preserve_current": "Очувајте струју",
"replace_current": "Замените струју",
"replace_json": "Замените са ЈСОН"
}, },
"add": { "add": {
"new": "Додај нови", "new": "Додај нови",
@@ -247,10 +244,7 @@
"from_json_description": "Import from Hoppscotch collection file", "from_json_description": "Import from Hoppscotch collection file",
"gist_url": "Унесите Гист УРЛ", "gist_url": "Унесите Гист УРЛ",
"json_description": "Import collections from a Hoppscotch Collections JSON file", "json_description": "Import collections from a Hoppscotch Collections JSON file",
"title": "Увоз", "title": "Увоз"
"gist": "Import from Gist",
"gist_description": "Import a Gist",
"json": "Увези из ЈСОН -а"
}, },
"layout": { "layout": {
"column": "Vertical layout", "column": "Vertical layout",

View File

@@ -33,10 +33,7 @@
"turn_off": "Stäng av", "turn_off": "Stäng av",
"turn_on": "Sätta på", "turn_on": "Sätta på",
"undo": "Ångra", "undo": "Ångra",
"yes": "Ja", "yes": "Ja"
"preserve_current": "Behåll ström",
"replace_current": "Byt ut ström",
"replace_json": "Ersätt med JSON"
}, },
"add": { "add": {
"new": "Lägg till ny", "new": "Lägg till ny",
@@ -247,10 +244,7 @@
"from_json_description": "Import from Hoppscotch collection file", "from_json_description": "Import from Hoppscotch collection file",
"gist_url": "Ange Gist URL", "gist_url": "Ange Gist URL",
"json_description": "Import collections from a Hoppscotch Collections JSON file", "json_description": "Import collections from a Hoppscotch Collections JSON file",
"title": "Importera", "title": "Importera"
"gist": "Import from Gist",
"gist_description": "Import a Gist",
"json": "Importera från JSON"
}, },
"layout": { "layout": {
"column": "Vertical layout", "column": "Vertical layout",

View File

@@ -33,10 +33,7 @@
"turn_off": "Kapat", "turn_off": "Kapat",
"turn_on": "Aç", "turn_on": "Aç",
"undo": "Geri al", "undo": "Geri al",
"yes": "Evet", "yes": "Evet"
"preserve_current": "Şimdikini koru",
"replace_current": "Şimdikini değiştir",
"replace_json": "JSON ile değiştir"
}, },
"add": { "add": {
"new": "Yeni ekle", "new": "Yeni ekle",
@@ -247,10 +244,7 @@
"from_json_description": "Import from Hoppscotch collection file", "from_json_description": "Import from Hoppscotch collection file",
"gist_url": "Gist URL'sini girin", "gist_url": "Gist URL'sini girin",
"json_description": "Import collections from a Hoppscotch Collections JSON file", "json_description": "Import collections from a Hoppscotch Collections JSON file",
"title": "İçe aktar", "title": "İçe aktar"
"gist": "Import from Gist",
"gist_description": "Import a Gist",
"json": "JSON'dan içe aktar"
}, },
"layout": { "layout": {
"column": "Dikey görünüm", "column": "Dikey görünüm",

View File

@@ -33,10 +33,7 @@
"turn_off": "關閉", "turn_off": "關閉",
"turn_on": "開啟", "turn_on": "開啟",
"undo": "復原", "undo": "復原",
"yes": "是", "yes": "是"
"preserve_current": "保持目前",
"replace_current": "替換目前",
"replace_json": "替換為 JSON"
}, },
"add": { "add": {
"new": "新增", "new": "新增",
@@ -247,10 +244,7 @@
"from_json_description": "Import from Hoppscotch collection file", "from_json_description": "Import from Hoppscotch collection file",
"gist_url": "輸入 Gist URL", "gist_url": "輸入 Gist URL",
"json_description": "Import collections from a Hoppscotch Collections JSON file", "json_description": "Import collections from a Hoppscotch Collections JSON file",
"title": "匯入", "title": "匯入"
"gist": "Import from Gist",
"gist_description": "Import a Gist",
"json": "從 JSON 匯入"
}, },
"layout": { "layout": {
"column": "垂直布局", "column": "垂直布局",

View File

@@ -33,10 +33,7 @@
"turn_off": "Вимкнути", "turn_off": "Вимкнути",
"turn_on": "Ввімкнути", "turn_on": "Ввімкнути",
"undo": "Скасувати", "undo": "Скасувати",
"yes": "Так", "yes": "Так"
"preserve_current": "Зберегти струм",
"replace_current": "Замінити струм",
"replace_json": "Замінити на JSON"
}, },
"add": { "add": {
"new": "Додати новий", "new": "Додати новий",
@@ -247,10 +244,7 @@
"from_json_description": "Import from Hoppscotch collection file", "from_json_description": "Import from Hoppscotch collection file",
"gist_url": "Введіть URL -адресу Gist", "gist_url": "Введіть URL -адресу Gist",
"json_description": "Import collections from a Hoppscotch Collections JSON file", "json_description": "Import collections from a Hoppscotch Collections JSON file",
"title": "Імпорт", "title": "Імпорт"
"gist": "Import from Gist",
"gist_description": "Import a Gist",
"json": "Імпорт із JSON"
}, },
"layout": { "layout": {
"column": "Vertical layout", "column": "Vertical layout",

View File

@@ -33,10 +33,7 @@
"turn_off": "Tắt", "turn_off": "Tắt",
"turn_on": "Bật", "turn_on": "Bật",
"undo": "Hoàn tác", "undo": "Hoàn tác",
"yes": "đúng", "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"
}, },
"add": { "add": {
"new": "Thêm mới", "new": "Thêm mới",
@@ -247,10 +244,7 @@
"from_json_description": "Import from Hoppscotch collection file", "from_json_description": "Import from Hoppscotch collection file",
"gist_url": "Nhập URL Gist", "gist_url": "Nhập URL Gist",
"json_description": "Import collections from a Hoppscotch Collections JSON file", "json_description": "Import collections from a Hoppscotch Collections JSON file",
"title": "Nhập khẩu", "title": "Nhập khẩu"
"gist": "Import from Gist",
"gist_description": "Import a Gist",
"json": "Nhập từ JSON"
}, },
"layout": { "layout": {
"column": "Vertical layout", "column": "Vertical layout",