Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions docs/app/components/content/SupportedLanguages.vue
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ function getEmojiFlag(locale: string): string {
el: 'gr', // Greek -> Greece
en: 'gb', // English -> Great Britain
et: 'ee', // Estonian -> Estonia
gl: 'es', // Galician -> Spain
he: 'il', // Hebrew -> Israel
hi: 'in', // Hindi -> India
hy: 'am', // Armenian -> Armenia
Expand Down
131 changes: 131 additions & 0 deletions src/runtime/locale/gl.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,131 @@
import type { Messages } from '../types'
import { defineLocale } from '../composables/defineLocale'

export default defineLocale<Messages>({
name: 'Galego',
code: 'gl',
messages: {
alert: {
close: 'Pechar'
},
authForm: {
hidePassword: 'Ocultar contrasinal',
showPassword: 'Amosar contrasinal',
submit: 'Continuar'
},
banner: {
close: 'Pechar'
},
calendar: {
nextMonth: 'Mes seguinte',
nextYear: 'Ano seguinte',
prevMonth: 'Mes anterior',
prevYear: 'Ano anterior'
},
carousel: {
dots: 'Escoller diapositiva a amostrar',
goto: 'Ir á diapositiva {slide}',
next: 'Seguinte',
prev: 'Anterior'
},
chatPrompt: {
placeholder: 'Escribe a túa mensaxe aquí…'
},
chatPromptSubmit: {
label: 'Enviar'
},
colorMode: {
dark: 'Oscuro',
light: 'Claro',
switchToDark: 'Cambiar a modo oscuro',
switchToLight: 'Cambiar a modo claro',
system: 'Sistema'
},
commandPalette: {
back: 'Atrás',
close: 'Pechar',
noData: 'Sen datos',
noMatch: 'Non hai datos coincidentes',
placeholder: 'Escribe un comando ou busca…'
},
contentSearch: {
links: 'Ligazóns',
theme: 'Tema'
},
contentSearchButton: {
label: 'Buscar…'
},
contentToc: {
title: 'Nesta páxina'
},
dashboardSearch: {
theme: 'Tema'
},
dashboardSearchButton: {
label: 'Buscar…'
},
dashboardSidebarCollapse: {
collapse: 'Contraer barra lateral',
expand: 'Despregar barra lateral'
},
dashboardSidebarToggle: {
close: 'Pechar barra lateral',
open: 'Abrir barra lateral'
},
error: {
clear: 'Volver ao inicio'
},
fileUpload: {
removeFile: 'Eliminar {filename}'
},
header: {
close: 'Pechar menú',
open: 'Abrir menú'
},
inputMenu: {
create: 'Crear "{label}"',
noData: 'Sen datos',
noMatch: 'Non hai datos coincidentes'
},
inputNumber: {
decrement: 'Diminuír',
increment: 'Aumentar'
},
modal: {
close: 'Pechar'
},
pricingTable: {
caption: 'Comparación de plans de prezos'
},
prose: {
codeCollapse: {
closeText: 'Contraer',
name: 'código',
openText: 'Despregar'
},
collapsible: {
closeText: 'Ocultar',
name: 'propiedades',
openText: 'Amosar'
},
pre: {
copy: 'Copiar código ao portapapeis'
}
},
selectMenu: {
create: 'Crear "{label}"',
noData: 'Sen datos',
noMatch: 'Non hai datos coincidentes',
search: 'Buscar…'
},
slideover: {
close: 'Pechar'
},
table: {
noData: 'Sen datos'
},
toast: {
close: 'Pechar'
}
}
})
1 change: 1 addition & 0 deletions src/runtime/locale/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ export { default as et } from './et'
export { default as fa_ir } from './fa_ir'
export { default as fi } from './fi'
export { default as fr } from './fr'
export { default as gl } from './gl'
export { default as he } from './he'
export { default as hi } from './hi'
export { default as hr } from './hr'
Expand Down
Loading