@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.
- package/.commitmsg +31 -0
- package/bin/build-tinymce.js +27 -0
- package/client/android-bootstrap.bundle.js +169 -0
- package/client/android-bootstrap.bundle.js.map +2 -2
- package/client/app.bundle.js +231 -23
- package/client/app.bundle.js.map +4 -4
- package/client/app.js +81 -1
- package/client/app.js.map +1 -1
- package/client/app.ts +75 -1
- package/client/components/invite-card.js +107 -0
- package/client/components/invite-card.js.map +1 -0
- package/client/components/invite-card.ts +119 -0
- package/client/components/message-viewer.js +42 -17
- package/client/components/message-viewer.js.map +1 -1
- package/client/components/message-viewer.ts +42 -16
- package/client/compose/compose.bundle.js +90 -2
- package/client/compose/compose.bundle.js.map +4 -4
- package/client/compose/compose.js +26 -1
- package/client/compose/compose.js.map +1 -1
- package/client/compose/compose.ts +22 -1
- package/client/compose/editor.js +12 -1
- package/client/compose/editor.js.map +1 -1
- package/client/compose/editor.ts +17 -2
- package/client/index.html +1 -0
- package/client/lib/rmf-tiny.js +3 -0
- package/client/lib/tinymce/langs/ar-SA.js +440 -0
- package/client/lib/tinymce/langs/ar.js +441 -0
- package/client/lib/tinymce/langs/az.js +440 -0
- package/client/lib/tinymce/langs/be.js +440 -0
- package/client/lib/tinymce/langs/bg-BG.js +440 -0
- package/client/lib/tinymce/langs/bn-BD.js +440 -0
- package/client/lib/tinymce/langs/bs.js +440 -0
- package/client/lib/tinymce/langs/ca.js +440 -0
- package/client/lib/tinymce/langs/cs.js +440 -0
- package/client/lib/tinymce/langs/cy.js +440 -0
- package/client/lib/tinymce/langs/da.js +440 -0
- package/client/lib/tinymce/langs/de.js +440 -0
- package/client/lib/tinymce/langs/el.js +440 -0
- package/client/lib/tinymce/langs/eo.js +440 -0
- package/client/lib/tinymce/langs/es-MX.js +440 -0
- package/client/lib/tinymce/langs/es.js +440 -0
- package/client/lib/tinymce/langs/et.js +440 -0
- package/client/lib/tinymce/langs/eu.js +440 -0
- package/client/lib/tinymce/langs/fa.js +441 -0
- package/client/lib/tinymce/langs/fi.js +440 -0
- package/client/lib/tinymce/langs/fr-FR.js +440 -0
- package/client/lib/tinymce/langs/gl.js +440 -0
- package/client/lib/tinymce/langs/he-IL.js +440 -0
- package/client/lib/tinymce/langs/hr.js +440 -0
- package/client/lib/tinymce/langs/hu-HU.js +440 -0
- package/client/lib/tinymce/langs/hy.js +440 -0
- package/client/lib/tinymce/langs/id.js +440 -0
- package/client/lib/tinymce/langs/index.json +63 -0
- package/client/lib/tinymce/langs/is-IS.js +440 -0
- package/client/lib/tinymce/langs/it.js +440 -0
- package/client/lib/tinymce/langs/ja.js +440 -0
- package/client/lib/tinymce/langs/ka-GE.js +440 -0
- package/client/lib/tinymce/langs/kab.js +440 -0
- package/client/lib/tinymce/langs/kk.js +440 -0
- package/client/lib/tinymce/langs/ko-KR.js +440 -0
- package/client/lib/tinymce/langs/lt.js +440 -0
- package/client/lib/tinymce/langs/lv.js +440 -0
- package/client/lib/tinymce/langs/nb-NO.js +440 -0
- package/client/lib/tinymce/langs/ne.js +440 -0
- package/client/lib/tinymce/langs/nl-BE.js +440 -0
- package/client/lib/tinymce/langs/nl.js +440 -0
- package/client/lib/tinymce/langs/oc.js +440 -0
- package/client/lib/tinymce/langs/pl.js +440 -0
- package/client/lib/tinymce/langs/pt-BR.js +440 -0
- package/client/lib/tinymce/langs/pt-PT.js +440 -0
- package/client/lib/tinymce/langs/ro.js +440 -0
- package/client/lib/tinymce/langs/ru.js +440 -0
- package/client/lib/tinymce/langs/sk.js +440 -0
- package/client/lib/tinymce/langs/sl-SI.js +440 -0
- package/client/lib/tinymce/langs/sr.js +440 -0
- package/client/lib/tinymce/langs/sv-SE.js +440 -0
- package/client/lib/tinymce/langs/ta.js +440 -0
- package/client/lib/tinymce/langs/tg.js +440 -0
- package/client/lib/tinymce/langs/th-TH.js +440 -0
- package/client/lib/tinymce/langs/tr.js +440 -0
- package/client/lib/tinymce/langs/ug.js +440 -0
- package/client/lib/tinymce/langs/uk.js +440 -0
- package/client/lib/tinymce/langs/vi.js +440 -0
- package/client/lib/tinymce/langs/zh-CN.js +440 -0
- package/client/lib/tinymce/langs/zh-HK.js +440 -0
- package/client/lib/tinymce/langs/zh-MO.js +440 -0
- package/client/lib/tinymce/langs/zh-TW.js +440 -0
- package/client/lib/tinymce-langs.js +96 -0
- package/client/lib/tinymce-langs.js.map +1 -0
- package/client/lib/tinymce-langs.ts +99 -0
- package/client/package.json +1 -1
- package/client/styles/components.css +48 -0
- package/docs/editor.md +29 -3
- package/docs/preferences.md +2 -1
- package/npmchanges.md +29 -0
- package/package.json +18 -15
- package/packages/mailx-imap/package-lock.json +2 -2
- package/packages/mailx-imap/package.json +2 -2
- package/packages/mailx-settings/package.json +1 -1
- package/packages/mailx-store/package.json +1 -1
- package/packages/mailx-store/store.d.ts +5 -0
- package/packages/mailx-store/store.d.ts.map +1 -1
- package/packages/mailx-store/store.js +21 -0
- package/packages/mailx-store/store.js.map +1 -1
- package/packages/mailx-store/store.ts +27 -0
- package/packages/mailx-types/index.d.ts +56 -0
- package/packages/mailx-types/index.d.ts.map +1 -1
- package/packages/mailx-types/index.js +187 -0
- package/packages/mailx-types/index.js.map +1 -1
- package/packages/mailx-types/index.ts +192 -0
- package/packages/mailx-types/package.json +1 -1
- /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("et", {
|
|
2
|
+
"#": "",
|
|
3
|
+
"Accessibility": "Juurdep\xe4\xe4setavus",
|
|
4
|
+
"Accordion": "Kokkupandav paneel",
|
|
5
|
+
"Accordion body...": "Paneeli sisu...",
|
|
6
|
+
"Accordion summary...": "Paneeli kokkuv\xf5te...",
|
|
7
|
+
"Action": "Tegevus",
|
|
8
|
+
"Activity": "Tegevus",
|
|
9
|
+
"Address": "Aadress",
|
|
10
|
+
"Advanced": "T\xe4psem",
|
|
11
|
+
"Align": "Joonda",
|
|
12
|
+
"Align center": "Joonda keskele",
|
|
13
|
+
"Align left": "Joonda vasakule",
|
|
14
|
+
"Align right": "Joonda paremale",
|
|
15
|
+
"Alignment": "Joondamine",
|
|
16
|
+
"Alignment {0}": "",
|
|
17
|
+
"All": "K\xf5ik",
|
|
18
|
+
"Alternative description": "Alternatiivne kirjeldus",
|
|
19
|
+
"Alternative source": "Alternatiivne allikas",
|
|
20
|
+
"Alternative source URL": "Alternatiivne allika URL",
|
|
21
|
+
"Anchor": "Ankur",
|
|
22
|
+
"Anchor...": "Ankur ...",
|
|
23
|
+
"Anchors": "Ankrud",
|
|
24
|
+
"Animals and Nature": "Loomad ja loodus",
|
|
25
|
+
"Arrows": "Nooled",
|
|
26
|
+
"B": "S",
|
|
27
|
+
"Background color": "Taustav\xe4rv",
|
|
28
|
+
"Background color menu": "",
|
|
29
|
+
"Background color {0}": "",
|
|
30
|
+
"Black": "Must",
|
|
31
|
+
"Block": "Plokk",
|
|
32
|
+
"Block {0}": "",
|
|
33
|
+
"Blockquote": "Plokktsitaat",
|
|
34
|
+
"Blocks": "Plokid",
|
|
35
|
+
"Blue": "Sinine",
|
|
36
|
+
"Blue channel": "",
|
|
37
|
+
"Body": "Keha",
|
|
38
|
+
"Bold": "Rasvane",
|
|
39
|
+
"Border": "Piir",
|
|
40
|
+
"Border color": "\xc4\xe4rise v\xe4rv",
|
|
41
|
+
"Border style": "Piiri stiil",
|
|
42
|
+
"Border width": "\xc4\xe4rise laius",
|
|
43
|
+
"Bottom": "Alumine",
|
|
44
|
+
"Browse files": "Sirvi faile",
|
|
45
|
+
"Browse for an image": "Sirvi pilte",
|
|
46
|
+
"Browse links": "Sirvi linke",
|
|
47
|
+
"Build with {0}": "",
|
|
48
|
+
"Bullet list": "J\xe4rjestamata loend",
|
|
49
|
+
"Cancel": "Katkesta",
|
|
50
|
+
"Caption": "Alapealkiri",
|
|
51
|
+
"Cell": "Kamber",
|
|
52
|
+
"Cell padding": "Lahtrite polsterdus",
|
|
53
|
+
"Cell properties": "Rakkude omadused",
|
|
54
|
+
"Cell spacing": "Lahtrite vahe",
|
|
55
|
+
"Cell styles": "Lahtri stiilid",
|
|
56
|
+
"Cell type": "Lahtri t\xfc\xfcp",
|
|
57
|
+
"Center": "Keskus",
|
|
58
|
+
"Characters": "Tegelased",
|
|
59
|
+
"Characters (no spaces)": "M\xe4rgid (t\xfchikud puuduvad)",
|
|
60
|
+
"Circle": "Ring",
|
|
61
|
+
"Class": "Klass",
|
|
62
|
+
"Clear formatting": "Puhasta vorming",
|
|
63
|
+
"Close": "Sulge",
|
|
64
|
+
"Code": "Kood",
|
|
65
|
+
"Code sample...": "Koodin\xe4ide ...",
|
|
66
|
+
"Code view": "Koodi vaade",
|
|
67
|
+
"Color Picker": "V\xe4rvivalija",
|
|
68
|
+
"Color swatch": "V\xe4rvivalik",
|
|
69
|
+
"Cols": "Veerud",
|
|
70
|
+
"Column": "Veerg",
|
|
71
|
+
"Column clipboard actions": "Veeru l\xf5ikelaua toimingud",
|
|
72
|
+
"Column group": "Veergude r\xfchm",
|
|
73
|
+
"Column header": "Veeru p\xe4is",
|
|
74
|
+
"Constrain proportions": "Piirake proportsioone",
|
|
75
|
+
"Copy": "Kopeeri",
|
|
76
|
+
"Copy column": "Kopeeri veerg",
|
|
77
|
+
"Copy row": "Kopeeri rida",
|
|
78
|
+
"Could not find the specified string.": "M\xe4\xe4ratud stringi ei leitud.",
|
|
79
|
+
"Could not load emojis": "Emod\u017eeide laadimine eba\xf5nnestus",
|
|
80
|
+
"Count": "Krahv",
|
|
81
|
+
"Currency": "Valuuta",
|
|
82
|
+
"Current window": "Praegune aken",
|
|
83
|
+
"Custom color": "Kohandatud v\xe4rv",
|
|
84
|
+
"Custom...": "Kohandatud ...",
|
|
85
|
+
"Cut": "L\xf5ika",
|
|
86
|
+
"Cut column": "L\xf5ika veerg",
|
|
87
|
+
"Cut row": "L\xf5ika rida",
|
|
88
|
+
"Dark Blue": "Tumesinine",
|
|
89
|
+
"Dark Gray": "Tumehall",
|
|
90
|
+
"Dark Green": "Tumeroheline",
|
|
91
|
+
"Dark Orange": "Tumeoran\u017e",
|
|
92
|
+
"Dark Purple": "Tumelilla",
|
|
93
|
+
"Dark Red": "Tumepunane",
|
|
94
|
+
"Dark Turquoise": "Tume t\xfcrkiissinine",
|
|
95
|
+
"Dark Yellow": "Tumekollane",
|
|
96
|
+
"Dashed": "Katkendlik",
|
|
97
|
+
"Date/time": "Kuup\xe4ev Kellaaeg",
|
|
98
|
+
"Decrease indent": "V\xe4henda taanet",
|
|
99
|
+
"Default": "Vaikimisi",
|
|
100
|
+
"Delete accordion": "Kustuta kokkupandav paneel",
|
|
101
|
+
"Delete column": "Kustuta veerg",
|
|
102
|
+
"Delete row": "Kustuta rida",
|
|
103
|
+
"Delete table": "Kustuta tabel",
|
|
104
|
+
"Dimensions": "M\xf5\xf5tmed",
|
|
105
|
+
"Disc": "Plaat",
|
|
106
|
+
"Div": "Sektsioon",
|
|
107
|
+
"Document": "Dokument",
|
|
108
|
+
"Dotted": "T\xe4piline",
|
|
109
|
+
"Double": "Kahekordne",
|
|
110
|
+
"Drop an image here": "Kukuta pilt siia",
|
|
111
|
+
"Dropped file type is not supported": "See failit\xfc\xfcp ei ole toetatud",
|
|
112
|
+
"Edit": "Muuda",
|
|
113
|
+
"Editor's height: {0} pixels": "",
|
|
114
|
+
"Editor's height: {0} pixels, Editor's width: {1} pixels": "",
|
|
115
|
+
"Embed": "Lisa",
|
|
116
|
+
"Emojis": "Emod\u017eid",
|
|
117
|
+
"Emojis...": "Emod\u017eid...",
|
|
118
|
+
"Error": "Viga",
|
|
119
|
+
"Error: Form submit field collision.": "Viga: vormi esitamise v\xe4lja kokkup\xf5rge.",
|
|
120
|
+
"Error: No form element found.": "Viga: vormielementi ei leitud.",
|
|
121
|
+
"Extended Latin": "Laiendatud ladina keel",
|
|
122
|
+
"Failed to initialize plugin: {0}": "Pistikprogrammi l\xe4htestamine eba\xf5nnestus: {0}",
|
|
123
|
+
"Failed to load plugin url: {0}": "Pistikprogrammi URL-i laadimine nurjus: {0}",
|
|
124
|
+
"Failed to load plugin: {0} from url {1}": "Pistikprogrammi laadimine nurjus: {0} URL-ist {1}",
|
|
125
|
+
"Failed to upload image: {0}": "Pildi \xfcleslaadimine eba\xf5nnestus: {0}",
|
|
126
|
+
"File": "Fail",
|
|
127
|
+
"Find": "Leidke",
|
|
128
|
+
"Find (if searchreplace plugin activated)": "Leia (kui otsinguprogrammi plugin on aktiveeritud)",
|
|
129
|
+
"Find and Replace": "Otsi ja asenda",
|
|
130
|
+
"Find and replace...": "Leidke ja asendage ...",
|
|
131
|
+
"Find in selection": "Otsi valikust",
|
|
132
|
+
"Find whole words only": "Leidke ainult terved s\xf5nad",
|
|
133
|
+
"Flags": "Lipud",
|
|
134
|
+
"Focus to contextual toolbar": "Keskenduge kontekstip\xf5hisele t\xf6\xf6riistaribale",
|
|
135
|
+
"Focus to element path": "Keskendumine elemendi rajale",
|
|
136
|
+
"Focus to menubar": "Keskenduge men\xfc\xfcribale",
|
|
137
|
+
"Focus to notification": "",
|
|
138
|
+
"Focus to toolbar": "Keskenduge t\xf6\xf6riistaribale",
|
|
139
|
+
"Font": "",
|
|
140
|
+
"Font size {0}": "",
|
|
141
|
+
"Font sizes": "Fondi suurused",
|
|
142
|
+
"Font {0}": "",
|
|
143
|
+
"Fonts": "Fondid",
|
|
144
|
+
"Food and Drink": "Toit ja jook",
|
|
145
|
+
"Footer": "Jalus",
|
|
146
|
+
"Format": "Vormindus",
|
|
147
|
+
"Format {0}": "",
|
|
148
|
+
"Formats": "Vormingud",
|
|
149
|
+
"Fullscreen": "T\xe4isekraan",
|
|
150
|
+
"G": "R",
|
|
151
|
+
"General": "Kindral",
|
|
152
|
+
"Gray": "Hall",
|
|
153
|
+
"Green": "Roheline",
|
|
154
|
+
"Green channel": "",
|
|
155
|
+
"Groove": "Soon",
|
|
156
|
+
"Handy Shortcuts": "K\xe4ep\xe4rased otseteed",
|
|
157
|
+
"Header": "P\xe4is",
|
|
158
|
+
"Header cell": "P\xe4ise lahter",
|
|
159
|
+
"Heading 1": "Pealkiri 1",
|
|
160
|
+
"Heading 2": "Pealkiri 2",
|
|
161
|
+
"Heading 3": "Pealkiri 3",
|
|
162
|
+
"Heading 4": "Pealkiri 4",
|
|
163
|
+
"Heading 5": "Pealkiri 5",
|
|
164
|
+
"Heading 6": "Pealkiri 6",
|
|
165
|
+
"Headings": "Pealkirjad",
|
|
166
|
+
"Height": "K\xf5rgus",
|
|
167
|
+
"Height:": "",
|
|
168
|
+
"Help": "Abi",
|
|
169
|
+
"Hex color code": "Heksav\xe4rvikood",
|
|
170
|
+
"Hexadecimal only, 000000 to FFFFFF": "",
|
|
171
|
+
"Hidden": "Peidetud",
|
|
172
|
+
"Horizontal align": "Horisontaalne joondamine",
|
|
173
|
+
"Horizontal line": "Horisontaalne joon",
|
|
174
|
+
"Horizontal space": "Horisontaalne ruum",
|
|
175
|
+
"ID": "",
|
|
176
|
+
"ID should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.": "ID peab algama t\xe4hega ning sellele v\xf5ivad j\xe4rgneda ainult t\xe4hed, numbrid, kriipsud, punktid, koolonid v\xf5i alakriipsud.",
|
|
177
|
+
"Image is decorative": "Pilt on dekoratiivne",
|
|
178
|
+
"Image list": "Piltide loend",
|
|
179
|
+
"Image title": "Pildi pealkiri",
|
|
180
|
+
"Image...": "Pilt ...",
|
|
181
|
+
"ImageProxy HTTP error: Could not find Image Proxy": "ImageProxy HTTP viga: Image Proxy\u2019t ei leitud",
|
|
182
|
+
"ImageProxy HTTP error: Incorrect Image Proxy URL": "ImageProxy HTTP viga: Vigane Image Proxy\u2019t URL",
|
|
183
|
+
"ImageProxy HTTP error: Rejected request": "ImageProxy HTTP viga: taotlus l\xfckati tagasi",
|
|
184
|
+
"ImageProxy HTTP error: Unknown ImageProxy error": "ImageProxy HTTP viga: Tundmat ImageProxy viga",
|
|
185
|
+
"Increase indent": "Suurenda taanet",
|
|
186
|
+
"Inline": "Reasisene",
|
|
187
|
+
"Insert": "Sisesta",
|
|
188
|
+
"Insert Template": "Sisesta mall",
|
|
189
|
+
"Insert accordion": "Sisesta kokkupandav paneel",
|
|
190
|
+
"Insert column after": "Sisestage veerg p\xe4rast",
|
|
191
|
+
"Insert column before": "Sisestage veerg enne",
|
|
192
|
+
"Insert date/time": "Sisestage kuup\xe4ev / kellaaeg",
|
|
193
|
+
"Insert date/time menu": "",
|
|
194
|
+
"Insert image": "Sisesta pilt",
|
|
195
|
+
"Insert link (if link plugin activated)": "Sisesta link (kui lingi pistikprogramm on aktiveeritud)",
|
|
196
|
+
"Insert row after": "Lisage rida p\xe4rast",
|
|
197
|
+
"Insert row before": "Sisestage rida enne",
|
|
198
|
+
"Insert table": "Sisesta tabel",
|
|
199
|
+
"Insert template...": "Sisesta mall ...",
|
|
200
|
+
"Insert video": "Sisesta video",
|
|
201
|
+
"Insert/Edit code sample": "Koodin\xe4idise sisestamine / muutmine",
|
|
202
|
+
"Insert/edit image": "Sisesta / muuda pilti",
|
|
203
|
+
"Insert/edit link": "Sisesta / muuda link",
|
|
204
|
+
"Insert/edit media": "Sisestage / muutke meediumit",
|
|
205
|
+
"Insert/edit video": "Video lisamine / muutmine",
|
|
206
|
+
"Inset": "Sisemine",
|
|
207
|
+
"Invalid hex color code: {0}": "Vigane heksav\xe4rvikood: {0}",
|
|
208
|
+
"Invalid input": "Vigane sisend",
|
|
209
|
+
"Italic": "Kaldkiri",
|
|
210
|
+
"Justify": "Joonda r\xf6\xf6pselt",
|
|
211
|
+
"Keyboard Navigation": "Klaviatuuril navigeerimine",
|
|
212
|
+
"Language": "Keel",
|
|
213
|
+
"Learn more...": "Lisateave ...",
|
|
214
|
+
"Left": "Vasakule",
|
|
215
|
+
"Left to right": "Vasakult paremale",
|
|
216
|
+
"Light Blue": "Helesinine",
|
|
217
|
+
"Light Gray": "Helehall",
|
|
218
|
+
"Light Green": "Heleroheline",
|
|
219
|
+
"Light Purple": "Helelilla",
|
|
220
|
+
"Light Red": "Helepunane",
|
|
221
|
+
"Light Yellow": "Helekollane",
|
|
222
|
+
"Line height": "Reak\xf5rgus",
|
|
223
|
+
"Link": "",
|
|
224
|
+
"Link list": "Lingiloend",
|
|
225
|
+
"Link...": "",
|
|
226
|
+
"List Properties": "Loendi atribuudid",
|
|
227
|
+
"List properties...": "List Properties...",
|
|
228
|
+
"Loading emojis...": "Emod\u017eide laadimine...",
|
|
229
|
+
"Loading...": "Laadimine...",
|
|
230
|
+
"Lower Alpha": "Alam-Alfa",
|
|
231
|
+
"Lower Greek": "Alamkreeka keel",
|
|
232
|
+
"Lower Roman": "Alam-Rooma",
|
|
233
|
+
"Match case": "Tikutoos",
|
|
234
|
+
"Mathematical": "Matemaatiline",
|
|
235
|
+
"Media poster (Image URL)": "Meediaplakat (pildi URL)",
|
|
236
|
+
"Media...": "Meedia ...",
|
|
237
|
+
"Medium Blue": "Keskmine sinine",
|
|
238
|
+
"Medium Gray": "Keskmiselt hall",
|
|
239
|
+
"Medium Purple": "Keskmine lilla",
|
|
240
|
+
"Merge cells": "Lahtrite \xfchendamine",
|
|
241
|
+
"Middle": "Keskmine",
|
|
242
|
+
"Midnight Blue": "Kesk\xf6ine sinine",
|
|
243
|
+
"More...": "Veel ...",
|
|
244
|
+
"Name": "Nimi",
|
|
245
|
+
"Navy Blue": "Merev\xe4e sinine",
|
|
246
|
+
"New document": "Uus dokument",
|
|
247
|
+
"New window": "Uus aken",
|
|
248
|
+
"Next": "J\xe4rgmine",
|
|
249
|
+
"No": "Ei",
|
|
250
|
+
"No alignment": "Joondus puudub",
|
|
251
|
+
"No color": "Pole v\xe4rvi",
|
|
252
|
+
"Nonbreaking space": "Murdmatu ruum",
|
|
253
|
+
"None": "Puudub",
|
|
254
|
+
"Numbered list": "J\xe4rjestatud loend",
|
|
255
|
+
"Numbers only, 0 to 255": "",
|
|
256
|
+
"OR": "V\xd5I",
|
|
257
|
+
"Objects": "Objektid",
|
|
258
|
+
"Ok": "",
|
|
259
|
+
"Open help dialog": "Ava dialoog",
|
|
260
|
+
"Open link": "Ava link",
|
|
261
|
+
"Open link in...": "Ava link saidil ...",
|
|
262
|
+
"Open popup menu for split buttons": "Ava jaotatud nuppude h\xfcpikmen\xfc\xfc",
|
|
263
|
+
"Orange": "Oran\u017e",
|
|
264
|
+
"Outset": "V\xe4limine",
|
|
265
|
+
"Page break": "Lehek\xfcljevahe",
|
|
266
|
+
"Paragraph": "L\xf5ik",
|
|
267
|
+
"Paste": "Kleebi",
|
|
268
|
+
"Paste as text": "Kleebi tekstina",
|
|
269
|
+
"Paste column after": "Kleepige veerg p\xe4rast",
|
|
270
|
+
"Paste column before": "Kleepige veerg enne",
|
|
271
|
+
"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "Kleepimine on n\xfc\xfcd lihtteksti re\u017eiimis. Sisu kleebitakse lihttekstina seni, kuni Sa selle valiku v\xe4lja l\xfclitad.",
|
|
272
|
+
"Paste or type a link": "Kleepige v\xf5i tippige link",
|
|
273
|
+
"Paste row after": "Kleepige rida p\xe4rast",
|
|
274
|
+
"Paste row before": "Kleepige rida enne",
|
|
275
|
+
"Paste your embed code below:": "Kleepige oma manustamiskood allpool:",
|
|
276
|
+
"People": "Inimesed",
|
|
277
|
+
"Plugins": "Pistikprogrammid",
|
|
278
|
+
"Plugins installed ({0}):": "Installitud pistikprogrammid ({0}):",
|
|
279
|
+
"Powered by {0}": "Toetaja: {0}",
|
|
280
|
+
"Pre": "Eelvormindatud",
|
|
281
|
+
"Preferences": "Eelistused",
|
|
282
|
+
"Preformatted": "Eelvormindaud",
|
|
283
|
+
"Premium plugins:": "Premium pistikprogrammid:",
|
|
284
|
+
"Press the Up and Down arrow keys to resize the editor.": "Redaktori suuruse muutmiseks vajuta \xfcles ja alla nooleklahve.",
|
|
285
|
+
"Press the arrow keys to resize the editor.": "Redaktori suuruse muutmiseks vajuta nooleklahve.",
|
|
286
|
+
"Press {0} for help": "Vajuta {0}, et saada abi",
|
|
287
|
+
"Preview": "Eelvaade",
|
|
288
|
+
"Previous": "Eelmine",
|
|
289
|
+
"Print": "",
|
|
290
|
+
"Print...": "Prindi ...",
|
|
291
|
+
"Purple": "Lilla",
|
|
292
|
+
"Quotations": "Tsitaadid",
|
|
293
|
+
"R": "P",
|
|
294
|
+
"Range 0 to 255": "Vahemik 0 kuni 255",
|
|
295
|
+
"Red": "Punane",
|
|
296
|
+
"Red channel": "",
|
|
297
|
+
"Redo": "Tee uuesti",
|
|
298
|
+
"Remove": "Eemalda",
|
|
299
|
+
"Remove color": "Eemaldage v\xe4rv",
|
|
300
|
+
"Remove link": "Eemalda link",
|
|
301
|
+
"Replace": "Asenda",
|
|
302
|
+
"Replace all": "Asenda k\xf5ik",
|
|
303
|
+
"Replace with": "Asenda s\xf5naga",
|
|
304
|
+
"Resize": "Suuruse muutmine",
|
|
305
|
+
"Restore last draft": "Taasta viimane mustand",
|
|
306
|
+
"Reveal or hide additional toolbar items": "N\xe4ita v\xf5i peida lisat\xf6\xf6riistad",
|
|
307
|
+
"Rich Text Area": "Vormindatud tekstiala",
|
|
308
|
+
"Rich Text Area. Press ALT-0 for help.": "Rikasteksti ala. Abi saamiseks vajutage ALT-0.",
|
|
309
|
+
"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "Rikasteksti ala. Men\xfc\xfc avamiseks vajutage ALT-F9. T\xf6\xf6riistariba saamiseks vajutage ALT-F10. VajutageALT-0 abi saamiseks",
|
|
310
|
+
"Ridge": "Hari",
|
|
311
|
+
"Right": "\xd5ige",
|
|
312
|
+
"Right to left": "Paremalt vasakule",
|
|
313
|
+
"Row": "Rida",
|
|
314
|
+
"Row clipboard actions": "Veeru l\xf5ikelaua toimingud",
|
|
315
|
+
"Row group": "R\xfchma r\xfchm",
|
|
316
|
+
"Row header": "Rea p\xe4is",
|
|
317
|
+
"Row properties": "Rea omadused",
|
|
318
|
+
"Row type": "Rea t\xfc\xfcp",
|
|
319
|
+
"Rows": "Read",
|
|
320
|
+
"Save": "Salvesta",
|
|
321
|
+
"Save (if save plugin activated)": "Salvesta (kui pistikprogrammi salvestamine on aktiveeritud)",
|
|
322
|
+
"Scope": "Reguleerimisala",
|
|
323
|
+
"Search": "Otsing",
|
|
324
|
+
"Select all": "Vali k\xf5ik",
|
|
325
|
+
"Select the {0} element": "",
|
|
326
|
+
"Select...": "Valige ...",
|
|
327
|
+
"Selection": "Valik",
|
|
328
|
+
"Shortcut": "Otsetee",
|
|
329
|
+
"Show blocks": "N\xe4ita plokke",
|
|
330
|
+
"Show caption": "Kuva pealdis",
|
|
331
|
+
"Show invisible characters": "Kuva n\xe4htamatud t\xe4hem\xe4rgid",
|
|
332
|
+
"Size": "Suurus",
|
|
333
|
+
"Solid": "\xdchtlane",
|
|
334
|
+
"Source": "Allikas",
|
|
335
|
+
"Source code": "L\xe4htekood",
|
|
336
|
+
"Special Character": "Eris\xfcmbol",
|
|
337
|
+
"Special character...": "Eriline tegelane ...",
|
|
338
|
+
"Split cell": "Lahtrite jagamine",
|
|
339
|
+
"Square": "Ruut",
|
|
340
|
+
"Start list at number": "Alusta loendit numbriga",
|
|
341
|
+
"Strikethrough": "L\xe4bikriipsutatud",
|
|
342
|
+
"Style": "Stiil",
|
|
343
|
+
"Subscript": "Alaindeks",
|
|
344
|
+
"Superscript": "\xdclaindeks",
|
|
345
|
+
"Switch to or from fullscreen mode": "L\xfclitumine t\xe4isekraanre\u017eiimile v\xf5i sellest v\xe4lja",
|
|
346
|
+
"Symbols": "S\xfcmbolid",
|
|
347
|
+
"System Font": "S\xfcsteemi font",
|
|
348
|
+
"Table": "Tabel",
|
|
349
|
+
"Table caption": "Tabeli pealkiri",
|
|
350
|
+
"Table properties": "Tabeli omadused",
|
|
351
|
+
"Table styles": "Tabeli stiilid",
|
|
352
|
+
"Template": "Mall",
|
|
353
|
+
"Templates": "Mallid",
|
|
354
|
+
"Text": "Tekst",
|
|
355
|
+
"Text color": "Teksti v\xe4rv",
|
|
356
|
+
"Text color menu": "",
|
|
357
|
+
"Text color {0}": "",
|
|
358
|
+
"Text to display": "Kuvatav tekst",
|
|
359
|
+
"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "Sisestatud URL n\xe4ib olevat e-posti aadress. Kas soovite lisadavajalik mailto: eesliide?",
|
|
360
|
+
"The URL you entered seems to be an external link. Do you want to add the required http:// prefix?": "Teie sisestatud URL n\xe4ib olevat v\xe4line link. Kas soovite lisadavajalik http: // eesliide?",
|
|
361
|
+
"The URL you entered seems to be an external link. Do you want to add the required https:// prefix?": "Sisestatud URL paistab olevat v\xe4line link. Kas soovid lisada vajaliku https:// eesliite?",
|
|
362
|
+
"Title": "Pealkiri",
|
|
363
|
+
"To open the popup, press Shift+Enter": "H\xfcpikakna avamiseks vajutage t\xf5stuklahvi + sisestusklahvi",
|
|
364
|
+
"Toggle accordion": "Kuva/Peida kokkupandav paneel",
|
|
365
|
+
"Tools": "T\xf6\xf6riistad",
|
|
366
|
+
"Top": "\xdcles",
|
|
367
|
+
"Travel and Places": "Reisimine ja kohad",
|
|
368
|
+
"Turquoise": "T\xfcrkiis",
|
|
369
|
+
"Underline": "Allakriipsutatud",
|
|
370
|
+
"Undo": "V\xf5ta tagasi",
|
|
371
|
+
"Upload": "\xdcles laadimine",
|
|
372
|
+
"Uploading image": "Laadin pilti \xfcles",
|
|
373
|
+
"Upper Alpha": "\xdclem-Alfa",
|
|
374
|
+
"Upper Roman": "\xdclemine Rooma keel",
|
|
375
|
+
"Url": "URL",
|
|
376
|
+
"Use arrow keys to navigate.": "",
|
|
377
|
+
"User Defined": "Kasutaja m\xe4\xe4ratud",
|
|
378
|
+
"Valid": "Kehtib",
|
|
379
|
+
"Version": "Versioon",
|
|
380
|
+
"Vertical align": "Vertikaalne joondamine",
|
|
381
|
+
"Vertical space": "Vertikaalne ruum",
|
|
382
|
+
"View": "Vaade",
|
|
383
|
+
"Visual aids": "N\xe4itevahendid",
|
|
384
|
+
"Warn": "Hoiatage",
|
|
385
|
+
"White": "Valge",
|
|
386
|
+
"Width": "Laius",
|
|
387
|
+
"Width:": "",
|
|
388
|
+
"Word count": "S\xf5nade arv",
|
|
389
|
+
"Words": "S\xf5nad",
|
|
390
|
+
"Words: {0}": "S\xf5nad: {0}",
|
|
391
|
+
"Yellow": "Kollane",
|
|
392
|
+
"Yes": "Jah",
|
|
393
|
+
"You are using {0}": "Kasutate seadet {0}",
|
|
394
|
+
"You have unsaved changes are you sure you want to navigate away?": "Teil on salvestamata muudatusi. Kas soovite kindlasti minema navigeerida?",
|
|
395
|
+
"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X/C/V keyboard shortcuts instead.": "Sinu veebilehitseja ei toeta otsest ligip\xe4\xe4su l\xf5ikelauale. Palun kasuta selle asemel klaviatuuri kiirk\xe4sklusi Ctrl+X/C/V.",
|
|
396
|
+
"alignment": "joondamine",
|
|
397
|
+
"austral sign": "austraalne m\xe4rk",
|
|
398
|
+
"cedi sign": "cedi m\xe4rk",
|
|
399
|
+
"colon sign": "j\xe4mesoole m\xe4rk",
|
|
400
|
+
"cruzeiro sign": "cruzeiro m\xe4rk",
|
|
401
|
+
"currency sign": "v\xe4\xe4ringu m\xe4rk",
|
|
402
|
+
"dollar sign": "dollari m\xe4rk",
|
|
403
|
+
"dong sign": "dongi m\xe4rk",
|
|
404
|
+
"drachma sign": "drahmam\xe4rk",
|
|
405
|
+
"euro-currency sign": "euro v\xe4\xe4ringu m\xe4rk",
|
|
406
|
+
"example": "n\xe4ide",
|
|
407
|
+
"formatting": "vormindamine",
|
|
408
|
+
"french franc sign": "Prantsuse frangi m\xe4rk",
|
|
409
|
+
"german penny symbol": "saksa senti s\xfcmbol",
|
|
410
|
+
"guarani sign": "guarani m\xe4rk",
|
|
411
|
+
"history": "ajalugu",
|
|
412
|
+
"hryvnia sign": "grivna m\xe4rk",
|
|
413
|
+
"indentation": "taane",
|
|
414
|
+
"indian rupee sign": "India ruupia m\xe4rk",
|
|
415
|
+
"kip sign": "kip m\xe4rk",
|
|
416
|
+
"lira sign": "liiri m\xe4rk",
|
|
417
|
+
"livre tournois sign": "elav turniiri m\xe4rk",
|
|
418
|
+
"manat sign": "manati m\xe4rk",
|
|
419
|
+
"mill sign": "veskim\xe4rk",
|
|
420
|
+
"naira sign": "naira m\xe4rk",
|
|
421
|
+
"new sheqel sign": "uus \u0161ekeli m\xe4rk",
|
|
422
|
+
"nordic mark sign": "p\xf5hjam\xe4rgi m\xe4rk",
|
|
423
|
+
"peseta sign": "peseta m\xe4rk",
|
|
424
|
+
"peso sign": "peeso m\xe4rk",
|
|
425
|
+
"ruble sign": "rubla m\xe4rk",
|
|
426
|
+
"rupee sign": "ruupia m\xe4rk",
|
|
427
|
+
"spesmilo sign": "spesmilo m\xe4rk",
|
|
428
|
+
"styles": "stiilid",
|
|
429
|
+
"tenge sign": "tenge m\xe4rk",
|
|
430
|
+
"tugrik sign": "tugriku m\xe4rk",
|
|
431
|
+
"turkish lira sign": "t\xfcrgi liiri m\xe4rk",
|
|
432
|
+
"won sign": "v\xf5itis m\xe4rgi",
|
|
433
|
+
"yen character": "jeeni tegelaskuju",
|
|
434
|
+
"yen/yuan character variant one": "jeeni / j\xfcaani t\xe4hem\xe4rgi variant \xfcks",
|
|
435
|
+
"yuan character": "j\xfcaani tegelaskuju",
|
|
436
|
+
"yuan character, in hong kong and taiwan": "j\xfcaani tegelane, Hongkongis ja Taiwanis",
|
|
437
|
+
"{0} characters": "{0} t\xe4hem\xe4rki",
|
|
438
|
+
"{0} columns, {1} rows": "{0} veergu, {1} rida",
|
|
439
|
+
"{0} words": "{0} s\xf5na"
|
|
440
|
+
});
|