svelte-comp 1.2.5 → 1.2.6
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/README.md +1 -1
- package/package.json +1 -1
- package/dist/App.svelte +0 -551
- package/dist/App.svelte.d.ts +0 -3
- package/dist/Container.svelte +0 -60
- package/dist/Container.svelte.d.ts +0 -12
- package/dist/app.css +0 -235
- package/dist/index.d.ts +0 -5
- package/dist/index.js +0 -6
- package/dist/lang.d.ts +0 -1081
- package/dist/lang.js +0 -1096
- package/dist/lib/Accordion.svelte +0 -155
- package/dist/lib/Accordion.svelte.d.ts +0 -40
- package/dist/lib/Button.svelte +0 -170
- package/dist/lib/Button.svelte.d.ts +0 -53
- package/dist/lib/Card.svelte +0 -103
- package/dist/lib/Card.svelte.d.ts +0 -42
- package/dist/lib/Carousel.svelte +0 -293
- package/dist/lib/Carousel.svelte.d.ts +0 -13
- package/dist/lib/CheckBox.svelte +0 -210
- package/dist/lib/CheckBox.svelte.d.ts +0 -53
- package/dist/lib/CodeView.svelte +0 -307
- package/dist/lib/CodeView.svelte.d.ts +0 -64
- package/dist/lib/ColorPicker.svelte +0 -161
- package/dist/lib/ColorPicker.svelte.d.ts +0 -40
- package/dist/lib/DatePicker.svelte +0 -170
- package/dist/lib/DatePicker.svelte.d.ts +0 -53
- package/dist/lib/Dialog.svelte +0 -235
- package/dist/lib/Dialog.svelte.d.ts +0 -58
- package/dist/lib/Field.svelte +0 -299
- package/dist/lib/Field.svelte.d.ts +0 -8
- package/dist/lib/FilePicker.svelte +0 -241
- package/dist/lib/FilePicker.svelte.d.ts +0 -52
- package/dist/lib/Form.svelte +0 -438
- package/dist/lib/Form.svelte.d.ts +0 -20
- package/dist/lib/Hamburger.svelte +0 -211
- package/dist/lib/Hamburger.svelte.d.ts +0 -52
- package/dist/lib/Menu.svelte +0 -623
- package/dist/lib/Menu.svelte.d.ts +0 -33
- package/dist/lib/PaginatedCard.svelte +0 -73
- package/dist/lib/PaginatedCard.svelte.d.ts +0 -11
- package/dist/lib/Pagination.svelte +0 -119
- package/dist/lib/Pagination.svelte.d.ts +0 -9
- package/dist/lib/PrimaryColorSelect.svelte +0 -113
- package/dist/lib/PrimaryColorSelect.svelte.d.ts +0 -9
- package/dist/lib/ProgressBar.svelte +0 -141
- package/dist/lib/ProgressBar.svelte.d.ts +0 -48
- package/dist/lib/ProgressCircle.svelte +0 -192
- package/dist/lib/ProgressCircle.svelte.d.ts +0 -39
- package/dist/lib/Radio.svelte +0 -189
- package/dist/lib/Radio.svelte.d.ts +0 -55
- package/dist/lib/SearchInput.svelte +0 -106
- package/dist/lib/SearchInput.svelte.d.ts +0 -13
- package/dist/lib/Select.svelte +0 -524
- package/dist/lib/Select.svelte.d.ts +0 -21
- package/dist/lib/Slider.svelte +0 -253
- package/dist/lib/Slider.svelte.d.ts +0 -56
- package/dist/lib/Splitter.svelte +0 -150
- package/dist/lib/Splitter.svelte.d.ts +0 -43
- package/dist/lib/Switch.svelte +0 -167
- package/dist/lib/Switch.svelte.d.ts +0 -42
- package/dist/lib/Table.svelte +0 -299
- package/dist/lib/Table.svelte.d.ts +0 -17
- package/dist/lib/Tabs.svelte +0 -213
- package/dist/lib/Tabs.svelte.d.ts +0 -48
- package/dist/lib/ThemeToggle.svelte +0 -127
- package/dist/lib/ThemeToggle.svelte.d.ts +0 -32
- package/dist/lib/TimePicker.svelte +0 -269
- package/dist/lib/TimePicker.svelte.d.ts +0 -48
- package/dist/lib/Toast.svelte +0 -226
- package/dist/lib/Toast.svelte.d.ts +0 -14
- package/dist/lib/Tooltip.svelte +0 -110
- package/dist/lib/Tooltip.svelte.d.ts +0 -40
- package/dist/lib/index.d.ts +0 -32
- package/dist/lib/index.js +0 -33
- package/dist/lib/lang.d.ts +0 -158
- package/dist/lib/lang.js +0 -150
- package/dist/lib/types/index.d.ts +0 -111
- package/dist/lib/types/index.js +0 -26
- package/dist/main.d.ts +0 -3
- package/dist/main.js +0 -7
- package/dist/styles.css +0 -232
- package/dist/utils/index.d.ts +0 -34
- package/dist/utils/index.js +0 -268
package/dist/lang.d.ts
DELETED
|
@@ -1,1081 +0,0 @@
|
|
|
1
|
-
export declare const TEXTS: {
|
|
2
|
-
readonly en: {
|
|
3
|
-
readonly app: {
|
|
4
|
-
readonly version: "v1.2.1";
|
|
5
|
-
readonly title: "Svelte 5 UI Components";
|
|
6
|
-
readonly footer: "© 2025 MaestroFusion360";
|
|
7
|
-
readonly authorUrl: "https://github.com/MaestroFusion360/svelte-comp";
|
|
8
|
-
readonly language: {
|
|
9
|
-
readonly label: "Language";
|
|
10
|
-
readonly options: {
|
|
11
|
-
label: string;
|
|
12
|
-
value: string;
|
|
13
|
-
}[];
|
|
14
|
-
};
|
|
15
|
-
};
|
|
16
|
-
readonly pageLabels: {
|
|
17
|
-
readonly about: "About";
|
|
18
|
-
readonly accordion: "Accordion";
|
|
19
|
-
readonly button: "Button";
|
|
20
|
-
readonly card: "Card";
|
|
21
|
-
readonly carousel: "Carousel";
|
|
22
|
-
readonly checkbox: "CheckBox";
|
|
23
|
-
readonly codeView: "Code View";
|
|
24
|
-
readonly colorPicker: "Color Picker";
|
|
25
|
-
readonly datePicker: "Date Picker";
|
|
26
|
-
readonly dialog: "Dialog";
|
|
27
|
-
readonly field: "Field";
|
|
28
|
-
readonly filePicker: "File Picker";
|
|
29
|
-
readonly form: "Form";
|
|
30
|
-
readonly menu: "Menu";
|
|
31
|
-
readonly notepad: "Notepad";
|
|
32
|
-
readonly progressBar: "ProgressBar";
|
|
33
|
-
readonly progressCircle: "ProgressCircle";
|
|
34
|
-
readonly radio: "Radio";
|
|
35
|
-
readonly searchInput: "Search Input";
|
|
36
|
-
readonly select: "Select";
|
|
37
|
-
readonly slider: "Slider";
|
|
38
|
-
readonly splitter: "Splitter";
|
|
39
|
-
readonly switch: "Switch";
|
|
40
|
-
readonly tablePagination: "Table & Pagination";
|
|
41
|
-
readonly tabs: "Tabs";
|
|
42
|
-
readonly themeToggle: "Theme Toggle";
|
|
43
|
-
readonly timePicker: "Time Picker";
|
|
44
|
-
readonly toast: "Toast";
|
|
45
|
-
};
|
|
46
|
-
readonly about: {
|
|
47
|
-
readonly heading: "About";
|
|
48
|
-
readonly meta: "Project Info";
|
|
49
|
-
readonly intro: {
|
|
50
|
-
readonly description: " is a clean, themeable, and fully typed component library built with ";
|
|
51
|
-
readonly frameworks: {
|
|
52
|
-
readonly runes: "Svelte 5 (Runes API)";
|
|
53
|
-
readonly tailwind: "TailwindCSS";
|
|
54
|
-
};
|
|
55
|
-
readonly connector: " and ";
|
|
56
|
-
readonly closing: ".";
|
|
57
|
-
};
|
|
58
|
-
readonly styling: {
|
|
59
|
-
readonly beforeFile: "Components are styled using CSS variables defined in ";
|
|
60
|
-
readonly file: "src/app.css";
|
|
61
|
-
readonly afterFile: ", making theme customization easy and consistent. Dark mode is enabled globally by adding the ";
|
|
62
|
-
readonly darkClass: ".dark";
|
|
63
|
-
readonly afterDark: " class to the document root.";
|
|
64
|
-
};
|
|
65
|
-
readonly patterns: "The library demonstrates practical UI patterns such as responsive cards, interactive forms, dialogs, and data tables, following a unified design system for modern Svelte projects.";
|
|
66
|
-
readonly versionLabel: "Version";
|
|
67
|
-
readonly authorLabel: "Author";
|
|
68
|
-
readonly authorName: "MaestroFusion360";
|
|
69
|
-
};
|
|
70
|
-
readonly states: {
|
|
71
|
-
readonly emptyPreview: "No preview available";
|
|
72
|
-
};
|
|
73
|
-
readonly options: {
|
|
74
|
-
readonly selectCountries: {
|
|
75
|
-
label: string;
|
|
76
|
-
value: string;
|
|
77
|
-
}[];
|
|
78
|
-
readonly formGender: {
|
|
79
|
-
value: string;
|
|
80
|
-
label: string;
|
|
81
|
-
}[];
|
|
82
|
-
readonly formCountries: {
|
|
83
|
-
value: string;
|
|
84
|
-
label: string;
|
|
85
|
-
}[];
|
|
86
|
-
};
|
|
87
|
-
readonly form: {
|
|
88
|
-
readonly header: "Registration form";
|
|
89
|
-
readonly footer: {
|
|
90
|
-
readonly cancel: "Cancel";
|
|
91
|
-
readonly submit: "Submit";
|
|
92
|
-
readonly random: "Random";
|
|
93
|
-
};
|
|
94
|
-
readonly fields: {
|
|
95
|
-
readonly firstName: "First name";
|
|
96
|
-
readonly lastName: "Last name";
|
|
97
|
-
readonly email: "Email";
|
|
98
|
-
readonly password: "Password";
|
|
99
|
-
readonly confirmPassword: "Confirm password";
|
|
100
|
-
readonly age: "Age";
|
|
101
|
-
readonly gender: "Gender";
|
|
102
|
-
readonly country: "Country";
|
|
103
|
-
readonly about: "About yourself";
|
|
104
|
-
readonly newsletter: "Subscribe to newsletter";
|
|
105
|
-
readonly tos: "Accept terms and conditions";
|
|
106
|
-
};
|
|
107
|
-
readonly validators: {
|
|
108
|
-
readonly passwordLength: "Minimum 6 characters";
|
|
109
|
-
readonly passwordMatch: "Passwords do not match";
|
|
110
|
-
readonly adultsOnly: "Adults only";
|
|
111
|
-
};
|
|
112
|
-
};
|
|
113
|
-
readonly table: {
|
|
114
|
-
readonly positionPrefix: "Position";
|
|
115
|
-
readonly columns: {
|
|
116
|
-
readonly id: "ID";
|
|
117
|
-
readonly item: "Product";
|
|
118
|
-
readonly qty: "Quantity";
|
|
119
|
-
readonly price: "Price";
|
|
120
|
-
};
|
|
121
|
-
};
|
|
122
|
-
readonly toasts: {
|
|
123
|
-
readonly confirmTitle: "Action Confirmed";
|
|
124
|
-
readonly confirmMessage: "Your action was successfully completed!";
|
|
125
|
-
readonly cancelTitle: "Action Cancelled";
|
|
126
|
-
readonly cancelMessage: "You cancelled the action.";
|
|
127
|
-
};
|
|
128
|
-
readonly menuDemo: {
|
|
129
|
-
readonly menus: {
|
|
130
|
-
readonly file: "File";
|
|
131
|
-
readonly edit: "Edit";
|
|
132
|
-
readonly view: "View";
|
|
133
|
-
};
|
|
134
|
-
readonly actions: {
|
|
135
|
-
readonly new: "New";
|
|
136
|
-
readonly open: "Open";
|
|
137
|
-
readonly save: "Save";
|
|
138
|
-
readonly export: "Export";
|
|
139
|
-
readonly exportCsv: "CSV";
|
|
140
|
-
readonly exportPdf: "PDF";
|
|
141
|
-
readonly exportZip: "ZIP archive";
|
|
142
|
-
readonly close: "Close";
|
|
143
|
-
readonly undo: "Undo";
|
|
144
|
-
readonly redo: "Redo";
|
|
145
|
-
readonly cut: "Cut";
|
|
146
|
-
readonly copy: "Copy";
|
|
147
|
-
readonly paste: "Paste";
|
|
148
|
-
readonly find: "Find";
|
|
149
|
-
readonly findNext: "Find Next";
|
|
150
|
-
readonly findPrev: "Find Previous";
|
|
151
|
-
readonly theme: "Theme";
|
|
152
|
-
readonly light: "Light";
|
|
153
|
-
readonly dark: "Dark";
|
|
154
|
-
};
|
|
155
|
-
readonly prompt: "Pick any menu item or use keyboard arrows/Enter/Esc";
|
|
156
|
-
readonly fallbackLabel: "unknown";
|
|
157
|
-
};
|
|
158
|
-
readonly notepad: {
|
|
159
|
-
readonly menu: {
|
|
160
|
-
readonly file: "File";
|
|
161
|
-
readonly edit: "Edit";
|
|
162
|
-
readonly view: "View";
|
|
163
|
-
readonly language: "Language";
|
|
164
|
-
readonly help: "Help";
|
|
165
|
-
readonly settings: "Settings";
|
|
166
|
-
};
|
|
167
|
-
readonly actions: {
|
|
168
|
-
readonly new: "New";
|
|
169
|
-
readonly open: "Open";
|
|
170
|
-
readonly save: "Save";
|
|
171
|
-
readonly undo: "Undo";
|
|
172
|
-
readonly redo: "Redo";
|
|
173
|
-
readonly cut: "Cut";
|
|
174
|
-
readonly copy: "Copy";
|
|
175
|
-
readonly paste: "Paste";
|
|
176
|
-
readonly about: "About";
|
|
177
|
-
readonly statusBar: "Status bar";
|
|
178
|
-
readonly options: "Options";
|
|
179
|
-
readonly xs: "XS";
|
|
180
|
-
readonly sm: "SM";
|
|
181
|
-
readonly md: "MD";
|
|
182
|
-
readonly lg: "LG";
|
|
183
|
-
readonly xl: "XL";
|
|
184
|
-
};
|
|
185
|
-
readonly confirmNew: "Clear the current note?";
|
|
186
|
-
readonly openError: "Unable to open the file";
|
|
187
|
-
readonly saveError: "Unable to save the file";
|
|
188
|
-
readonly cutError: "Unable to cut selection";
|
|
189
|
-
readonly copyError: "Unable to copy selection";
|
|
190
|
-
readonly pasteError: "Unable to paste";
|
|
191
|
-
readonly undoError: "Nothing to undo";
|
|
192
|
-
readonly redoError: "Nothing to redo";
|
|
193
|
-
readonly aboutText: "Simple notepad demo with menu actions and syntax highlighting.";
|
|
194
|
-
readonly optionsText: "Change appearance options such as status bar visibility.";
|
|
195
|
-
};
|
|
196
|
-
readonly components: {
|
|
197
|
-
readonly codeView: {
|
|
198
|
-
readonly subtitle: "Display code snippets";
|
|
199
|
-
};
|
|
200
|
-
readonly colorPicker: {
|
|
201
|
-
readonly label: "Choose color";
|
|
202
|
-
readonly placeholder: "No color selected";
|
|
203
|
-
readonly subtitle: "Pick a brand color";
|
|
204
|
-
};
|
|
205
|
-
readonly datePicker: {
|
|
206
|
-
readonly label: "Choose date";
|
|
207
|
-
readonly placeholder: "No date selected";
|
|
208
|
-
readonly subtitle: "Schedule important dates";
|
|
209
|
-
};
|
|
210
|
-
readonly dialog: {
|
|
211
|
-
readonly ok: "OK";
|
|
212
|
-
readonly cancel: "Cancel";
|
|
213
|
-
};
|
|
214
|
-
readonly filePicker: {
|
|
215
|
-
readonly label: "Choose files";
|
|
216
|
-
readonly subtitle: "Upload interactions";
|
|
217
|
-
};
|
|
218
|
-
readonly menu: {
|
|
219
|
-
readonly subtitle: "Menu with size options";
|
|
220
|
-
};
|
|
221
|
-
readonly timePicker: {
|
|
222
|
-
readonly label: "Choose time";
|
|
223
|
-
readonly placeholder: "No time selected";
|
|
224
|
-
readonly subtitle: "Plan sessions";
|
|
225
|
-
};
|
|
226
|
-
};
|
|
227
|
-
readonly playground: {
|
|
228
|
-
readonly controls: {
|
|
229
|
-
readonly size: "Size";
|
|
230
|
-
readonly variant: "Variant";
|
|
231
|
-
readonly label: "Label";
|
|
232
|
-
readonly disabled: "Disabled";
|
|
233
|
-
readonly fieldType: "Field type";
|
|
234
|
-
readonly sliderShowValue: "Value";
|
|
235
|
-
readonly playcardLabel: "Label";
|
|
236
|
-
readonly playcardSubtitle: "Component preview";
|
|
237
|
-
};
|
|
238
|
-
};
|
|
239
|
-
readonly snippets: {
|
|
240
|
-
readonly about: {
|
|
241
|
-
readonly description: "Cards are flexible containers used to group related content. Use the size control above to preview padding and typography changes.";
|
|
242
|
-
readonly helper: "They accept header and footer snippets so you can compose toolbars, badges, or any custom markup.";
|
|
243
|
-
};
|
|
244
|
-
readonly card: {
|
|
245
|
-
readonly header: "Feature Overview";
|
|
246
|
-
readonly updated: "Updated just now";
|
|
247
|
-
readonly docsLink: "View Docs";
|
|
248
|
-
};
|
|
249
|
-
readonly accordion: {
|
|
250
|
-
readonly items: readonly [{
|
|
251
|
-
readonly title: "First";
|
|
252
|
-
readonly content: "This is the first item";
|
|
253
|
-
}, {
|
|
254
|
-
readonly title: "Second";
|
|
255
|
-
readonly content: "This is the second item";
|
|
256
|
-
}, {
|
|
257
|
-
readonly title: "Third";
|
|
258
|
-
readonly content: "This is the third item";
|
|
259
|
-
}];
|
|
260
|
-
};
|
|
261
|
-
readonly carousel: {
|
|
262
|
-
readonly slides: readonly [{
|
|
263
|
-
readonly title: "First Slide";
|
|
264
|
-
readonly content: "This is the first slide content";
|
|
265
|
-
readonly image: "https://picsum.photos/800/400?1";
|
|
266
|
-
}, {
|
|
267
|
-
readonly title: "Second Slide";
|
|
268
|
-
readonly content: "This is the second slide content";
|
|
269
|
-
readonly image: "https://picsum.photos/800/400?2";
|
|
270
|
-
}, {
|
|
271
|
-
readonly title: "Third Slide";
|
|
272
|
-
readonly content: "This is the third slide content";
|
|
273
|
-
readonly image: "https://picsum.photos/800/400?3";
|
|
274
|
-
}];
|
|
275
|
-
};
|
|
276
|
-
readonly dialog: {
|
|
277
|
-
readonly button: "Open Dialog";
|
|
278
|
-
readonly confirm: "Are you sure you want to continue?";
|
|
279
|
-
readonly title: "Dialog";
|
|
280
|
-
readonly subtitle: "Modal interactions";
|
|
281
|
-
};
|
|
282
|
-
readonly toast: {
|
|
283
|
-
readonly buttonPrefix: "Show ";
|
|
284
|
-
readonly subtitle: "Notification toasts";
|
|
285
|
-
};
|
|
286
|
-
readonly field: {
|
|
287
|
-
readonly text: "Text Field";
|
|
288
|
-
readonly number: "Number Field";
|
|
289
|
-
readonly textarea: "Textarea Field";
|
|
290
|
-
readonly placeholder: "0";
|
|
291
|
-
readonly subtitle: "Sizes and variants";
|
|
292
|
-
};
|
|
293
|
-
readonly tabs: {
|
|
294
|
-
readonly labels: readonly ["One", "Two", "Three"];
|
|
295
|
-
readonly contents: readonly ["One content", "Two content", "Three content"];
|
|
296
|
-
readonly subtitle: "Different styles";
|
|
297
|
-
};
|
|
298
|
-
readonly select: {
|
|
299
|
-
readonly label: "Country";
|
|
300
|
-
readonly subtitle: "Sizes and variants";
|
|
301
|
-
};
|
|
302
|
-
readonly switch: {
|
|
303
|
-
readonly subtitle: "Sizes";
|
|
304
|
-
readonly labelPrefix: "Switch";
|
|
305
|
-
};
|
|
306
|
-
readonly slider: {
|
|
307
|
-
readonly subtitle: "Sizes and variants";
|
|
308
|
-
readonly fallbackLabel: "slider";
|
|
309
|
-
};
|
|
310
|
-
readonly splitter: {
|
|
311
|
-
readonly subtitle: "Resizable panels";
|
|
312
|
-
};
|
|
313
|
-
readonly progressBar: {
|
|
314
|
-
readonly subtitle: "Sizes and variants";
|
|
315
|
-
};
|
|
316
|
-
readonly progressCircle: {
|
|
317
|
-
readonly subtitle: "Sizes and variants";
|
|
318
|
-
};
|
|
319
|
-
readonly radio: {
|
|
320
|
-
readonly subtitle: "Sizes and variants";
|
|
321
|
-
readonly apple: "Apple";
|
|
322
|
-
readonly banana: "Banana";
|
|
323
|
-
readonly cherry: "Cherry";
|
|
324
|
-
};
|
|
325
|
-
readonly searchInput: {
|
|
326
|
-
readonly subtitle: "Search example";
|
|
327
|
-
readonly label: "Search";
|
|
328
|
-
readonly placeholder: "Type to filter...";
|
|
329
|
-
readonly empty: "No matches";
|
|
330
|
-
readonly items: readonly ["Svelte", "TypeScript", "TailwindCSS", "Storybook", "Prism.js"];
|
|
331
|
-
};
|
|
332
|
-
readonly tablePagination: {
|
|
333
|
-
readonly subtitle: "Paginated data table";
|
|
334
|
-
};
|
|
335
|
-
readonly button: {
|
|
336
|
-
readonly subtitle: "Variants and sizes";
|
|
337
|
-
};
|
|
338
|
-
readonly checkbox: {
|
|
339
|
-
readonly subtitle: "Variants and sizes";
|
|
340
|
-
};
|
|
341
|
-
readonly cardSnippet: {
|
|
342
|
-
readonly subtitle: "Layouts and content blocks";
|
|
343
|
-
};
|
|
344
|
-
readonly accordionPlay: {
|
|
345
|
-
readonly subtitle: "Expand and collapse sections";
|
|
346
|
-
};
|
|
347
|
-
readonly carouselPlay: {
|
|
348
|
-
readonly subtitle: "Slide transitions";
|
|
349
|
-
};
|
|
350
|
-
readonly themeToggle: {
|
|
351
|
-
readonly subtitle: "System and manual themes";
|
|
352
|
-
readonly defaultLabel: "Theme toggle";
|
|
353
|
-
};
|
|
354
|
-
readonly unknown: {
|
|
355
|
-
readonly component: "Unknown";
|
|
356
|
-
readonly title: "Unknown";
|
|
357
|
-
readonly subtitle: "No demo available";
|
|
358
|
-
};
|
|
359
|
-
};
|
|
360
|
-
};
|
|
361
|
-
readonly ru: {
|
|
362
|
-
readonly app: {
|
|
363
|
-
readonly version: "v1.2.1";
|
|
364
|
-
readonly title: "Svelte 5 UI Components";
|
|
365
|
-
readonly footer: "© 2025 MaestroFusion360";
|
|
366
|
-
readonly authorUrl: "https://github.com/MaestroFusion360/svelte-comp";
|
|
367
|
-
readonly language: {
|
|
368
|
-
readonly label: "Язык";
|
|
369
|
-
readonly options: {
|
|
370
|
-
label: string;
|
|
371
|
-
value: string;
|
|
372
|
-
}[];
|
|
373
|
-
};
|
|
374
|
-
};
|
|
375
|
-
readonly pageLabels: {
|
|
376
|
-
readonly about: "О проекте";
|
|
377
|
-
readonly accordion: "Аккордеон";
|
|
378
|
-
readonly button: "Кнопка";
|
|
379
|
-
readonly card: "Карточка";
|
|
380
|
-
readonly carousel: "Карусель";
|
|
381
|
-
readonly checkbox: "Чекбокс";
|
|
382
|
-
readonly codeView: "Просмотр кода";
|
|
383
|
-
readonly colorPicker: "Выбор цвета";
|
|
384
|
-
readonly datePicker: "Выбор даты";
|
|
385
|
-
readonly dialog: "Диалог";
|
|
386
|
-
readonly field: "Поле ввода";
|
|
387
|
-
readonly filePicker: "Загрузка файлов";
|
|
388
|
-
readonly form: "Форма";
|
|
389
|
-
readonly menu: "Меню";
|
|
390
|
-
readonly notepad: "Блокнот";
|
|
391
|
-
readonly progressBar: "Прогресс-бар";
|
|
392
|
-
readonly progressCircle: "Прогресс-круг";
|
|
393
|
-
readonly radio: "Радио-кнопки";
|
|
394
|
-
readonly searchInput: "Поиск";
|
|
395
|
-
readonly select: "Выпадающий список";
|
|
396
|
-
readonly slider: "Ползунок";
|
|
397
|
-
readonly splitter: "Сплиттер";
|
|
398
|
-
readonly switch: "Переключатель";
|
|
399
|
-
readonly tablePagination: "Таблица и пагинация";
|
|
400
|
-
readonly tabs: "Вкладки";
|
|
401
|
-
readonly themeToggle: "Переключатель темы";
|
|
402
|
-
readonly timePicker: "Выбор времени";
|
|
403
|
-
readonly toast: "Уведомления";
|
|
404
|
-
};
|
|
405
|
-
readonly about: {
|
|
406
|
-
readonly heading: "О библиотеке";
|
|
407
|
-
readonly meta: "Информация о проекте";
|
|
408
|
-
readonly intro: {
|
|
409
|
-
readonly description: " — это аккуратная настраиваемая и полностью типизированная библиотека компонентов, построенная на ";
|
|
410
|
-
readonly frameworks: {
|
|
411
|
-
readonly runes: "Svelte 5 (Runes API)";
|
|
412
|
-
readonly tailwind: "TailwindCSS";
|
|
413
|
-
};
|
|
414
|
-
readonly connector: " и ";
|
|
415
|
-
readonly closing: ".";
|
|
416
|
-
};
|
|
417
|
-
readonly styling: {
|
|
418
|
-
readonly beforeFile: "Компоненты стилизуются через CSS переменные, определённые в ";
|
|
419
|
-
readonly file: "src/app.css";
|
|
420
|
-
readonly afterFile: ", что упрощает и унифицирует смену темы. Тёмная тема включается глобально добавлением класса ";
|
|
421
|
-
readonly darkClass: ".dark";
|
|
422
|
-
readonly afterDark: " к корневому элементу документа.";
|
|
423
|
-
};
|
|
424
|
-
readonly patterns: "Библиотека показывает практические паттерны интерфейса: адаптивные карточки, интерактивные формы, диалоги и таблицы данных в рамках единой дизайн системы для современных Svelte проектов.";
|
|
425
|
-
readonly versionLabel: "Версия";
|
|
426
|
-
readonly authorLabel: "Автор";
|
|
427
|
-
readonly authorName: "MaestroFusion360";
|
|
428
|
-
};
|
|
429
|
-
readonly states: {
|
|
430
|
-
readonly emptyPreview: "Нет предпросмотра";
|
|
431
|
-
};
|
|
432
|
-
readonly options: {
|
|
433
|
-
readonly selectCountries: {
|
|
434
|
-
label: string;
|
|
435
|
-
value: string;
|
|
436
|
-
}[];
|
|
437
|
-
readonly formGender: {
|
|
438
|
-
value: string;
|
|
439
|
-
label: string;
|
|
440
|
-
}[];
|
|
441
|
-
readonly formCountries: {
|
|
442
|
-
value: string;
|
|
443
|
-
label: string;
|
|
444
|
-
}[];
|
|
445
|
-
};
|
|
446
|
-
readonly form: {
|
|
447
|
-
readonly header: "Форма регистрации";
|
|
448
|
-
readonly footer: {
|
|
449
|
-
readonly cancel: "Отмена";
|
|
450
|
-
readonly submit: "Отправить";
|
|
451
|
-
readonly random: "Рандом";
|
|
452
|
-
};
|
|
453
|
-
readonly fields: {
|
|
454
|
-
readonly firstName: "Имя";
|
|
455
|
-
readonly lastName: "Фамилия";
|
|
456
|
-
readonly email: "Email";
|
|
457
|
-
readonly password: "Пароль";
|
|
458
|
-
readonly confirmPassword: "Подтверждение пароля";
|
|
459
|
-
readonly age: "Возраст";
|
|
460
|
-
readonly gender: "Пол";
|
|
461
|
-
readonly country: "Страна";
|
|
462
|
-
readonly about: "О себе";
|
|
463
|
-
readonly newsletter: "Подписаться на рассылку";
|
|
464
|
-
readonly tos: "Принять условия использования";
|
|
465
|
-
};
|
|
466
|
-
readonly validators: {
|
|
467
|
-
readonly passwordLength: "Минимум 6 символов";
|
|
468
|
-
readonly passwordMatch: "Пароли не совпадают";
|
|
469
|
-
readonly adultsOnly: "Только для совершеннолетних";
|
|
470
|
-
};
|
|
471
|
-
};
|
|
472
|
-
readonly table: {
|
|
473
|
-
readonly positionPrefix: "Позиция";
|
|
474
|
-
readonly columns: {
|
|
475
|
-
readonly id: "ID";
|
|
476
|
-
readonly item: "Товар";
|
|
477
|
-
readonly qty: "Количество";
|
|
478
|
-
readonly price: "Цена";
|
|
479
|
-
};
|
|
480
|
-
};
|
|
481
|
-
readonly toasts: {
|
|
482
|
-
readonly confirmTitle: "Действие выполнено";
|
|
483
|
-
readonly confirmMessage: "Ваше действие успешно завершено.";
|
|
484
|
-
readonly cancelTitle: "Действие отменено";
|
|
485
|
-
readonly cancelMessage: "Вы отменили действие.";
|
|
486
|
-
};
|
|
487
|
-
readonly menuDemo: {
|
|
488
|
-
readonly menus: {
|
|
489
|
-
readonly file: "Файл";
|
|
490
|
-
readonly edit: "Правка";
|
|
491
|
-
readonly view: "Вид";
|
|
492
|
-
};
|
|
493
|
-
readonly actions: {
|
|
494
|
-
readonly new: "Новый";
|
|
495
|
-
readonly open: "Открыть";
|
|
496
|
-
readonly save: "Сохранить";
|
|
497
|
-
readonly export: "Экспорт";
|
|
498
|
-
readonly exportCsv: "CSV";
|
|
499
|
-
readonly exportPdf: "PDF";
|
|
500
|
-
readonly exportZip: "ZIP-архив";
|
|
501
|
-
readonly close: "Закрыть";
|
|
502
|
-
readonly undo: "Отменить";
|
|
503
|
-
readonly redo: "Повторить";
|
|
504
|
-
readonly cut: "Вырезать";
|
|
505
|
-
readonly copy: "Копировать";
|
|
506
|
-
readonly paste: "Вставить";
|
|
507
|
-
readonly find: "Найти";
|
|
508
|
-
readonly findNext: "Найти далее";
|
|
509
|
-
readonly findPrev: "Найти назад";
|
|
510
|
-
readonly theme: "Тема";
|
|
511
|
-
readonly light: "Светлая";
|
|
512
|
-
readonly dark: "Тёмная";
|
|
513
|
-
};
|
|
514
|
-
readonly prompt: "Выберите пункт меню или используйте стрелки/Enter/Esc";
|
|
515
|
-
readonly fallbackLabel: "неизвестно";
|
|
516
|
-
};
|
|
517
|
-
readonly notepad: {
|
|
518
|
-
readonly menu: {
|
|
519
|
-
readonly file: "Файл";
|
|
520
|
-
readonly edit: "Правка";
|
|
521
|
-
readonly view: "Вид";
|
|
522
|
-
readonly language: "Язык";
|
|
523
|
-
readonly help: "Справка";
|
|
524
|
-
readonly settings: "Настройки";
|
|
525
|
-
};
|
|
526
|
-
readonly actions: {
|
|
527
|
-
readonly new: "Новый";
|
|
528
|
-
readonly open: "Открыть";
|
|
529
|
-
readonly save: "Сохранить";
|
|
530
|
-
readonly undo: "Отменить";
|
|
531
|
-
readonly redo: "Повторить";
|
|
532
|
-
readonly cut: "Вырезать";
|
|
533
|
-
readonly copy: "Копировать";
|
|
534
|
-
readonly paste: "Вставить";
|
|
535
|
-
readonly about: "О программе";
|
|
536
|
-
readonly statusBar: "Строка состояния";
|
|
537
|
-
readonly options: "Параметры";
|
|
538
|
-
readonly xs: "XS";
|
|
539
|
-
readonly sm: "SM";
|
|
540
|
-
readonly md: "MD";
|
|
541
|
-
readonly lg: "LG";
|
|
542
|
-
readonly xl: "XL";
|
|
543
|
-
};
|
|
544
|
-
readonly confirmNew: "Очистить текущую заметку?";
|
|
545
|
-
readonly openError: "Не удалось открыть файл";
|
|
546
|
-
readonly saveError: "Не удалось сохранить файл";
|
|
547
|
-
readonly cutError: "Не удалось вырезать";
|
|
548
|
-
readonly copyError: "Не удалось скопировать";
|
|
549
|
-
readonly pasteError: "Не удалось вставить";
|
|
550
|
-
readonly undoError: "Нечего отменять";
|
|
551
|
-
readonly redoError: "Нечего повторять";
|
|
552
|
-
readonly aboutText: "Простой пример блокнота с меню и подсветкой синтаксиса.";
|
|
553
|
-
readonly optionsText: "Настройте внешний вид, например строку состояния.";
|
|
554
|
-
};
|
|
555
|
-
readonly components: {
|
|
556
|
-
readonly codeView: {
|
|
557
|
-
readonly subtitle: "Отображение фрагментов кода";
|
|
558
|
-
};
|
|
559
|
-
readonly colorPicker: {
|
|
560
|
-
readonly label: "Выберете цвет";
|
|
561
|
-
readonly subtitle: "Выбор фирменного цвета";
|
|
562
|
-
readonly placeholder: "Цвет не выбран";
|
|
563
|
-
};
|
|
564
|
-
readonly datePicker: {
|
|
565
|
-
readonly label: "Выбрать дату";
|
|
566
|
-
readonly subtitle: "Планирование важных дат";
|
|
567
|
-
readonly placeholder: "Дата не выбрана";
|
|
568
|
-
};
|
|
569
|
-
readonly dialog: {
|
|
570
|
-
readonly ok: "ОК";
|
|
571
|
-
readonly cancel: "Отмена";
|
|
572
|
-
};
|
|
573
|
-
readonly filePicker: {
|
|
574
|
-
readonly label: "Выбрать файлы";
|
|
575
|
-
readonly subtitle: "Загрузка файлов";
|
|
576
|
-
readonly placeholder: "Файлы не выбраны";
|
|
577
|
-
};
|
|
578
|
-
readonly menu: {
|
|
579
|
-
readonly subtitle: "Меню с опциями размеров";
|
|
580
|
-
};
|
|
581
|
-
readonly timePicker: {
|
|
582
|
-
readonly label: "Выберите время";
|
|
583
|
-
readonly subtitle: "Планирование сессий";
|
|
584
|
-
readonly placeholder: "Время не выбрано";
|
|
585
|
-
};
|
|
586
|
-
};
|
|
587
|
-
readonly playground: {
|
|
588
|
-
readonly controls: {
|
|
589
|
-
readonly size: "Размер";
|
|
590
|
-
readonly variant: "Вариант";
|
|
591
|
-
readonly label: "Подпись";
|
|
592
|
-
readonly disabled: "Отключено";
|
|
593
|
-
readonly fieldType: "Тип поля";
|
|
594
|
-
readonly sliderShowValue: "Значение";
|
|
595
|
-
readonly playcardLabel: "Подпись";
|
|
596
|
-
readonly playcardSubtitle: "Превью компонента";
|
|
597
|
-
};
|
|
598
|
-
};
|
|
599
|
-
readonly snippets: {
|
|
600
|
-
readonly about: {
|
|
601
|
-
readonly description: "Карточки это гибкие контейнеры для группировки связанного контента. Используйте переключатель размера выше, чтобы посмотреть как меняются отступы и типографика.";
|
|
602
|
-
readonly helper: "Они принимают сниппеты заголовка и футера, так что можно собирать панели, бейджи и любой кастомный контент.";
|
|
603
|
-
};
|
|
604
|
-
readonly card: {
|
|
605
|
-
readonly header: "Обзор возможностей";
|
|
606
|
-
readonly updated: "Обновлено только что";
|
|
607
|
-
readonly docsLink: "Документация";
|
|
608
|
-
};
|
|
609
|
-
readonly accordion: {
|
|
610
|
-
readonly items: readonly [{
|
|
611
|
-
readonly title: "Первый";
|
|
612
|
-
readonly content: "Это первый элемент";
|
|
613
|
-
}, {
|
|
614
|
-
readonly title: "Второй";
|
|
615
|
-
readonly content: "Это второй элемент";
|
|
616
|
-
}, {
|
|
617
|
-
readonly title: "Третий";
|
|
618
|
-
readonly content: "Это третий элемент";
|
|
619
|
-
}];
|
|
620
|
-
};
|
|
621
|
-
readonly carousel: {
|
|
622
|
-
readonly slides: readonly [{
|
|
623
|
-
readonly title: "Первый слайд";
|
|
624
|
-
readonly content: "Контент первого слайда";
|
|
625
|
-
readonly image: "https://picsum.photos/800/400?1";
|
|
626
|
-
}, {
|
|
627
|
-
readonly title: "Второй слайд";
|
|
628
|
-
readonly content: "Контент второго слайда";
|
|
629
|
-
readonly image: "https://picsum.photos/800/400?2";
|
|
630
|
-
}, {
|
|
631
|
-
readonly title: "Третий слайд";
|
|
632
|
-
readonly content: "Контент третьего слайда";
|
|
633
|
-
readonly image: "https://picsum.photos/800/400?3";
|
|
634
|
-
}];
|
|
635
|
-
};
|
|
636
|
-
readonly dialog: {
|
|
637
|
-
readonly button: "Открыть диалог";
|
|
638
|
-
readonly confirm: "Вы уверены, что хотите продолжить?";
|
|
639
|
-
readonly title: "Диалог";
|
|
640
|
-
readonly subtitle: "Модальные окна";
|
|
641
|
-
};
|
|
642
|
-
readonly toast: {
|
|
643
|
-
readonly buttonPrefix: "Показать ";
|
|
644
|
-
readonly subtitle: "Уведомления toast";
|
|
645
|
-
};
|
|
646
|
-
readonly field: {
|
|
647
|
-
readonly text: "Текстовое поле";
|
|
648
|
-
readonly number: "Числовое поле";
|
|
649
|
-
readonly textarea: "Многострочное поле";
|
|
650
|
-
readonly placeholder: "0";
|
|
651
|
-
readonly subtitle: "Размеры и варианты";
|
|
652
|
-
};
|
|
653
|
-
readonly tabs: {
|
|
654
|
-
readonly labels: readonly ["Один", "Два", "Три"];
|
|
655
|
-
readonly contents: readonly ["Контент один", "Контент два", "Контент три"];
|
|
656
|
-
readonly subtitle: "Разные стили";
|
|
657
|
-
};
|
|
658
|
-
readonly select: {
|
|
659
|
-
readonly label: "Страна";
|
|
660
|
-
readonly subtitle: "Размеры и варианты";
|
|
661
|
-
};
|
|
662
|
-
readonly switch: {
|
|
663
|
-
readonly subtitle: "Размеры";
|
|
664
|
-
readonly labelPrefix: "Переключатель";
|
|
665
|
-
};
|
|
666
|
-
readonly slider: {
|
|
667
|
-
readonly subtitle: "Размеры и варианты";
|
|
668
|
-
readonly fallbackLabel: "ползунок";
|
|
669
|
-
};
|
|
670
|
-
readonly splitter: {
|
|
671
|
-
readonly subtitle: "Изменяемые панели";
|
|
672
|
-
};
|
|
673
|
-
readonly progressBar: {
|
|
674
|
-
readonly subtitle: "Размеры и варианты";
|
|
675
|
-
};
|
|
676
|
-
readonly progressCircle: {
|
|
677
|
-
readonly subtitle: "Размеры и варианты";
|
|
678
|
-
};
|
|
679
|
-
readonly radio: {
|
|
680
|
-
readonly subtitle: "Размеры и варианты";
|
|
681
|
-
readonly apple: "Яблоко";
|
|
682
|
-
readonly banana: "Банан";
|
|
683
|
-
readonly cherry: "Вишня";
|
|
684
|
-
};
|
|
685
|
-
readonly searchInput: {
|
|
686
|
-
readonly subtitle: "Пример поиска";
|
|
687
|
-
readonly label: "Поиск";
|
|
688
|
-
readonly placeholder: "Введите запрос...";
|
|
689
|
-
readonly empty: "Ничего не найдено";
|
|
690
|
-
readonly items: readonly ["Компоненты", "Документация", "Стили", "Шаблоны", "Истории"];
|
|
691
|
-
};
|
|
692
|
-
readonly tablePagination: {
|
|
693
|
-
readonly subtitle: "Таблица и пагинация";
|
|
694
|
-
};
|
|
695
|
-
readonly button: {
|
|
696
|
-
readonly subtitle: "Варианты и размеры";
|
|
697
|
-
};
|
|
698
|
-
readonly checkbox: {
|
|
699
|
-
readonly subtitle: "Варианты и размеры";
|
|
700
|
-
};
|
|
701
|
-
readonly cardSnippet: {
|
|
702
|
-
readonly subtitle: "Макеты и блоки контента";
|
|
703
|
-
};
|
|
704
|
-
readonly accordionPlay: {
|
|
705
|
-
readonly subtitle: "Развернуть и свернуть секции";
|
|
706
|
-
};
|
|
707
|
-
readonly carouselPlay: {
|
|
708
|
-
readonly subtitle: "Переходы между слайдами";
|
|
709
|
-
};
|
|
710
|
-
readonly themeToggle: {
|
|
711
|
-
readonly subtitle: "Системная и ручная тема";
|
|
712
|
-
readonly defaultLabel: "Переключатель темы";
|
|
713
|
-
};
|
|
714
|
-
readonly unknown: {
|
|
715
|
-
readonly component: "Неизвестный компонент";
|
|
716
|
-
readonly title: "Неизвестно";
|
|
717
|
-
readonly subtitle: "Демо недоступно";
|
|
718
|
-
};
|
|
719
|
-
};
|
|
720
|
-
};
|
|
721
|
-
readonly es: {
|
|
722
|
-
readonly app: {
|
|
723
|
-
readonly version: "v1.2.1";
|
|
724
|
-
readonly title: "Svelte 5 UI Components";
|
|
725
|
-
readonly footer: "© 2025 MaestroFusion360";
|
|
726
|
-
readonly authorUrl: "https://github.com/MaestroFusion360/svelte-comp";
|
|
727
|
-
readonly language: {
|
|
728
|
-
readonly label: "Idioma";
|
|
729
|
-
readonly options: {
|
|
730
|
-
label: string;
|
|
731
|
-
value: string;
|
|
732
|
-
}[];
|
|
733
|
-
};
|
|
734
|
-
};
|
|
735
|
-
readonly pageLabels: {
|
|
736
|
-
readonly about: "Acerca de";
|
|
737
|
-
readonly accordion: "Acordeón";
|
|
738
|
-
readonly button: "Botón";
|
|
739
|
-
readonly card: "Tarjeta";
|
|
740
|
-
readonly carousel: "Carrusel";
|
|
741
|
-
readonly checkbox: "Casilla";
|
|
742
|
-
readonly colorPicker: "Selector de color";
|
|
743
|
-
readonly codeView: "Vista de código";
|
|
744
|
-
readonly datePicker: "Selector de fecha";
|
|
745
|
-
readonly dialog: "Diálogo";
|
|
746
|
-
readonly field: "Campo";
|
|
747
|
-
readonly filePicker: "Selector de archivos";
|
|
748
|
-
readonly form: "Formulario";
|
|
749
|
-
readonly menu: "Menú";
|
|
750
|
-
readonly notepad: "Bloc de notas";
|
|
751
|
-
readonly progressBar: "Barra de progreso";
|
|
752
|
-
readonly progressCircle: "Círculo de progreso";
|
|
753
|
-
readonly radio: "Botones de opción";
|
|
754
|
-
readonly searchInput: "Búsqueda";
|
|
755
|
-
readonly select: "Lista desplegable";
|
|
756
|
-
readonly slider: "Control deslizante";
|
|
757
|
-
readonly splitter: "Divisor";
|
|
758
|
-
readonly switch: "Interruptor";
|
|
759
|
-
readonly tablePagination: "Tabla y paginación";
|
|
760
|
-
readonly tabs: "Pestañas";
|
|
761
|
-
readonly themeToggle: "Cambio de tema";
|
|
762
|
-
readonly timePicker: "Selector de hora";
|
|
763
|
-
readonly toast: "Notificaciones";
|
|
764
|
-
};
|
|
765
|
-
readonly about: {
|
|
766
|
-
readonly heading: "Acerca del proyecto";
|
|
767
|
-
readonly meta: "Información del proyecto";
|
|
768
|
-
readonly intro: {
|
|
769
|
-
readonly description: " es una biblioteca de componentes limpia, personalizable y totalmente tipada, construida con ";
|
|
770
|
-
readonly frameworks: {
|
|
771
|
-
readonly runes: "Svelte 5 (Runes API)";
|
|
772
|
-
readonly tailwind: "TailwindCSS";
|
|
773
|
-
};
|
|
774
|
-
readonly connector: " y ";
|
|
775
|
-
readonly closing: ".";
|
|
776
|
-
};
|
|
777
|
-
readonly styling: {
|
|
778
|
-
readonly beforeFile: "Los componentes usan variables CSS definidas en ";
|
|
779
|
-
readonly file: "src/app.css";
|
|
780
|
-
readonly afterFile: ", lo que hace que la personalización de temas sea sencilla y coherente. El modo oscuro se activa globalmente añadiendo la clase ";
|
|
781
|
-
readonly darkClass: ".dark";
|
|
782
|
-
readonly afterDark: " al elemento raíz del documento.";
|
|
783
|
-
};
|
|
784
|
-
readonly patterns: "La biblioteca demuestra patrones de UI prácticos como tarjetas responsivas, formularios interactivos, cuadros de diálogo y tablas de datos, siguiendo un sistema de diseño unificado para proyectos modernos en Svelte.";
|
|
785
|
-
readonly versionLabel: "Versión";
|
|
786
|
-
readonly authorLabel: "Autor";
|
|
787
|
-
readonly authorName: "MaestroFusion360";
|
|
788
|
-
};
|
|
789
|
-
readonly states: {
|
|
790
|
-
readonly emptyPreview: "Sin vista previa";
|
|
791
|
-
};
|
|
792
|
-
readonly options: {
|
|
793
|
-
readonly selectCountries: {
|
|
794
|
-
label: string;
|
|
795
|
-
value: string;
|
|
796
|
-
}[];
|
|
797
|
-
readonly formGender: {
|
|
798
|
-
value: string;
|
|
799
|
-
label: string;
|
|
800
|
-
}[];
|
|
801
|
-
readonly formCountries: {
|
|
802
|
-
value: string;
|
|
803
|
-
label: string;
|
|
804
|
-
}[];
|
|
805
|
-
};
|
|
806
|
-
readonly form: {
|
|
807
|
-
readonly header: "Formulario de registro";
|
|
808
|
-
readonly footer: {
|
|
809
|
-
readonly cancel: "Cancelar";
|
|
810
|
-
readonly submit: "Enviar";
|
|
811
|
-
readonly random: "Aleatorio";
|
|
812
|
-
};
|
|
813
|
-
readonly fields: {
|
|
814
|
-
readonly firstName: "Nombre";
|
|
815
|
-
readonly lastName: "Apellido";
|
|
816
|
-
readonly email: "Email";
|
|
817
|
-
readonly password: "Contraseña";
|
|
818
|
-
readonly confirmPassword: "Confirmar contraseña";
|
|
819
|
-
readonly age: "Edad";
|
|
820
|
-
readonly gender: "Género";
|
|
821
|
-
readonly country: "País";
|
|
822
|
-
readonly about: "Sobre ti";
|
|
823
|
-
readonly newsletter: "Suscribirse al boletín";
|
|
824
|
-
readonly tos: "Aceptar los términos y condiciones";
|
|
825
|
-
};
|
|
826
|
-
readonly validators: {
|
|
827
|
-
readonly passwordLength: "Al menos 6 caracteres";
|
|
828
|
-
readonly passwordMatch: "Las contraseñas no coinciden";
|
|
829
|
-
readonly adultsOnly: "Solo para mayores de edad";
|
|
830
|
-
};
|
|
831
|
-
};
|
|
832
|
-
readonly table: {
|
|
833
|
-
readonly positionPrefix: "Posición";
|
|
834
|
-
readonly columns: {
|
|
835
|
-
readonly id: "ID";
|
|
836
|
-
readonly item: "Producto";
|
|
837
|
-
readonly qty: "Cantidad";
|
|
838
|
-
readonly price: "Precio";
|
|
839
|
-
};
|
|
840
|
-
};
|
|
841
|
-
readonly toasts: {
|
|
842
|
-
readonly confirmTitle: "Acción confirmada";
|
|
843
|
-
readonly confirmMessage: "Tu acción se completó correctamente.";
|
|
844
|
-
readonly cancelTitle: "Acción cancelada";
|
|
845
|
-
readonly cancelMessage: "Has cancelado la acción.";
|
|
846
|
-
};
|
|
847
|
-
readonly menuDemo: {
|
|
848
|
-
readonly menus: {
|
|
849
|
-
readonly file: "Archivo";
|
|
850
|
-
readonly edit: "Editar";
|
|
851
|
-
readonly view: "Vista";
|
|
852
|
-
};
|
|
853
|
-
readonly actions: {
|
|
854
|
-
readonly new: "Nuevo";
|
|
855
|
-
readonly open: "Abrir";
|
|
856
|
-
readonly save: "Guardar";
|
|
857
|
-
readonly export: "Exportar";
|
|
858
|
-
readonly exportCsv: "CSV";
|
|
859
|
-
readonly exportPdf: "PDF";
|
|
860
|
-
readonly exportZip: "Archivo ZIP";
|
|
861
|
-
readonly close: "Cerrar";
|
|
862
|
-
readonly undo: "Deshacer";
|
|
863
|
-
readonly redo: "Rehacer";
|
|
864
|
-
readonly cut: "Cortar";
|
|
865
|
-
readonly copy: "Copiar";
|
|
866
|
-
readonly paste: "Pegar";
|
|
867
|
-
readonly find: "Buscar";
|
|
868
|
-
readonly findNext: "Buscar siguiente";
|
|
869
|
-
readonly findPrev: "Buscar anterior";
|
|
870
|
-
readonly theme: "Tema";
|
|
871
|
-
readonly light: "Claro";
|
|
872
|
-
readonly dark: "Oscuro";
|
|
873
|
-
};
|
|
874
|
-
readonly prompt: "Elige cualquier elemento del menú o usa flechas/Enter/Esc";
|
|
875
|
-
readonly fallbackLabel: "desconocido";
|
|
876
|
-
};
|
|
877
|
-
readonly notepad: {
|
|
878
|
-
readonly menu: {
|
|
879
|
-
readonly file: "Archivo";
|
|
880
|
-
readonly edit: "Editar";
|
|
881
|
-
readonly view: "Vista";
|
|
882
|
-
readonly language: "Idioma";
|
|
883
|
-
readonly help: "Ayuda";
|
|
884
|
-
readonly settings: "Configuración";
|
|
885
|
-
};
|
|
886
|
-
readonly actions: {
|
|
887
|
-
readonly new: "Nuevo";
|
|
888
|
-
readonly open: "Abrir";
|
|
889
|
-
readonly save: "Guardar";
|
|
890
|
-
readonly undo: "Deshacer";
|
|
891
|
-
readonly redo: "Rehacer";
|
|
892
|
-
readonly cut: "Cortar";
|
|
893
|
-
readonly copy: "Copiar";
|
|
894
|
-
readonly paste: "Pegar";
|
|
895
|
-
readonly about: "Acerca de";
|
|
896
|
-
readonly statusBar: "Barra de estado";
|
|
897
|
-
readonly options: "Opciones";
|
|
898
|
-
readonly xs: "XS";
|
|
899
|
-
readonly sm: "SM";
|
|
900
|
-
readonly md: "MD";
|
|
901
|
-
readonly lg: "LG";
|
|
902
|
-
readonly xl: "XL";
|
|
903
|
-
};
|
|
904
|
-
readonly confirmNew: "¿Borrar la nota actual?";
|
|
905
|
-
readonly openError: "No se pudo abrir el archivo";
|
|
906
|
-
readonly saveError: "No se pudo guardar el archivo";
|
|
907
|
-
readonly cutError: "No se pudo cortar";
|
|
908
|
-
readonly copyError: "No se pudo copiar";
|
|
909
|
-
readonly pasteError: "No se pudo pegar";
|
|
910
|
-
readonly undoError: "Nada que deshacer";
|
|
911
|
-
readonly redoError: "Nada que rehacer";
|
|
912
|
-
readonly aboutText: "Un bloc de notas simple con menú y resaltado de sintaxis.";
|
|
913
|
-
readonly optionsText: "Cambia opciones de apariencia como la visibilidad de la barra de estado.";
|
|
914
|
-
};
|
|
915
|
-
readonly components: {
|
|
916
|
-
readonly codeView: {
|
|
917
|
-
readonly subtitle: "Mostrar fragmentos de código";
|
|
918
|
-
};
|
|
919
|
-
readonly colorPicker: {
|
|
920
|
-
readonly label: "Elegir color";
|
|
921
|
-
readonly subtitle: "Selecciona el color de marca";
|
|
922
|
-
readonly placeholder: "Ningún color seleccionado";
|
|
923
|
-
};
|
|
924
|
-
readonly datePicker: {
|
|
925
|
-
readonly label: "Elegir fecha";
|
|
926
|
-
readonly subtitle: "Planificación de fechas importantes";
|
|
927
|
-
readonly placeholder: "Ninguna fecha seleccionada";
|
|
928
|
-
};
|
|
929
|
-
readonly dialog: {
|
|
930
|
-
readonly ok: "OK";
|
|
931
|
-
readonly cancel: "Cancelar";
|
|
932
|
-
};
|
|
933
|
-
readonly filePicker: {
|
|
934
|
-
readonly label: "Elegir archivos";
|
|
935
|
-
readonly subtitle: "Interacciones de subida";
|
|
936
|
-
readonly placeholder: "Ningún archivo seleccionado";
|
|
937
|
-
};
|
|
938
|
-
readonly menu: {
|
|
939
|
-
readonly subtitle: "Menú con opciones de tamaño";
|
|
940
|
-
};
|
|
941
|
-
readonly timePicker: {
|
|
942
|
-
readonly label: "Seleccionar hora";
|
|
943
|
-
readonly subtitle: "Planificar sesiones";
|
|
944
|
-
readonly placeholder: "Время не выбрано";
|
|
945
|
-
};
|
|
946
|
-
};
|
|
947
|
-
readonly playground: {
|
|
948
|
-
readonly controls: {
|
|
949
|
-
readonly size: "Tamaño";
|
|
950
|
-
readonly variant: "Variante";
|
|
951
|
-
readonly label: "Etiqueta";
|
|
952
|
-
readonly disabled: "Desactivado";
|
|
953
|
-
readonly fieldType: "Tipo de campo";
|
|
954
|
-
readonly sliderShowValue: "Significado";
|
|
955
|
-
readonly playcardLabel: "Etiqueta";
|
|
956
|
-
readonly playcardSubtitle: "Vista previa del componente";
|
|
957
|
-
};
|
|
958
|
-
};
|
|
959
|
-
readonly snippets: {
|
|
960
|
-
readonly about: {
|
|
961
|
-
readonly description: "Las tarjetas son contenedores flexibles para agrupar contenido relacionado. Usa el control de tamaño de arriba para previsualizar cambios en espaciado y tipografía.";
|
|
962
|
-
readonly helper: "Aceptan fragmentos para cabecera y pie, así puedes componer barras de herramientas, insignias o cualquier marcado personalizado.";
|
|
963
|
-
};
|
|
964
|
-
readonly card: {
|
|
965
|
-
readonly header: "Resumen de funciones";
|
|
966
|
-
readonly updated: "Actualizado hace un momento";
|
|
967
|
-
readonly docsLink: "Ver documentación";
|
|
968
|
-
};
|
|
969
|
-
readonly accordion: {
|
|
970
|
-
readonly items: readonly [{
|
|
971
|
-
readonly title: "Primero";
|
|
972
|
-
readonly content: "Este es el primer elemento";
|
|
973
|
-
}, {
|
|
974
|
-
readonly title: "Segundo";
|
|
975
|
-
readonly content: "Este es el segundo elemento";
|
|
976
|
-
}, {
|
|
977
|
-
readonly title: "Tercero";
|
|
978
|
-
readonly content: "Este es el tercer elemento";
|
|
979
|
-
}];
|
|
980
|
-
};
|
|
981
|
-
readonly carousel: {
|
|
982
|
-
readonly slides: readonly [{
|
|
983
|
-
readonly title: "Primera diapositiva";
|
|
984
|
-
readonly content: "Contenido de la primera diapositiva";
|
|
985
|
-
readonly image: "https://picsum.photos/800/400?1";
|
|
986
|
-
}, {
|
|
987
|
-
readonly title: "Segunda diapositiva";
|
|
988
|
-
readonly content: "Contenido de la segunda diapositiva";
|
|
989
|
-
readonly image: "https://picsum.photos/800/400?2";
|
|
990
|
-
}, {
|
|
991
|
-
readonly title: "Tercera diapositiva";
|
|
992
|
-
readonly content: "Contenido de la tercera diapositiva";
|
|
993
|
-
readonly image: "https://picsum.photos/800/400?3";
|
|
994
|
-
}];
|
|
995
|
-
};
|
|
996
|
-
readonly dialog: {
|
|
997
|
-
readonly button: "Abrir diálogo";
|
|
998
|
-
readonly confirm: "¿Seguro que quieres continuar?";
|
|
999
|
-
readonly title: "Diálogo";
|
|
1000
|
-
readonly subtitle: "Interacciones modales";
|
|
1001
|
-
};
|
|
1002
|
-
readonly toast: {
|
|
1003
|
-
readonly buttonPrefix: "Mostrar ";
|
|
1004
|
-
readonly subtitle: "Notificaciones tipo toast";
|
|
1005
|
-
};
|
|
1006
|
-
readonly field: {
|
|
1007
|
-
readonly text: "Campo de texto";
|
|
1008
|
-
readonly number: "Campo numérico";
|
|
1009
|
-
readonly textarea: "Área de texto";
|
|
1010
|
-
readonly placeholder: "0";
|
|
1011
|
-
readonly subtitle: "Tamaños y variantes";
|
|
1012
|
-
};
|
|
1013
|
-
readonly tabs: {
|
|
1014
|
-
readonly labels: readonly ["Uno", "Dos", "Tres"];
|
|
1015
|
-
readonly contents: readonly ["Contenido uno", "Contenido dos", "Contenido tres"];
|
|
1016
|
-
readonly subtitle: "Estilos diferentes";
|
|
1017
|
-
};
|
|
1018
|
-
readonly select: {
|
|
1019
|
-
readonly label: "País";
|
|
1020
|
-
readonly subtitle: "Tamaños y variantes";
|
|
1021
|
-
};
|
|
1022
|
-
readonly switch: {
|
|
1023
|
-
readonly subtitle: "Tamaños";
|
|
1024
|
-
readonly labelPrefix: "Interruptor";
|
|
1025
|
-
};
|
|
1026
|
-
readonly slider: {
|
|
1027
|
-
readonly subtitle: "Tamaños y variantes";
|
|
1028
|
-
readonly fallbackLabel: "control deslizante";
|
|
1029
|
-
};
|
|
1030
|
-
readonly splitter: {
|
|
1031
|
-
readonly subtitle: "Paneles redimensionables";
|
|
1032
|
-
};
|
|
1033
|
-
readonly progressBar: {
|
|
1034
|
-
readonly subtitle: "Tamaños y variantes";
|
|
1035
|
-
};
|
|
1036
|
-
readonly progressCircle: {
|
|
1037
|
-
readonly subtitle: "Tamaños y variantes";
|
|
1038
|
-
};
|
|
1039
|
-
readonly radio: {
|
|
1040
|
-
readonly subtitle: "Tamaños y variantes";
|
|
1041
|
-
readonly apple: "Manzana";
|
|
1042
|
-
readonly banana: "Plátano";
|
|
1043
|
-
readonly cherry: "Cereza";
|
|
1044
|
-
};
|
|
1045
|
-
readonly searchInput: {
|
|
1046
|
-
readonly subtitle: "Ejemplo de búsqueda";
|
|
1047
|
-
readonly label: "Buscar";
|
|
1048
|
-
readonly placeholder: "Escribe para filtrar...";
|
|
1049
|
-
readonly empty: "Sin resultados";
|
|
1050
|
-
readonly items: readonly ["Componentes", "Documentación", "Estilos", "Plantillas", "Historias"];
|
|
1051
|
-
};
|
|
1052
|
-
readonly tablePagination: {
|
|
1053
|
-
readonly subtitle: "Tabla de datos paginada";
|
|
1054
|
-
};
|
|
1055
|
-
readonly button: {
|
|
1056
|
-
readonly subtitle: "Variantes y tamaños";
|
|
1057
|
-
};
|
|
1058
|
-
readonly checkbox: {
|
|
1059
|
-
readonly subtitle: "Variantes y tamaños";
|
|
1060
|
-
};
|
|
1061
|
-
readonly cardSnippet: {
|
|
1062
|
-
readonly subtitle: "Diseños y bloques de contenido";
|
|
1063
|
-
};
|
|
1064
|
-
readonly accordionPlay: {
|
|
1065
|
-
readonly subtitle: "Expandir y contraer secciones";
|
|
1066
|
-
};
|
|
1067
|
-
readonly carouselPlay: {
|
|
1068
|
-
readonly subtitle: "Transiciones de diapositivas";
|
|
1069
|
-
};
|
|
1070
|
-
readonly themeToggle: {
|
|
1071
|
-
readonly subtitle: "Tema del sistema y manual";
|
|
1072
|
-
readonly defaultLabel: "Cambio de tema";
|
|
1073
|
-
};
|
|
1074
|
-
readonly unknown: {
|
|
1075
|
-
readonly component: "Desconocido";
|
|
1076
|
-
readonly title: "Desconocido";
|
|
1077
|
-
readonly subtitle: "No hay demo disponible";
|
|
1078
|
-
};
|
|
1079
|
-
};
|
|
1080
|
-
};
|
|
1081
|
-
};
|