create-mercato-app 0.4.2-canary-e5804f7db1
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 +94 -0
- package/bin/create-mercato-app +21 -0
- package/dist/index.js +177 -0
- package/package.json +42 -0
- package/template/.env.example +217 -0
- package/template/.yarnrc.yml.template +2 -0
- package/template/components.json +22 -0
- package/template/gitignore +50 -0
- package/template/next.config.ts +28 -0
- package/template/package.json.template +87 -0
- package/template/postcss.config.mjs +5 -0
- package/template/public/catch-the-tornado-logo.png +0 -0
- package/template/public/file.svg +1 -0
- package/template/public/globe.svg +1 -0
- package/template/public/next.svg +1 -0
- package/template/public/open-mercato.svg +50 -0
- package/template/public/vercel.svg +1 -0
- package/template/public/window.svg +1 -0
- package/template/src/app/(backend)/backend/[...slug]/page.tsx +59 -0
- package/template/src/app/(backend)/backend/layout.tsx +350 -0
- package/template/src/app/(backend)/backend/page.tsx +13 -0
- package/template/src/app/(frontend)/[...slug]/page.tsx +32 -0
- package/template/src/app/api/[...slug]/route.ts +227 -0
- package/template/src/app/api/docs/markdown/route.ts +35 -0
- package/template/src/app/api/docs/openapi/route.ts +30 -0
- package/template/src/app/globals.css +178 -0
- package/template/src/app/layout.tsx +76 -0
- package/template/src/app/page.tsx +134 -0
- package/template/src/bootstrap.ts +58 -0
- package/template/src/components/ClientBootstrap.tsx +37 -0
- package/template/src/components/GlobalNoticeBars.tsx +116 -0
- package/template/src/components/OrganizationSwitcher.tsx +360 -0
- package/template/src/components/StartPageContent.tsx +269 -0
- package/template/src/components/ui/button.tsx +59 -0
- package/template/src/components/ui/card.tsx +92 -0
- package/template/src/components/ui/checkbox.tsx +29 -0
- package/template/src/components/ui/input.tsx +21 -0
- package/template/src/components/ui/label.tsx +24 -0
- package/template/src/di.ts +11 -0
- package/template/src/i18n/de.json +375 -0
- package/template/src/i18n/en.json +376 -0
- package/template/src/i18n/es.json +376 -0
- package/template/src/i18n/pl.json +375 -0
- package/template/src/modules/.gitkeep +0 -0
- package/template/src/modules.ts +31 -0
- package/template/src/proxy.ts +17 -0
- package/template/tsconfig.json +54 -0
- package/template/types/pg/index.d.ts +1 -0
- package/template/types/react-big-calendar/index.d.ts +16 -0
|
@@ -0,0 +1,376 @@
|
|
|
1
|
+
{
|
|
2
|
+
"app.title": "Open Mercato starter (Next.js + shadcn + MikroORM)",
|
|
3
|
+
"app.status": "{status}",
|
|
4
|
+
"app.goToLogin": "Go to Login",
|
|
5
|
+
"app.examplePage": "Example page",
|
|
6
|
+
"app.exampleAdmin": "Example admin",
|
|
7
|
+
"app.exampleBlogPost": "Example blog post",
|
|
8
|
+
"common.create": "Create",
|
|
9
|
+
"common.close": "Close",
|
|
10
|
+
"common.delete": "Delete",
|
|
11
|
+
"common.edit": "Edit",
|
|
12
|
+
"common.export": "Export",
|
|
13
|
+
"common.yes": "Yes",
|
|
14
|
+
"common.no": "No",
|
|
15
|
+
"common.language": "Language",
|
|
16
|
+
"common.terms": "Terms",
|
|
17
|
+
"common.privacy": "Privacy",
|
|
18
|
+
"common.languages.english": "English",
|
|
19
|
+
"common.languages.polish": "Polski",
|
|
20
|
+
"common.languages.spanish": "Español",
|
|
21
|
+
"common.languages.german": "Deutsch",
|
|
22
|
+
"common.theme.light": "Light",
|
|
23
|
+
"common.theme.dark": "Dark",
|
|
24
|
+
"common.theme.system": "System",
|
|
25
|
+
"common.theme.toggle": "Toggle theme",
|
|
26
|
+
"ui.actions.refresh": "Refresh",
|
|
27
|
+
"ui.actions.delete": "Delete",
|
|
28
|
+
"ui.actions.deleting": "Deleting…",
|
|
29
|
+
"ui.forms.actions.save": "Save",
|
|
30
|
+
"ui.forms.actions.cancel": "Cancel",
|
|
31
|
+
"ui.forms.actions.clear": "Clear",
|
|
32
|
+
"ui.forms.actions.delete": "Delete",
|
|
33
|
+
"ui.forms.status.saving": "Saving…",
|
|
34
|
+
"ui.forms.loading": "Loading data…",
|
|
35
|
+
"ui.forms.confirmDelete": "Delete this record? This action cannot be undone.",
|
|
36
|
+
"ui.forms.flash.deleteSuccess": "Record deleted",
|
|
37
|
+
"ui.forms.flash.deleteError": "Failed to delete record",
|
|
38
|
+
"ui.forms.flash.saveSuccess": "Saved successfully.",
|
|
39
|
+
"ui.forms.flash.saveError": "Save failed",
|
|
40
|
+
"catalog.products.edit.offers.deleteError": "Failed to remove sales channel offer.",
|
|
41
|
+
"ui.forms.errors.required": "This field is required",
|
|
42
|
+
"ui.forms.errors.highlighted": "Please fix the highlighted errors.",
|
|
43
|
+
"ui.forms.errors.unexpected": "Unexpected error",
|
|
44
|
+
"ui.forms.richtext.bold": "Bold",
|
|
45
|
+
"ui.forms.richtext.italic": "Italic",
|
|
46
|
+
"ui.forms.richtext.underline": "Underline",
|
|
47
|
+
"ui.forms.richtext.list": "List",
|
|
48
|
+
"ui.forms.richtext.heading3": "H3",
|
|
49
|
+
"ui.forms.richtext.link": "Link",
|
|
50
|
+
"ui.forms.richtext.linkUrlPrompt": "Link URL",
|
|
51
|
+
"ui.forms.richtext.placeholder": "Write markdown...",
|
|
52
|
+
"ui.forms.richtext.sampleText": "text",
|
|
53
|
+
"ui.forms.listbox.searchPlaceholder": "Search...",
|
|
54
|
+
"ui.forms.listbox.noMatches": "No matches",
|
|
55
|
+
"ui.lookupSelect.select": "Select",
|
|
56
|
+
"ui.lookupSelect.selected": "Selected",
|
|
57
|
+
"ui.lookupSelect.clearSelection": "Clear selection",
|
|
58
|
+
"ui.lookupSelect.noResults": "No results",
|
|
59
|
+
"ui.lookupSelect.searching": "Searching…",
|
|
60
|
+
"ui.lookupSelect.startTyping": "Start typing to search.",
|
|
61
|
+
"ui.lookupSelect.minQueryHint": "Type at least {minQuery} characters to search.",
|
|
62
|
+
"ui.navigation.back": "Back",
|
|
63
|
+
"backend.title": "Backend",
|
|
64
|
+
"backend.selectModule": "Select a module in the backend.",
|
|
65
|
+
"auth.signIn": "Sign in",
|
|
66
|
+
"auth.email": "Email",
|
|
67
|
+
"auth.password": "Password",
|
|
68
|
+
"dictionaries.config.list.title": "Dictionaries",
|
|
69
|
+
"dictionaries.config.list.add": "New dictionary",
|
|
70
|
+
"dictionaries.config.list.inherited": "Inherited",
|
|
71
|
+
"dictionaries.config.entries.readOnly": "Inherited dictionaries are managed at the parent organization.",
|
|
72
|
+
"dictionaries.config.entries.readOnlyActions": "Managed in parent organization",
|
|
73
|
+
"auth.sendResetLink": "Send reset link",
|
|
74
|
+
"auth.resetPassword": "Reset password",
|
|
75
|
+
"auth.usersRoles": "Users & Roles",
|
|
76
|
+
"auth.manageAuthSettings": "Manage authentication settings.",
|
|
77
|
+
"auth.users.list.title": "Users",
|
|
78
|
+
"auth.users.list.confirmDelete": "Delete user \"{email}\"?",
|
|
79
|
+
"auth.users.list.actions.showRoles": "Show roles",
|
|
80
|
+
"entities.user.table.title": "User Entities",
|
|
81
|
+
"entities.user.table.column.entity": "Entity",
|
|
82
|
+
"entities.user.table.column.label": "Label",
|
|
83
|
+
"entities.user.table.column.source": "Source",
|
|
84
|
+
"entities.user.table.column.fields": "Fields",
|
|
85
|
+
"entities.user.table.column.inSidebar": "In Sidebar",
|
|
86
|
+
"entities.user.table.actions.showRecords": "Show records",
|
|
87
|
+
"example.moduleTitle": "Example Module",
|
|
88
|
+
"example.publicPage": "Public example page.",
|
|
89
|
+
"example.adminTitle": "Example Admin",
|
|
90
|
+
"example.manageEntities": "Manage example entities.",
|
|
91
|
+
"example.blog.overriddenTitle": "Overridden Blog Post",
|
|
92
|
+
"example.blog.customTitle": "Custom Blog Post Override",
|
|
93
|
+
"example.blog.overrideDescription": "This page comes from src/modules and overrides the example package.",
|
|
94
|
+
"example.blog.postId": "Post id:",
|
|
95
|
+
"example.blog.removeHint": "You can remove this file to fall back to the package implementation.",
|
|
96
|
+
"dashboard.title": "Dashboard",
|
|
97
|
+
"dashboard.subtitle": "Arrange and personalize the widgets you see on your admin start page.",
|
|
98
|
+
"dashboard.unavailable": "Dashboard unavailable",
|
|
99
|
+
"dashboard.retry": "Retry",
|
|
100
|
+
"dashboard.saving": "Saving…",
|
|
101
|
+
"dashboard.action.customize": "Customize",
|
|
102
|
+
"dashboard.action.done": "Done",
|
|
103
|
+
"dashboard.error.partial": "Some changes were not saved",
|
|
104
|
+
"dashboard.error.reload": "Reload data",
|
|
105
|
+
"dashboard.addWidget": "Add a widget",
|
|
106
|
+
"dashboard.empty.configurable": "No widgets selected yet. Use \"Add a widget\" to start building your dashboard.",
|
|
107
|
+
"dashboard.empty.readonly": "No widgets are available for your account yet.",
|
|
108
|
+
"dashboard.loadError": "Unable to load dashboard data. Please try again later.",
|
|
109
|
+
"dashboard.saveError": "Unable to save dashboard layout changes.",
|
|
110
|
+
"dashboard.widget.loadError": "Unable to load widget.",
|
|
111
|
+
"dashboard.widget.closeSettings": "Close settings",
|
|
112
|
+
"dashboard.widget.editSettings": "Edit settings",
|
|
113
|
+
"dashboard.widget.refresh": "Refresh widget",
|
|
114
|
+
"dashboard.widget.remove": "Remove widget",
|
|
115
|
+
"dashboard.widgets.customers.dashboard.todos.title": "Customer Tasks",
|
|
116
|
+
"dashboard.widgets.customers.dashboard.todos.description": "Review the latest tasks linked to customers and jump directly to their records.",
|
|
117
|
+
"dashboard.widgets.customers.dashboard.newCustomers.title": "New Customers",
|
|
118
|
+
"dashboard.widgets.customers.dashboard.newCustomers.description": "Track the most recently added customers to follow up quickly.",
|
|
119
|
+
"dashboard.widgets.customers.dashboard.nextInteractions.title": "Next Customer Interactions",
|
|
120
|
+
"dashboard.widgets.customers.dashboard.nextInteractions.description": "See the customers with the next interactions scheduled to stay proactive.",
|
|
121
|
+
"appShell.openMenu": "Open menu",
|
|
122
|
+
"appShell.toggleSidebar": "Toggle sidebar",
|
|
123
|
+
"appShell.goToDashboard": "Go to dashboard",
|
|
124
|
+
"appShell.closeMenu": "Close menu",
|
|
125
|
+
"appShell.userFallback": "User",
|
|
126
|
+
"appShell.productName": "Open Mercato",
|
|
127
|
+
"appShell.version": "Version {{version}}",
|
|
128
|
+
"appShell.customizeSidebar": "Customize sidebar",
|
|
129
|
+
"appShell.sidebarCustomizationHeading": "Sidebar customization",
|
|
130
|
+
"appShell.sidebarCustomizationHint": "Changes apply only to your {locale} sidebar today. Other locales stay unchanged.",
|
|
131
|
+
"appShell.sidebarCustomizationReset": "Reset",
|
|
132
|
+
"appShell.sidebarCustomizationCancel": "Cancel",
|
|
133
|
+
"appShell.sidebarCustomizationSave": "Save",
|
|
134
|
+
"appShell.sidebarCustomizationSaving": "Saving…",
|
|
135
|
+
"appShell.sidebarCustomizationMoveUp": "Move up",
|
|
136
|
+
"appShell.sidebarCustomizationMoveDown": "Move down",
|
|
137
|
+
"appShell.sidebarCustomizationGroupLabel": "Section name",
|
|
138
|
+
"appShell.sidebarCustomizationShowItem": "Show item",
|
|
139
|
+
"appShell.sidebarCustomizationLoading": "Loading preferences…",
|
|
140
|
+
"appShell.sidebarCustomizationLoadError": "We couldn’t load your sidebar preferences.",
|
|
141
|
+
"appShell.sidebarCustomizationSaveError": "We couldn’t save your sidebar preferences.",
|
|
142
|
+
"appShell.sidebarApplyToRolesTitle": "Apply to roles",
|
|
143
|
+
"appShell.sidebarApplyToRolesDescription": "Select roles that should receive this sidebar layout by default.",
|
|
144
|
+
"appShell.sidebarApplyToRolesEmpty": "No roles are available for this tenant.",
|
|
145
|
+
"appShell.sidebarRoleHasPreset": "uses this preset",
|
|
146
|
+
"appShell.sidebarRoleWillClear": "will clear preset",
|
|
147
|
+
"organizationSwitcher.label": "Organization",
|
|
148
|
+
"organizationSwitcher.loading": "Loading…",
|
|
149
|
+
"organizationSwitcher.error": "Failed to load",
|
|
150
|
+
"organizationSwitcher.empty": "No organizations",
|
|
151
|
+
"organizationSwitcher.manage": "Manage",
|
|
152
|
+
"organizationSwitcher.tenantLabel": "Tenant",
|
|
153
|
+
"organizationSelect.all": "All organizations",
|
|
154
|
+
"organizationSelect.empty": "—",
|
|
155
|
+
"organizationSelect.loading": "Loading organizations…",
|
|
156
|
+
"organizationSelect.error": "Failed to load organizations",
|
|
157
|
+
"organizationSelect.inactive": "Inactive",
|
|
158
|
+
"tenantSelect.empty": "—",
|
|
159
|
+
"tenantSelect.loading": "Loading tenants…",
|
|
160
|
+
"tenantSelect.error": "Failed to load tenants",
|
|
161
|
+
"tenantSelect.inactive": "Inactive",
|
|
162
|
+
"app.metadata.title": "Open Mercato",
|
|
163
|
+
"app.metadata.description": "AI‑supportive, modular ERP foundation for product & service companies",
|
|
164
|
+
"app.page.title": "Open Mercato",
|
|
165
|
+
"app.page.subtitle": "AI‑supportive, modular ERP foundation for product & service companies",
|
|
166
|
+
"app.page.logoAlt": "Open Mercato",
|
|
167
|
+
"app.page.dbStatus.title": "Database Status",
|
|
168
|
+
"app.page.dbStatus.label": "Status:",
|
|
169
|
+
"app.page.dbStatus.unknown": "Unknown",
|
|
170
|
+
"app.page.dbStatus.connected": "Connected",
|
|
171
|
+
"app.page.dbStatus.noConnection": "no connection",
|
|
172
|
+
"app.page.dbStatus.error": "Error: {message}",
|
|
173
|
+
"app.page.dbStatus.users": "Users:",
|
|
174
|
+
"app.page.dbStatus.tenants": "Tenants:",
|
|
175
|
+
"app.page.dbStatus.organizations": "Organizations:",
|
|
176
|
+
"app.page.activeModules.title": "Active Modules",
|
|
177
|
+
"app.page.quickLinks.title": "Quick Links",
|
|
178
|
+
"app.page.quickLinks.login": "Login",
|
|
179
|
+
"app.page.quickLinks.examplePage": "Example Page",
|
|
180
|
+
"app.page.quickLinks.exampleAdmin": "Example Admin",
|
|
181
|
+
"app.page.quickLinks.exampleTodos": "Example Todos with Custom Fields",
|
|
182
|
+
"app.page.quickLinks.exampleBlog": "Example Blog Post",
|
|
183
|
+
"app.page.footer": "Built with Next.js, MikroORM, and Awilix — modular by design.",
|
|
184
|
+
"startPage.welcome.title": "Welcome to Your Open Mercato Installation",
|
|
185
|
+
"startPage.welcome.description": "This is a customizable start page for your fresh Open Mercato installation. Choose your role below to get started and explore the features available to you.",
|
|
186
|
+
"startPage.onboarding.title": "Launch your own workspace",
|
|
187
|
+
"startPage.onboarding.description": "Create a tenant, organization, and administrator account in minutes. We'll verify your email and deliver a pre-seeded environment so you can explore Open Mercato with real data.",
|
|
188
|
+
"startPage.onboarding.feature1": "Automatic tenant and sample data provisioning",
|
|
189
|
+
"startPage.onboarding.feature2": "Ready-to-use superadmin credentials after verification",
|
|
190
|
+
"startPage.onboarding.cta": "Start onboarding",
|
|
191
|
+
"startPage.defaultPassword.title": "Default Password",
|
|
192
|
+
"startPage.defaultPassword.description1": "The default password for all demo accounts is",
|
|
193
|
+
"startPage.defaultPassword.description2": "To change passwords, use the CLI command:",
|
|
194
|
+
"startPage.chooseRole.title": "Choose Your Role",
|
|
195
|
+
"startPage.roleTile.availableFeatures": "Available Features:",
|
|
196
|
+
"startPage.roleTile.loginUnavailable": "Login unavailable",
|
|
197
|
+
"startPage.roleTile.loginAs": "Login as {title}",
|
|
198
|
+
"startPage.roles.superAdmin.title": "Super Admin",
|
|
199
|
+
"startPage.roles.superAdmin.description": "Full system access with complete control",
|
|
200
|
+
"startPage.roles.superAdmin.feature1": "Manage organization structure",
|
|
201
|
+
"startPage.roles.superAdmin.feature2": "Create and manage roles",
|
|
202
|
+
"startPage.roles.superAdmin.feature3": "Manage all users across organizations",
|
|
203
|
+
"startPage.roles.superAdmin.feature4": "System-wide configuration",
|
|
204
|
+
"startPage.roles.superAdmin.feature5": "Access to all modules and features",
|
|
205
|
+
"startPage.roles.superAdmin.disabledCta": "Superadmin login disabled",
|
|
206
|
+
"startPage.roles.superAdmin.disabledMessage1": "Superadmin demo access is not enabled on this instance.",
|
|
207
|
+
"startPage.roles.superAdmin.disabledMessage2": "Install Open Mercato locally for full access via",
|
|
208
|
+
"startPage.roles.admin.title": "Admin",
|
|
209
|
+
"startPage.roles.admin.description": "Organization-level administration",
|
|
210
|
+
"startPage.roles.admin.feature1": "Admin specific organization(s)",
|
|
211
|
+
"startPage.roles.admin.feature2": "Manage users within organization",
|
|
212
|
+
"startPage.roles.admin.feature3": "Configure organization settings",
|
|
213
|
+
"startPage.roles.admin.feature4": "Access to admin modules",
|
|
214
|
+
"startPage.roles.admin.feature5": "Report and analytics access",
|
|
215
|
+
"startPage.roles.employee.title": "Employee",
|
|
216
|
+
"startPage.roles.employee.description": "Work on your daily tasks",
|
|
217
|
+
"startPage.roles.employee.feature1": "Work on assigned tasks",
|
|
218
|
+
"startPage.roles.employee.feature2": "Access organization resources",
|
|
219
|
+
"startPage.roles.employee.feature3": "Collaborate with team members",
|
|
220
|
+
"startPage.roles.employee.feature4": "View personal dashboard",
|
|
221
|
+
"startPage.roles.employee.feature5": "Submit reports and updates",
|
|
222
|
+
"startPage.apiResources.title": "API resources",
|
|
223
|
+
"startPage.apiResources.description": "Explore the official documentation and download the generated OpenAPI exports for this installation.",
|
|
224
|
+
"startPage.apiResources.openLink": "Open link",
|
|
225
|
+
"startPage.apiResources.baseUrl": "Current API base URL:",
|
|
226
|
+
"startPage.showNextTime": "Display this start page next time",
|
|
227
|
+
"api.errors.unauthorized": "Unauthorized",
|
|
228
|
+
"api.errors.forbidden": "Forbidden",
|
|
229
|
+
"api.errors.notFound": "Not Found",
|
|
230
|
+
"api.errors.invalidJson": "Invalid JSON payload.",
|
|
231
|
+
"api.errors.invalidPayload": "Invalid payload.",
|
|
232
|
+
"api.errors.invalidLocale": "Invalid locale",
|
|
233
|
+
"api.errors.badRequest": "Bad request",
|
|
234
|
+
"api.docs.title": "Open Mercato API",
|
|
235
|
+
"api.docs.description": "Auto-generated OpenAPI definition for all enabled modules.",
|
|
236
|
+
"api.docs.serverDescription": "Default environment",
|
|
237
|
+
"vector.api.errors.configUnavailable": "Configuration service unavailable",
|
|
238
|
+
"vector.api.errors.autoIndexingDisabled": "Auto-indexing is disabled via DISABLE_VECTOR_SEARCH_AUTOINDEXING.",
|
|
239
|
+
"vector.api.errors.indexUnavailable": "Vector index unavailable",
|
|
240
|
+
"vector.api.errors.missingQuery": "Missing query",
|
|
241
|
+
"vector.api.errors.searchFailed": "Vector search failed",
|
|
242
|
+
"vector.api.errors.reindexFailed": "Vector reindex failed",
|
|
243
|
+
"vector.api.errors.indexFetchFailed": "Vector index fetch failed",
|
|
244
|
+
"vector.api.errors.purgeFailed": "Vector index purge failed",
|
|
245
|
+
"vector.api.errors.updateFailed": "Failed to update vector settings.",
|
|
246
|
+
"ui.errors.defaultTitle": "Something went wrong",
|
|
247
|
+
"ui.errors.defaultMessage": "Unable to load data. Please try again.",
|
|
248
|
+
"ui.badges.severity.low": "Low",
|
|
249
|
+
"ui.badges.severity.medium": "Medium",
|
|
250
|
+
"ui.badges.severity.high": "High",
|
|
251
|
+
"ui.filters.title": "Filters",
|
|
252
|
+
"ui.dialogs.confirm.defaultTitle": "Are you sure?",
|
|
253
|
+
"ui.dataTable.export.label": "Export",
|
|
254
|
+
"ui.dataTable.export.format.markdown": "Markdown",
|
|
255
|
+
"ui.dataTable.customizeColumns.ariaLabel": "Customize columns",
|
|
256
|
+
"ui.dataTable.customizeColumns.title": "Customize columns",
|
|
257
|
+
"ui.dataTable.customizeColumns.srOnly": "Customize columns",
|
|
258
|
+
"ui.dataTable.pagination.results": "Showing {start} to {end} of {total} results",
|
|
259
|
+
"ui.dataTable.pagination.resultsWithDuration": "Showing {start} to {end} of {total} results in {duration}",
|
|
260
|
+
"ui.dataTable.pagination.previous": "Previous",
|
|
261
|
+
"ui.dataTable.pagination.next": "Next",
|
|
262
|
+
"ui.dataTable.pagination.pageInfo": "Page {page} of {totalPages}",
|
|
263
|
+
"ui.dataTable.pagination.cache.ariaLabel": "Cache {status}",
|
|
264
|
+
"ui.dataTable.pagination.cache.title": "Cache {status}",
|
|
265
|
+
"ui.dataTable.pagination.cache.srOnly": "Cache {status}",
|
|
266
|
+
"ui.dataTable.emptyState.default": "No results.",
|
|
267
|
+
"ui.dataTable.actionsColumn": "Actions",
|
|
268
|
+
"ui.dataTable.perspectives.button": "Perspectives",
|
|
269
|
+
"ui.inputs.tagsInput.placeholder": "Add tag and press Enter",
|
|
270
|
+
"ui.filters.actions.clear": "Clear",
|
|
271
|
+
"ui.filters.actions.apply": "Apply",
|
|
272
|
+
"ui.filters.dateRange.from": "From",
|
|
273
|
+
"ui.filters.dateRange.to": "To",
|
|
274
|
+
"ui.perspectives.untitled": "Untitled perspective",
|
|
275
|
+
"ui.perspectives.badge.default": "Default",
|
|
276
|
+
"ui.perspectives.badge.roleDefault": "Role default",
|
|
277
|
+
"ui.perspectives.updated": "Updated {date}",
|
|
278
|
+
"ui.perspectives.role.fallback": "Role",
|
|
279
|
+
"ui.perspectives.role.defaultConfigured": "Default perspective configured",
|
|
280
|
+
"ui.perspectives.actions.active": "Active",
|
|
281
|
+
"ui.perspectives.actions.use": "Use",
|
|
282
|
+
"ui.perspectives.actions.removing": "Removing…",
|
|
283
|
+
"ui.perspectives.form.nameLabel": "Name",
|
|
284
|
+
"ui.perspectives.form.namePlaceholder": "e.g. My condensed view",
|
|
285
|
+
"ui.perspectives.form.makeDefault": "Make this my default perspective",
|
|
286
|
+
"ui.perspectives.form.shareWithRoles": "Share with roles",
|
|
287
|
+
"ui.perspectives.form.noRolesAvailable": "No roles available.",
|
|
288
|
+
"ui.perspectives.form.setRoleDefault": "Set as default for selected roles",
|
|
289
|
+
"ui.perspectives.form.saving": "Saving…",
|
|
290
|
+
"ui.perspectives.form.save": "Save perspective",
|
|
291
|
+
"ui.perspectives.form.columns": "Columns",
|
|
292
|
+
"ui.perspectives.title": "Perspectives",
|
|
293
|
+
"ui.perspectives.close": "Close",
|
|
294
|
+
"ui.perspectives.myPerspectives.title": "My perspectives",
|
|
295
|
+
"ui.perspectives.myPerspectives.empty": "No saved perspectives yet. Adjust columns or filters and save your first perspective.",
|
|
296
|
+
"ui.perspectives.rolePerspectives.title": "Role perspectives",
|
|
297
|
+
"ui.perspectives.rolePerspectives.empty": "No shared role perspectives available.",
|
|
298
|
+
"ui.perspectives.saveCurrentView.title": "Save current view",
|
|
299
|
+
"ui.perspectives.role.clearing": "Clearing…",
|
|
300
|
+
"ui.perspectives.role.clear": "Clear role",
|
|
301
|
+
"ui.rowActions.openActions": "Open actions",
|
|
302
|
+
"ui.userMenu.userFallback": "User",
|
|
303
|
+
"ui.userMenu.loggedInAs": "Logged in as:",
|
|
304
|
+
"ui.userMenu.logout": "Logout",
|
|
305
|
+
"ui.contextHelp.hide": "Hide",
|
|
306
|
+
"ui.contextHelp.show": "Show",
|
|
307
|
+
"ui.dataLoader.loading": "Loading...",
|
|
308
|
+
"ui.filterBar.searchPlaceholder": "Search",
|
|
309
|
+
"ui.filterBar.filters": "Filters",
|
|
310
|
+
"ui.filterBar.filtersWithCount": "Filters {count}",
|
|
311
|
+
"ui.forms.select.emptyOption": "—",
|
|
312
|
+
"ui.dataTable.perspectives.error.load": "Failed to load perspectives",
|
|
313
|
+
"ui.dataTable.perspectives.error.save": "Failed to save perspective",
|
|
314
|
+
"ui.dataTable.perspectives.error.delete": "Failed to delete perspective",
|
|
315
|
+
"ui.dataTable.perspectives.error.clearRoles": "Failed to clear role perspectives",
|
|
316
|
+
"ui.dataTable.perspectives.error.apiUnavailable": "Perspectives API is not available. Run `npm run modules:prepare` and restart the dev server.",
|
|
317
|
+
"ui.dataTable.perspectives.warning.apiUnavailable": "Perspectives API is not available yet. Run `npm run modules:prepare` to regenerate module routes, then restart the server.",
|
|
318
|
+
"audit_logs.banner.undo_failed": "Failed to undo",
|
|
319
|
+
"ui.spinner.ariaLabel": "Loading",
|
|
320
|
+
"ui.spinner.srOnly": "Loading...",
|
|
321
|
+
"ui.dialog.close.ariaLabel": "Close",
|
|
322
|
+
"example.products.table.column.product": "Product",
|
|
323
|
+
"example.products.table.column.collection": "Collection",
|
|
324
|
+
"example.products.table.column.channels": "Sales Channels",
|
|
325
|
+
"example.products.table.column.variants": "Variants",
|
|
326
|
+
"example.products.table.column.status": "Status",
|
|
327
|
+
"example.products.actions.export": "Export",
|
|
328
|
+
"example.products.actions.import": "Import",
|
|
329
|
+
"example.products.actions.create": "Create",
|
|
330
|
+
"example.products.page.title": "Products",
|
|
331
|
+
"example.products.actions.addFilter": "Add filter",
|
|
332
|
+
"example.admin.page.title": "Example Admin",
|
|
333
|
+
"example.admin.page.description": "Demo resources for the example module.",
|
|
334
|
+
"example.admin.page.resources": "Resources",
|
|
335
|
+
"example.admin.page.todosList": "Todos list",
|
|
336
|
+
"example.widgets.welcome.settings.headlineLabel": "Headline",
|
|
337
|
+
"example.widgets.welcome.settings.headlinePlaceholder": "Welcome back, {{user}}!",
|
|
338
|
+
"example.widgets.welcome.settings.headlineHint": "Use {{user}} to include the signed-in identifier.",
|
|
339
|
+
"example.widgets.welcome.settings.messageLabel": "Message",
|
|
340
|
+
"example.widgets.notes.settings.label": "Notes",
|
|
341
|
+
"example.widgets.notes.settings.placeholder": "Write quick notes you want to keep handy.",
|
|
342
|
+
"example.widgets.notes.empty": "No notes yet. Switch to settings to add your text.",
|
|
343
|
+
"notices.demo.title": "Demo Environment",
|
|
344
|
+
"notices.demo.description": "This instance is provided for demo purposes only. Data may be reset at any time and is not retained for any guaranteed period.",
|
|
345
|
+
"notices.demo.superadminQuestion": "Need persistent superadmin access?",
|
|
346
|
+
"notices.demo.installLink": "Install Open Mercato locally",
|
|
347
|
+
"notices.demo.reviewLinks": "Review our",
|
|
348
|
+
"notices.demo.and": "and",
|
|
349
|
+
"notices.cookies.description": "We use essential cookies to remember your preferences. Learn how we handle data in our",
|
|
350
|
+
"notices.cookies.dismiss": "Dismiss",
|
|
351
|
+
"notices.cookies.accept": "Accept cookies",
|
|
352
|
+
"upgrades.versionLabel": "Version {{version}}",
|
|
353
|
+
"upgrades.scopeRequired": "Select an organization and tenant to apply this upgrade.",
|
|
354
|
+
"upgrades.v034.message": "The version {{version}} has been installed. To fully use all the features from this edition please do \"Install example catalog products and categories\".",
|
|
355
|
+
"upgrades.v034.cta": "Install example catalog products and categories",
|
|
356
|
+
"upgrades.v034.loading": "Installing…",
|
|
357
|
+
"upgrades.v034.success": "Example catalog products and categories installed.",
|
|
358
|
+
"upgrades.v036.message": "Version {{version}} has been installed. To try the new sales module, run \"Install example sales quotes and orders\".",
|
|
359
|
+
"upgrades.v036.cta": "Install example sales quotes and orders",
|
|
360
|
+
"upgrades.v036.loading": "Installing…",
|
|
361
|
+
"upgrades.v036.success": "Example sales quotes and orders installed.",
|
|
362
|
+
"upgrades.v036_vector_encryption.message": "Version {{version}} has been installed. Encrypt additional vector search fields and queue a reindex.",
|
|
363
|
+
"upgrades.v036_vector_encryption.cta": "Update vector search encryption",
|
|
364
|
+
"upgrades.v036_vector_encryption.loading": "Updating…",
|
|
365
|
+
"upgrades.v036_vector_encryption.success": "Vector search encryption updated; reindex queued.",
|
|
366
|
+
"upgrades.v0313.message": "Version {{version}} has been installed. Seed example data, currencies, and workflows.",
|
|
367
|
+
"upgrades.v0313.cta": "Seed example data, currencies, and workflows",
|
|
368
|
+
"upgrades.v0313.loading": "Seeding…",
|
|
369
|
+
"upgrades.v0313.success": "Example data, currencies, and workflows seeded.",
|
|
370
|
+
"upgrades.v035.message": "Version {{version}} has been installed. Grant the admin role access to Business Rules.",
|
|
371
|
+
"upgrades.v035.cta": "Grant Business Rules access to admin",
|
|
372
|
+
"upgrades.v035.loading": "Updating role…",
|
|
373
|
+
"upgrades.v035.success": "Admin role updated with Business Rules access.",
|
|
374
|
+
"upgrades.runFailed": "We could not run this upgrade action.",
|
|
375
|
+
"upgrades.loading": "Loading upgrade…"
|
|
376
|
+
}
|