@bobfrankston/rmfmail 1.2.274 → 1.2.277

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.
Files changed (112) hide show
  1. package/.commitmsg +31 -0
  2. package/bin/build-tinymce.js +27 -0
  3. package/client/android-bootstrap.bundle.js +169 -0
  4. package/client/android-bootstrap.bundle.js.map +2 -2
  5. package/client/app.bundle.js +231 -23
  6. package/client/app.bundle.js.map +4 -4
  7. package/client/app.js +81 -1
  8. package/client/app.js.map +1 -1
  9. package/client/app.ts +75 -1
  10. package/client/components/invite-card.js +107 -0
  11. package/client/components/invite-card.js.map +1 -0
  12. package/client/components/invite-card.ts +119 -0
  13. package/client/components/message-viewer.js +42 -17
  14. package/client/components/message-viewer.js.map +1 -1
  15. package/client/components/message-viewer.ts +42 -16
  16. package/client/compose/compose.bundle.js +90 -2
  17. package/client/compose/compose.bundle.js.map +4 -4
  18. package/client/compose/compose.js +26 -1
  19. package/client/compose/compose.js.map +1 -1
  20. package/client/compose/compose.ts +22 -1
  21. package/client/compose/editor.js +12 -1
  22. package/client/compose/editor.js.map +1 -1
  23. package/client/compose/editor.ts +17 -2
  24. package/client/index.html +1 -0
  25. package/client/lib/rmf-tiny.js +3 -0
  26. package/client/lib/tinymce/langs/ar-SA.js +440 -0
  27. package/client/lib/tinymce/langs/ar.js +441 -0
  28. package/client/lib/tinymce/langs/az.js +440 -0
  29. package/client/lib/tinymce/langs/be.js +440 -0
  30. package/client/lib/tinymce/langs/bg-BG.js +440 -0
  31. package/client/lib/tinymce/langs/bn-BD.js +440 -0
  32. package/client/lib/tinymce/langs/bs.js +440 -0
  33. package/client/lib/tinymce/langs/ca.js +440 -0
  34. package/client/lib/tinymce/langs/cs.js +440 -0
  35. package/client/lib/tinymce/langs/cy.js +440 -0
  36. package/client/lib/tinymce/langs/da.js +440 -0
  37. package/client/lib/tinymce/langs/de.js +440 -0
  38. package/client/lib/tinymce/langs/el.js +440 -0
  39. package/client/lib/tinymce/langs/eo.js +440 -0
  40. package/client/lib/tinymce/langs/es-MX.js +440 -0
  41. package/client/lib/tinymce/langs/es.js +440 -0
  42. package/client/lib/tinymce/langs/et.js +440 -0
  43. package/client/lib/tinymce/langs/eu.js +440 -0
  44. package/client/lib/tinymce/langs/fa.js +441 -0
  45. package/client/lib/tinymce/langs/fi.js +440 -0
  46. package/client/lib/tinymce/langs/fr-FR.js +440 -0
  47. package/client/lib/tinymce/langs/gl.js +440 -0
  48. package/client/lib/tinymce/langs/he-IL.js +440 -0
  49. package/client/lib/tinymce/langs/hr.js +440 -0
  50. package/client/lib/tinymce/langs/hu-HU.js +440 -0
  51. package/client/lib/tinymce/langs/hy.js +440 -0
  52. package/client/lib/tinymce/langs/id.js +440 -0
  53. package/client/lib/tinymce/langs/index.json +63 -0
  54. package/client/lib/tinymce/langs/is-IS.js +440 -0
  55. package/client/lib/tinymce/langs/it.js +440 -0
  56. package/client/lib/tinymce/langs/ja.js +440 -0
  57. package/client/lib/tinymce/langs/ka-GE.js +440 -0
  58. package/client/lib/tinymce/langs/kab.js +440 -0
  59. package/client/lib/tinymce/langs/kk.js +440 -0
  60. package/client/lib/tinymce/langs/ko-KR.js +440 -0
  61. package/client/lib/tinymce/langs/lt.js +440 -0
  62. package/client/lib/tinymce/langs/lv.js +440 -0
  63. package/client/lib/tinymce/langs/nb-NO.js +440 -0
  64. package/client/lib/tinymce/langs/ne.js +440 -0
  65. package/client/lib/tinymce/langs/nl-BE.js +440 -0
  66. package/client/lib/tinymce/langs/nl.js +440 -0
  67. package/client/lib/tinymce/langs/oc.js +440 -0
  68. package/client/lib/tinymce/langs/pl.js +440 -0
  69. package/client/lib/tinymce/langs/pt-BR.js +440 -0
  70. package/client/lib/tinymce/langs/pt-PT.js +440 -0
  71. package/client/lib/tinymce/langs/ro.js +440 -0
  72. package/client/lib/tinymce/langs/ru.js +440 -0
  73. package/client/lib/tinymce/langs/sk.js +440 -0
  74. package/client/lib/tinymce/langs/sl-SI.js +440 -0
  75. package/client/lib/tinymce/langs/sr.js +440 -0
  76. package/client/lib/tinymce/langs/sv-SE.js +440 -0
  77. package/client/lib/tinymce/langs/ta.js +440 -0
  78. package/client/lib/tinymce/langs/tg.js +440 -0
  79. package/client/lib/tinymce/langs/th-TH.js +440 -0
  80. package/client/lib/tinymce/langs/tr.js +440 -0
  81. package/client/lib/tinymce/langs/ug.js +440 -0
  82. package/client/lib/tinymce/langs/uk.js +440 -0
  83. package/client/lib/tinymce/langs/vi.js +440 -0
  84. package/client/lib/tinymce/langs/zh-CN.js +440 -0
  85. package/client/lib/tinymce/langs/zh-HK.js +440 -0
  86. package/client/lib/tinymce/langs/zh-MO.js +440 -0
  87. package/client/lib/tinymce/langs/zh-TW.js +440 -0
  88. package/client/lib/tinymce-langs.js +96 -0
  89. package/client/lib/tinymce-langs.js.map +1 -0
  90. package/client/lib/tinymce-langs.ts +99 -0
  91. package/client/package.json +1 -1
  92. package/client/styles/components.css +48 -0
  93. package/docs/editor.md +29 -3
  94. package/docs/preferences.md +2 -1
  95. package/npmchanges.md +29 -0
  96. package/package.json +18 -15
  97. package/packages/mailx-imap/package-lock.json +2 -2
  98. package/packages/mailx-imap/package.json +2 -2
  99. package/packages/mailx-settings/package.json +1 -1
  100. package/packages/mailx-store/package.json +1 -1
  101. package/packages/mailx-store/store.d.ts +5 -0
  102. package/packages/mailx-store/store.d.ts.map +1 -1
  103. package/packages/mailx-store/store.js +21 -0
  104. package/packages/mailx-store/store.js.map +1 -1
  105. package/packages/mailx-store/store.ts +27 -0
  106. package/packages/mailx-types/index.d.ts +56 -0
  107. package/packages/mailx-types/index.d.ts.map +1 -1
  108. package/packages/mailx-types/index.js +187 -0
  109. package/packages/mailx-types/index.js.map +1 -1
  110. package/packages/mailx-types/index.ts +192 -0
  111. package/packages/mailx-types/package.json +1 -1
  112. /package/packages/mailx-imap/{node_modules.npmglobalize-stash-31304 → node_modules.npmglobalize-stash-48352}/.package-lock.json +0 -0
@@ -0,0 +1,440 @@
1
+ tinymce.addI18n("fi", {
2
+ "#": "",
3
+ "Accessibility": "Saavutettavuus",
4
+ "Accordion": "Haitarivalikko",
5
+ "Accordion body...": "Haitarivalikon sis\xe4lt\xf6...",
6
+ "Accordion summary...": "Haitarivalikon yhteenveto...",
7
+ "Action": "Toiminto",
8
+ "Activity": "Aktiviteetit",
9
+ "Address": "Osoite",
10
+ "Advanced": "Lis\xe4asetukset",
11
+ "Align": "Tasaa",
12
+ "Align center": "Tasaa keskelle",
13
+ "Align left": "Tasaa vasemmalle",
14
+ "Align right": "Tasaa oikealle",
15
+ "Alignment": "Tasaus",
16
+ "Alignment {0}": "",
17
+ "All": "Kaikki",
18
+ "Alternative description": "Vaihtoehtoinen kuvaus",
19
+ "Alternative source": "Vaihtoehtoinen l\xe4hde",
20
+ "Alternative source URL": "Vaihtoehtoinen l\xe4hde-URL",
21
+ "Anchor": "Ankkuri",
22
+ "Anchor...": "Ankkuri...",
23
+ "Anchors": "Ankkurit",
24
+ "Animals and Nature": "El\xe4imet ja luonto",
25
+ "Arrows": "Nuolet",
26
+ "B": "S",
27
+ "Background color": "Taustan v\xe4ri",
28
+ "Background color menu": "",
29
+ "Background color {0}": "",
30
+ "Black": "Musta",
31
+ "Block": "Lohko",
32
+ "Block {0}": "",
33
+ "Blockquote": "Lohkolainaus",
34
+ "Blocks": "Lohkot",
35
+ "Blue": "Sininen",
36
+ "Blue channel": "",
37
+ "Body": "Runko",
38
+ "Bold": "Lihavoitu",
39
+ "Border": "Reunus",
40
+ "Border color": "Reunuksen v\xe4ri",
41
+ "Border style": "Reunuksen tyyli",
42
+ "Border width": "Reunuksen leveys",
43
+ "Bottom": "Ala",
44
+ "Browse files": "Selaa tiedostoja",
45
+ "Browse for an image": "Selaa kuvia",
46
+ "Browse links": "Selaa linkkej\xe4",
47
+ "Build with {0}": "",
48
+ "Bullet list": "J\xe4rjest\xe4m\xe4t\xf6n lista",
49
+ "Cancel": "Peruuta",
50
+ "Caption": "Seloste",
51
+ "Cell": "Solu",
52
+ "Cell padding": "Solun tyhj\xe4 tila",
53
+ "Cell properties": "Solun ominaisuudet",
54
+ "Cell spacing": "Solun v\xe4li",
55
+ "Cell styles": "Solun tyylit",
56
+ "Cell type": "Solutyyppi",
57
+ "Center": "Keskitetty",
58
+ "Characters": "Merkki\xe4",
59
+ "Characters (no spaces)": "Merkki\xe4 (ilman v\xe4lily\xf6ntej\xe4)",
60
+ "Circle": "Ympyr\xe4",
61
+ "Class": "Luokka",
62
+ "Clear formatting": "Poista muotoilu",
63
+ "Close": "Sulje",
64
+ "Code": "Koodi",
65
+ "Code sample...": "Koodin\xe4yte...",
66
+ "Code view": "Koodin\xe4kym\xe4",
67
+ "Color Picker": "V\xe4rivalitsin",
68
+ "Color swatch": "V\xe4rin\xe4yte",
69
+ "Cols": "Sarakkeet",
70
+ "Column": "Sarake",
71
+ "Column clipboard actions": "Sarakkeen leikep\xf6yt\xe4toiminnot",
72
+ "Column group": "Sarakeryhm\xe4",
73
+ "Column header": "Sarakkeen otsikko",
74
+ "Constrain proportions": "Rajauksen mittasuhteet",
75
+ "Copy": "Kopioi",
76
+ "Copy column": "Kopioi sarake",
77
+ "Copy row": "Kopioi rivi",
78
+ "Could not find the specified string.": "Haettua merkkijonoa ei l\xf6ytynyt.",
79
+ "Could not load emojis": "Emojeita ei voitu ladata",
80
+ "Count": "M\xe4\xe4r\xe4",
81
+ "Currency": "Valuutta",
82
+ "Current window": "Nykyinen ikkuna",
83
+ "Custom color": "Mukautettu v\xe4ri",
84
+ "Custom...": "Mukautettu...",
85
+ "Cut": "Leikkaa",
86
+ "Cut column": "Leikkaa sarake",
87
+ "Cut row": "Leikkaa rivi",
88
+ "Dark Blue": "Tummansininen",
89
+ "Dark Gray": "Tummanharmaa",
90
+ "Dark Green": "Tumma vihre\xe4",
91
+ "Dark Orange": "Tumma oranssi",
92
+ "Dark Purple": "Tummanvioletti",
93
+ "Dark Red": "Tumma punainen",
94
+ "Dark Turquoise": "Tumma turkoosi",
95
+ "Dark Yellow": "Tummankeltainen",
96
+ "Dashed": "Katkoviiva",
97
+ "Date/time": "P\xe4iv\xe4m\xe4\xe4r\xe4/aika",
98
+ "Decrease indent": "Sisenn\xe4",
99
+ "Default": "Oletus",
100
+ "Delete accordion": "Poista haitarivalikko",
101
+ "Delete column": "Poista sarake",
102
+ "Delete row": "Poista rivi",
103
+ "Delete table": "Poista taulukko",
104
+ "Dimensions": "Mitat",
105
+ "Disc": "Py\xf6ryl\xe4",
106
+ "Div": "",
107
+ "Document": "Tiedosto",
108
+ "Dotted": "Pisteet",
109
+ "Double": "Kaksinkertainen",
110
+ "Drop an image here": "Pudota kuva t\xe4h\xe4n",
111
+ "Dropped file type is not supported": "Pudotettu tiedostotyyppi ei ole tuettu",
112
+ "Edit": "Muokkaa",
113
+ "Editor's height: {0} pixels": "",
114
+ "Editor's height: {0} pixels, Editor's width: {1} pixels": "",
115
+ "Embed": "Upota",
116
+ "Emojis": "Emojit",
117
+ "Emojis...": "Emojit...",
118
+ "Error": "Virhe",
119
+ "Error: Form submit field collision.": "Virhe: lomakkeen l\xe4hetyskent\xe4n t\xf6rm\xe4ys.",
120
+ "Error: No form element found.": "Virhe: muotoelementti\xe4 ei l\xf6ytynyt.",
121
+ "Extended Latin": "Laajennettu latina",
122
+ "Failed to initialize plugin: {0}": "Liit\xe4nn\xe4isen alustus ep\xe4onnistui: {0}",
123
+ "Failed to load plugin url: {0}": "Liit\xe4nn\xe4isen url:n lataus ep\xe4onnistui: {0}",
124
+ "Failed to load plugin: {0} from url {1}": "Liit\xe4nn\xe4isen lataus ep\xe4onnistui: {0} url:st\xe4 {1}",
125
+ "Failed to upload image: {0}": "Kuvan lataus ep\xe4onnistui: {0}",
126
+ "File": "Tiedosto",
127
+ "Find": "Etsi",
128
+ "Find (if searchreplace plugin activated)": "Etsi (jos etsikorvaa-liit\xe4nn\xe4inen aktiivinen)",
129
+ "Find and Replace": "Etsi ja korvaa",
130
+ "Find and replace...": "Etsi ja korvaa...",
131
+ "Find in selection": "Etsi valinnasta",
132
+ "Find whole words only": "Etsi vain kokonaisia sanoja",
133
+ "Flags": "Liput",
134
+ "Focus to contextual toolbar": "Kohdistus kontekstuaaliseen ty\xf6kalupalkkiin",
135
+ "Focus to element path": "Kohdistus elementin polkuun",
136
+ "Focus to menubar": "Kohdistus valikkoon",
137
+ "Focus to notification": "",
138
+ "Focus to toolbar": "Kohdistus ty\xf6kalupalkkiin",
139
+ "Font": "Fontti",
140
+ "Font size {0}": "",
141
+ "Font sizes": "Fonttikoot",
142
+ "Font {0}": "",
143
+ "Fonts": "Fontti",
144
+ "Food and Drink": "Ruoka ja juoma",
145
+ "Footer": "Alatunniste",
146
+ "Format": "Muotoilu",
147
+ "Format {0}": "",
148
+ "Formats": "Muotoilut",
149
+ "Fullscreen": "Kokon\xe4ytt\xf6",
150
+ "G": "V",
151
+ "General": "Yleiset asetukset",
152
+ "Gray": "Harmaa",
153
+ "Green": "Vihre\xe4",
154
+ "Green channel": "",
155
+ "Groove": "Ura",
156
+ "Handy Shortcuts": "K\xe4tev\xe4t pikan\xe4pp\xe4imet",
157
+ "Header": "Yl\xe4tunniste",
158
+ "Header cell": "Otsikkosolu",
159
+ "Heading 1": "Otsikko 1",
160
+ "Heading 2": "Otsikko 2",
161
+ "Heading 3": "Otsikko 3",
162
+ "Heading 4": "Otsikko 4",
163
+ "Heading 5": "Otsikko 5",
164
+ "Heading 6": "Otsikko 6",
165
+ "Headings": "Otsikot",
166
+ "Height": "Korkeus",
167
+ "Height:": "",
168
+ "Help": "Ohje",
169
+ "Hex color code": "Heksav\xe4rikoodi",
170
+ "Hexadecimal only, 000000 to FFFFFF": "",
171
+ "Hidden": "Piilotettu",
172
+ "Horizontal align": "Vaakasuuntainen tasaus",
173
+ "Horizontal line": "Vaakasuora viiva",
174
+ "Horizontal space": "Vaakasuuntainen v\xe4li",
175
+ "ID": "",
176
+ "ID should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.": "ID:n tulisi alkaa kirjaimella, jota seuraa vain kirjaimia, numeroita, v\xe4liviivoja, pisteit\xe4, kaksoispisteit\xe4 tai alaviivoja.",
177
+ "Image is decorative": "Kuva on koristeellinen",
178
+ "Image list": "Kuvaluettelo",
179
+ "Image title": "Kuvan otsikko",
180
+ "Image...": "Kuva...",
181
+ "ImageProxy HTTP error: Could not find Image Proxy": "ImageProxy HTTP-virhe: Kuvaproxy\xe4 ei l\xf6ytynyt",
182
+ "ImageProxy HTTP error: Incorrect Image Proxy URL": "ImageProxy HTTP-virhe: V\xe4\xe4r\xe4 kuvaproxyn osoite",
183
+ "ImageProxy HTTP error: Rejected request": "ImageProxy HTTP-virhe: Pyynt\xf6 hyl\xe4ttiin",
184
+ "ImageProxy HTTP error: Unknown ImageProxy error": "ImageProxy HTTP-virhe: Tuntematon ImageProxy-virhe",
185
+ "Increase indent": "Loitonna",
186
+ "Inline": "Samalla rivill\xe4",
187
+ "Insert": "Lis\xe4\xe4",
188
+ "Insert Template": "Lis\xe4\xe4 malli",
189
+ "Insert accordion": "Lis\xe4\xe4 haitarivalikko",
190
+ "Insert column after": "Lis\xe4\xe4 sarake j\xe4lkeen",
191
+ "Insert column before": "Lis\xe4\xe4 sarake ennen",
192
+ "Insert date/time": "Lis\xe4\xe4 p\xe4iv\xe4m\xe4\xe4r\xe4 tai aika",
193
+ "Insert date/time menu": "",
194
+ "Insert image": "Lis\xe4\xe4 kuva",
195
+ "Insert link (if link plugin activated)": "Lis\xe4\xe4 linkki (jos linkki-liit\xe4nn\xe4inen aktiivinen)",
196
+ "Insert row after": "Lis\xe4\xe4 rivi j\xe4lkeen",
197
+ "Insert row before": "Lis\xe4\xe4 rivi ennen",
198
+ "Insert table": "Lis\xe4\xe4 taulukko",
199
+ "Insert template...": "Lis\xe4\xe4 malli...",
200
+ "Insert video": "Lis\xe4\xe4 video",
201
+ "Insert/Edit code sample": "Lis\xe4\xe4/muokkaa koodiesimerkki",
202
+ "Insert/edit image": "Lis\xe4\xe4 kuva/muokkaa kuvaa",
203
+ "Insert/edit link": "Lis\xe4\xe4 linkki/muokkaa linkki\xe4",
204
+ "Insert/edit media": "Lis\xe4\xe4 media/muokkaa mediaa",
205
+ "Insert/edit video": "Lis\xe4\xe4 video/muokkaa videota",
206
+ "Inset": "Upotettu",
207
+ "Invalid hex color code: {0}": "Kelvoton heksav\xe4rikoodi: {0}",
208
+ "Invalid input": "Kelvoton sy\xf6te",
209
+ "Italic": "Kursivoitu",
210
+ "Justify": "Tasaus",
211
+ "Keyboard Navigation": "Navigointi n\xe4pp\xe4imist\xf6ll\xe4",
212
+ "Language": "Kieli",
213
+ "Learn more...": "Lis\xe4tietoja...",
214
+ "Left": "Vasen",
215
+ "Left to right": "Vasemmalta oikealle",
216
+ "Light Blue": "Vaaleansininen",
217
+ "Light Gray": "Vaaleanharmaa",
218
+ "Light Green": "Vaaleanvihre\xe4",
219
+ "Light Purple": "Liila",
220
+ "Light Red": "Vaaleanpunainen",
221
+ "Light Yellow": "Vaaleankeltainen",
222
+ "Line height": "Tekstirivin korkeus",
223
+ "Link": "",
224
+ "Link list": "Linkkiluettelo",
225
+ "Link...": "Linkki...",
226
+ "List Properties": "Listan ominaisuudet",
227
+ "List properties...": "Listan ominaisuudet...",
228
+ "Loading emojis...": "Ladataan emojeita...",
229
+ "Loading...": "Ladataan...",
230
+ "Lower Alpha": "Pienet kirjaimet",
231
+ "Lower Greek": "pienet kirjaimet: \u03b1, \u03b2, \u03b3",
232
+ "Lower Roman": "Numerot, alarivi",
233
+ "Match case": "Sama kirjainkoko",
234
+ "Mathematical": "Matemaattiset",
235
+ "Media poster (Image URL)": "Median julkaisija (kuvan URL)",
236
+ "Media...": "",
237
+ "Medium Blue": "Keskitumma sininen",
238
+ "Medium Gray": "Keskiharmaa",
239
+ "Medium Purple": "Keskitumma purppura",
240
+ "Merge cells": "Yhdist\xe4 solut",
241
+ "Middle": "Keski",
242
+ "Midnight Blue": "keskiy\xf6n sininen",
243
+ "More...": "Lis\xe4\xe4...",
244
+ "Name": "Nimi",
245
+ "Navy Blue": "Laivastonsininen",
246
+ "New document": "Uusi asiakirja",
247
+ "New window": "Uusi ikkuna",
248
+ "Next": "Seuraava",
249
+ "No": "Ei",
250
+ "No alignment": "Ei tasausta",
251
+ "No color": "Ei v\xe4ri\xe4",
252
+ "Nonbreaking space": "Sitova v\xe4lily\xf6nti",
253
+ "None": "Ei mit\xe4\xe4n",
254
+ "Numbered list": "J\xe4rjestetty lista",
255
+ "Numbers only, 0 to 255": "",
256
+ "OR": "TAI",
257
+ "Objects": "Esineet",
258
+ "Ok": "",
259
+ "Open help dialog": "Avaa ohjeen valintaikkuna",
260
+ "Open link": "Avaa linkki",
261
+ "Open link in...": "Avaa linkki...",
262
+ "Open popup menu for split buttons": "Avaa ponnahdusikkuna jaetuille napeille",
263
+ "Orange": "Oranssi",
264
+ "Outset": "Korotettu",
265
+ "Page break": "Sivunvaihto",
266
+ "Paragraph": "Kappale",
267
+ "Paste": "Liit\xe4",
268
+ "Paste as text": "Liit\xe4 tekstin\xe4",
269
+ "Paste column after": "Liit\xe4 sarake j\xe4lkeen",
270
+ "Paste column before": "Liit\xe4 sarake ennen",
271
+ "Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "Liitt\xe4minen on nyt pelk\xe4ss\xe4 tekstin tilassa. Sis\xe4lt\xf6 liitet\xe4\xe4n nyt pelkk\xe4n\xe4 tekstin\xe4, kunnes otat asetuksen pois p\xe4\xe4lt\xe4.",
272
+ "Paste or type a link": "Liit\xe4 tai kirjoita linkki",
273
+ "Paste row after": "Liit\xe4 rivi j\xe4lkeen",
274
+ "Paste row before": "Liit\xe4 rivi ennen",
275
+ "Paste your embed code below:": "Liit\xe4 upotuskoodisi alapuolelle:",
276
+ "People": "Ihmiset",
277
+ "Plugins": "Laajennukset",
278
+ "Plugins installed ({0}):": "Asennetut liit\xe4nn\xe4iset ({0}):",
279
+ "Powered by {0}": "Tarjoaja: {0}",
280
+ "Pre": "",
281
+ "Preferences": "Asetukset",
282
+ "Preformatted": "Esimuotoiltu",
283
+ "Premium plugins:": "Premium-liit\xe4nn\xe4iset:",
284
+ "Press the Up and Down arrow keys to resize the editor.": "Muuta editorin kokoa yl\xf6s- ja alas-nuolin\xe4pp\xe4imill\xe4.",
285
+ "Press the arrow keys to resize the editor.": "Muuta editorin kokoa nuolin\xe4pp\xe4imill\xe4.",
286
+ "Press {0} for help": "Avaa ohje painamalla {0}",
287
+ "Preview": "Esikatselu",
288
+ "Previous": "Edellinen",
289
+ "Print": "Tulosta",
290
+ "Print...": "Tulosta",
291
+ "Purple": "Purppura",
292
+ "Quotations": "Lainaukset",
293
+ "R": "P",
294
+ "Range 0 to 255": "V\xe4lill\xe4 0\u2013255",
295
+ "Red": "Punainen",
296
+ "Red channel": "",
297
+ "Redo": "Tee uudelleen",
298
+ "Remove": "Poista",
299
+ "Remove color": "Poista v\xe4ri",
300
+ "Remove link": "Poista linkki",
301
+ "Replace": "Korvaa",
302
+ "Replace all": "Korvaa kaikki",
303
+ "Replace with": "Korvaa kohteella",
304
+ "Resize": "Kuvan koon muutos",
305
+ "Restore last draft": "Palauta aiempi luonnos",
306
+ "Reveal or hide additional toolbar items": "N\xe4yt\xe4 tai piilota muut ty\xf6kalupalkin kohteet",
307
+ "Rich Text Area": "Rikastetun tekstin alue",
308
+ "Rich Text Area. Press ALT-0 for help.": "Rikastetun tekstin alue. Avaa ohje painamalla ALT-0.",
309
+ "Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "Rikastetun tekstin alue. Paina ALT-F9 valikkoon. Paina ALT-F10 ty\xf6kaluriviin. Paina ALT-0 ohjeeseen.",
310
+ "Ridge": "Harjanne",
311
+ "Right": "Oikea",
312
+ "Right to left": "Oikealta vasemmalle",
313
+ "Row": "Rivi",
314
+ "Row clipboard actions": "Rivin leikep\xf6yt\xe4toiminnot",
315
+ "Row group": "Riviryhm\xe4",
316
+ "Row header": "Rivin otsikko",
317
+ "Row properties": "Rivin ominaisuudet",
318
+ "Row type": "Rivityyppi",
319
+ "Rows": "Rivit",
320
+ "Save": "Tallenna",
321
+ "Save (if save plugin activated)": "Tallenna (jos tallenna-liit\xe4nn\xe4inen aktiivinen)",
322
+ "Scope": "Laajuus",
323
+ "Search": "Etsi",
324
+ "Select all": "Valitse kaikki",
325
+ "Select the {0} element": "",
326
+ "Select...": "Valitse...",
327
+ "Selection": "Valinta",
328
+ "Shortcut": "Pikavalinta",
329
+ "Show blocks": "N\xe4yt\xe4 lohkot",
330
+ "Show caption": "N\xe4yt\xe4 kuvateksti",
331
+ "Show invisible characters": "N\xe4yt\xe4 n\xe4kym\xe4tt\xf6m\xe4t merkit",
332
+ "Size": "Koko",
333
+ "Solid": "Yksinkertainen",
334
+ "Source": "L\xe4hde",
335
+ "Source code": "L\xe4hdekoodi",
336
+ "Special Character": "Erikoismerkki",
337
+ "Special character...": "Erikoismerkki...",
338
+ "Split cell": "Jaa solu",
339
+ "Square": "Neli\xf6",
340
+ "Start list at number": "Aloita lista numerosta",
341
+ "Strikethrough": "Yliviivaus",
342
+ "Style": "Tyyli",
343
+ "Subscript": "Alaindeksi",
344
+ "Superscript": "Yl\xe4indeksi",
345
+ "Switch to or from fullscreen mode": "Vaihda kokon\xe4ytt\xf6\xf6n tai kokon\xe4yt\xf6st\xe4",
346
+ "Symbols": "Symbolit",
347
+ "System Font": "J\xe4rjestelm\xe4fontti",
348
+ "Table": "Taulukko",
349
+ "Table caption": "Taulukon selitysteksti",
350
+ "Table properties": "Taulukon ominaisuudet",
351
+ "Table styles": "Taulukon tyylit",
352
+ "Template": "Malli",
353
+ "Templates": "Mallit",
354
+ "Text": "Teksti",
355
+ "Text color": "Tekstin v\xe4ri",
356
+ "Text color menu": "",
357
+ "Text color {0}": "",
358
+ "Text to display": "N\xe4ytett\xe4v\xe4 teksti",
359
+ "The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "Antamasi osoite n\xe4ytt\xe4\xe4 olevan s\xe4hk\xf6postiosoite. Haluatko lis\xe4t\xe4 osoitteeseen vaaditun mailto: -etuliitteen?",
360
+ "The URL you entered seems to be an external link. Do you want to add the required http:// prefix?": "Antamasi osoite n\xe4ytt\xe4\xe4 olevan ulkoinen linkki. Haluatko lis\xe4t\xe4 osoitteeseen vaaditun http:// -etuliitteen?",
361
+ "The URL you entered seems to be an external link. Do you want to add the required https:// prefix?": "Sy\xf6tt\xe4m\xe4si osoite n\xe4ytt\xe4\xe4 olevan ulkoinen linkki. Haluatko lis\xe4t\xe4 vaaditun https://-etuliitteen?",
362
+ "Title": "Otsikko",
363
+ "To open the popup, press Shift+Enter": "Avaa ponnahdusikkuna painamalla Shift+Enter",
364
+ "Toggle accordion": "Avaa/sulje haitarivalikko",
365
+ "Tools": "Ty\xf6kalut",
366
+ "Top": "Yl\xe4",
367
+ "Travel and Places": "Matkailu ja paikat",
368
+ "Turquoise": "Turkoosi",
369
+ "Underline": "Alleviivaus",
370
+ "Undo": "Kumoa",
371
+ "Upload": "Vie",
372
+ "Uploading image": "Ladataan kuvaa",
373
+ "Upper Alpha": "Isot kirjaimet",
374
+ "Upper Roman": "Numerot, yl\xe4rivi",
375
+ "Url": "Osoite",
376
+ "Use arrow keys to navigate.": "",
377
+ "User Defined": "K\xe4ytt\xe4j\xe4m\xe4\xe4ritetty",
378
+ "Valid": "Voimassa",
379
+ "Version": "Versio",
380
+ "Vertical align": "Pystysuuntainen tasaus",
381
+ "Vertical space": "Pystysuuntainen v\xe4li",
382
+ "View": "N\xe4yt\xe4",
383
+ "Visual aids": "Visuaaliset neuvot",
384
+ "Warn": "Varoitus",
385
+ "White": "Valkoinen",
386
+ "Width": "Leveys",
387
+ "Width:": "",
388
+ "Word count": "Sanam\xe4\xe4r\xe4",
389
+ "Words": "Sanaa",
390
+ "Words: {0}": "Sanat: {0} ",
391
+ "Yellow": "Keltainen",
392
+ "Yes": "Kyll\xe4",
393
+ "You are using {0}": "K\xe4yt\xe4t {0}",
394
+ "You have unsaved changes are you sure you want to navigate away?": "Sinulla on tallentamattomia muutoksia, haluatko varmasti siirty\xe4 toiselle sivulle?",
395
+ "Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X/C/V keyboard shortcuts instead.": "Selaimesi ei tue leikep\xf6yd\xe4n suoraa k\xe4ytt\xe4mist\xe4. Ole hyv\xe4 ja k\xe4yt\xe4 n\xe4pp\xe4imist\xf6n Ctrl+X/C/V n\xe4pp\xe4inyhdistelmi\xe4.",
396
+ "alignment": "tasaus",
397
+ "austral sign": "australin merkki",
398
+ "cedi sign": "cedin merkki",
399
+ "colon sign": "kaksoispisteen merkki",
400
+ "cruzeiro sign": "cruzeiro-merkki",
401
+ "currency sign": "valuuttamerkki",
402
+ "dollar sign": "dollarimerkki",
403
+ "dong sign": "dongin merkki",
404
+ "drachma sign": "drakman merkki",
405
+ "euro-currency sign": "eurovaluuttamerkki",
406
+ "example": "esimerkki",
407
+ "formatting": "muotoiltu",
408
+ "french franc sign": "ranskalaisen frangin merkki",
409
+ "german penny symbol": "saksalaisen pennin merkki",
410
+ "guarani sign": "guaranin merkki",
411
+ "history": "historia",
412
+ "hryvnia sign": "hryvnian merkki",
413
+ "indentation": "sisennys",
414
+ "indian rupee sign": "intialaisen rupian merkki",
415
+ "kip sign": "kipin merkki",
416
+ "lira sign": "liiran merkki",
417
+ "livre tournois sign": "livre tournoisin merkki",
418
+ "manat sign": "manatin merkki",
419
+ "mill sign": "millin merkki",
420
+ "naira sign": "nairan merkki",
421
+ "new sheqel sign": "uuden sekelin merkki",
422
+ "nordic mark sign": "pohjoismaisen markan merkki",
423
+ "peseta sign": "pesetan merkki",
424
+ "peso sign": "peson merkki",
425
+ "ruble sign": "ruplan merkki",
426
+ "rupee sign": "rupian merkki",
427
+ "spesmilo sign": "spesmilon merkki",
428
+ "styles": "tyylit",
429
+ "tenge sign": "tengen merkki",
430
+ "tugrik sign": "tugrikin merkki",
431
+ "turkish lira sign": "turkkilaisen liiran merkki",
432
+ "won sign": "wonin merkki",
433
+ "yen character": "jenin merkki",
434
+ "yen/yuan character variant one": "jenin/juanin merkin variantti",
435
+ "yuan character": "juanin merkki",
436
+ "yuan character, in hong kong and taiwan": "juanin merkki, Hongkongissa ja Taiwanissa",
437
+ "{0} characters": "{0} merkki\xe4",
438
+ "{0} columns, {1} rows": "{0} saraketta, {1} rivi\xe4",
439
+ "{0} words": "{0} sanaa"
440
+ });