feat: keyboard shortcuts for themes

This commit is contained in:
liyasthomas
2022-01-01 19:32:34 +05:30
parent 1baf73a710
commit bb5acf97c6
35 changed files with 359 additions and 98 deletions

View File

@@ -452,6 +452,7 @@ pre.ace_editor {
@apply rounded; @apply rounded;
@apply ml-2; @apply ml-2;
@apply px-1; @apply px-1;
@apply transition;
} }
.capitalize-first { .capitalize-first {

View File

@@ -6,7 +6,7 @@
@close="$emit('hide-modal')" @close="$emit('hide-modal')"
> >
<template #body> <template #body>
<div class="flex flex-col border-b border-dividerLight"> <div class="flex transition flex-col border-b border-dividerLight">
<input <input
id="command" id="command"
v-model="search" v-model="search"

View File

@@ -28,6 +28,10 @@ export type HoppAction =
| "navigation.jump.documentation" // Jump to documentation page | "navigation.jump.documentation" // Jump to documentation page
| "navigation.jump.settings" // Jump to settings page | "navigation.jump.settings" // Jump to settings page
| "navigation.jump.profile" // Jump to profile page | "navigation.jump.profile" // Jump to profile page
| "settings.theme.system" // Use system theme
| "settings.theme.light" // Use light theme
| "settings.theme.dark" // Use dark theme
| "settings.theme.black" // Use black theme
type BoundActionList = { type BoundActionList = {
// eslint-disable-next-line no-unused-vars // eslint-disable-next-line no-unused-vars

View File

@@ -280,4 +280,32 @@ export const fuse = [
icon: "gift", icon: "gift",
tags: ["invite", "share", "app", "friends", "people", "social"], tags: ["invite", "share", "app", "friends", "people", "social"],
}, },
{
keys: [getPlatformAlternateKey(), "0"],
label: "shortcut.theme.system",
action: "settings.theme.system",
icon: "monitor",
tags: ["theme", "system"],
},
{
keys: [getPlatformAlternateKey(), "1"],
label: "shortcut.theme.light",
action: "settings.theme.light",
icon: "sun",
tags: ["theme", "light"],
},
{
keys: [getPlatformAlternateKey(), "2"],
label: "shortcut.theme.dark",
action: "settings.theme.dark",
icon: "cloud",
tags: ["theme", "dark"],
},
{
keys: [getPlatformAlternateKey(), "3"],
label: "shortcut.theme.black",
action: "settings.theme.black",
icon: "moon",
tags: ["theme", "black"],
},
] ]

View File

@@ -52,7 +52,7 @@ import { setupLocalPersistence } from "~/newstore/localpersistence"
import { performMigrations } from "~/helpers/migrations" import { performMigrations } from "~/helpers/migrations"
import { initUserInfo } from "~/helpers/teams/BackendUserInfo" import { initUserInfo } from "~/helpers/teams/BackendUserInfo"
import { registerApolloAuthUpdate } from "~/helpers/apollo" import { registerApolloAuthUpdate } from "~/helpers/apollo"
import { useSetting } from "~/newstore/settings" import { applySetting, useSetting } from "~/newstore/settings"
import { logPageView } from "~/helpers/fb/analytics" import { logPageView } from "~/helpers/fb/analytics"
import { hookKeybindingsListener } from "~/helpers/keybindings" import { hookKeybindingsListener } from "~/helpers/keybindings"
import { defineActionHandler } from "~/helpers/actions" import { defineActionHandler } from "~/helpers/actions"
@@ -146,6 +146,18 @@ function defineJumpActions() {
defineActionHandler("navigation.jump.profile", () => { defineActionHandler("navigation.jump.profile", () => {
router.push({ path: localePath("/profile") }) router.push({ path: localePath("/profile") })
}) })
defineActionHandler("settings.theme.system", () => {
applySetting("BG_COLOR", "system")
})
defineActionHandler("settings.theme.light", () => {
applySetting("BG_COLOR", "light")
})
defineActionHandler("settings.theme.dark", () => {
applySetting("BG_COLOR", "dark")
})
defineActionHandler("settings.theme.black", () => {
applySetting("BG_COLOR", "black")
})
} }
export default defineComponent({ export default defineComponent({

View File

@@ -29,9 +29,9 @@
"send": "Stuur", "send": "Stuur",
"start": "Begin", "start": "Begin",
"stop": "Stop", "stop": "Stop",
"to_close": "to close",
"to_navigate": "to navigate", "to_navigate": "to navigate",
"to_select": "to select", "to_select": "to select",
"to_close": "to close",
"turn_off": "Skakel af", "turn_off": "Skakel af",
"turn_on": "Sit aan", "turn_on": "Sit aan",
"undo": "Ontdoen", "undo": "Ontdoen",
@@ -93,11 +93,11 @@
"generate_token": "Genereer teken", "generate_token": "Genereer teken",
"include_in_url": "Sluit in by URL", "include_in_url": "Sluit in by URL",
"learn": "Leer hoe", "learn": "Leer hoe",
"pass_key_by": "Pass by",
"password": "Wagwoord", "password": "Wagwoord",
"token": "Teken", "token": "Teken",
"type": "Magtigingstipe", "type": "Magtigingstipe",
"username": "Gebruikersnaam", "username": "Gebruikersnaam"
"pass_key_by": "Pass by"
}, },
"collection": { "collection": {
"created": "Versameling geskep", "created": "Versameling geskep",
@@ -426,6 +426,13 @@
"save_to_collections": "Stoor in versamelings", "save_to_collections": "Stoor in versamelings",
"send_request": "Stuur versoek", "send_request": "Stuur versoek",
"title": "Versoek" "title": "Versoek"
},
"theme": {
"black": "Black theme",
"dark": "Dark theme",
"light": "Light theme",
"system": "System theme",
"title": "Theme"
} }
}, },
"show": { "show": {

View File

@@ -29,9 +29,9 @@
"send": "يرسل", "send": "يرسل",
"start": "يبدأ", "start": "يبدأ",
"stop": "قف", "stop": "قف",
"to_close": "to close",
"to_navigate": "to navigate", "to_navigate": "to navigate",
"to_select": "to select", "to_select": "to select",
"to_close": "to close",
"turn_off": "اطفئه", "turn_off": "اطفئه",
"turn_on": "شغله", "turn_on": "شغله",
"undo": "الغاء التحميل", "undo": "الغاء التحميل",
@@ -93,11 +93,11 @@
"generate_token": "توليد رمز", "generate_token": "توليد رمز",
"include_in_url": "تضمين في URL", "include_in_url": "تضمين في URL",
"learn": "تعلم كيف", "learn": "تعلم كيف",
"pass_key_by": "Pass by",
"password": "كلمة المرور", "password": "كلمة المرور",
"token": "رمز", "token": "رمز",
"type": "نوع التفويض", "type": "نوع التفويض",
"username": "اسم المستخدم", "username": "اسم المستخدم"
"pass_key_by": "Pass by"
}, },
"collection": { "collection": {
"created": "تم إنشاء المجموعة", "created": "تم إنشاء المجموعة",
@@ -426,6 +426,13 @@
"save_to_collections": "حفظ في المجموعات", "save_to_collections": "حفظ في المجموعات",
"send_request": "ارسل طلب", "send_request": "ارسل طلب",
"title": "طلب" "title": "طلب"
},
"theme": {
"black": "Black theme",
"dark": "Dark theme",
"light": "Light theme",
"system": "System theme",
"title": "Theme"
} }
}, },
"show": { "show": {

View File

@@ -29,9 +29,9 @@
"send": "Envia", "send": "Envia",
"start": "Començar", "start": "Començar",
"stop": "Atura", "stop": "Atura",
"to_close": "to close",
"to_navigate": "to navigate", "to_navigate": "to navigate",
"to_select": "to select", "to_select": "to select",
"to_close": "to close",
"turn_off": "Tanca", "turn_off": "Tanca",
"turn_on": "Encendre", "turn_on": "Encendre",
"undo": "Desfés", "undo": "Desfés",
@@ -93,11 +93,11 @@
"generate_token": "Generar testimoni", "generate_token": "Generar testimoni",
"include_in_url": "Inclou a l'URL", "include_in_url": "Inclou a l'URL",
"learn": "Aprèn com", "learn": "Aprèn com",
"pass_key_by": "Pass by",
"password": "Contrasenya", "password": "Contrasenya",
"token": "Testimoni", "token": "Testimoni",
"type": "Tipus d'autorització", "type": "Tipus d'autorització",
"username": "Nom d'usuari", "username": "Nom d'usuari"
"pass_key_by": "Pass by"
}, },
"collection": { "collection": {
"created": "S'ha creat la col·lecció", "created": "S'ha creat la col·lecció",
@@ -426,6 +426,13 @@
"save_to_collections": "Desa a les col·leccions", "save_to_collections": "Desa a les col·leccions",
"send_request": "Enviar sol.licitud", "send_request": "Enviar sol.licitud",
"title": "Sol·licitud" "title": "Sol·licitud"
},
"theme": {
"black": "Black theme",
"dark": "Dark theme",
"light": "Light theme",
"system": "System theme",
"title": "Theme"
} }
}, },
"show": { "show": {

View File

@@ -29,9 +29,9 @@
"send": "发送", "send": "发送",
"start": "开始", "start": "开始",
"stop": "停止", "stop": "停止",
"to_close": "以关闭",
"to_navigate": "以定位", "to_navigate": "以定位",
"to_select": "以选择", "to_select": "以选择",
"to_close": "以关闭",
"turn_off": "关闭", "turn_off": "关闭",
"turn_on": "开启", "turn_on": "开启",
"undo": "撤消", "undo": "撤消",
@@ -93,11 +93,11 @@
"generate_token": "生成令牌", "generate_token": "生成令牌",
"include_in_url": "包含在 URL 内", "include_in_url": "包含在 URL 内",
"learn": "了解更多", "learn": "了解更多",
"pass_key_by": "传递方式",
"password": "密码", "password": "密码",
"token": "令牌", "token": "令牌",
"type": "授权类型", "type": "授权类型",
"username": "用户名", "username": "用户名"
"pass_key_by": "传递方式"
}, },
"collection": { "collection": {
"created": "组合已创建", "created": "组合已创建",
@@ -426,6 +426,13 @@
"save_to_collections": "保存到组合", "save_to_collections": "保存到组合",
"send_request": "发送请求", "send_request": "发送请求",
"title": "请求" "title": "请求"
},
"theme": {
"black": "Black theme",
"dark": "Dark theme",
"light": "Light theme",
"system": "System theme",
"title": "Theme"
} }
}, },
"show": { "show": {

View File

@@ -29,9 +29,9 @@
"send": "Poslat", "send": "Poslat",
"start": "Start", "start": "Start",
"stop": "Stop", "stop": "Stop",
"to_close": "to close",
"to_navigate": "to navigate", "to_navigate": "to navigate",
"to_select": "to select", "to_select": "to select",
"to_close": "to close",
"turn_off": "Vypnout", "turn_off": "Vypnout",
"turn_on": "Zapnout", "turn_on": "Zapnout",
"undo": "vrátit", "undo": "vrátit",
@@ -93,11 +93,11 @@
"generate_token": "Generovat token", "generate_token": "Generovat token",
"include_in_url": "Zahrnout do adresy URL", "include_in_url": "Zahrnout do adresy URL",
"learn": "Zjistěte jak", "learn": "Zjistěte jak",
"pass_key_by": "Pass by",
"password": "Heslo", "password": "Heslo",
"token": "Žeton", "token": "Žeton",
"type": "Typ autorizace", "type": "Typ autorizace",
"username": "Uživatelské jméno", "username": "Uživatelské jméno"
"pass_key_by": "Pass by"
}, },
"collection": { "collection": {
"created": "Kolekce vytvořena", "created": "Kolekce vytvořena",
@@ -426,6 +426,13 @@
"save_to_collections": "Uložit do sbírek", "save_to_collections": "Uložit do sbírek",
"send_request": "Poslat žádost", "send_request": "Poslat žádost",
"title": "Žádost" "title": "Žádost"
},
"theme": {
"black": "Black theme",
"dark": "Dark theme",
"light": "Light theme",
"system": "System theme",
"title": "Theme"
} }
}, },
"show": { "show": {

View File

@@ -29,9 +29,9 @@
"send": "Sende", "send": "Sende",
"start": "Start", "start": "Start",
"stop": "Hold op", "stop": "Hold op",
"to_close": "to close",
"to_navigate": "to navigate", "to_navigate": "to navigate",
"to_select": "to select", "to_select": "to select",
"to_close": "to close",
"turn_off": "Sluk", "turn_off": "Sluk",
"turn_on": "Tænde for", "turn_on": "Tænde for",
"undo": "Fortryd", "undo": "Fortryd",
@@ -93,11 +93,11 @@
"generate_token": "Generer Token", "generate_token": "Generer Token",
"include_in_url": "Inkluder i URL", "include_in_url": "Inkluder i URL",
"learn": "Lær hvordan", "learn": "Lær hvordan",
"pass_key_by": "Pass by",
"password": "Adgangskode", "password": "Adgangskode",
"token": "Polet", "token": "Polet",
"type": "Godkendelse Type", "type": "Godkendelse Type",
"username": "Brugernavn", "username": "Brugernavn"
"pass_key_by": "Pass by"
}, },
"collection": { "collection": {
"created": "Samlingen er oprettet", "created": "Samlingen er oprettet",
@@ -426,6 +426,13 @@
"save_to_collections": "Gem i samlinger", "save_to_collections": "Gem i samlinger",
"send_request": "Send anmodning", "send_request": "Send anmodning",
"title": "Anmodning" "title": "Anmodning"
},
"theme": {
"black": "Black theme",
"dark": "Dark theme",
"light": "Light theme",
"system": "System theme",
"title": "Theme"
} }
}, },
"show": { "show": {

View File

@@ -29,9 +29,9 @@
"send": "Senden", "send": "Senden",
"start": "Start", "start": "Start",
"stop": "Stopp", "stop": "Stopp",
"to_close": "to close",
"to_navigate": "to navigate", "to_navigate": "to navigate",
"to_select": "to select", "to_select": "to select",
"to_close": "to close",
"turn_off": "Ausschalten", "turn_off": "Ausschalten",
"turn_on": "Einschalten", "turn_on": "Einschalten",
"undo": "Rückgängig machen", "undo": "Rückgängig machen",
@@ -93,11 +93,11 @@
"generate_token": "Token generieren", "generate_token": "Token generieren",
"include_in_url": "In URL einschließen", "include_in_url": "In URL einschließen",
"learn": "Lernen wie", "learn": "Lernen wie",
"pass_key_by": "Pass by",
"password": "Passwort", "password": "Passwort",
"token": "Token", "token": "Token",
"type": "Berechtigungstyp", "type": "Berechtigungstyp",
"username": "Nutzername", "username": "Nutzername"
"pass_key_by": "Pass by"
}, },
"collection": { "collection": {
"created": "Sammlung erstellt", "created": "Sammlung erstellt",
@@ -426,6 +426,13 @@
"save_to_collections": "In Sammlungen speichern", "save_to_collections": "In Sammlungen speichern",
"send_request": "Anfrage senden", "send_request": "Anfrage senden",
"title": "Anfrage" "title": "Anfrage"
},
"theme": {
"black": "Black theme",
"dark": "Dark theme",
"light": "Light theme",
"system": "System theme",
"title": "Theme"
} }
}, },
"show": { "show": {

View File

@@ -29,9 +29,9 @@
"send": "Στείλετε", "send": "Στείλετε",
"start": "Αρχή", "start": "Αρχή",
"stop": "Να σταματήσει", "stop": "Να σταματήσει",
"to_close": "to close",
"to_navigate": "to navigate", "to_navigate": "to navigate",
"to_select": "to select", "to_select": "to select",
"to_close": "to close",
"turn_off": "Σβήνω", "turn_off": "Σβήνω",
"turn_on": "Ανάβω", "turn_on": "Ανάβω",
"undo": "Ξεκάνω", "undo": "Ξεκάνω",
@@ -93,11 +93,11 @@
"generate_token": "Δημιουργήστε το διακριτικό", "generate_token": "Δημιουργήστε το διακριτικό",
"include_in_url": "Συμπερίληψη στη διεύθυνση URL", "include_in_url": "Συμπερίληψη στη διεύθυνση URL",
"learn": "Μάθε πως", "learn": "Μάθε πως",
"pass_key_by": "Pass by",
"password": "Κωδικός πρόσβασης", "password": "Κωδικός πρόσβασης",
"token": "Ενδειξη", "token": "Ενδειξη",
"type": "Τύπος εξουσιοδότησης", "type": "Τύπος εξουσιοδότησης",
"username": "Όνομα χρήστη", "username": "Όνομα χρήστη"
"pass_key_by": "Pass by"
}, },
"collection": { "collection": {
"created": "Η συλλογή δημιουργήθηκε", "created": "Η συλλογή δημιουργήθηκε",
@@ -426,6 +426,13 @@
"save_to_collections": "Αποθήκευση στις Συλλογές", "save_to_collections": "Αποθήκευση στις Συλλογές",
"send_request": "Στείλε αίτημα", "send_request": "Στείλε αίτημα",
"title": "Αίτηση" "title": "Αίτηση"
},
"theme": {
"black": "Black theme",
"dark": "Dark theme",
"light": "Light theme",
"system": "System theme",
"title": "Theme"
} }
}, },
"show": { "show": {

View File

@@ -29,9 +29,9 @@
"send": "Send", "send": "Send",
"start": "Start", "start": "Start",
"stop": "Stop", "stop": "Stop",
"to_close": "to close",
"to_navigate": "to navigate", "to_navigate": "to navigate",
"to_select": "to select", "to_select": "to select",
"to_close": "to close",
"turn_off": "Turn off", "turn_off": "Turn off",
"turn_on": "Turn on", "turn_on": "Turn on",
"undo": "Undo", "undo": "Undo",
@@ -93,11 +93,11 @@
"generate_token": "Generate Token", "generate_token": "Generate Token",
"include_in_url": "Include in URL", "include_in_url": "Include in URL",
"learn": "Learn how", "learn": "Learn how",
"pass_key_by": "Pass by",
"password": "Password", "password": "Password",
"token": "Token", "token": "Token",
"type": "Authorization Type", "type": "Authorization Type",
"username": "Username", "username": "Username"
"pass_key_by": "Pass by"
}, },
"collection": { "collection": {
"created": "Collection created", "created": "Collection created",
@@ -426,6 +426,13 @@
"save_to_collections": "Save to Collections", "save_to_collections": "Save to Collections",
"send_request": "Send Request", "send_request": "Send Request",
"title": "Request" "title": "Request"
},
"theme": {
"black": "Black theme",
"dark": "Dark theme",
"light": "Light theme",
"system": "System theme",
"title": "Theme"
} }
}, },
"show": { "show": {

View File

@@ -29,9 +29,9 @@
"send": "Enviar", "send": "Enviar",
"start": "Empezar", "start": "Empezar",
"stop": "Detener", "stop": "Detener",
"to_close": "to close",
"to_navigate": "to navigate", "to_navigate": "to navigate",
"to_select": "to select", "to_select": "to select",
"to_close": "to close",
"turn_off": "Desactivar", "turn_off": "Desactivar",
"turn_on": "Activar", "turn_on": "Activar",
"undo": "Deshacer", "undo": "Deshacer",
@@ -93,11 +93,11 @@
"generate_token": "Generar token", "generate_token": "Generar token",
"include_in_url": "Incluir en la URL", "include_in_url": "Incluir en la URL",
"learn": "Aprender", "learn": "Aprender",
"pass_key_by": "Pass by",
"password": "Contraseña", "password": "Contraseña",
"token": "Token", "token": "Token",
"type": "Tipo de autorización", "type": "Tipo de autorización",
"username": "Nombre de usuario", "username": "Nombre de usuario"
"pass_key_by": "Pass by"
}, },
"collection": { "collection": {
"created": "Colección creada", "created": "Colección creada",
@@ -426,6 +426,13 @@
"save_to_collections": "Guardar en colecciones", "save_to_collections": "Guardar en colecciones",
"send_request": "Enviar petición", "send_request": "Enviar petición",
"title": "Petición" "title": "Petición"
},
"theme": {
"black": "Black theme",
"dark": "Dark theme",
"light": "Light theme",
"system": "System theme",
"title": "Theme"
} }
}, },
"show": { "show": {

View File

@@ -29,9 +29,9 @@
"send": "Lähettää", "send": "Lähettää",
"start": "alkaa", "start": "alkaa",
"stop": "Lopettaa", "stop": "Lopettaa",
"to_close": "to close",
"to_navigate": "to navigate", "to_navigate": "to navigate",
"to_select": "to select", "to_select": "to select",
"to_close": "to close",
"turn_off": "Sammuttaa", "turn_off": "Sammuttaa",
"turn_on": "Kiihottua", "turn_on": "Kiihottua",
"undo": "Kumoa", "undo": "Kumoa",
@@ -93,11 +93,11 @@
"generate_token": "Luo tunnus", "generate_token": "Luo tunnus",
"include_in_url": "Sisällytä URL -osoitteeseen", "include_in_url": "Sisällytä URL -osoitteeseen",
"learn": "Opi kuinka", "learn": "Opi kuinka",
"pass_key_by": "Pass by",
"password": "Salasana", "password": "Salasana",
"token": "Token", "token": "Token",
"type": "Valtuustyyppi", "type": "Valtuustyyppi",
"username": "Käyttäjätunnus", "username": "Käyttäjätunnus"
"pass_key_by": "Pass by"
}, },
"collection": { "collection": {
"created": "Kokoelma luotu", "created": "Kokoelma luotu",
@@ -426,6 +426,13 @@
"save_to_collections": "Tallenna kokoelmiin", "save_to_collections": "Tallenna kokoelmiin",
"send_request": "Lähetä pyyntö", "send_request": "Lähetä pyyntö",
"title": "Pyyntö" "title": "Pyyntö"
},
"theme": {
"black": "Black theme",
"dark": "Dark theme",
"light": "Light theme",
"system": "System theme",
"title": "Theme"
} }
}, },
"show": { "show": {

View File

@@ -29,9 +29,9 @@
"send": "Envoyer", "send": "Envoyer",
"start": "Démarrer", "start": "Démarrer",
"stop": "Arrêter", "stop": "Arrêter",
"to_close": "to close",
"to_navigate": "to navigate", "to_navigate": "to navigate",
"to_select": "to select", "to_select": "to select",
"to_close": "to close",
"turn_off": "Éteindre", "turn_off": "Éteindre",
"turn_on": "Allumer", "turn_on": "Allumer",
"undo": "Annuler", "undo": "Annuler",
@@ -93,11 +93,11 @@
"generate_token": "Générer un jeton", "generate_token": "Générer un jeton",
"include_in_url": "Inclure dans l'URL", "include_in_url": "Inclure dans l'URL",
"learn": "Apprendre comment", "learn": "Apprendre comment",
"pass_key_by": "Pass by",
"password": "Mot de passe", "password": "Mot de passe",
"token": "Jeton", "token": "Jeton",
"type": "Type d'autorisation", "type": "Type d'autorisation",
"username": "Nom d'utilisateur", "username": "Nom d'utilisateur"
"pass_key_by": "Pass by"
}, },
"collection": { "collection": {
"created": "Collection créée", "created": "Collection créée",
@@ -426,6 +426,13 @@
"save_to_collections": "Enregistrer dans les collections", "save_to_collections": "Enregistrer dans les collections",
"send_request": "Envoyer la requête", "send_request": "Envoyer la requête",
"title": "Requête" "title": "Requête"
},
"theme": {
"black": "Black theme",
"dark": "Dark theme",
"light": "Light theme",
"system": "System theme",
"title": "Theme"
} }
}, },
"show": { "show": {

View File

@@ -29,9 +29,9 @@
"send": "לִשְׁלוֹחַ", "send": "לִשְׁלוֹחַ",
"start": "הַתחָלָה", "start": "הַתחָלָה",
"stop": "תפסיק", "stop": "תפסיק",
"to_close": "to close",
"to_navigate": "to navigate", "to_navigate": "to navigate",
"to_select": "to select", "to_select": "to select",
"to_close": "to close",
"turn_off": "לכבות", "turn_off": "לכבות",
"turn_on": "להדליק", "turn_on": "להדליק",
"undo": "לבטל", "undo": "לבטל",
@@ -93,11 +93,11 @@
"generate_token": "צור אסימון", "generate_token": "צור אסימון",
"include_in_url": "כלול בכתובת האתר", "include_in_url": "כלול בכתובת האתר",
"learn": "ללמוד איך", "learn": "ללמוד איך",
"pass_key_by": "Pass by",
"password": "סיסמה", "password": "סיסמה",
"token": "אֲסִימוֹן", "token": "אֲסִימוֹן",
"type": "סוג הרשאה", "type": "סוג הרשאה",
"username": "שם משתמש", "username": "שם משתמש"
"pass_key_by": "Pass by"
}, },
"collection": { "collection": {
"created": "אוסף נוצר", "created": "אוסף נוצר",
@@ -426,6 +426,13 @@
"save_to_collections": "שמור באוספים", "save_to_collections": "שמור באוספים",
"send_request": "שלח בקשה", "send_request": "שלח בקשה",
"title": "בַּקָשָׁה" "title": "בַּקָשָׁה"
},
"theme": {
"black": "Black theme",
"dark": "Dark theme",
"light": "Light theme",
"system": "System theme",
"title": "Theme"
} }
}, },
"show": { "show": {

View File

@@ -29,9 +29,9 @@
"send": "Küld", "send": "Küld",
"start": "Rajt", "start": "Rajt",
"stop": "Álljon meg", "stop": "Álljon meg",
"to_close": "to close",
"to_navigate": "to navigate", "to_navigate": "to navigate",
"to_select": "to select", "to_select": "to select",
"to_close": "to close",
"turn_off": "Kikapcsolni", "turn_off": "Kikapcsolni",
"turn_on": "Bekapcsol", "turn_on": "Bekapcsol",
"undo": "Visszavonás", "undo": "Visszavonás",
@@ -93,11 +93,11 @@
"generate_token": "Token generálása", "generate_token": "Token generálása",
"include_in_url": "Belefoglalás az URL -be", "include_in_url": "Belefoglalás az URL -be",
"learn": "Megtanulják, hogyan", "learn": "Megtanulják, hogyan",
"pass_key_by": "Pass by",
"password": "Jelszó", "password": "Jelszó",
"token": "Jelképes", "token": "Jelképes",
"type": "Engedélyezés típusa", "type": "Engedélyezés típusa",
"username": "Felhasználónév", "username": "Felhasználónév"
"pass_key_by": "Pass by"
}, },
"collection": { "collection": {
"created": "Gyűjtemény létrehozva", "created": "Gyűjtemény létrehozva",
@@ -426,6 +426,13 @@
"save_to_collections": "Mentés a Gyűjtemények közé", "save_to_collections": "Mentés a Gyűjtemények közé",
"send_request": "Felkérést küld", "send_request": "Felkérést küld",
"title": "Kérés" "title": "Kérés"
},
"theme": {
"black": "Black theme",
"dark": "Dark theme",
"light": "Light theme",
"system": "System theme",
"title": "Theme"
} }
}, },
"show": { "show": {

View File

@@ -29,9 +29,9 @@
"send": "Invia", "send": "Invia",
"start": "Avvia", "start": "Avvia",
"stop": "Interrompi", "stop": "Interrompi",
"to_close": "to close",
"to_navigate": "to navigate", "to_navigate": "to navigate",
"to_select": "to select", "to_select": "to select",
"to_close": "to close",
"turn_off": "Spegni", "turn_off": "Spegni",
"turn_on": "Accendi", "turn_on": "Accendi",
"undo": "Annulla", "undo": "Annulla",
@@ -93,11 +93,11 @@
"generate_token": "Genera token", "generate_token": "Genera token",
"include_in_url": "Includi nell'URL", "include_in_url": "Includi nell'URL",
"learn": "Impara come", "learn": "Impara come",
"pass_key_by": "Pass by",
"password": "Password", "password": "Password",
"token": "Token", "token": "Token",
"type": "Tipo di autorizzazione", "type": "Tipo di autorizzazione",
"username": "Nome utente", "username": "Nome utente"
"pass_key_by": "Pass by"
}, },
"collection": { "collection": {
"created": "Raccolta creata", "created": "Raccolta creata",
@@ -426,6 +426,13 @@
"save_to_collections": "Salva nelle raccolte", "save_to_collections": "Salva nelle raccolte",
"send_request": "Invia richiesta", "send_request": "Invia richiesta",
"title": "Richiesta" "title": "Richiesta"
},
"theme": {
"black": "Black theme",
"dark": "Dark theme",
"light": "Light theme",
"system": "System theme",
"title": "Theme"
} }
}, },
"show": { "show": {

View File

@@ -29,9 +29,9 @@
"send": "送信", "send": "送信",
"start": "始める", "start": "始める",
"stop": "ストップ", "stop": "ストップ",
"to_close": "to close",
"to_navigate": "to navigate", "to_navigate": "to navigate",
"to_select": "to select", "to_select": "to select",
"to_close": "to close",
"turn_off": "消す", "turn_off": "消す",
"turn_on": "オンにする", "turn_on": "オンにする",
"undo": "元に戻す", "undo": "元に戻す",
@@ -93,11 +93,11 @@
"generate_token": "トークンを生成する", "generate_token": "トークンを生成する",
"include_in_url": "URLに含める", "include_in_url": "URLに含める",
"learn": "方法を学びます", "learn": "方法を学びます",
"pass_key_by": "Pass by",
"password": "パスワード", "password": "パスワード",
"token": "トークン", "token": "トークン",
"type": "承認タイプ", "type": "承認タイプ",
"username": "ユーザー名", "username": "ユーザー名"
"pass_key_by": "Pass by"
}, },
"collection": { "collection": {
"created": "コレクションが作成されました", "created": "コレクションが作成されました",
@@ -426,6 +426,13 @@
"save_to_collections": "コレクションに保存", "save_to_collections": "コレクションに保存",
"send_request": "リクエストを送信", "send_request": "リクエストを送信",
"title": "リクエスト" "title": "リクエスト"
},
"theme": {
"black": "Black theme",
"dark": "Dark theme",
"light": "Light theme",
"system": "System theme",
"title": "Theme"
} }
}, },
"show": { "show": {

View File

@@ -29,9 +29,9 @@
"send": "보내기", "send": "보내기",
"start": "시작", "start": "시작",
"stop": "정지", "stop": "정지",
"to_close": "to close",
"to_navigate": "to navigate", "to_navigate": "to navigate",
"to_select": "to select", "to_select": "to select",
"to_close": "to close",
"turn_off": "끄기", "turn_off": "끄기",
"turn_on": "켜기", "turn_on": "켜기",
"undo": "실행 취소", "undo": "실행 취소",
@@ -93,11 +93,11 @@
"generate_token": "토큰 생성", "generate_token": "토큰 생성",
"include_in_url": "URL에 포함", "include_in_url": "URL에 포함",
"learn": "어떻게하는지 배우기", "learn": "어떻게하는지 배우기",
"pass_key_by": "Pass by",
"password": "비밀번호", "password": "비밀번호",
"token": "토큰", "token": "토큰",
"type": "인증 유형", "type": "인증 유형",
"username": "사용자 이름", "username": "사용자 이름"
"pass_key_by": "Pass by"
}, },
"collection": { "collection": {
"created": "모음집 생성됨", "created": "모음집 생성됨",
@@ -426,6 +426,13 @@
"save_to_collections": "모음집에 저장", "save_to_collections": "모음집에 저장",
"send_request": "요청 보내기", "send_request": "요청 보내기",
"title": "리퀘스트" "title": "리퀘스트"
},
"theme": {
"black": "Black theme",
"dark": "Dark theme",
"light": "Light theme",
"system": "System theme",
"title": "Theme"
} }
}, },
"show": { "show": {

View File

@@ -29,9 +29,9 @@
"send": "Versturen", "send": "Versturen",
"start": "Begin", "start": "Begin",
"stop": "Stop", "stop": "Stop",
"to_close": "to close",
"to_navigate": "to navigate", "to_navigate": "to navigate",
"to_select": "to select", "to_select": "to select",
"to_close": "to close",
"turn_off": "Uitschakelen", "turn_off": "Uitschakelen",
"turn_on": "Inschakelen", "turn_on": "Inschakelen",
"undo": "Ongedaan maken", "undo": "Ongedaan maken",
@@ -93,11 +93,11 @@
"generate_token": "Token genereren", "generate_token": "Token genereren",
"include_in_url": "Opnemen in URL", "include_in_url": "Opnemen in URL",
"learn": "Leren hoe", "learn": "Leren hoe",
"pass_key_by": "Pass by",
"password": "Wachtwoord", "password": "Wachtwoord",
"token": "token", "token": "token",
"type": "Autorisatietype:", "type": "Autorisatietype:",
"username": "Gebruikersnaam", "username": "Gebruikersnaam"
"pass_key_by": "Pass by"
}, },
"collection": { "collection": {
"created": "Collectie gemaakt", "created": "Collectie gemaakt",
@@ -426,6 +426,13 @@
"save_to_collections": "Opslaan in collecties", "save_to_collections": "Opslaan in collecties",
"send_request": "Verstuur verzoek", "send_request": "Verstuur verzoek",
"title": "Verzoek" "title": "Verzoek"
},
"theme": {
"black": "Black theme",
"dark": "Dark theme",
"light": "Light theme",
"system": "System theme",
"title": "Theme"
} }
}, },
"show": { "show": {

View File

@@ -29,9 +29,9 @@
"send": "Sende", "send": "Sende",
"start": "Start", "start": "Start",
"stop": "Stoppe", "stop": "Stoppe",
"to_close": "to close",
"to_navigate": "to navigate", "to_navigate": "to navigate",
"to_select": "to select", "to_select": "to select",
"to_close": "to close",
"turn_off": "Skru av", "turn_off": "Skru av",
"turn_on": "Slå på", "turn_on": "Slå på",
"undo": "Angre", "undo": "Angre",
@@ -93,11 +93,11 @@
"generate_token": "Generer nøkkel", "generate_token": "Generer nøkkel",
"include_in_url": "Inkluder i URL", "include_in_url": "Inkluder i URL",
"learn": "Lær hvordan", "learn": "Lær hvordan",
"pass_key_by": "Pass by",
"password": "Passord", "password": "Passord",
"token": "Nøkkel", "token": "Nøkkel",
"type": "Godkjenningstype", "type": "Godkjenningstype",
"username": "Brukernavn", "username": "Brukernavn"
"pass_key_by": "Pass by"
}, },
"collection": { "collection": {
"created": "Samlingen er opprettet", "created": "Samlingen er opprettet",
@@ -426,6 +426,13 @@
"save_to_collections": "Lagre i samlinger", "save_to_collections": "Lagre i samlinger",
"send_request": "Send forespørsel", "send_request": "Send forespørsel",
"title": "Be om" "title": "Be om"
},
"theme": {
"black": "Black theme",
"dark": "Dark theme",
"light": "Light theme",
"system": "System theme",
"title": "Theme"
} }
}, },
"show": { "show": {

View File

@@ -29,9 +29,9 @@
"send": "Wyślij", "send": "Wyślij",
"start": "Rozpocznij", "start": "Rozpocznij",
"stop": "Zatrzymaj", "stop": "Zatrzymaj",
"to_close": "to close",
"to_navigate": "to navigate", "to_navigate": "to navigate",
"to_select": "to select", "to_select": "to select",
"to_close": "to close",
"turn_off": "Wyłącz", "turn_off": "Wyłącz",
"turn_on": "Włącz", "turn_on": "Włącz",
"undo": "Cofnij", "undo": "Cofnij",
@@ -93,11 +93,11 @@
"generate_token": "Wygeneruj token", "generate_token": "Wygeneruj token",
"include_in_url": "Uwzględnij w adresie URL", "include_in_url": "Uwzględnij w adresie URL",
"learn": "Naucz się jak", "learn": "Naucz się jak",
"pass_key_by": "Pass by",
"password": "Hasło", "password": "Hasło",
"token": "Token", "token": "Token",
"type": "Typ autoryzacji", "type": "Typ autoryzacji",
"username": "Nazwa użytkownika", "username": "Nazwa użytkownika"
"pass_key_by": "Pass by"
}, },
"collection": { "collection": {
"created": "Utworzono kolekcję", "created": "Utworzono kolekcję",
@@ -426,6 +426,13 @@
"save_to_collections": "Zapisz w kolekcjach", "save_to_collections": "Zapisz w kolekcjach",
"send_request": "Wyślij żądanie", "send_request": "Wyślij żądanie",
"title": "Żądania" "title": "Żądania"
},
"theme": {
"black": "Black theme",
"dark": "Dark theme",
"light": "Light theme",
"system": "System theme",
"title": "Theme"
} }
}, },
"show": { "show": {

View File

@@ -29,9 +29,9 @@
"send": "Mandar", "send": "Mandar",
"start": "Começar", "start": "Começar",
"stop": "Pare", "stop": "Pare",
"to_close": "to close",
"to_navigate": "to navigate", "to_navigate": "to navigate",
"to_select": "to select", "to_select": "to select",
"to_close": "to close",
"turn_off": "Desligar", "turn_off": "Desligar",
"turn_on": "Ligar", "turn_on": "Ligar",
"undo": "Desfazer", "undo": "Desfazer",
@@ -93,11 +93,11 @@
"generate_token": "Gerar token", "generate_token": "Gerar token",
"include_in_url": "Incluir no URL", "include_in_url": "Incluir no URL",
"learn": "Aprenda como", "learn": "Aprenda como",
"pass_key_by": "Pass by",
"password": "Senha", "password": "Senha",
"token": "Símbolo", "token": "Símbolo",
"type": "Tipo de Autorização", "type": "Tipo de Autorização",
"username": "Nome do usuário", "username": "Nome do usuário"
"pass_key_by": "Pass by"
}, },
"collection": { "collection": {
"created": "Coleção criada", "created": "Coleção criada",
@@ -426,6 +426,13 @@
"save_to_collections": "Salvar em coleções", "save_to_collections": "Salvar em coleções",
"send_request": "Enviar pedido", "send_request": "Enviar pedido",
"title": "Solicitar" "title": "Solicitar"
},
"theme": {
"black": "Black theme",
"dark": "Dark theme",
"light": "Light theme",
"system": "System theme",
"title": "Theme"
} }
}, },
"show": { "show": {

View File

@@ -29,9 +29,9 @@
"send": "Mandar", "send": "Mandar",
"start": "Começar", "start": "Começar",
"stop": "Pare", "stop": "Pare",
"to_close": "to close",
"to_navigate": "to navigate", "to_navigate": "to navigate",
"to_select": "to select", "to_select": "to select",
"to_close": "to close",
"turn_off": "Desligar", "turn_off": "Desligar",
"turn_on": "Ligar", "turn_on": "Ligar",
"undo": "Desfazer", "undo": "Desfazer",
@@ -93,11 +93,11 @@
"generate_token": "Gerar token", "generate_token": "Gerar token",
"include_in_url": "Incluir no URL", "include_in_url": "Incluir no URL",
"learn": "Aprenda como", "learn": "Aprenda como",
"pass_key_by": "Pass by",
"password": "Senha", "password": "Senha",
"token": "Símbolo", "token": "Símbolo",
"type": "Tipo de Autorização", "type": "Tipo de Autorização",
"username": "Nome do usuário", "username": "Nome do usuário"
"pass_key_by": "Pass by"
}, },
"collection": { "collection": {
"created": "Coleção criada", "created": "Coleção criada",
@@ -426,6 +426,13 @@
"save_to_collections": "Salvar em coleções", "save_to_collections": "Salvar em coleções",
"send_request": "Enviar pedido", "send_request": "Enviar pedido",
"title": "Solicitar" "title": "Solicitar"
},
"theme": {
"black": "Black theme",
"dark": "Dark theme",
"light": "Light theme",
"system": "System theme",
"title": "Theme"
} }
}, },
"show": { "show": {

View File

@@ -29,9 +29,9 @@
"send": "Trimite", "send": "Trimite",
"start": "start", "start": "start",
"stop": "Stop", "stop": "Stop",
"to_close": "to close",
"to_navigate": "to navigate", "to_navigate": "to navigate",
"to_select": "to select", "to_select": "to select",
"to_close": "to close",
"turn_off": "Opriți", "turn_off": "Opriți",
"turn_on": "Aprinde", "turn_on": "Aprinde",
"undo": "Anula", "undo": "Anula",
@@ -93,11 +93,11 @@
"generate_token": "Generați token", "generate_token": "Generați token",
"include_in_url": "Includeți în URL", "include_in_url": "Includeți în URL",
"learn": "Afla cum", "learn": "Afla cum",
"pass_key_by": "Pass by",
"password": "Parola", "password": "Parola",
"token": "Jeton", "token": "Jeton",
"type": "Tipul de autorizare", "type": "Tipul de autorizare",
"username": "Nume de utilizator", "username": "Nume de utilizator"
"pass_key_by": "Pass by"
}, },
"collection": { "collection": {
"created": "Colecție creată", "created": "Colecție creată",
@@ -426,6 +426,13 @@
"save_to_collections": "Salvați în colecții", "save_to_collections": "Salvați în colecții",
"send_request": "Trimite cerere", "send_request": "Trimite cerere",
"title": "Cerere" "title": "Cerere"
},
"theme": {
"black": "Black theme",
"dark": "Dark theme",
"light": "Light theme",
"system": "System theme",
"title": "Theme"
} }
}, },
"show": { "show": {

View File

@@ -29,9 +29,9 @@
"send": "Отправить", "send": "Отправить",
"start": "Начать", "start": "Начать",
"stop": "Стоп", "stop": "Стоп",
"to_close": "to close",
"to_navigate": "to navigate", "to_navigate": "to navigate",
"to_select": "to select", "to_select": "to select",
"to_close": "to close",
"turn_off": "Выключить", "turn_off": "Выключить",
"turn_on": "Включить", "turn_on": "Включить",
"undo": "Отменить", "undo": "Отменить",
@@ -93,11 +93,11 @@
"generate_token": "Сгенерировать токен", "generate_token": "Сгенерировать токен",
"include_in_url": "Добавить в URL", "include_in_url": "Добавить в URL",
"learn": "Узнать больше", "learn": "Узнать больше",
"pass_key_by": "Pass by",
"password": "Пароль", "password": "Пароль",
"token": "Токен", "token": "Токен",
"type": "Метод авторизации", "type": "Метод авторизации",
"username": "Имя пользователя", "username": "Имя пользователя"
"pass_key_by": "Pass by"
}, },
"collection": { "collection": {
"created": "Коллекция создана", "created": "Коллекция создана",
@@ -426,6 +426,13 @@
"save_to_collections": "Сохранить в коллекции", "save_to_collections": "Сохранить в коллекции",
"send_request": "Послать запрос", "send_request": "Послать запрос",
"title": "Запрос" "title": "Запрос"
},
"theme": {
"black": "Black theme",
"dark": "Dark theme",
"light": "Light theme",
"system": "System theme",
"title": "Theme"
} }
}, },
"show": { "show": {

View File

@@ -29,9 +29,9 @@
"send": "Пошаљи", "send": "Пошаљи",
"start": "Почетак", "start": "Почетак",
"stop": "Зауставити", "stop": "Зауставити",
"to_close": "to close",
"to_navigate": "to navigate", "to_navigate": "to navigate",
"to_select": "to select", "to_select": "to select",
"to_close": "to close",
"turn_off": "Искључити", "turn_off": "Искључити",
"turn_on": "Укључити", "turn_on": "Укључити",
"undo": "Поништи", "undo": "Поништи",
@@ -93,11 +93,11 @@
"generate_token": "Генериши токен", "generate_token": "Генериши токен",
"include_in_url": "Укључи у УРЛ", "include_in_url": "Укључи у УРЛ",
"learn": "Научите како", "learn": "Научите како",
"pass_key_by": "Pass by",
"password": "Лозинка", "password": "Лозинка",
"token": "Токен", "token": "Токен",
"type": "Врста овлашћења", "type": "Врста овлашћења",
"username": "Корисничко име", "username": "Корисничко име"
"pass_key_by": "Pass by"
}, },
"collection": { "collection": {
"created": "Колекција је направљена", "created": "Колекција је направљена",
@@ -426,6 +426,13 @@
"save_to_collections": "Сачувај у збирке", "save_to_collections": "Сачувај у збирке",
"send_request": "Пошаљите упит", "send_request": "Пошаљите упит",
"title": "Захтев" "title": "Захтев"
},
"theme": {
"black": "Black theme",
"dark": "Dark theme",
"light": "Light theme",
"system": "System theme",
"title": "Theme"
} }
}, },
"show": { "show": {

View File

@@ -29,9 +29,9 @@
"send": "Skicka", "send": "Skicka",
"start": "Start", "start": "Start",
"stop": "Sluta", "stop": "Sluta",
"to_close": "to close",
"to_navigate": "to navigate", "to_navigate": "to navigate",
"to_select": "to select", "to_select": "to select",
"to_close": "to close",
"turn_off": "Stäng av", "turn_off": "Stäng av",
"turn_on": "Sätta på", "turn_on": "Sätta på",
"undo": "Ångra", "undo": "Ångra",
@@ -93,11 +93,11 @@
"generate_token": "Generera Token", "generate_token": "Generera Token",
"include_in_url": "Inkludera i URL", "include_in_url": "Inkludera i URL",
"learn": "Lära sig hur", "learn": "Lära sig hur",
"pass_key_by": "Pass by",
"password": "Lösenord", "password": "Lösenord",
"token": "Tecken", "token": "Tecken",
"type": "Godkännande typ", "type": "Godkännande typ",
"username": "Användarnamn", "username": "Användarnamn"
"pass_key_by": "Pass by"
}, },
"collection": { "collection": {
"created": "Samlingen skapad", "created": "Samlingen skapad",
@@ -183,8 +183,8 @@
"json_prettify_invalid_body": "Det gick inte att pryda en ogiltig kropp, lösa json -syntaxfel och försök igen", "json_prettify_invalid_body": "Det gick inte att pryda en ogiltig kropp, lösa json -syntaxfel och försök igen",
"network_error": "There seems to be a network error. Please try again.", "network_error": "There seems to be a network error. Please try again.",
"network_fail": "Det gick inte att skicka förfrågan", "network_fail": "Det gick inte att skicka förfrågan",
"script_fail": "Det gick inte att köra skriptet för förhandsbegäran",
"no_duration": "Ingen varaktighet", "no_duration": "Ingen varaktighet",
"script_fail": "Det gick inte att köra skriptet för förhandsbegäran",
"something_went_wrong": "Något gick fel" "something_went_wrong": "Något gick fel"
}, },
"export": { "export": {
@@ -215,11 +215,11 @@
"authorization": "Auktoriseringsrubriken genereras automatiskt när du skickar begäran.", "authorization": "Auktoriseringsrubriken genereras automatiskt när du skickar begäran.",
"generate_documentation_first": "Skapa dokumentation först", "generate_documentation_first": "Skapa dokumentation först",
"network_fail": "Det gick inte att nå API -slutpunkten. Kontrollera din nätverksanslutning och försök igen.", "network_fail": "Det gick inte att nå API -slutpunkten. Kontrollera din nätverksanslutning och försök igen.",
"script_fail": "Det verkar finnas ett fel i skriptet för förhandsbegäran. Kontrollera felet nedan och fixa skriptet därefter.",
"offline": "Du verkar vara offline. Data i denna arbetsyta är kanske inte uppdaterad.", "offline": "Du verkar vara offline. Data i denna arbetsyta är kanske inte uppdaterad.",
"offline_short": "Du verkar vara offline.", "offline_short": "Du verkar vara offline.",
"post_request_tests": "Testskript skrivs i JavaScript och körs efter att svaret har mottagits.", "post_request_tests": "Testskript skrivs i JavaScript och körs efter att svaret har mottagits.",
"pre_request_script": "Skript för förfrågan skrivs i JavaScript och körs innan begäran skickas.", "pre_request_script": "Skript för förfrågan skrivs i JavaScript och körs innan begäran skickas.",
"script_fail": "Det verkar finnas ett fel i skriptet för förhandsbegäran. Kontrollera felet nedan och fixa skriptet därefter.",
"tests": "Skriv ett testskript för att automatisera felsökning." "tests": "Skriv ett testskript för att automatisera felsökning."
}, },
"hide": { "hide": {
@@ -278,6 +278,7 @@
"app_settings": "App Settings", "app_settings": "App Settings",
"editor": "Editor", "editor": "Editor",
"editor_description": "Editors can add, edit, and delete requests.", "editor_description": "Editors can add, edit, and delete requests.",
"email_verification_mail": "A verification email has been sent to your email address. Please click on the link to verify your email address.",
"no_permission": "You do not have permission to perform this action.", "no_permission": "You do not have permission to perform this action.",
"owner": "Owner", "owner": "Owner",
"owner_description": "Owners can add, edit, and delete requests, collections and team members.", "owner_description": "Owners can add, edit, and delete requests, collections and team members.",
@@ -365,6 +366,7 @@
"official_proxy_hosting": "Officiell proxy är värd av Hoppscotch.", "official_proxy_hosting": "Officiell proxy är värd av Hoppscotch.",
"profile": "Profile", "profile": "Profile",
"profile_description": "Update your profile details", "profile_description": "Update your profile details",
"profile_email": "Email address",
"profile_name": "Profile name", "profile_name": "Profile name",
"proxy": "Ombud", "proxy": "Ombud",
"proxy_url": "Proxy -URL", "proxy_url": "Proxy -URL",
@@ -383,7 +385,8 @@
"theme": "Tema", "theme": "Tema",
"theme_description": "Anpassa ditt applikationstema.", "theme_description": "Anpassa ditt applikationstema.",
"use_experimental_url_bar": "Använd experimentell URL -fält med miljömarkering", "use_experimental_url_bar": "Använd experimentell URL -fält med miljömarkering",
"user": "Användare" "user": "Användare",
"verify_email": "Verify email"
}, },
"shortcut": { "shortcut": {
"general": { "general": {
@@ -423,6 +426,13 @@
"save_to_collections": "Spara i samlingar", "save_to_collections": "Spara i samlingar",
"send_request": "Skicka förfrågan", "send_request": "Skicka förfrågan",
"title": "Begäran" "title": "Begäran"
},
"theme": {
"black": "Black theme",
"dark": "Dark theme",
"light": "Light theme",
"system": "System theme",
"title": "Theme"
} }
}, },
"show": { "show": {

View File

@@ -29,9 +29,9 @@
"send": "Gönder", "send": "Gönder",
"start": "Başla", "start": "Başla",
"stop": "Dur", "stop": "Dur",
"to_close": "to close",
"to_navigate": "to navigate", "to_navigate": "to navigate",
"to_select": "to select", "to_select": "to select",
"to_close": "to close",
"turn_off": "Kapat", "turn_off": "Kapat",
"turn_on": "Aç", "turn_on": "Aç",
"undo": "Geri al", "undo": "Geri al",
@@ -93,11 +93,11 @@
"generate_token": "Jeton Oluştur", "generate_token": "Jeton Oluştur",
"include_in_url": "URL'ye dahil et", "include_in_url": "URL'ye dahil et",
"learn": "Nasıl öğrenilir", "learn": "Nasıl öğrenilir",
"pass_key_by": "Pass by",
"password": "Parola", "password": "Parola",
"token": "Jeton", "token": "Jeton",
"type": "Yetki Türü", "type": "Yetki Türü",
"username": "Kullanıcı adı", "username": "Kullanıcı adı"
"pass_key_by": "Pass by"
}, },
"collection": { "collection": {
"created": "Koleksiyon oluşturuldu", "created": "Koleksiyon oluşturuldu",
@@ -426,6 +426,13 @@
"save_to_collections": "Koleksiyonlara Kaydet", "save_to_collections": "Koleksiyonlara Kaydet",
"send_request": "İstek gönder", "send_request": "İstek gönder",
"title": "İstek" "title": "İstek"
},
"theme": {
"black": "Black theme",
"dark": "Dark theme",
"light": "Light theme",
"system": "System theme",
"title": "Theme"
} }
}, },
"show": { "show": {

View File

@@ -29,9 +29,9 @@
"send": "傳送", "send": "傳送",
"start": "開始", "start": "開始",
"stop": "停止", "stop": "停止",
"to_close": "to close",
"to_navigate": "to navigate", "to_navigate": "to navigate",
"to_select": "to select", "to_select": "to select",
"to_close": "to close",
"turn_off": "關閉", "turn_off": "關閉",
"turn_on": "開啟", "turn_on": "開啟",
"undo": "復原", "undo": "復原",
@@ -93,11 +93,11 @@
"generate_token": "產生權杖", "generate_token": "產生權杖",
"include_in_url": "包含在網址", "include_in_url": "包含在網址",
"learn": "瞭解更多", "learn": "瞭解更多",
"pass_key_by": "Pass by",
"password": "密碼", "password": "密碼",
"token": "權杖", "token": "權杖",
"type": "授權類型", "type": "授權類型",
"username": "使用者名稱", "username": "使用者名稱"
"pass_key_by": "Pass by"
}, },
"collection": { "collection": {
"created": "組合已建立", "created": "組合已建立",
@@ -183,8 +183,8 @@
"json_prettify_invalid_body": "無法美化無效的請求主體,處理 JSON 語法錯誤並重試", "json_prettify_invalid_body": "無法美化無效的請求主體,處理 JSON 語法錯誤並重試",
"network_error": "似乎有網路錯誤。請再試一次。", "network_error": "似乎有網路錯誤。請再試一次。",
"network_fail": "無法傳送請求", "network_fail": "無法傳送請求",
"script_fail": "Could not execute pre-request script",
"no_duration": "無持續時間", "no_duration": "無持續時間",
"script_fail": "Could not execute pre-request script",
"something_went_wrong": "發生了一些錯誤" "something_went_wrong": "發生了一些錯誤"
}, },
"export": { "export": {
@@ -215,11 +215,11 @@
"authorization": "授權標頭將會在您傳送請求時自動產生。", "authorization": "授權標頭將會在您傳送請求時自動產生。",
"generate_documentation_first": "請先產生文件", "generate_documentation_first": "請先產生文件",
"network_fail": "無法到達 API 端點。請檢查網路連線並重試。", "network_fail": "無法到達 API 端點。請檢查網路連線並重試。",
"script_fail": "It seems there is a glitch in the pre-request script. Check the error below and fix the script accordingly.",
"offline": "您似乎處於離線狀態,該工作區中的資料可能不是最新。", "offline": "您似乎處於離線狀態,該工作區中的資料可能不是最新。",
"offline_short": "您似乎處於離線狀態。", "offline_short": "您似乎處於離線狀態。",
"post_request_tests": "測試指令碼使用 JavaScript 編寫,並在收到回應後執行。", "post_request_tests": "測試指令碼使用 JavaScript 編寫,並在收到回應後執行。",
"pre_request_script": "預請求指令碼使用 JavaScript 編寫,並在請求傳送前執行。", "pre_request_script": "預請求指令碼使用 JavaScript 編寫,並在請求傳送前執行。",
"script_fail": "It seems there is a glitch in the pre-request script. Check the error below and fix the script accordingly.",
"tests": "編寫測試指令碼以自動除錯。" "tests": "編寫測試指令碼以自動除錯。"
}, },
"hide": { "hide": {
@@ -278,6 +278,7 @@
"app_settings": "應用程式設定", "app_settings": "應用程式設定",
"editor": "編輯者", "editor": "編輯者",
"editor_description": "編輯者可以新增、編輯和刪除請求。", "editor_description": "編輯者可以新增、編輯和刪除請求。",
"email_verification_mail": "A verification email has been sent to your email address. Please click on the link to verify your email address.",
"no_permission": "您沒有權限執行此操作。", "no_permission": "您沒有權限執行此操作。",
"owner": "擁有者", "owner": "擁有者",
"owner_description": "擁有者可以新增、編輯和刪除請求、組合和團隊成員。", "owner_description": "擁有者可以新增、編輯和刪除請求、組合和團隊成員。",
@@ -365,6 +366,7 @@
"official_proxy_hosting": "官方代理由 Hoppscotch 託管。", "official_proxy_hosting": "官方代理由 Hoppscotch 託管。",
"profile": "設定檔", "profile": "設定檔",
"profile_description": "更新您的設定檔詳細資料", "profile_description": "更新您的設定檔詳細資料",
"profile_email": "Email address",
"profile_name": "設定檔名稱", "profile_name": "設定檔名稱",
"proxy": "網路代理", "proxy": "網路代理",
"proxy_url": "代理網址", "proxy_url": "代理網址",
@@ -383,7 +385,8 @@
"theme": "主題", "theme": "主題",
"theme_description": "自定義您的應用程式主題。", "theme_description": "自定義您的應用程式主題。",
"use_experimental_url_bar": "使用帶有環境高亮的實驗性 URL 欄", "use_experimental_url_bar": "使用帶有環境高亮的實驗性 URL 欄",
"user": "使用者" "user": "使用者",
"verify_email": "Verify email"
}, },
"shortcut": { "shortcut": {
"general": { "general": {
@@ -423,6 +426,13 @@
"save_to_collections": "儲存到組合", "save_to_collections": "儲存到組合",
"send_request": "傳送請求", "send_request": "傳送請求",
"title": "請求" "title": "請求"
},
"theme": {
"black": "Black theme",
"dark": "Dark theme",
"light": "Light theme",
"system": "System theme",
"title": "Theme"
} }
}, },
"show": { "show": {

View File

@@ -29,9 +29,9 @@
"send": "Надіслати", "send": "Надіслати",
"start": "Почати", "start": "Почати",
"stop": "Стій", "stop": "Стій",
"to_close": "to close",
"to_navigate": "to navigate", "to_navigate": "to navigate",
"to_select": "to select", "to_select": "to select",
"to_close": "to close",
"turn_off": "Вимкнути", "turn_off": "Вимкнути",
"turn_on": "Ввімкнути", "turn_on": "Ввімкнути",
"undo": "Скасувати", "undo": "Скасувати",
@@ -93,11 +93,11 @@
"generate_token": "Створіть маркер", "generate_token": "Створіть маркер",
"include_in_url": "Включити в URL", "include_in_url": "Включити в URL",
"learn": "Дізнайтесь, як", "learn": "Дізнайтесь, як",
"pass_key_by": "Pass by",
"password": "Пароль", "password": "Пароль",
"token": "Токен", "token": "Токен",
"type": "Тип авторизації", "type": "Тип авторизації",
"username": "Ім'я користувача", "username": "Ім'я користувача"
"pass_key_by": "Pass by"
}, },
"collection": { "collection": {
"created": "Колекція створена", "created": "Колекція створена",
@@ -426,6 +426,13 @@
"save_to_collections": "Зберегти в колекції", "save_to_collections": "Зберегти в колекції",
"send_request": "Відправляти запит", "send_request": "Відправляти запит",
"title": "Запит" "title": "Запит"
},
"theme": {
"black": "Black theme",
"dark": "Dark theme",
"light": "Light theme",
"system": "System theme",
"title": "Theme"
} }
}, },
"show": { "show": {

View File

@@ -29,9 +29,9 @@
"send": "Gửi", "send": "Gửi",
"start": "Bắt đầu", "start": "Bắt đầu",
"stop": "Ngừng lại", "stop": "Ngừng lại",
"to_close": "to close",
"to_navigate": "to navigate", "to_navigate": "to navigate",
"to_select": "to select", "to_select": "to select",
"to_close": "to close",
"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",
@@ -93,11 +93,11 @@
"generate_token": "Tạo mã thông báo", "generate_token": "Tạo mã thông báo",
"include_in_url": "Bao gồm trong URL", "include_in_url": "Bao gồm trong URL",
"learn": "Học cách", "learn": "Học cách",
"pass_key_by": "Pass by",
"password": "Mật khẩu", "password": "Mật khẩu",
"token": "Mã thông báo", "token": "Mã thông báo",
"type": "Loại ủy quyền", "type": "Loại ủy quyền",
"username": "tên tài khoản", "username": "tên tài khoản"
"pass_key_by": "Pass by"
}, },
"collection": { "collection": {
"created": "Bộ sưu tập đã được tạo", "created": "Bộ sưu tập đã được tạo",
@@ -426,6 +426,13 @@
"save_to_collections": "Lưu vào Bộ sưu tập", "save_to_collections": "Lưu vào Bộ sưu tập",
"send_request": "Gửi yêu cầu", "send_request": "Gửi yêu cầu",
"title": "Yêu cầu" "title": "Yêu cầu"
},
"theme": {
"black": "Black theme",
"dark": "Dark theme",
"light": "Light theme",
"system": "System theme",
"title": "Theme"
} }
}, },
"show": { "show": {