Skip to content

Commit

Permalink
feat(sk): Added sk language to i18n (#327)
Browse files Browse the repository at this point in the history
* Added sk language to i18n

#327
  • Loading branch information
davidurco authored Mar 11, 2022
1 parent 11b9db1 commit e76c381
Show file tree
Hide file tree
Showing 2 changed files with 149 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/i18n/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ import sv from './sv'
import cs from './cs'
import it from './it'
import el from './el'
import sk from './sk'

import ConsoleLogger from '~/logging/ConsoleLogger'
import { TiptapVuetifyPlugin } from '~/main'
Expand All @@ -42,7 +43,8 @@ export const dictionary = {
sv,
cs,
it,
el
el,
sk
}

export function getCurrentLang () {
Expand Down
146 changes: 146 additions & 0 deletions src/i18n/sk/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,146 @@
export default {
extensions: {
Blockquote: {
buttons: {
blockquote: {
tooltip: 'Bloková citácia'
}
}
},
Bold: {
buttons: {
bold: {
tooltip: 'Tučné'
}
}
},
BulletList: {
buttons: {
bulletList: {
tooltip: 'Zoznam s odrážkami'
}
}
},
Code: {
buttons: {
code: {
tooltip: 'Kód'
}
}
},
CodeBlock: {
buttons: {
codeBlock: {
tooltip: 'Blok kódu'
}
}
},
History: {
buttons: {
undo: {
tooltip: 'Späť'
},
redo: {
tooltip: 'Znova'
}
}
},
HorizontalRule: {
buttons: {
horizontalRule: {
tooltip: 'Horizontálny oddeľovač'
}
}
},
Italic: {
buttons: {
italic: {
tooltip: 'Kurzíva'
}
}
},
OrderedList: {
buttons: {
orderedList: {
tooltip: 'Číslovaný zoznam'
}
}
},
Paragraph: {
buttons: {
paragraph: {
tooltip: 'Odstavec'
}
}
},
Strike: {
buttons: {
strike: {
tooltip: 'Preškrtnuté'
}
}
},
Underline: {
buttons: {
underline: {
tooltip: 'Podčiarknuté'
}
}
},
Heading: {
buttons: {
heading: {
tooltip: ({ level }) => level + '. úroveň nadpisu'
}
}
},
Link: {
buttons: {
isActive: {
tooltip: 'Zmeniť odkaz'
},
notActive: {
tooltip: 'Pridať odkaz'
}
},
window: {
title: 'Správa odkazu',
form: {
hrefLabel: 'Odkaz'
},
buttons: {
close: 'Zavrieť',
remove: 'Odstrániť',
apply: 'Použiť'
}
}
},
Image: {
buttons: {
tooltip: 'Obrázok'
},
window: {
title: 'Pridať obrázok',
form: {
sourceLink: 'Adresa obrázka',
altText: 'Alternatívny text',
addImage: 'Pridať obrázok'
},
imageUpload: {
instruction: 'Vyberte súbor(y) alebo ho(ich) potiahnite sem.'
},
buttons: {
close: 'Zavrieť',
apply: 'Použiť'
}
}
},
TodoList: {
buttons: {
todoList: {
tooltip: 'Zoznam TODO'
}
}
}
}
}

0 comments on commit e76c381

Please sign in to comment.