Added font assets

This commit is contained in:
Liyas Thomas
2019-11-29 04:24:36 +05:30
parent fe14286bc8
commit 560bdb139a
10 changed files with 144 additions and 85 deletions

View File

@@ -1,2 +1,60 @@
@import url("https://fonts.googleapis.com/css?family=Poppins:500,700|Roboto+Mono:400&display=swap"); // @import url("https://fonts.googleapis.com/css?family=Poppins:500,700|Roboto+Mono:400&display=swap");
@import url("https://fonts.googleapis.com/icon?family=Material+Icons&display=swap"); // @import url("https://fonts.googleapis.com/icon?family=Material+Icons&display=swap");
/* Material Design Icons */
@font-face {
font-family: "Material Icons";
font-display: swap;
font-style: normal;
font-weight: 400;
src: url("~assets/fonts/material-icons-v48.woff2") format("woff2");
}
.material-icons {
font-family: "Material Icons";
font-weight: normal;
font-style: normal;
font-size: 24px;
line-height: 1;
letter-spacing: normal;
text-transform: none;
display: inline-block;
white-space: nowrap;
word-wrap: normal;
direction: ltr;
-webkit-font-feature-settings: "liga";
-webkit-font-smoothing: antialiased;
}
/* poppins-500 - latin */
@font-face {
font-family: "Poppins";
font-style: normal;
font-weight: 500;
src: local("Poppins Medium"), local("Poppins-Medium"),
url("~assets/fonts/poppins-v9-latin-500.woff2") format("woff2"),
/* Chrome 26+, Opera 23+, Firefox 39+ */
url("~assets/fonts/poppins-v9-latin-500.woff") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* poppins-700 - latin */
@font-face {
font-family: "Poppins";
font-style: normal;
font-weight: 700;
src: local("Poppins Bold"), local("Poppins-Bold"),
url("~assets/fonts/poppins-v9-latin-700.woff2") format("woff2"),
/* Chrome 26+, Opera 23+, Firefox 39+ */
url("~assets/fonts/poppins-v9-latin-700.woff") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* roboto-mono-regular - latin */
@font-face {
font-family: "Roboto Mono";
font-style: normal;
font-weight: 400;
src: local("Roboto Mono"), local("RobotoMono-Regular"),
url("~assets/fonts/roboto-mono-v7-latin-regular.woff2") format("woff2"),
/* Chrome 26+, Opera 23+, Firefox 39+ */
url("~assets/fonts/roboto-mono-v7-latin-regular.woff") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@@ -1,84 +1,84 @@
export default { export default {
home: 'Inicio', home: "Inicio",
realtime: 'Tiempo real', realtime: "Tiempo real",
graphql: 'GraphQL', graphql: "GraphQL",
settings: 'Ajustes', settings: "Ajustes",
request: 'Petición', request: "Petición",
install_pwa: 'Instalar PWA', install_pwa: "Instalar PWA",
support_us: 'Ayúdanos', support_us: "Ayúdanos",
tweet: 'Tweet', tweet: "Tweet",
options: 'Opciones', options: "Opciones",
communication: 'Comunicación', communication: "Comunicación",
endpoint: 'Endpoint', endpoint: "Endpoint",
schema: 'Esquema', schema: "Esquema",
theme: 'Tema', theme: "Tema",
subscribe: 'Subscribirse', subscribe: "Subscribirse",
choose_language: 'Seleccione un idioma', choose_language: "Seleccione un idioma",
shortcuts: 'Atajos', shortcuts: "Atajos",
send_request: 'Enviar petición', send_request: "Enviar petición",
save_to_collections: 'Guardar en las Colecciones', save_to_collections: "Guardar en las Colecciones",
copy_request_link: 'Copiar enlace de la petición', copy_request_link: "Copiar enlace de la petición",
reset_request: 'Reiniciar Petición', reset_request: "Reiniciar Petición",
support_us_on: 'Ayúdanos en', support_us_on: "Ayúdanos en",
open_collective: 'Open Collective', open_collective: "Open Collective",
paypal: 'PayPal', paypal: "PayPal",
patreon: 'Patreon', patreon: "Patreon",
javascript_code: 'Código JavaScript', javascript_code: "Código JavaScript",
method: 'Método', method: "Método",
path: 'Ruta', path: "Ruta",
label: 'Etiqueta', label: "Etiqueta",
again: 'De nuevo', again: "De nuevo",
content_type: 'Tipo de Contenido', content_type: "Tipo de Contenido",
raw_input: 'Datos sin Procesar', raw_input: "Datos sin Procesar",
parameter_list: 'Lista de Parámetros', parameter_list: "Lista de Parámetros",
raw_request_body: 'Cuerpo de la Solicitud sin Procesar', raw_request_body: "Cuerpo de la Solicitud sin Procesar",
show_code: 'Mostrar el código', show_code: "Mostrar el código",
hide_code: 'Ocultar el código', hide_code: "Ocultar el código",
show_prerequest_script: 'Mostrar Script pre solicitud', show_prerequest_script: "Mostrar Script pre solicitud",
hide_prerequest_script: 'Ocultar Script pre solicitud', hide_prerequest_script: "Ocultar Script pre solicitud",
authentication: 'Autenticación', authentication: "Autenticación",
authentication_type: 'Tipo de autenticación', authentication_type: "Tipo de autenticación",
include_in_url: 'Incluir en el URL', include_in_url: "Incluir en el URL",
parameters: 'Parámetros', parameters: "Parámetros",
expand_response: 'Ampliar Respuesta', expand_response: "Ampliar Respuesta",
collapse_response: 'Contraer Respuesta', collapse_response: "Contraer Respuesta",
hide_preview: 'Ocultar la vista previa', hide_preview: "Ocultar la vista previa",
preview_html: 'Vista Previa del HTML', preview_html: "Vista Previa del HTML",
history: 'Historial', history: "Historial",
collections: 'Colecciones', collections: "Colecciones",
import_curl: 'Importar cURL', import_curl: "Importar cURL",
import: 'Importar', import: "Importar",
generate_code: 'Generar código', generate_code: "Generar código",
request_type: 'Tipo de Petición', request_type: "Tipo de Petición",
generated_code: 'Código Generado', generated_code: "Código Generado",
status: 'Estado', status: "Estado",
headers: 'Cabeceras', headers: "Cabeceras",
websocket: 'WebSocket', websocket: "WebSocket",
waiting_for_connection: '(esperando por conexión)', waiting_for_connection: "(esperando por conexión)",
message: 'Mensaje', message: "Mensaje",
sse: 'SSE', sse: "SSE",
server: 'Servidor', server: "Servidor",
events: 'Eventos', events: "Eventos",
url: 'URL', url: "URL",
get_schema: 'Obtener esquema', get_schema: "Obtener esquema",
header_list: 'Lista de Cabeceras', header_list: "Lista de Cabeceras",
add_new: 'Agregar nuevo', add_new: "Agregar nuevo",
response: 'Respuesta', response: "Respuesta",
query: 'Consulta', query: "Consulta",
queries: 'Consultas', queries: "Consultas",
mutations: 'Mutaciones', mutations: "Mutaciones",
subscriptions: 'Subscripciones', subscriptions: "Subscripciones",
types: 'Tipos', types: "Tipos",
send: 'Enviar', send: "Enviar",
background: 'Fondo', background: "Fondo",
color: 'Color', color: "Color",
labels: 'Etiquetas', labels: "Etiquetas",
multi_color: 'Multicolor', multi_color: "Multicolor",
enabled: 'Habilitado', enabled: "Habilitado",
disabled: 'Deshabilitado', disabled: "Deshabilitado",
proxy: 'Proxy', proxy: "Proxy",
postwoman_official_proxy_hosting: 'Proxy Oficial de Postwoman está hospedado en ApolloTV.', postwoman_official_proxy_hosting:
read_the: 'Leer la', "Proxy Oficial de Postwoman está hospedado en ApolloTV.",
apollotv_privacy_policy: 'Política de Privacidad de ApolloTV' read_the: "Leer la",
apollotv_privacy_policy: "Política de Privacidad de ApolloTV"
}; };

View File

@@ -77,7 +77,8 @@ export default {
enabled: "Aktif", enabled: "Aktif",
disabled: "Non-aktif", disabled: "Non-aktif",
proxy: "Proxy", proxy: "Proxy",
postwoman_official_proxy_hosting: "Proxy Resmi Postwoman's dipersembahkan oleh ApolloTV.", postwoman_official_proxy_hosting:
"Proxy Resmi Postwoman's dipersembahkan oleh ApolloTV.",
read_the: "Baca", read_the: "Baca",
apollotv_privacy_policy: "Kebijakan Privasi ApolloTV" apollotv_privacy_policy: "Kebijakan Privasi ApolloTV"
}; };