@sveltia/ui 0.53.0 → 0.54.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/toast/toast.svelte +3 -3
- package/dist/locales/fi.yaml +113 -0
- package/dist/locales/tr.yaml +113 -0
- package/package.json +1 -1
|
@@ -91,9 +91,9 @@
|
|
|
91
91
|
|
|
92
92
|
// eslint-disable-next-line jsdoc/require-jsdoc
|
|
93
93
|
const setMode = () => {
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
94
|
+
// In the RTL layout, a `bottom-right`-positioned toast is actually displayed in the
|
|
95
|
+
// bottom-left corner thanks to the `inset-inline-start/end` CSS properties
|
|
96
|
+
position = mql.matches ? 'bottom-center' : 'bottom-right';
|
|
97
97
|
};
|
|
98
98
|
|
|
99
99
|
setMode();
|
|
@@ -0,0 +1,113 @@
|
|
|
1
|
+
# Dialog action button labels
|
|
2
|
+
ok: OK
|
|
3
|
+
cancel: Peruuta
|
|
4
|
+
close: Sulje
|
|
5
|
+
|
|
6
|
+
# Button to clear content, e.g. search input or calendar date
|
|
7
|
+
clear: Tyhjennä
|
|
8
|
+
|
|
9
|
+
# Text editor dialog buttons for link/image insertion
|
|
10
|
+
insert: Lisää
|
|
11
|
+
update: Päivitä
|
|
12
|
+
remove: Poista
|
|
13
|
+
|
|
14
|
+
# Combobox dropdown toggle button aria-labels
|
|
15
|
+
collapse: Piilota
|
|
16
|
+
expand: Näytä
|
|
17
|
+
|
|
18
|
+
# Infobar/toast dismiss button label
|
|
19
|
+
dismiss: Hylkää
|
|
20
|
+
|
|
21
|
+
# Calendar component
|
|
22
|
+
calendar:
|
|
23
|
+
# View switcher group aria-labels and navigation button aria-labels
|
|
24
|
+
year: Vuosi
|
|
25
|
+
previous_decade: Edellinen vuosikymmen
|
|
26
|
+
next_decade: Seuraava vuosikymmen
|
|
27
|
+
month: Kuukausi
|
|
28
|
+
previous_month: Edellinen kuukausi
|
|
29
|
+
next_month: Seuraava kuukausi
|
|
30
|
+
# “Today” button label in footer
|
|
31
|
+
today: Tänään
|
|
32
|
+
|
|
33
|
+
# Split button component
|
|
34
|
+
split_button:
|
|
35
|
+
# Wrapper aria-label, e.g. “Save Options” when primary button is “Save”
|
|
36
|
+
x_options: '{$name}-valinnat'
|
|
37
|
+
# Dropdown toggle aria-label
|
|
38
|
+
more_options: Lisävalinnat
|
|
39
|
+
|
|
40
|
+
# Combobox component
|
|
41
|
+
combobox:
|
|
42
|
+
# Placeholder when no option is selected
|
|
43
|
+
select_an_option: Valitse vaihtoehto…
|
|
44
|
+
# Filter input aria-label
|
|
45
|
+
filter_options: Suodata vaihtoehtoja
|
|
46
|
+
# Empty state message when filter has no matches
|
|
47
|
+
no_matching_options: Vastaavia vaihtoehtoja ei löytynyt
|
|
48
|
+
|
|
49
|
+
# Number input component
|
|
50
|
+
number_input:
|
|
51
|
+
# Spin button aria-labels for incrementing/decrementing the number value
|
|
52
|
+
increase: Lisää
|
|
53
|
+
decrease: Vähennä
|
|
54
|
+
|
|
55
|
+
# Password input component
|
|
56
|
+
password_input:
|
|
57
|
+
# Visibility toggle button aria-labels
|
|
58
|
+
show_password: Näytä salasana
|
|
59
|
+
hide_password: Piilota salasana
|
|
60
|
+
|
|
61
|
+
# Secret input component (API keys, tokens, etc.)
|
|
62
|
+
secret_input:
|
|
63
|
+
# Visibility toggle button aria-labels
|
|
64
|
+
show_secret: Näytä salaisuus
|
|
65
|
+
hide_secret: Piilota salaisuus
|
|
66
|
+
|
|
67
|
+
# Select tags component (multi-select)
|
|
68
|
+
select_tags:
|
|
69
|
+
# Listbox aria-label
|
|
70
|
+
selected_options: Valitut vaihtoehdot
|
|
71
|
+
# Remove button aria-label, e.g. “Remove Option 1”
|
|
72
|
+
remove_x: 'Poista {$name}'
|
|
73
|
+
|
|
74
|
+
# Text editor component
|
|
75
|
+
text_editor:
|
|
76
|
+
# Toolbar aria-labels
|
|
77
|
+
text_editor: Tekstieditori
|
|
78
|
+
code_editor: Koodieditori
|
|
79
|
+
# Block style menu button and menu aria-labels
|
|
80
|
+
text_style_options: Tekstimuotoilun valinnat
|
|
81
|
+
show_text_style_options: Näytä tekstimuotoilun valinnat
|
|
82
|
+
# Block style menu items
|
|
83
|
+
paragraph: Kappale
|
|
84
|
+
heading_1: Otsikko 1
|
|
85
|
+
heading_2: Otsikko 2
|
|
86
|
+
heading_3: Otsikko 3
|
|
87
|
+
heading_4: Otsikko 4
|
|
88
|
+
heading_5: Otsikko 5
|
|
89
|
+
heading_6: Otsikko 6
|
|
90
|
+
bulleted_list: Luettelomerkitty luettelo
|
|
91
|
+
numbered_list: Numeroitu luettelo
|
|
92
|
+
blockquote: Lainaus
|
|
93
|
+
code_block: Koodilohko
|
|
94
|
+
# Inline style button aria-labels
|
|
95
|
+
bold: Lihavointi
|
|
96
|
+
italic: Kursivointi
|
|
97
|
+
strikethrough: Yliviivaus
|
|
98
|
+
code: Koodi
|
|
99
|
+
link: Linkki
|
|
100
|
+
# Link dialog title
|
|
101
|
+
insert_link: Lisää linkki
|
|
102
|
+
update_link: Päivitä linkki
|
|
103
|
+
# Link dialog input field labels
|
|
104
|
+
text: Teksti
|
|
105
|
+
url: URL-osoite
|
|
106
|
+
# Markdown mode toggle button aria-label
|
|
107
|
+
edit_in_markdown: Muokkaa Markdown-muodossa
|
|
108
|
+
# Error message when rich text conversion fails
|
|
109
|
+
converter_error: Rikastettua tekstimuotoa ei voi ottaa käyttöön. Käytä sen sijaan muotoilemattoman tekstin editoria.
|
|
110
|
+
# Language selector aria-label
|
|
111
|
+
language: Kieli
|
|
112
|
+
# Plain text mode option in language selector
|
|
113
|
+
plain_text: Muotoilematon teksti
|
|
@@ -0,0 +1,113 @@
|
|
|
1
|
+
# Dialog action button labels
|
|
2
|
+
ok: Tamam
|
|
3
|
+
cancel: İptal
|
|
4
|
+
close: Kapat
|
|
5
|
+
|
|
6
|
+
# Button to clear content, e.g. search input or calendar date
|
|
7
|
+
clear: Temizle
|
|
8
|
+
|
|
9
|
+
# Text editor dialog buttons for link/image insertion
|
|
10
|
+
insert: Ekle
|
|
11
|
+
update: Güncelle
|
|
12
|
+
remove: Kaldır
|
|
13
|
+
|
|
14
|
+
# Combobox dropdown toggle button aria-labels
|
|
15
|
+
collapse: Daralt
|
|
16
|
+
expand: Genişlet
|
|
17
|
+
|
|
18
|
+
# Infobar/toast dismiss button label
|
|
19
|
+
dismiss: Kapat
|
|
20
|
+
|
|
21
|
+
# Calendar component
|
|
22
|
+
calendar:
|
|
23
|
+
# View switcher group aria-labels and navigation button aria-labels
|
|
24
|
+
year: Yıl
|
|
25
|
+
previous_decade: Önceki On Yıl
|
|
26
|
+
next_decade: Sonraki On Yıl
|
|
27
|
+
month: Ay
|
|
28
|
+
previous_month: Önceki Ay
|
|
29
|
+
next_month: Sonraki Ay
|
|
30
|
+
# “Today” button label in footer
|
|
31
|
+
today: Bugün
|
|
32
|
+
|
|
33
|
+
# Split button component
|
|
34
|
+
split_button:
|
|
35
|
+
# Wrapper aria-label, e.g. “Save Options” when primary button is “Save”
|
|
36
|
+
x_options: '{$name} Seçenekleri'
|
|
37
|
+
# Dropdown toggle aria-label
|
|
38
|
+
more_options: Diğer Seçenekler
|
|
39
|
+
|
|
40
|
+
# Combobox component
|
|
41
|
+
combobox:
|
|
42
|
+
# Placeholder when no option is selected
|
|
43
|
+
select_an_option: Bir seçenek seçin…
|
|
44
|
+
# Filter input aria-label
|
|
45
|
+
filter_options: Seçenekleri Filtrele
|
|
46
|
+
# Empty state message when filter has no matches
|
|
47
|
+
no_matching_options: Eşleşen seçenek bulunamadı
|
|
48
|
+
|
|
49
|
+
# Number input component
|
|
50
|
+
number_input:
|
|
51
|
+
# Spin button aria-labels for incrementing/decrementing the number value
|
|
52
|
+
increase: Artır
|
|
53
|
+
decrease: Azalt
|
|
54
|
+
|
|
55
|
+
# Password input component
|
|
56
|
+
password_input:
|
|
57
|
+
# Visibility toggle button aria-labels
|
|
58
|
+
show_password: Şifreyi Göster
|
|
59
|
+
hide_password: Şifreyi Gizle
|
|
60
|
+
|
|
61
|
+
# Secret input component (API keys, tokens, etc.)
|
|
62
|
+
secret_input:
|
|
63
|
+
# Visibility toggle button aria-labels
|
|
64
|
+
show_secret: Gizli Bilgiyi Göster
|
|
65
|
+
hide_secret: Gizli Bilgiyi Gizle
|
|
66
|
+
|
|
67
|
+
# Select tags component (multi-select)
|
|
68
|
+
select_tags:
|
|
69
|
+
# Listbox aria-label
|
|
70
|
+
selected_options: Seçilen Seçenekler
|
|
71
|
+
# Remove button aria-label, e.g. “Remove Option 1”
|
|
72
|
+
remove_x: '{$name} Öğesini Kaldır'
|
|
73
|
+
|
|
74
|
+
# Text editor component
|
|
75
|
+
text_editor:
|
|
76
|
+
# Toolbar aria-labels
|
|
77
|
+
text_editor: Metin Düzenleyici
|
|
78
|
+
code_editor: Kod Düzenleyici
|
|
79
|
+
# Block style menu button and menu aria-labels
|
|
80
|
+
text_style_options: Metin Stili Seçenekleri
|
|
81
|
+
show_text_style_options: Metin Stili Seçeneklerini Göster
|
|
82
|
+
# Block style menu items
|
|
83
|
+
paragraph: Paragraf
|
|
84
|
+
heading_1: Başlık 1
|
|
85
|
+
heading_2: Başlık 2
|
|
86
|
+
heading_3: Başlık 3
|
|
87
|
+
heading_4: Başlık 4
|
|
88
|
+
heading_5: Başlık 5
|
|
89
|
+
heading_6: Başlık 6
|
|
90
|
+
bulleted_list: Madde İşaretli Liste
|
|
91
|
+
numbered_list: Numaralı Liste
|
|
92
|
+
blockquote: Alıntı
|
|
93
|
+
code_block: Kod Bloğu
|
|
94
|
+
# Inline style button aria-labels
|
|
95
|
+
bold: Kalın
|
|
96
|
+
italic: İtalik
|
|
97
|
+
strikethrough: Üstü Çizili
|
|
98
|
+
code: Kod
|
|
99
|
+
link: Bağlantı
|
|
100
|
+
# Link dialog title
|
|
101
|
+
insert_link: Bağlantı Ekle
|
|
102
|
+
update_link: Bağlantıyı Güncelle
|
|
103
|
+
# Link dialog input field labels
|
|
104
|
+
text: Metin
|
|
105
|
+
url: URL
|
|
106
|
+
# Markdown mode toggle button aria-label
|
|
107
|
+
edit_in_markdown: Markdown ile Düzenle
|
|
108
|
+
# Error message when rich text conversion fails
|
|
109
|
+
converter_error: Zengin metin modu etkinleştirilemedi. Lütfen düz metin düzenleyicisini kullanın.
|
|
110
|
+
# Language selector aria-label
|
|
111
|
+
language: Dil
|
|
112
|
+
# Plain text mode option in language selector
|
|
113
|
+
plain_text: Düz Metin
|