@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("kab", {
|
|
2
|
+
"#": "",
|
|
3
|
+
"Accessibility": "",
|
|
4
|
+
"Accordion": "",
|
|
5
|
+
"Accordion body...": "",
|
|
6
|
+
"Accordion summary...": "",
|
|
7
|
+
"Action": "Tigawt",
|
|
8
|
+
"Activity": "Armud",
|
|
9
|
+
"Address": "Tansa",
|
|
10
|
+
"Advanced": "Ana\u1e93i",
|
|
11
|
+
"Align": "Settef",
|
|
12
|
+
"Align center": "Di tlemast",
|
|
13
|
+
"Align left": "Tarigla \u0263er zelma\u1e0d",
|
|
14
|
+
"Align right": "tarigla \u0263er zelma\u1e0d",
|
|
15
|
+
"Alignment": "Tarigla",
|
|
16
|
+
"Alignment {0}": "",
|
|
17
|
+
"All": "Akk",
|
|
18
|
+
"Alternative description": "",
|
|
19
|
+
"Alternative source": "A\u0263balu amlellay",
|
|
20
|
+
"Alternative source URL": "A\u0263balu n URL amlellay",
|
|
21
|
+
"Anchor": "",
|
|
22
|
+
"Anchor...": "Tamdeyt...",
|
|
23
|
+
"Anchors": "Timdyin",
|
|
24
|
+
"Animals and Nature": "i\u0263ersiwen akked ugama",
|
|
25
|
+
"Arrows": "Tineccabin",
|
|
26
|
+
"B": "",
|
|
27
|
+
"Background color": "Ini n ugilal",
|
|
28
|
+
"Background color menu": "",
|
|
29
|
+
"Background color {0}": "",
|
|
30
|
+
"Black": "Aberkan",
|
|
31
|
+
"Block": "Sew\u1e25el",
|
|
32
|
+
"Block {0}": "",
|
|
33
|
+
"Blockquote": "Tanebdurt",
|
|
34
|
+
"Blocks": "I\u1e25edran",
|
|
35
|
+
"Blue": "Anili",
|
|
36
|
+
"Blue channel": "",
|
|
37
|
+
"Body": "Tafka",
|
|
38
|
+
"Bold": "Tira tazurant",
|
|
39
|
+
"Border": "Iri",
|
|
40
|
+
"Border color": "Ini n yiri",
|
|
41
|
+
"Border style": "A\u0263anib n yiri",
|
|
42
|
+
"Border width": "Tehri n yiri",
|
|
43
|
+
"Bottom": "Uksar",
|
|
44
|
+
"Browse files": "",
|
|
45
|
+
"Browse for an image": "Snirem iwakken ad tferne\u1e0d tugna",
|
|
46
|
+
"Browse links": "",
|
|
47
|
+
"Build with {0}": "",
|
|
48
|
+
"Bullet list": "Tabdart s tlillac",
|
|
49
|
+
"Cancel": "Semmet",
|
|
50
|
+
"Caption": "",
|
|
51
|
+
"Cell": "Taxxamt",
|
|
52
|
+
"Cell padding": "Tama n texxamt",
|
|
53
|
+
"Cell properties": "Iraten n texxamt",
|
|
54
|
+
"Cell spacing": "Tlunt ger texxamin",
|
|
55
|
+
"Cell styles": "",
|
|
56
|
+
"Cell type": "Anaw n texxamt",
|
|
57
|
+
"Center": "Di tlemmast",
|
|
58
|
+
"Characters": "Isekkilen",
|
|
59
|
+
"Characters (no spaces)": "Isekkilen (tallunin ur ttekkint ara)",
|
|
60
|
+
"Circle": "Tawinest",
|
|
61
|
+
"Class": "Asmil",
|
|
62
|
+
"Clear formatting": "",
|
|
63
|
+
"Close": "Mdel",
|
|
64
|
+
"Code": "Tangalt",
|
|
65
|
+
"Code sample...": "Amedya n tengalt...",
|
|
66
|
+
"Code view": "Abeqqe\u1e0d n tengalt",
|
|
67
|
+
"Color Picker": "Amelqa\u1e0d n yini",
|
|
68
|
+
"Color swatch": "Talemmict n yini",
|
|
69
|
+
"Cols": "Tigejda",
|
|
70
|
+
"Column": "Tagejdit",
|
|
71
|
+
"Column clipboard actions": "",
|
|
72
|
+
"Column group": "Agraw n tgejda",
|
|
73
|
+
"Column header": "",
|
|
74
|
+
"Constrain proportions": "",
|
|
75
|
+
"Copy": "N\u0263el",
|
|
76
|
+
"Copy column": "",
|
|
77
|
+
"Copy row": "N\u0263el adur",
|
|
78
|
+
"Could not find the specified string.": "Ur d-nufi ara azrar i d-yettunefken.",
|
|
79
|
+
"Could not load emojis": "",
|
|
80
|
+
"Count": "A\u0263rud",
|
|
81
|
+
"Currency": "Adrim",
|
|
82
|
+
"Current window": "Asfaylu amiran",
|
|
83
|
+
"Custom color": "",
|
|
84
|
+
"Custom...": "",
|
|
85
|
+
"Cut": "Gzem",
|
|
86
|
+
"Cut column": "",
|
|
87
|
+
"Cut row": "Gzem adur",
|
|
88
|
+
"Dark Blue": "Anili a\u0263mayan",
|
|
89
|
+
"Dark Gray": "Amelli\u0263di a\u0263mayan",
|
|
90
|
+
"Dark Green": "Azegzaw a\u0263mayan",
|
|
91
|
+
"Dark Orange": "A\u010dinawi a\u0263mayan",
|
|
92
|
+
"Dark Purple": "Amidadi a\u0263mayan",
|
|
93
|
+
"Dark Red": "Azegga\u0263 a\u0263mayan",
|
|
94
|
+
"Dark Turquoise": "Ajenjari a\u0263mayan",
|
|
95
|
+
"Dark Yellow": "Awra\u0263 a\u0263mayan",
|
|
96
|
+
"Dashed": "",
|
|
97
|
+
"Date/time": "Azemz/Asrag",
|
|
98
|
+
"Decrease indent": "Simc\u1e6du\u1e25 asi\u1e93i",
|
|
99
|
+
"Default": "Lex\u1e63as",
|
|
100
|
+
"Delete accordion": "",
|
|
101
|
+
"Delete column": "Kkes tagejdit",
|
|
102
|
+
"Delete row": "Kkes tagejdit",
|
|
103
|
+
"Delete table": "Kkes tafelwit",
|
|
104
|
+
"Dimensions": "Tisekta",
|
|
105
|
+
"Disc": "A\u1e0debsi",
|
|
106
|
+
"Div": "",
|
|
107
|
+
"Document": "Isemli",
|
|
108
|
+
"Dotted": "",
|
|
109
|
+
"Double": "",
|
|
110
|
+
"Drop an image here": "Ssers tugna dagi",
|
|
111
|
+
"Dropped file type is not supported": "",
|
|
112
|
+
"Edit": "\u1e92reg",
|
|
113
|
+
"Editor's height: {0} pixels": "",
|
|
114
|
+
"Editor's height: {0} pixels, Editor's width: {1} pixels": "",
|
|
115
|
+
"Embed": "",
|
|
116
|
+
"Emojis": "",
|
|
117
|
+
"Emojis...": "",
|
|
118
|
+
"Error": "Tucc\u1e0da",
|
|
119
|
+
"Error: Form submit field collision.": "Tucc\u1e0da: amgirred n wurtan di tuzzna n tferkit.",
|
|
120
|
+
"Error: No form element found.": "Ulac aferdis n tferkit i yettwafen.",
|
|
121
|
+
"Extended Latin": "Talatinit ye\u1e93len",
|
|
122
|
+
"Failed to initialize plugin: {0}": "Tucc\u1e0da deg wallus n uwennez n usi\u0263zef: {0}",
|
|
123
|
+
"Failed to load plugin url: {0}": "Tucc\u1e0da deg usali n usi\u0263zef: {0}",
|
|
124
|
+
"Failed to load plugin: {0} from url {1}": "Tucc\u1e0da deg usili n usi\u0263zef: {0} seg url {1}",
|
|
125
|
+
"Failed to upload image: {0}": "Tucc\u1e0da deg usili n tugna: {0}",
|
|
126
|
+
"File": "Afaylu",
|
|
127
|
+
"Find": "Nadi",
|
|
128
|
+
"Find (if searchreplace plugin activated)": "Nadi (ma yermed uzegrir searchreplace)",
|
|
129
|
+
"Find and Replace": "",
|
|
130
|
+
"Find and replace...": "Nadi semselsi...",
|
|
131
|
+
"Find in selection": "Af-d di tefrayt",
|
|
132
|
+
"Find whole words only": "Af-d awal ummid kan",
|
|
133
|
+
"Flags": "Annayen",
|
|
134
|
+
"Focus to contextual toolbar": "Asa\u1e0des \u0263ef tfeggagt n ifecka tanattalt",
|
|
135
|
+
"Focus to element path": "Asa\u1e0des \u0263ef ubrid n uferdis",
|
|
136
|
+
"Focus to menubar": "Asa\u1e0des \u0263ef tfeggagt n wumu\u0263",
|
|
137
|
+
"Focus to notification": "",
|
|
138
|
+
"Focus to toolbar": "Asa\u1e0des \u0263ef tfeggagt n ifecka",
|
|
139
|
+
"Font": "Tasefsit",
|
|
140
|
+
"Font size {0}": "",
|
|
141
|
+
"Font sizes": "",
|
|
142
|
+
"Font {0}": "",
|
|
143
|
+
"Fonts": "Tisefsa",
|
|
144
|
+
"Food and Drink": "Tu\u010d\u010dit akked tisit",
|
|
145
|
+
"Footer": "A\u1e0dar",
|
|
146
|
+
"Format": "Amasal",
|
|
147
|
+
"Format {0}": "",
|
|
148
|
+
"Formats": "Imasalen",
|
|
149
|
+
"Fullscreen": "Agdil a\u010duran",
|
|
150
|
+
"G": "",
|
|
151
|
+
"General": "Amatu",
|
|
152
|
+
"Gray": "Amelli\u0263di",
|
|
153
|
+
"Green": "Azegzaw",
|
|
154
|
+
"Green channel": "",
|
|
155
|
+
"Groove": "",
|
|
156
|
+
"Handy Shortcuts": "Inegzumen",
|
|
157
|
+
"Header": "Tasenti\u1e0dt",
|
|
158
|
+
"Header cell": "Tasen\u1e6di\u1e0dt n texxamt",
|
|
159
|
+
"Heading 1": "Inixf 1",
|
|
160
|
+
"Heading 2": "Inixf 2",
|
|
161
|
+
"Heading 3": "Inixf 3",
|
|
162
|
+
"Heading 4": "Inixf 4",
|
|
163
|
+
"Heading 5": "Inixf 5",
|
|
164
|
+
"Heading 6": "Inixf 6",
|
|
165
|
+
"Headings": "Izewlen",
|
|
166
|
+
"Height": "Te\u0263zi",
|
|
167
|
+
"Height:": "",
|
|
168
|
+
"Help": "Tallalt",
|
|
169
|
+
"Hex color code": "",
|
|
170
|
+
"Hexadecimal only, 000000 to FFFFFF": "",
|
|
171
|
+
"Hidden": "",
|
|
172
|
+
"Horizontal align": "",
|
|
173
|
+
"Horizontal line": "Ajerri\u1e0d aglawan",
|
|
174
|
+
"Horizontal space": "Talunt taglawant",
|
|
175
|
+
"ID": "",
|
|
176
|
+
"ID should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.": "",
|
|
177
|
+
"Image is decorative": "",
|
|
178
|
+
"Image list": "Tabdart n tugniwin",
|
|
179
|
+
"Image title": "Azwel n tugna",
|
|
180
|
+
"Image...": "Tugna...",
|
|
181
|
+
"ImageProxy HTTP error: Could not find Image Proxy": "",
|
|
182
|
+
"ImageProxy HTTP error: Incorrect Image Proxy URL": "",
|
|
183
|
+
"ImageProxy HTTP error: Rejected request": "",
|
|
184
|
+
"ImageProxy HTTP error: Unknown ImageProxy error": "",
|
|
185
|
+
"Increase indent": "Sim\u0263ur asi\u1e93i",
|
|
186
|
+
"Inline": "",
|
|
187
|
+
"Insert": "Ger",
|
|
188
|
+
"Insert Template": "",
|
|
189
|
+
"Insert accordion": "",
|
|
190
|
+
"Insert column after": "Sente\u1e0d tagejdit deffir",
|
|
191
|
+
"Insert column before": "Sente\u1e0d tagejdit sdat",
|
|
192
|
+
"Insert date/time": "Ger azemz/asrag",
|
|
193
|
+
"Insert date/time menu": "",
|
|
194
|
+
"Insert image": "Ger tugna",
|
|
195
|
+
"Insert link (if link plugin activated)": "Ger ase\u0263wen (ma yermed uzegrir n use\u0263wen)",
|
|
196
|
+
"Insert row after": "Ger adur sdat",
|
|
197
|
+
"Insert row before": "Ger adur deffir",
|
|
198
|
+
"Insert table": "Ger tafelwit",
|
|
199
|
+
"Insert template...": "Ger tane\u0263ruft...",
|
|
200
|
+
"Insert video": "Ger avidyu",
|
|
201
|
+
"Insert/Edit code sample": "Ger/\u1e92reg tangalt n umedya",
|
|
202
|
+
"Insert/edit image": "Ger/\u1e92reg tugna",
|
|
203
|
+
"Insert/edit link": "Ger/\u1e93reg azday",
|
|
204
|
+
"Insert/edit media": "Ger/\u1e92reg amiya",
|
|
205
|
+
"Insert/edit video": "Ger/\u1e93reg avidyu",
|
|
206
|
+
"Inset": "",
|
|
207
|
+
"Invalid hex color code: {0}": "",
|
|
208
|
+
"Invalid input": "",
|
|
209
|
+
"Italic": "Tira yeknan",
|
|
210
|
+
"Justify": "",
|
|
211
|
+
"Keyboard Navigation": "Tunigin s unasiw",
|
|
212
|
+
"Language": "Tutlayt",
|
|
213
|
+
"Learn more...": "\u1e92er ugar...",
|
|
214
|
+
"Left": "\u0194er zelma\u1e0d",
|
|
215
|
+
"Left to right": "Seg zelma\u1e0d \u0263er yefus",
|
|
216
|
+
"Light Blue": "Anili afaw",
|
|
217
|
+
"Light Gray": "Amelli\u0263di afaw",
|
|
218
|
+
"Light Green": "Azegzaw afaw",
|
|
219
|
+
"Light Purple": "Amidadi afaw",
|
|
220
|
+
"Light Red": "Azegga\u0263 afaw",
|
|
221
|
+
"Light Yellow": "Awra\u0263 afaw",
|
|
222
|
+
"Line height": "",
|
|
223
|
+
"Link": "",
|
|
224
|
+
"Link list": "Tabdart n is\u0263ewnen",
|
|
225
|
+
"Link...": "As\u0263en...",
|
|
226
|
+
"List Properties": "",
|
|
227
|
+
"List properties...": "",
|
|
228
|
+
"Loading emojis...": "",
|
|
229
|
+
"Loading...": "",
|
|
230
|
+
"Lower Alpha": "Alpha ame\u1e93yan",
|
|
231
|
+
"Lower Greek": "Grik ame\u1e93yan",
|
|
232
|
+
"Lower Roman": "Ruman amectu\u1e25",
|
|
233
|
+
"Match case": "",
|
|
234
|
+
"Mathematical": "Inemhalen usnaken",
|
|
235
|
+
"Media poster (Image URL)": "Abeqqi\u1e0d n umidya (URL n tugna)",
|
|
236
|
+
"Media...": "Amidya...",
|
|
237
|
+
"Medium Blue": "Anili alemmas",
|
|
238
|
+
"Medium Gray": "Amelli\u0263di alemmas",
|
|
239
|
+
"Medium Purple": "Amidadi alemmas",
|
|
240
|
+
"Merge cells": "Seddukel tixxamin",
|
|
241
|
+
"Middle": "Di tlemmast",
|
|
242
|
+
"Midnight Blue": "Anili n yi\u1e0d",
|
|
243
|
+
"More...": "Ugar...",
|
|
244
|
+
"Name": "Isem",
|
|
245
|
+
"Navy Blue": "Anili n yilel",
|
|
246
|
+
"New document": "Attaftar amaynut",
|
|
247
|
+
"New window": "Asfaylu amaynut",
|
|
248
|
+
"Next": "Win \u0263ers",
|
|
249
|
+
"No": "Ala",
|
|
250
|
+
"No alignment": "",
|
|
251
|
+
"No color": "Ulac ini",
|
|
252
|
+
"Nonbreaking space": "Talunt ur nettwagzam ara",
|
|
253
|
+
"None": "Ulac",
|
|
254
|
+
"Numbered list": "Tabdart s wu\u1e6d\u1e6dunen",
|
|
255
|
+
"Numbers only, 0 to 255": "",
|
|
256
|
+
"OR": "Ih",
|
|
257
|
+
"Objects": "Ti\u0263awsiwin",
|
|
258
|
+
"Ok": "Ih",
|
|
259
|
+
"Open help dialog": "Ldi tankult n udiwenni n tallelt",
|
|
260
|
+
"Open link": "Ldi ase\u0263wen",
|
|
261
|
+
"Open link in...": "Ldi as\u0263en di...",
|
|
262
|
+
"Open popup menu for split buttons": "",
|
|
263
|
+
"Orange": "A\u010d\u010dinawi",
|
|
264
|
+
"Outset": "",
|
|
265
|
+
"Page break": "Angaz n usebter",
|
|
266
|
+
"Paragraph": "taseddart",
|
|
267
|
+
"Paste": "Sente\u1e0d",
|
|
268
|
+
"Paste as text": "Sente\u1e0d d a\u1e0dris",
|
|
269
|
+
"Paste column after": "",
|
|
270
|
+
"Paste column before": "",
|
|
271
|
+
"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "",
|
|
272
|
+
"Paste or type a link": "Sente\u1e0d ne\u0263 sekcem ase\u0263wen",
|
|
273
|
+
"Paste row after": "Sente\u1e0d adur deffir",
|
|
274
|
+
"Paste row before": "Sente\u1e0d adur sdat",
|
|
275
|
+
"Paste your embed code below:": "",
|
|
276
|
+
"People": "L\u0263aci",
|
|
277
|
+
"Plugins": "Isi\u0263zifen",
|
|
278
|
+
"Plugins installed ({0}):": "Izegriren yettwasbedden ({0}):",
|
|
279
|
+
"Powered by {0}": "Iteddu s {0} ",
|
|
280
|
+
"Pre": "",
|
|
281
|
+
"Preferences": "Imenyafen",
|
|
282
|
+
"Preformatted": "Yettwamsel si tazwara",
|
|
283
|
+
"Premium plugins:": "Izegriren premium :",
|
|
284
|
+
"Press the Up and Down arrow keys to resize the editor.": "",
|
|
285
|
+
"Press the arrow keys to resize the editor.": "",
|
|
286
|
+
"Press {0} for help": "",
|
|
287
|
+
"Preview": "Sken",
|
|
288
|
+
"Previous": "Uzwir",
|
|
289
|
+
"Print": "",
|
|
290
|
+
"Print...": "Siggez...",
|
|
291
|
+
"Purple": "Amidadi",
|
|
292
|
+
"Quotations": "Tinebdurin",
|
|
293
|
+
"R": "",
|
|
294
|
+
"Range 0 to 255": "",
|
|
295
|
+
"Red": "Azegga\u0263",
|
|
296
|
+
"Red channel": "",
|
|
297
|
+
"Redo": "Err-d",
|
|
298
|
+
"Remove": "",
|
|
299
|
+
"Remove color": "Kkes ini",
|
|
300
|
+
"Remove link": "Kkes azday",
|
|
301
|
+
"Replace": "Semselsi",
|
|
302
|
+
"Replace all": "Semselsi kulec",
|
|
303
|
+
"Replace with": "Semselsi s",
|
|
304
|
+
"Resize": "Beddel tiddi",
|
|
305
|
+
"Restore last draft": "",
|
|
306
|
+
"Reveal or hide additional toolbar items": "",
|
|
307
|
+
"Rich Text Area": "",
|
|
308
|
+
"Rich Text Area. Press ALT-0 for help.": "Ta\u0263zut n u\u1e0dris anesba\u0263ur. Ssed ALT-0 i tallelt.",
|
|
309
|
+
"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "",
|
|
310
|
+
"Ridge": "",
|
|
311
|
+
"Right": "\u0194er yefus",
|
|
312
|
+
"Right to left": "Seg yefus \u0263er zelma\u1e0d",
|
|
313
|
+
"Row": "Adur",
|
|
314
|
+
"Row clipboard actions": "",
|
|
315
|
+
"Row group": "Agraw n waduren",
|
|
316
|
+
"Row header": "",
|
|
317
|
+
"Row properties": "Iraten n udur",
|
|
318
|
+
"Row type": "Anaw n wadur",
|
|
319
|
+
"Rows": "Aduren",
|
|
320
|
+
"Save": "Sekles",
|
|
321
|
+
"Save (if save plugin activated)": "Sekles (ma yermed uzegrir save)",
|
|
322
|
+
"Scope": "",
|
|
323
|
+
"Search": "Nadi",
|
|
324
|
+
"Select all": "Fren kulec",
|
|
325
|
+
"Select the {0} element": "",
|
|
326
|
+
"Select...": "Fren...",
|
|
327
|
+
"Selection": "Tafrayt",
|
|
328
|
+
"Shortcut": "Anegzum",
|
|
329
|
+
"Show blocks": "Beqqe\u1e0d i\u1e25edran",
|
|
330
|
+
"Show caption": "Sken taw\u1e6d\u1e6dfa",
|
|
331
|
+
"Show invisible characters": "Beqqe\u1e0d isekkilen uffiren",
|
|
332
|
+
"Size": "Tiddi",
|
|
333
|
+
"Solid": "",
|
|
334
|
+
"Source": "A\u0263balu",
|
|
335
|
+
"Source code": "Tangalt ta\u0263balut",
|
|
336
|
+
"Special Character": "",
|
|
337
|
+
"Special character...": "Isekkilen uzzigen...",
|
|
338
|
+
"Split cell": "B\u1e0du tixxamin",
|
|
339
|
+
"Square": "Amku\u1e93",
|
|
340
|
+
"Start list at number": "",
|
|
341
|
+
"Strikethrough": "",
|
|
342
|
+
"Style": "A\u0263anib",
|
|
343
|
+
"Subscript": "",
|
|
344
|
+
"Superscript": "",
|
|
345
|
+
"Switch to or from fullscreen mode": "Kcem ne\u0263 ffe\u0263 agdil a\u010d\u010duran",
|
|
346
|
+
"Symbols": "Izamulen",
|
|
347
|
+
"System Font": "Anagraw n tsefsa",
|
|
348
|
+
"Table": "Tafelwit",
|
|
349
|
+
"Table caption": "",
|
|
350
|
+
"Table properties": "Iraten n tfelwit",
|
|
351
|
+
"Table styles": "",
|
|
352
|
+
"Template": "Tine\u0263rufin",
|
|
353
|
+
"Templates": "Timudimin",
|
|
354
|
+
"Text": "A\u1e0dris",
|
|
355
|
+
"Text color": "Ini n u\u1e0dris",
|
|
356
|
+
"Text color menu": "",
|
|
357
|
+
"Text color {0}": "",
|
|
358
|
+
"Text to display": "A\u1e0dris ara yettwabeqq\u1e0den",
|
|
359
|
+
"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "URL i teskecme\u1e0d tettban-d d tansa email. teb\u0263i\u1e0d ad s-ternu\u1e0d azwir mailto : ?",
|
|
360
|
+
"The URL you entered seems to be an external link. Do you want to add the required http:// prefix?": "URL i teskecme\u1e0d tettban-d d azday uffi\u0263. Teb\u0263i\u1e0d ad s-ternu\u1e0d azwir http:// ?",
|
|
361
|
+
"The URL you entered seems to be an external link. Do you want to add the required https:// prefix?": "",
|
|
362
|
+
"Title": "Azwel",
|
|
363
|
+
"To open the popup, press Shift+Enter": "Iwakken ad teldi\u1e0d asfaylu udhim, ssed Shift+Kcem",
|
|
364
|
+
"Toggle accordion": "",
|
|
365
|
+
"Tools": "Ifecka",
|
|
366
|
+
"Top": "Uksawen",
|
|
367
|
+
"Travel and Places": "Asikel akked ime\u1e0dqan",
|
|
368
|
+
"Turquoise": "Ajenjari",
|
|
369
|
+
"Underline": "Aderrer",
|
|
370
|
+
"Undo": "Semmet",
|
|
371
|
+
"Upload": "Sili",
|
|
372
|
+
"Uploading image": "",
|
|
373
|
+
"Upper Alpha": "Alfa ameqran",
|
|
374
|
+
"Upper Roman": "Ruman ameqran",
|
|
375
|
+
"Url": "",
|
|
376
|
+
"Use arrow keys to navigate.": "",
|
|
377
|
+
"User Defined": "Yesbadu-t useqdac",
|
|
378
|
+
"Valid": "Ame\u0263tu",
|
|
379
|
+
"Version": "Lqem",
|
|
380
|
+
"Vertical align": "",
|
|
381
|
+
"Vertical space": "Talunt taratakt",
|
|
382
|
+
"View": "Tamu\u0263li",
|
|
383
|
+
"Visual aids": "",
|
|
384
|
+
"Warn": "\u0190eyyen",
|
|
385
|
+
"White": "Amellal",
|
|
386
|
+
"Width": "Tehri",
|
|
387
|
+
"Width:": "",
|
|
388
|
+
"Word count": "Am\u1e0dan n wawalen",
|
|
389
|
+
"Words": "Awalen",
|
|
390
|
+
"Words: {0}": "",
|
|
391
|
+
"Yellow": "Awra\u0263",
|
|
392
|
+
"Yes": "Ih",
|
|
393
|
+
"You are using {0}": "Tsseqdace\u1e0d {0}",
|
|
394
|
+
"You have unsaved changes are you sure you want to navigate away?": "Ibeddilen ur twaskelsen ara teb\u0263i\u1e0d ad teff\u0263e\u1e0d ?",
|
|
395
|
+
"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X/C/V keyboard shortcuts instead.": "",
|
|
396
|
+
"alignment": "aderrec",
|
|
397
|
+
"austral sign": "azamul n ustral",
|
|
398
|
+
"cedi sign": "azamul n siddi",
|
|
399
|
+
"colon sign": "azamul n kulun",
|
|
400
|
+
"cruzeiro sign": "azamul n krutayru",
|
|
401
|
+
"currency sign": "Azamul n wedrim",
|
|
402
|
+
"dollar sign": "Azamul n dular",
|
|
403
|
+
"dong sign": "azamul n dung",
|
|
404
|
+
"drachma sign": "azamul n d\u1e5bacma",
|
|
405
|
+
"euro-currency sign": "azamul n euro",
|
|
406
|
+
"example": "amedya",
|
|
407
|
+
"formatting": "amsal",
|
|
408
|
+
"french franc sign": "azamul n f\u1e5bank afransi",
|
|
409
|
+
"german penny symbol": "azamul n pini almani",
|
|
410
|
+
"guarani sign": "azamul n gwa\u1e5bani",
|
|
411
|
+
"history": "Amazray",
|
|
412
|
+
"hryvnia sign": "azamul n hrivniya",
|
|
413
|
+
"indentation": "asi\u1e93i",
|
|
414
|
+
"indian rupee sign": "azamul n urupi ahindi",
|
|
415
|
+
"kip sign": "azamul n kip",
|
|
416
|
+
"lira sign": "azamul n lira",
|
|
417
|
+
"livre tournois sign": "azamul lira aturnwa",
|
|
418
|
+
"manat sign": "azamul n mana\u1e6d",
|
|
419
|
+
"mill sign": "azamul n mil",
|
|
420
|
+
"naira sign": "azamul n nayra",
|
|
421
|
+
"new sheqel sign": "azamul n ciqel amaynut",
|
|
422
|
+
"nordic mark sign": "azamul n ma\u1e5bk n ugafa",
|
|
423
|
+
"peseta sign": "azamul n pizi\u1e6da",
|
|
424
|
+
"peso sign": "azamul n pizu",
|
|
425
|
+
"ruble sign": "azamul n rubl",
|
|
426
|
+
"rupee sign": "azamul n urupi",
|
|
427
|
+
"spesmilo sign": "azamul n spismilu",
|
|
428
|
+
"styles": "i\u0263unab",
|
|
429
|
+
"tenge sign": "azamul n tingi",
|
|
430
|
+
"tugrik sign": "azamul n tugrik",
|
|
431
|
+
"turkish lira sign": "azamul n lira a\u1e6durki",
|
|
432
|
+
"won sign": "azamul n wun",
|
|
433
|
+
"yen character": "azamul n yan",
|
|
434
|
+
"yen/yuan character variant one": "yan/yuwan tasenfelt n usekkil yiwen",
|
|
435
|
+
"yuan character": "azamul n yuwan",
|
|
436
|
+
"yuan character, in hong kong and taiwan": "asekkil n yuwan, di hunkung akked \u1e6daywan",
|
|
437
|
+
"{0} characters": "{0} n yisekkilen",
|
|
438
|
+
"{0} columns, {1} rows": "",
|
|
439
|
+
"{0} words": "{0} n wawalen"
|
|
440
|
+
});
|