Skip to content

Commit

Permalink
feat(i18n): 🌐i18n pl support
Browse files Browse the repository at this point in the history
  • Loading branch information
Leecason authored Feb 21, 2020
2 parents c3d839e + 7daf220 commit 578c2fe
Show file tree
Hide file tree
Showing 2 changed files with 144 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/i18n/index.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
import en from './en';
import zh from './zh';
import pl from './pl';
import { warn } from '../utils/console';

const defaultLang = 'en';
const dictionary = {
en,
zh,
pl,
};

let currentLang = dictionary[defaultLang];
Expand Down
142 changes: 142 additions & 0 deletions src/i18n/pl/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,142 @@
export default {
editor: {
extensions: {
Bold: {
tooltip: 'Pogrubienie',
},
Underline: {
tooltip: 'Podkreślenie',
},
Italic: {
tooltip: 'Kursywa',
},
Strike: {
tooltip: 'Przekreślenie',
},
Heading: {
tooltip: 'Nagłówek',
buttons: {
paragraph: 'Paragraf',
heading: 'Nagłówek',
}
},
Blockquote: {
tooltip: 'Cytat',
},
CodeBlock: {
tooltip: 'Kod',
},
Link: {
tooltip: 'Dodaj link',
control: {
title: 'Link',
placeholder: 'Źródło',
confirm: 'Dodaj',
cancel: 'Zamknij',
},
},
Image: {
tooltip: 'Dodaj obraz',
buttons: {
insert_by_url: 'Dodaj obraz online',
upload_image: 'Dodaj obraz z dysku',
},
control: {
insert_by_url: {
title: 'Dodawanie obrazu online',
placeholder: 'URL obrazu',
confirm: 'Dodaj',
cancel: 'Zamknij',
invalid_url: 'Proszę podać prawidłowy link prowadzący do obrazu',
},
upload_image: {
title: 'Dodawanie obrazu z dysku',
button: 'Wskaż obraz lub przeciągnij go tutaj',
},
},
},
Iframe: {
tooltip: 'Dodaj film',
control: {
title: 'Dodaj film',
placeholder: 'URL filmu',
confirm: 'Dodaj',
cancel: 'Zamknij',
},
},
BulletList: {
tooltip: 'Lista wypunktowana',
},
OrderedList: {
tooltip: 'Lista uporządkowana',
},
TodoList: {
tooltip: 'Lista rzeczy do zrobienia',
},
TextAlign: {
buttons: {
align_left: {
tooltip: 'Wyrównaj do lewej',
},
align_center: {
tooltip: 'Wyśrodkuj',
},
align_right: {
tooltip: 'Wyrównaj do prawej',
},
align_justify: {
tooltip: 'Wyjustuj',
},
},
},
TextColor: {
tooltip: 'Kolor tekstu',
reset: 'Wyczyść',
},
TextHighlight: {
tooltip: 'Podświetlenie tekstu',
reset: 'Przezroczysty',
},
LineHeight: {
tooltip: 'Wysokość linii',
},
Table: {
tooltip: 'Tabela',
buttons: {
insert_table: 'Dodaj tabelę',
add_column_before: 'Dodaj kolumnę przed',
add_column_afer: 'Dodaj kolumnę za',
delete_column: 'Usuń kolumnę',
add_row_before: 'Dodaj wiersz przed',
add_row_after: 'Dodaj wiersz za',
delete_row: 'Usuń wiersz',
merge_cells: 'Połącz komórki',
split_cell: 'Rozdziel komórki',
delete_table: 'Usuń tabelę',
},
},
Indent: {
buttons: {
indent: {
tooltip: 'Zwiększ wcięcie',
},
outdent: {
tooltip: 'Zmniejsz wcięcie',
},
},
},
FormatClear: {
tooltip: 'Wyczyść formatowanie',
},
HorizontalRule: {
tooltip: 'Linia pozioma',
},
History: {
tooltip: {
undo: 'Cofnij',
redo: 'Powtórz',
},
},
},
},
};

0 comments on commit 578c2fe

Please sign in to comment.