@burdenoff/microfe-store 2026.510.113
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 +217 -0
- package/dist/StoreAdminRoot.d.ts +22 -0
- package/dist/StoreAdminRoot.js +23 -0
- package/dist/StoreAdminRoot.js.map +1 -0
- package/dist/StoreAdminRoutes.d.ts +9 -0
- package/dist/StoreAdminRoutes.js +69 -0
- package/dist/StoreAdminRoutes.js.map +1 -0
- package/dist/StoreRoot.d.ts +31 -0
- package/dist/StoreRoot.js +139 -0
- package/dist/StoreRoot.js.map +1 -0
- package/dist/StoreRoutes.d.ts +12 -0
- package/dist/StoreRoutes.js +285 -0
- package/dist/StoreRoutes.js.map +1 -0
- package/dist/components/InstallAppModal.d.ts +26 -0
- package/dist/components/InstallAppModal.js +287 -0
- package/dist/components/InstallAppModal.js.map +1 -0
- package/dist/components/RouteGuards.d.ts +17 -0
- package/dist/components/RouteGuards.js +26 -0
- package/dist/components/RouteGuards.js.map +1 -0
- package/dist/components/cart/CartDrawer.d.ts +35 -0
- package/dist/components/cart/CartDrawer.js +162 -0
- package/dist/components/cart/CartDrawer.js.map +1 -0
- package/dist/components/index.d.ts +9 -0
- package/dist/components/index.js +3 -0
- package/dist/components/marketplace/ProductCard.d.ts +18 -0
- package/dist/components/marketplace/ProductCard.js +2 -0
- package/dist/dev/main.d.ts +1 -0
- package/dist/generated/global-operations.d.ts +2012 -0
- package/dist/generated/global-operations.js +1444 -0
- package/dist/generated/global-operations.js.map +1 -0
- package/dist/generated/global-types.d.ts +20856 -0
- package/dist/generated/global-types.js +14 -0
- package/dist/generated/global-types.js.map +1 -0
- package/dist/generated/wspace-operations.d.ts +1 -0
- package/dist/generated/wspace-types.d.ts +53362 -0
- package/dist/hooks/index.d.ts +12 -0
- package/dist/hooks/useBackendCart.d.ts +73 -0
- package/dist/hooks/useBackendCart.js +171 -0
- package/dist/hooks/useBackendCart.js.map +1 -0
- package/dist/hooks/useCart.d.ts +62 -0
- package/dist/hooks/useCart.js +90 -0
- package/dist/hooks/useCart.js.map +1 -0
- package/dist/hooks/useInstallations.d.ts +43 -0
- package/dist/hooks/useInstallations.js +140 -0
- package/dist/hooks/useInstallations.js.map +1 -0
- package/dist/hooks/useOrders.d.ts +40 -0
- package/dist/hooks/useOrders.js +73 -0
- package/dist/hooks/useOrders.js.map +1 -0
- package/dist/hooks/useProductSearch.d.ts +22 -0
- package/dist/hooks/useProductSearch.js +59 -0
- package/dist/hooks/useProductSearch.js.map +1 -0
- package/dist/hooks/useStoreGraphQL.d.ts +475 -0
- package/dist/hooks/useStoreGraphQL.js +751 -0
- package/dist/hooks/useStoreGraphQL.js.map +1 -0
- package/dist/hooks/useStoreGraphQLWithContext.d.ts +48 -0
- package/dist/hooks/useStoreGraphQLWithContext.js +39 -0
- package/dist/hooks/useStoreGraphQLWithContext.js.map +1 -0
- package/dist/hooks/useStorePermissions.d.ts +63 -0
- package/dist/hooks/useStorePermissions.js +88 -0
- package/dist/hooks/useStorePermissions.js.map +1 -0
- package/dist/index.d.ts +44 -0
- package/dist/index.js +13 -0
- package/dist/pages/AdminDashboardPage.d.ts +3 -0
- package/dist/pages/AdminDashboardPage.js +491 -0
- package/dist/pages/AdminDashboardPage.js.map +1 -0
- package/dist/pages/AdminReviewModerationPage.d.ts +3 -0
- package/dist/pages/AdminReviewModerationPage.js +247 -0
- package/dist/pages/AdminReviewModerationPage.js.map +1 -0
- package/dist/pages/AdminStoresPage.d.ts +3 -0
- package/dist/pages/AdminStoresPage.js +442 -0
- package/dist/pages/AdminStoresPage.js.map +1 -0
- package/dist/pages/AdminSubmissionsQueuePage.d.ts +3 -0
- package/dist/pages/AdminSubmissionsQueuePage.js +387 -0
- package/dist/pages/AdminSubmissionsQueuePage.js.map +1 -0
- package/dist/pages/AppDetailPage.d.ts +3 -0
- package/dist/pages/AppDetailPage.js +166 -0
- package/dist/pages/AppDetailPage.js.map +1 -0
- package/dist/pages/AppSettingsPage.d.ts +3 -0
- package/dist/pages/AppSettingsPage.js +100 -0
- package/dist/pages/AppSettingsPage.js.map +1 -0
- package/dist/pages/CartPage.d.ts +8 -0
- package/dist/pages/CartPage.js +259 -0
- package/dist/pages/CartPage.js.map +1 -0
- package/dist/pages/InstalledAppsPage.d.ts +8 -0
- package/dist/pages/InstalledAppsPage.js +290 -0
- package/dist/pages/InstalledAppsPage.js.map +1 -0
- package/dist/pages/MarketplaceHomePage.d.ts +3 -0
- package/dist/pages/MarketplaceHomePage.js +1118 -0
- package/dist/pages/MarketplaceHomePage.js.map +1 -0
- package/dist/pages/MyLicensesPage.d.ts +3 -0
- package/dist/pages/MyLicensesPage.js +146 -0
- package/dist/pages/MyLicensesPage.js.map +1 -0
- package/dist/pages/OrderConfirmationPage.d.ts +3 -0
- package/dist/pages/OrderConfirmationPage.js +178 -0
- package/dist/pages/OrderConfirmationPage.js.map +1 -0
- package/dist/pages/OrdersPage.d.ts +8 -0
- package/dist/pages/OrdersPage.js +358 -0
- package/dist/pages/OrdersPage.js.map +1 -0
- package/dist/pages/ProductCategoryPage.d.ts +3 -0
- package/dist/pages/ProductCategoryPage.js +83 -0
- package/dist/pages/ProductCategoryPage.js.map +1 -0
- package/dist/pages/ProductDetailPage.d.ts +8 -0
- package/dist/pages/ProductDetailPage.js +1205 -0
- package/dist/pages/ProductDetailPage.js.map +1 -0
- package/dist/pages/ProductReviewsPage.d.ts +3 -0
- package/dist/pages/ProductReviewsPage.js +86 -0
- package/dist/pages/ProductReviewsPage.js.map +1 -0
- package/dist/pages/PublisherDashboardPage.d.ts +3 -0
- package/dist/pages/PublisherDashboardPage.js +154 -0
- package/dist/pages/PublisherDashboardPage.js.map +1 -0
- package/dist/pages/PublisherRevenuePage.d.ts +3 -0
- package/dist/pages/PublisherRevenuePage.js +138 -0
- package/dist/pages/PublisherRevenuePage.js.map +1 -0
- package/dist/pages/PublisherSubmissionsPage.d.ts +3 -0
- package/dist/pages/PublisherSubmissionsPage.js +174 -0
- package/dist/pages/PublisherSubmissionsPage.js.map +1 -0
- package/dist/pages/PublisherSubmitPage.d.ts +3 -0
- package/dist/pages/PublisherSubmitPage.js +224 -0
- package/dist/pages/PublisherSubmitPage.js.map +1 -0
- package/dist/pages/SearchResultsPage.d.ts +3 -0
- package/dist/pages/SearchResultsPage.js +125 -0
- package/dist/pages/SearchResultsPage.js.map +1 -0
- package/dist/pages/StoresPage.d.ts +3 -0
- package/dist/pages/StoresPage.js +154 -0
- package/dist/pages/StoresPage.js.map +1 -0
- package/dist/providers/StoreProvider.d.ts +38 -0
- package/dist/providers/StoreProvider.js +51 -0
- package/dist/providers/StoreProvider.js.map +1 -0
- package/dist/store/storeStore.d.ts +69 -0
- package/dist/store/storeStore.js +68 -0
- package/dist/store/storeStore.js.map +1 -0
- package/dist/translations/en.d.ts +518 -0
- package/dist/translations/en.js +514 -0
- package/dist/translations/en.js.map +1 -0
- package/dist/types/index.d.ts +575 -0
- package/dist/utils/index.d.ts +67 -0
- package/dist/utils/index.js +114 -0
- package/dist/utils/index.js.map +1 -0
- package/dist/utils/nativeBridge.d.ts +2 -0
- package/dist/utils/nativeBridge.js +2 -0
- package/package.json +105 -0
|
@@ -0,0 +1,514 @@
|
|
|
1
|
+
//#region src/translations/en.ts
|
|
2
|
+
var e = {
|
|
3
|
+
store: {
|
|
4
|
+
errors: {
|
|
5
|
+
notFound: "Store item not found",
|
|
6
|
+
notFoundWithId: "Store item with ID '{{id}}' not found",
|
|
7
|
+
productNotFound: "Product not found",
|
|
8
|
+
productNotFoundWithId: "Product with ID '{{id}}' not found",
|
|
9
|
+
slugAlreadyExists: "A product with slug '{{slug}}' already exists",
|
|
10
|
+
publisherNotFound: "Publisher not found",
|
|
11
|
+
publisherNotFoundWithId: "Publisher with ID '{{id}}' not found",
|
|
12
|
+
categoryNotFound: "Category not found",
|
|
13
|
+
categoryNotFoundWithId: "Category with ID '{{id}}' not found",
|
|
14
|
+
categoryAlreadyExists: "Category '{{name}}' already exists",
|
|
15
|
+
versionNotFound: "Version not found",
|
|
16
|
+
versionNotFoundWithId: "Version with ID '{{id}}' not found",
|
|
17
|
+
versionAlreadyExists: "Version '{{version}}' already exists for this product",
|
|
18
|
+
reviewNotFound: "Review not found",
|
|
19
|
+
reviewNotFoundWithId: "Review with ID '{{id}}' not found",
|
|
20
|
+
reviewAlreadyExists: "You have already reviewed this product",
|
|
21
|
+
entitlementNotFound: "Entitlement not found",
|
|
22
|
+
entitlementNotFoundWithId: "Entitlement with ID '{{id}}' not found",
|
|
23
|
+
entitlementAlreadyExists: "Entitlement already exists for this product",
|
|
24
|
+
submissionNotFound: "Submission not found",
|
|
25
|
+
submissionNotFoundWithId: "Submission with ID '{{id}}' not found",
|
|
26
|
+
submissionAlreadyPending: "A submission is already pending for this product",
|
|
27
|
+
orderNotFound: "Order not found",
|
|
28
|
+
orderNotFoundWithId: "Order with ID '{{id}}' not found",
|
|
29
|
+
tagNotFound: "Tag not found",
|
|
30
|
+
tagNotFoundWithId: "Tag with ID '{{id}}' not found",
|
|
31
|
+
tagAlreadyExists: "Tag '{{name}}' already exists",
|
|
32
|
+
unauthorized: "You are not authorized to perform this action",
|
|
33
|
+
invalidInput: "Invalid input provided",
|
|
34
|
+
invalidStatus: "Invalid status transition",
|
|
35
|
+
cannotDeletePublished: "Cannot delete a published product",
|
|
36
|
+
cannotDeleteWithOrders: "Cannot delete product with {{count}} orders",
|
|
37
|
+
cannotDeleteWithEntitlements: "Cannot delete product with active entitlements",
|
|
38
|
+
productNotPublished: "Product is not published",
|
|
39
|
+
productAlreadyPublished: "Product is already published",
|
|
40
|
+
insufficientFunds: "Insufficient funds to purchase this product",
|
|
41
|
+
alreadyPurchased: "You have already purchased this product",
|
|
42
|
+
downloadFailed: "Failed to download product"
|
|
43
|
+
},
|
|
44
|
+
success: {
|
|
45
|
+
productCreated: "Product '{{name}}' created successfully",
|
|
46
|
+
productUpdated: "Product '{{name}}' updated successfully",
|
|
47
|
+
productDeleted: "Product deleted successfully",
|
|
48
|
+
productPublished: "Product '{{name}}' published successfully",
|
|
49
|
+
productUnlisted: "Product '{{name}}' unlisted successfully",
|
|
50
|
+
productDeprecated: "Product '{{name}}' marked as deprecated",
|
|
51
|
+
versionCreated: "Version '{{version}}' created successfully",
|
|
52
|
+
versionDeleted: "Version deleted successfully",
|
|
53
|
+
reviewCreated: "Review submitted successfully",
|
|
54
|
+
reviewUpdated: "Review updated successfully",
|
|
55
|
+
reviewDeleted: "Review deleted successfully",
|
|
56
|
+
reviewApproved: "Review approved successfully",
|
|
57
|
+
reviewRejected: "Review rejected successfully",
|
|
58
|
+
entitlementCreated: "Entitlement created successfully",
|
|
59
|
+
entitlementSuspended: "Entitlement suspended",
|
|
60
|
+
entitlementReactivated: "Entitlement reactivated",
|
|
61
|
+
entitlementDeleted: "Entitlement deleted successfully",
|
|
62
|
+
categoryCreated: "Category '{{name}}' created successfully",
|
|
63
|
+
categoryUpdated: "Category '{{name}}' updated successfully",
|
|
64
|
+
categoryDeleted: "Category deleted successfully",
|
|
65
|
+
submissionCreated: "Submission created successfully",
|
|
66
|
+
submissionApproved: "Submission approved successfully",
|
|
67
|
+
submissionRejected: "Submission rejected",
|
|
68
|
+
purchaseCompleted: "Purchase completed successfully",
|
|
69
|
+
downloadStarted: "Download started"
|
|
70
|
+
},
|
|
71
|
+
validation: {
|
|
72
|
+
nameRequired: "Product name is required",
|
|
73
|
+
nameTooShort: "Product name must be at least {{min}} characters",
|
|
74
|
+
nameTooLong: "Product name cannot exceed {{max}} characters",
|
|
75
|
+
slugRequired: "Product slug is required",
|
|
76
|
+
slugInvalid: "Product slug contains invalid characters",
|
|
77
|
+
descriptionTooLong: "Description cannot exceed {{max}} characters",
|
|
78
|
+
priceRequired: "Price is required",
|
|
79
|
+
priceInvalid: "Price must be a positive number",
|
|
80
|
+
currencyRequired: "Currency is required",
|
|
81
|
+
currencyInvalid: "Invalid currency code",
|
|
82
|
+
typeRequired: "Product type is required",
|
|
83
|
+
typeInvalid: "Invalid product type",
|
|
84
|
+
ratingRequired: "Rating is required",
|
|
85
|
+
ratingInvalid: "Rating must be between 1 and 5",
|
|
86
|
+
versionRequired: "Version is required",
|
|
87
|
+
versionInvalid: "Invalid version format"
|
|
88
|
+
},
|
|
89
|
+
labels: {
|
|
90
|
+
product: "Product",
|
|
91
|
+
products: "Products",
|
|
92
|
+
storeItem: "Store Item",
|
|
93
|
+
storeItems: "Store Items",
|
|
94
|
+
publisher: "Publisher",
|
|
95
|
+
publishers: "Publishers",
|
|
96
|
+
category: "Category",
|
|
97
|
+
categories: "Categories",
|
|
98
|
+
version: "Version",
|
|
99
|
+
versions: "Versions",
|
|
100
|
+
review: "Review",
|
|
101
|
+
reviews: "Reviews",
|
|
102
|
+
entitlement: "Entitlement",
|
|
103
|
+
entitlements: "Entitlements",
|
|
104
|
+
submission: "Submission",
|
|
105
|
+
submissions: "Submissions",
|
|
106
|
+
order: "Order",
|
|
107
|
+
orders: "Orders",
|
|
108
|
+
tag: "Tag",
|
|
109
|
+
tags: "Tags",
|
|
110
|
+
download: "Download",
|
|
111
|
+
downloads: "Downloads"
|
|
112
|
+
},
|
|
113
|
+
status: {
|
|
114
|
+
draft: "Draft",
|
|
115
|
+
pendingReview: "Pending Review",
|
|
116
|
+
published: "Published",
|
|
117
|
+
unlisted: "Unlisted",
|
|
118
|
+
deprecated: "Deprecated",
|
|
119
|
+
rejected: "Rejected",
|
|
120
|
+
archived: "Archived",
|
|
121
|
+
active: "Active",
|
|
122
|
+
suspended: "Suspended",
|
|
123
|
+
expired: "Expired",
|
|
124
|
+
pending: "Pending",
|
|
125
|
+
approved: "Approved",
|
|
126
|
+
processed: "Processed",
|
|
127
|
+
failed: "Failed",
|
|
128
|
+
refunded: "Refunded"
|
|
129
|
+
},
|
|
130
|
+
productTypes: {
|
|
131
|
+
app: "Application",
|
|
132
|
+
template: "Template",
|
|
133
|
+
integration: "Integration",
|
|
134
|
+
extension: "Extension",
|
|
135
|
+
theme: "Theme",
|
|
136
|
+
workflow: "Workflow",
|
|
137
|
+
node: "Node",
|
|
138
|
+
plugin: "Plugin",
|
|
139
|
+
component: "Component"
|
|
140
|
+
},
|
|
141
|
+
pricingModels: {
|
|
142
|
+
free: "Free",
|
|
143
|
+
paidOnetime: "One-time Purchase",
|
|
144
|
+
subscription: "Subscription"
|
|
145
|
+
},
|
|
146
|
+
items: {
|
|
147
|
+
zero: "No items",
|
|
148
|
+
one: "{{count}} item",
|
|
149
|
+
other: "{{count}} items"
|
|
150
|
+
},
|
|
151
|
+
operations: {
|
|
152
|
+
creating: "Creating product...",
|
|
153
|
+
updating: "Updating product...",
|
|
154
|
+
deleting: "Deleting product...",
|
|
155
|
+
publishing: "Publishing product...",
|
|
156
|
+
purchasing: "Processing purchase...",
|
|
157
|
+
downloading: "Starting download...",
|
|
158
|
+
loading: "Loading store items..."
|
|
159
|
+
},
|
|
160
|
+
footer: { ready: "Store Ready" }
|
|
161
|
+
},
|
|
162
|
+
publisher: {
|
|
163
|
+
errors: {
|
|
164
|
+
notFound: "Publisher not found",
|
|
165
|
+
notFoundWithId: "Publisher with ID '{{id}}' not found",
|
|
166
|
+
alreadyExists: "Publisher already exists for this user",
|
|
167
|
+
notVerified: "Publisher is not verified",
|
|
168
|
+
unauthorized: "You are not authorized to access this publisher"
|
|
169
|
+
},
|
|
170
|
+
success: {
|
|
171
|
+
created: "Publisher profile created successfully",
|
|
172
|
+
updated: "Publisher profile updated successfully",
|
|
173
|
+
verified: "Publisher verified successfully"
|
|
174
|
+
},
|
|
175
|
+
validation: {
|
|
176
|
+
nameRequired: "Publisher name is required",
|
|
177
|
+
emailRequired: "Publisher email is required",
|
|
178
|
+
emailInvalid: "Invalid email format"
|
|
179
|
+
}
|
|
180
|
+
},
|
|
181
|
+
review: {
|
|
182
|
+
errors: {
|
|
183
|
+
notFound: "Review not found",
|
|
184
|
+
alreadyReviewed: "You have already reviewed this product",
|
|
185
|
+
cannotReviewOwn: "You cannot review your own product",
|
|
186
|
+
mustPurchase: "You must purchase the product to review it"
|
|
187
|
+
},
|
|
188
|
+
validation: {
|
|
189
|
+
ratingRequired: "Rating is required",
|
|
190
|
+
ratingRange: "Rating must be between 1 and 5"
|
|
191
|
+
}
|
|
192
|
+
},
|
|
193
|
+
order: {
|
|
194
|
+
errors: {
|
|
195
|
+
notFound: "Order not found",
|
|
196
|
+
alreadyProcessed: "Order has already been processed",
|
|
197
|
+
paymentFailed: "Payment processing failed",
|
|
198
|
+
refundFailed: "Refund processing failed"
|
|
199
|
+
},
|
|
200
|
+
success: {
|
|
201
|
+
created: "Order created successfully",
|
|
202
|
+
processed: "Order processed successfully",
|
|
203
|
+
refunded: "Order refunded successfully"
|
|
204
|
+
}
|
|
205
|
+
},
|
|
206
|
+
cart: {
|
|
207
|
+
title: "Shopping Cart",
|
|
208
|
+
empty: "Your cart is empty",
|
|
209
|
+
checkout: "Checkout",
|
|
210
|
+
continueShopping: "Continue Shopping",
|
|
211
|
+
removeItem: "Remove item",
|
|
212
|
+
clearCart: "Clear cart",
|
|
213
|
+
subtotal: "Subtotal",
|
|
214
|
+
total: "Total",
|
|
215
|
+
itemAdded: "Item added to cart",
|
|
216
|
+
itemRemoved: "Item removed from cart",
|
|
217
|
+
cartCleared: "Cart cleared",
|
|
218
|
+
mergeSuccess: "Guest cart merged successfully"
|
|
219
|
+
},
|
|
220
|
+
nav: {
|
|
221
|
+
marketplace: "Marketplace",
|
|
222
|
+
cart: "Cart",
|
|
223
|
+
orders: "My Orders",
|
|
224
|
+
installed: "Installed Apps",
|
|
225
|
+
licenses: "Licenses",
|
|
226
|
+
publisher: "Publisher Portal",
|
|
227
|
+
publisherDashboard: "Dashboard",
|
|
228
|
+
submitProduct: "Submit Product",
|
|
229
|
+
submissions: "Submissions",
|
|
230
|
+
revenue: "Revenue",
|
|
231
|
+
admin: "Store Admin",
|
|
232
|
+
reviewModeration: "Review Moderation"
|
|
233
|
+
},
|
|
234
|
+
common: {
|
|
235
|
+
accessDenied: "Access Denied",
|
|
236
|
+
accessDeniedDescription: "You do not have permission to access this section.",
|
|
237
|
+
moduleLoadError: "Something went wrong loading this module. Please refresh the page.",
|
|
238
|
+
loading: "Loading...",
|
|
239
|
+
error: "Something went wrong",
|
|
240
|
+
retry: "Retry",
|
|
241
|
+
save: "Save",
|
|
242
|
+
cancel: "Cancel",
|
|
243
|
+
delete: "Delete",
|
|
244
|
+
edit: "Edit",
|
|
245
|
+
create: "Create",
|
|
246
|
+
search: "Search",
|
|
247
|
+
filter: "Filter",
|
|
248
|
+
sort: "Sort",
|
|
249
|
+
noResults: "No results found",
|
|
250
|
+
viewAll: "View All",
|
|
251
|
+
back: "Back",
|
|
252
|
+
next: "Next",
|
|
253
|
+
previous: "Previous",
|
|
254
|
+
tryAgain: "Try Again",
|
|
255
|
+
unknownPublisher: "Unknown Publisher",
|
|
256
|
+
unknown: "Unknown",
|
|
257
|
+
goBack: "Go back",
|
|
258
|
+
refresh: "Refresh",
|
|
259
|
+
close: "Close",
|
|
260
|
+
submit: "Submit",
|
|
261
|
+
confirm: "Confirm",
|
|
262
|
+
browse: "Browse"
|
|
263
|
+
},
|
|
264
|
+
pages: {
|
|
265
|
+
marketplace: {
|
|
266
|
+
title: "Marketplace",
|
|
267
|
+
subtitle: "Discover and install apps for your workspace",
|
|
268
|
+
searchPlaceholder: "Search apps, integrations, templates...",
|
|
269
|
+
filterByCategory: "Filter by category",
|
|
270
|
+
allCategories: "All Categories",
|
|
271
|
+
featuredApps: "Featured Apps",
|
|
272
|
+
popularApps: "Popular Apps",
|
|
273
|
+
recentlyUpdated: "Recently Updated",
|
|
274
|
+
freeApps: "Free Apps",
|
|
275
|
+
noResults: "No products found",
|
|
276
|
+
noResultsDescription: "Try adjusting your search or filter to find what you are looking for.",
|
|
277
|
+
clearSearch: "Clear search",
|
|
278
|
+
installNow: "Install Now",
|
|
279
|
+
viewDetails: "View Details",
|
|
280
|
+
free: "Free",
|
|
281
|
+
installed: "Installed"
|
|
282
|
+
},
|
|
283
|
+
productDetail: {
|
|
284
|
+
overview: "Overview",
|
|
285
|
+
reviews: "Reviews",
|
|
286
|
+
versions: "Versions",
|
|
287
|
+
installApp: "Install App",
|
|
288
|
+
installing: "Installing...",
|
|
289
|
+
installed: "Installed",
|
|
290
|
+
addToCart: "Add to Cart",
|
|
291
|
+
alreadyInCart: "Already in Cart",
|
|
292
|
+
buyNow: "Buy Now",
|
|
293
|
+
viewInstallation: "View Installation",
|
|
294
|
+
publisher: "Publisher",
|
|
295
|
+
category: "Category",
|
|
296
|
+
version: "Version",
|
|
297
|
+
updated: "Updated",
|
|
298
|
+
rating: "Rating",
|
|
299
|
+
reviews_count: "{{count}} reviews",
|
|
300
|
+
noReviews: "No reviews yet",
|
|
301
|
+
beFirstToReview: "Be the first to review this product.",
|
|
302
|
+
writeReview: "Write a Review",
|
|
303
|
+
submitReview: "Submit Review",
|
|
304
|
+
yourRating: "Your Rating",
|
|
305
|
+
yourReview: "Your Review (optional)",
|
|
306
|
+
reviewPlaceholder: "Share your experience with this product...",
|
|
307
|
+
notFound: "Product Not Found",
|
|
308
|
+
notFoundDescription: "The product you are looking for could not be found.",
|
|
309
|
+
backToMarketplace: "Back to Marketplace"
|
|
310
|
+
},
|
|
311
|
+
cart: {
|
|
312
|
+
title: "Shopping Cart",
|
|
313
|
+
items: "{{count}} items",
|
|
314
|
+
item: "{{count}} item",
|
|
315
|
+
emptyTitle: "Your cart is empty",
|
|
316
|
+
emptyDescription: "Looks like you have not added any apps or products to your cart yet. Start exploring the marketplace to find something you will love!",
|
|
317
|
+
browseMarketplace: "Browse Marketplace",
|
|
318
|
+
cartItems: "Cart Items ({{count}})",
|
|
319
|
+
clearCart: "Clear Cart",
|
|
320
|
+
singleLicense: "Single license",
|
|
321
|
+
qty: "Qty:",
|
|
322
|
+
digital: "Digital",
|
|
323
|
+
physical: "Physical",
|
|
324
|
+
subscription: "Subscription",
|
|
325
|
+
orderSummary: "Order Summary",
|
|
326
|
+
subtotal: "Subtotal",
|
|
327
|
+
estimatedTaxes: "Estimated taxes",
|
|
328
|
+
calculatedAtCheckout: "Calculated at checkout",
|
|
329
|
+
totalPlusTaxes: "Total (+ taxes)",
|
|
330
|
+
proceedToCheckout: "Proceed to Checkout",
|
|
331
|
+
processing: "Processing...",
|
|
332
|
+
secureCheckout: "Secure checkout powered by Stripe",
|
|
333
|
+
weAccept: "We accept:",
|
|
334
|
+
continueShopping: "Continue Shopping",
|
|
335
|
+
failedToCreate: "Failed to create order. Please try again.",
|
|
336
|
+
checkoutError: "An error occurred during checkout"
|
|
337
|
+
},
|
|
338
|
+
orders: {
|
|
339
|
+
title: "My Orders",
|
|
340
|
+
subtitle: "Track and manage your purchases",
|
|
341
|
+
emptyTitle: "No orders yet",
|
|
342
|
+
emptyDescription: "Your orders will appear here once you make a purchase.",
|
|
343
|
+
shopNow: "Shop Now",
|
|
344
|
+
orderNumber: "Order #{{number}}",
|
|
345
|
+
orderDate: "Ordered on {{date}}",
|
|
346
|
+
items_count: "{{count}} item(s)",
|
|
347
|
+
viewDetails: "View Details",
|
|
348
|
+
installApp: "Install App",
|
|
349
|
+
installed: "Installed",
|
|
350
|
+
failedToLoad: "Failed to load orders",
|
|
351
|
+
filterAll: "All",
|
|
352
|
+
reorder: "Reorder"
|
|
353
|
+
},
|
|
354
|
+
orderConfirmation: {
|
|
355
|
+
title: "Order Confirmed!",
|
|
356
|
+
subtitle: "Thank you for your purchase. We'll send a confirmation to your email.",
|
|
357
|
+
orderNumber: "Order Number",
|
|
358
|
+
orderDate: "Order Date",
|
|
359
|
+
paymentStatus: "Payment Status",
|
|
360
|
+
orderStatus: "Order Status",
|
|
361
|
+
orderItems: "Order Items",
|
|
362
|
+
orderSummary: "Order Summary",
|
|
363
|
+
subtotal: "Subtotal",
|
|
364
|
+
tax: "Tax",
|
|
365
|
+
total: "Total",
|
|
366
|
+
whatHappensNext: "What's Next?",
|
|
367
|
+
nextStep1: "You'll receive a confirmation email with your order details.",
|
|
368
|
+
nextStep2: "Your digital products will be available for installation immediately.",
|
|
369
|
+
nextStep3: "Physical products will be shipped within 3-5 business days.",
|
|
370
|
+
viewOrders: "View All Orders",
|
|
371
|
+
continueShopping: "Continue Shopping",
|
|
372
|
+
installNow: "Install Now"
|
|
373
|
+
},
|
|
374
|
+
installed: {
|
|
375
|
+
title: "Installed Apps",
|
|
376
|
+
subtitle: "Manage your installed applications",
|
|
377
|
+
emptyTitle: "No installed apps",
|
|
378
|
+
emptyDescription: "Install apps from the marketplace to manage them here.",
|
|
379
|
+
browseMarketplace: "Browse Marketplace",
|
|
380
|
+
failedToLoad: "Failed to load installations",
|
|
381
|
+
filterAll: "All",
|
|
382
|
+
viewDetails: "View Details",
|
|
383
|
+
uninstall: "Uninstall",
|
|
384
|
+
settings: "Settings",
|
|
385
|
+
statusAll: "All",
|
|
386
|
+
installNew: "Install New App"
|
|
387
|
+
},
|
|
388
|
+
appDetail: {
|
|
389
|
+
title: "App Details",
|
|
390
|
+
version: "Version",
|
|
391
|
+
status: "Status",
|
|
392
|
+
installedAt: "Installed At",
|
|
393
|
+
uninstall: "Uninstall",
|
|
394
|
+
uninstalling: "Uninstalling...",
|
|
395
|
+
settings: "Settings",
|
|
396
|
+
openSettings: "Open Settings",
|
|
397
|
+
failedToLoad: "Failed to load app details",
|
|
398
|
+
notFound: "App Not Found",
|
|
399
|
+
notFoundDescription: "The installation you are looking for could not be found."
|
|
400
|
+
},
|
|
401
|
+
appSettings: {
|
|
402
|
+
title: "App Settings",
|
|
403
|
+
saveSettings: "Save Settings",
|
|
404
|
+
saving: "Saving...",
|
|
405
|
+
settingsSaved: "Settings saved successfully",
|
|
406
|
+
failedToSave: "Failed to save settings",
|
|
407
|
+
noSettings: "No configurable settings",
|
|
408
|
+
noSettingsDescription: "This app does not have any configurable settings."
|
|
409
|
+
},
|
|
410
|
+
licenses: {
|
|
411
|
+
title: "My Licenses",
|
|
412
|
+
subtitle: "Review and manage your product entitlements",
|
|
413
|
+
emptyTitle: "No licenses yet",
|
|
414
|
+
emptyDescription: "Purchase apps from the marketplace to see your licenses here.",
|
|
415
|
+
browseMarketplace: "Browse Marketplace",
|
|
416
|
+
failedToLoad: "Failed to load licenses",
|
|
417
|
+
productId: "Product {{id}}",
|
|
418
|
+
entitlementId: "Entitlement ID: {{id}}",
|
|
419
|
+
licenseKey: "License key: {{key}}",
|
|
420
|
+
expiresOn: "Expires on {{date}}"
|
|
421
|
+
},
|
|
422
|
+
publisherDashboard: {
|
|
423
|
+
title: "Publisher Dashboard",
|
|
424
|
+
subtitle: "Manage your products and track performance",
|
|
425
|
+
totalProducts: "Total Products",
|
|
426
|
+
totalRevenue: "Total Revenue",
|
|
427
|
+
totalInstalls: "Total Installs",
|
|
428
|
+
pendingReviews: "Pending Reviews",
|
|
429
|
+
recentSubmissions: "Recent Submissions",
|
|
430
|
+
quickActions: "Quick Actions",
|
|
431
|
+
submitNewProduct: "Submit New Product",
|
|
432
|
+
viewSubmissions: "View Submissions",
|
|
433
|
+
viewRevenue: "View Revenue",
|
|
434
|
+
noProducts: "No products yet",
|
|
435
|
+
notRegistered: "Not a publisher yet",
|
|
436
|
+
registerNow: "Register as Publisher",
|
|
437
|
+
failedToLoad: "Failed to load dashboard"
|
|
438
|
+
},
|
|
439
|
+
publisherSubmit: {
|
|
440
|
+
title: "Submit Product",
|
|
441
|
+
productIdLabel: "Product ID",
|
|
442
|
+
productIdPlaceholder: "Enter product ID to submit for review",
|
|
443
|
+
notesLabel: "Notes (optional)",
|
|
444
|
+
notesPlaceholder: "Add any notes for the reviewer...",
|
|
445
|
+
submitButton: "Submit for Review",
|
|
446
|
+
submitting: "Submitting...",
|
|
447
|
+
successTitle: "Submission Successful",
|
|
448
|
+
successDescription: "Your product has been submitted for review.",
|
|
449
|
+
viewSubmissions: "View Submissions",
|
|
450
|
+
submitAnother: "Submit Another"
|
|
451
|
+
},
|
|
452
|
+
publisherSubmissions: {
|
|
453
|
+
title: "My Submissions",
|
|
454
|
+
subtitle: "Track the status of your product submissions",
|
|
455
|
+
emptyTitle: "No submissions yet",
|
|
456
|
+
emptyDescription: "Submit a product for review to see it here.",
|
|
457
|
+
submitProduct: "Submit a Product",
|
|
458
|
+
failedToLoad: "Failed to load submissions",
|
|
459
|
+
submittedOn: "Submitted on {{date}}",
|
|
460
|
+
reviewedOn: "Reviewed on {{date}}",
|
|
461
|
+
reviewNotes: "Review notes: {{notes}}"
|
|
462
|
+
},
|
|
463
|
+
publisherRevenue: {
|
|
464
|
+
title: "Revenue",
|
|
465
|
+
subtitle: "Track your earnings and payouts",
|
|
466
|
+
totalEarnings: "Total Earnings",
|
|
467
|
+
pendingPayout: "Pending Payout",
|
|
468
|
+
lastPayout: "Last Payout",
|
|
469
|
+
revenueHistory: "Revenue History",
|
|
470
|
+
noRevenue: "No revenue data yet",
|
|
471
|
+
noRevenueDescription: "Revenue data will appear here once your products start generating sales.",
|
|
472
|
+
period: "Period",
|
|
473
|
+
amount: "Amount",
|
|
474
|
+
status: "Status"
|
|
475
|
+
},
|
|
476
|
+
productReviews: {
|
|
477
|
+
title: "Product Reviews",
|
|
478
|
+
subtitle: "Manage reviews for your products",
|
|
479
|
+
failedToLoad: "Failed to load reviews",
|
|
480
|
+
noReviews: "No reviews yet",
|
|
481
|
+
noReviewsDescription: "Reviews will appear here once customers start reviewing your products.",
|
|
482
|
+
rating: "Rating",
|
|
483
|
+
reviewer: "Reviewer",
|
|
484
|
+
date: "Date",
|
|
485
|
+
approve: "Approve",
|
|
486
|
+
reject: "Reject"
|
|
487
|
+
},
|
|
488
|
+
search: {
|
|
489
|
+
title: "Search Results",
|
|
490
|
+
resultsFor: "Results for \"{{query}}\"",
|
|
491
|
+
noResults: "No results found",
|
|
492
|
+
noResultsDescription: "Try different keywords or browse the marketplace.",
|
|
493
|
+
browseMarketplace: "Browse Marketplace",
|
|
494
|
+
resultCount: "{{count}} results"
|
|
495
|
+
},
|
|
496
|
+
stores: {
|
|
497
|
+
title: "Stores",
|
|
498
|
+
subtitle: "Browse available stores",
|
|
499
|
+
emptyTitle: "No stores found",
|
|
500
|
+
emptyDescription: "No stores are currently available.",
|
|
501
|
+
failedToLoad: "Failed to load stores"
|
|
502
|
+
},
|
|
503
|
+
category: {
|
|
504
|
+
title: "{{name}}",
|
|
505
|
+
noProducts: "No products in this category",
|
|
506
|
+
noProductsDescription: "Check back later for new products in this category.",
|
|
507
|
+
browseAll: "Browse All Products"
|
|
508
|
+
}
|
|
509
|
+
}
|
|
510
|
+
};
|
|
511
|
+
//#endregion
|
|
512
|
+
export { e as enTranslations };
|
|
513
|
+
|
|
514
|
+
//# sourceMappingURL=en.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"en.js","names":[],"sources":["../../src/translations/en.ts"],"sourcesContent":["/**\n * Bundled English translations for microfe-store\n *\n * These serve as fallback translations when the i18n API is unavailable.\n * The i18n service should be the source of truth, but these ensure\n * the app remains usable even when translations can't be fetched.\n */\n\nexport const enTranslations = {\n // Store module\n store: {\n errors: {\n notFound: 'Store item not found',\n notFoundWithId: \"Store item with ID '{{id}}' not found\",\n productNotFound: 'Product not found',\n productNotFoundWithId: \"Product with ID '{{id}}' not found\",\n slugAlreadyExists: \"A product with slug '{{slug}}' already exists\",\n publisherNotFound: 'Publisher not found',\n publisherNotFoundWithId: \"Publisher with ID '{{id}}' not found\",\n categoryNotFound: 'Category not found',\n categoryNotFoundWithId: \"Category with ID '{{id}}' not found\",\n categoryAlreadyExists: \"Category '{{name}}' already exists\",\n versionNotFound: 'Version not found',\n versionNotFoundWithId: \"Version with ID '{{id}}' not found\",\n versionAlreadyExists: \"Version '{{version}}' already exists for this product\",\n reviewNotFound: 'Review not found',\n reviewNotFoundWithId: \"Review with ID '{{id}}' not found\",\n reviewAlreadyExists: 'You have already reviewed this product',\n entitlementNotFound: 'Entitlement not found',\n entitlementNotFoundWithId: \"Entitlement with ID '{{id}}' not found\",\n entitlementAlreadyExists: 'Entitlement already exists for this product',\n submissionNotFound: 'Submission not found',\n submissionNotFoundWithId: \"Submission with ID '{{id}}' not found\",\n submissionAlreadyPending: 'A submission is already pending for this product',\n orderNotFound: 'Order not found',\n orderNotFoundWithId: \"Order with ID '{{id}}' not found\",\n tagNotFound: 'Tag not found',\n tagNotFoundWithId: \"Tag with ID '{{id}}' not found\",\n tagAlreadyExists: \"Tag '{{name}}' already exists\",\n unauthorized: 'You are not authorized to perform this action',\n invalidInput: 'Invalid input provided',\n invalidStatus: 'Invalid status transition',\n cannotDeletePublished: 'Cannot delete a published product',\n cannotDeleteWithOrders: 'Cannot delete product with {{count}} orders',\n cannotDeleteWithEntitlements: 'Cannot delete product with active entitlements',\n productNotPublished: 'Product is not published',\n productAlreadyPublished: 'Product is already published',\n insufficientFunds: 'Insufficient funds to purchase this product',\n alreadyPurchased: 'You have already purchased this product',\n downloadFailed: 'Failed to download product',\n },\n success: {\n productCreated: \"Product '{{name}}' created successfully\",\n productUpdated: \"Product '{{name}}' updated successfully\",\n productDeleted: 'Product deleted successfully',\n productPublished: \"Product '{{name}}' published successfully\",\n productUnlisted: \"Product '{{name}}' unlisted successfully\",\n productDeprecated: \"Product '{{name}}' marked as deprecated\",\n versionCreated: \"Version '{{version}}' created successfully\",\n versionDeleted: 'Version deleted successfully',\n reviewCreated: 'Review submitted successfully',\n reviewUpdated: 'Review updated successfully',\n reviewDeleted: 'Review deleted successfully',\n reviewApproved: 'Review approved successfully',\n reviewRejected: 'Review rejected successfully',\n entitlementCreated: 'Entitlement created successfully',\n entitlementSuspended: 'Entitlement suspended',\n entitlementReactivated: 'Entitlement reactivated',\n entitlementDeleted: 'Entitlement deleted successfully',\n categoryCreated: \"Category '{{name}}' created successfully\",\n categoryUpdated: \"Category '{{name}}' updated successfully\",\n categoryDeleted: 'Category deleted successfully',\n submissionCreated: 'Submission created successfully',\n submissionApproved: 'Submission approved successfully',\n submissionRejected: 'Submission rejected',\n purchaseCompleted: 'Purchase completed successfully',\n downloadStarted: 'Download started',\n },\n validation: {\n nameRequired: 'Product name is required',\n nameTooShort: 'Product name must be at least {{min}} characters',\n nameTooLong: 'Product name cannot exceed {{max}} characters',\n slugRequired: 'Product slug is required',\n slugInvalid: 'Product slug contains invalid characters',\n descriptionTooLong: 'Description cannot exceed {{max}} characters',\n priceRequired: 'Price is required',\n priceInvalid: 'Price must be a positive number',\n currencyRequired: 'Currency is required',\n currencyInvalid: 'Invalid currency code',\n typeRequired: 'Product type is required',\n typeInvalid: 'Invalid product type',\n ratingRequired: 'Rating is required',\n ratingInvalid: 'Rating must be between 1 and 5',\n versionRequired: 'Version is required',\n versionInvalid: 'Invalid version format',\n },\n labels: {\n product: 'Product',\n products: 'Products',\n storeItem: 'Store Item',\n storeItems: 'Store Items',\n publisher: 'Publisher',\n publishers: 'Publishers',\n category: 'Category',\n categories: 'Categories',\n version: 'Version',\n versions: 'Versions',\n review: 'Review',\n reviews: 'Reviews',\n entitlement: 'Entitlement',\n entitlements: 'Entitlements',\n submission: 'Submission',\n submissions: 'Submissions',\n order: 'Order',\n orders: 'Orders',\n tag: 'Tag',\n tags: 'Tags',\n download: 'Download',\n downloads: 'Downloads',\n },\n status: {\n draft: 'Draft',\n pendingReview: 'Pending Review',\n published: 'Published',\n unlisted: 'Unlisted',\n deprecated: 'Deprecated',\n rejected: 'Rejected',\n archived: 'Archived',\n active: 'Active',\n suspended: 'Suspended',\n expired: 'Expired',\n pending: 'Pending',\n approved: 'Approved',\n processed: 'Processed',\n failed: 'Failed',\n refunded: 'Refunded',\n },\n productTypes: {\n app: 'Application',\n template: 'Template',\n integration: 'Integration',\n extension: 'Extension',\n theme: 'Theme',\n workflow: 'Workflow',\n node: 'Node',\n plugin: 'Plugin',\n component: 'Component',\n },\n pricingModels: {\n free: 'Free',\n paidOnetime: 'One-time Purchase',\n subscription: 'Subscription',\n },\n items: {\n zero: 'No items',\n one: '{{count}} item',\n other: '{{count}} items',\n },\n operations: {\n creating: 'Creating product...',\n updating: 'Updating product...',\n deleting: 'Deleting product...',\n publishing: 'Publishing product...',\n purchasing: 'Processing purchase...',\n downloading: 'Starting download...',\n loading: 'Loading store items...',\n },\n footer: {\n ready: 'Store Ready',\n },\n },\n\n // Publisher module\n publisher: {\n errors: {\n notFound: 'Publisher not found',\n notFoundWithId: \"Publisher with ID '{{id}}' not found\",\n alreadyExists: 'Publisher already exists for this user',\n notVerified: 'Publisher is not verified',\n unauthorized: 'You are not authorized to access this publisher',\n },\n success: {\n created: 'Publisher profile created successfully',\n updated: 'Publisher profile updated successfully',\n verified: 'Publisher verified successfully',\n },\n validation: {\n nameRequired: 'Publisher name is required',\n emailRequired: 'Publisher email is required',\n emailInvalid: 'Invalid email format',\n },\n },\n\n // Review module\n review: {\n errors: {\n notFound: 'Review not found',\n alreadyReviewed: 'You have already reviewed this product',\n cannotReviewOwn: 'You cannot review your own product',\n mustPurchase: 'You must purchase the product to review it',\n },\n validation: {\n ratingRequired: 'Rating is required',\n ratingRange: 'Rating must be between 1 and 5',\n },\n },\n\n // Order module\n order: {\n errors: {\n notFound: 'Order not found',\n alreadyProcessed: 'Order has already been processed',\n paymentFailed: 'Payment processing failed',\n refundFailed: 'Refund processing failed',\n },\n success: {\n created: 'Order created successfully',\n processed: 'Order processed successfully',\n refunded: 'Order refunded successfully',\n },\n },\n\n // Cart module\n cart: {\n title: 'Shopping Cart',\n empty: 'Your cart is empty',\n checkout: 'Checkout',\n continueShopping: 'Continue Shopping',\n removeItem: 'Remove item',\n clearCart: 'Clear cart',\n subtotal: 'Subtotal',\n total: 'Total',\n itemAdded: 'Item added to cart',\n itemRemoved: 'Item removed from cart',\n cartCleared: 'Cart cleared',\n mergeSuccess: 'Guest cart merged successfully',\n },\n\n // Navigation\n nav: {\n marketplace: 'Marketplace',\n cart: 'Cart',\n orders: 'My Orders',\n installed: 'Installed Apps',\n licenses: 'Licenses',\n publisher: 'Publisher Portal',\n publisherDashboard: 'Dashboard',\n submitProduct: 'Submit Product',\n submissions: 'Submissions',\n revenue: 'Revenue',\n admin: 'Store Admin',\n reviewModeration: 'Review Moderation',\n },\n\n // Common / shared\n common: {\n accessDenied: 'Access Denied',\n accessDeniedDescription: 'You do not have permission to access this section.',\n moduleLoadError: 'Something went wrong loading this module. Please refresh the page.',\n loading: 'Loading...',\n error: 'Something went wrong',\n retry: 'Retry',\n save: 'Save',\n cancel: 'Cancel',\n delete: 'Delete',\n edit: 'Edit',\n create: 'Create',\n search: 'Search',\n filter: 'Filter',\n sort: 'Sort',\n noResults: 'No results found',\n viewAll: 'View All',\n back: 'Back',\n next: 'Next',\n previous: 'Previous',\n tryAgain: 'Try Again',\n unknownPublisher: 'Unknown Publisher',\n unknown: 'Unknown',\n goBack: 'Go back',\n refresh: 'Refresh',\n close: 'Close',\n submit: 'Submit',\n confirm: 'Confirm',\n browse: 'Browse',\n },\n\n // Page-level UI strings\n pages: {\n marketplace: {\n title: 'Marketplace',\n subtitle: 'Discover and install apps for your workspace',\n searchPlaceholder: 'Search apps, integrations, templates...',\n filterByCategory: 'Filter by category',\n allCategories: 'All Categories',\n featuredApps: 'Featured Apps',\n popularApps: 'Popular Apps',\n recentlyUpdated: 'Recently Updated',\n freeApps: 'Free Apps',\n noResults: 'No products found',\n noResultsDescription: 'Try adjusting your search or filter to find what you are looking for.',\n clearSearch: 'Clear search',\n installNow: 'Install Now',\n viewDetails: 'View Details',\n free: 'Free',\n installed: 'Installed',\n },\n productDetail: {\n overview: 'Overview',\n reviews: 'Reviews',\n versions: 'Versions',\n installApp: 'Install App',\n installing: 'Installing...',\n installed: 'Installed',\n addToCart: 'Add to Cart',\n alreadyInCart: 'Already in Cart',\n buyNow: 'Buy Now',\n viewInstallation: 'View Installation',\n publisher: 'Publisher',\n category: 'Category',\n version: 'Version',\n updated: 'Updated',\n rating: 'Rating',\n reviews_count: '{{count}} reviews',\n noReviews: 'No reviews yet',\n beFirstToReview: 'Be the first to review this product.',\n writeReview: 'Write a Review',\n submitReview: 'Submit Review',\n yourRating: 'Your Rating',\n yourReview: 'Your Review (optional)',\n reviewPlaceholder: 'Share your experience with this product...',\n notFound: 'Product Not Found',\n notFoundDescription: 'The product you are looking for could not be found.',\n backToMarketplace: 'Back to Marketplace',\n },\n cart: {\n title: 'Shopping Cart',\n items: '{{count}} items',\n item: '{{count}} item',\n emptyTitle: 'Your cart is empty',\n emptyDescription:\n 'Looks like you have not added any apps or products to your cart yet. Start exploring the marketplace to find something you will love!',\n browseMarketplace: 'Browse Marketplace',\n cartItems: 'Cart Items ({{count}})',\n clearCart: 'Clear Cart',\n singleLicense: 'Single license',\n qty: 'Qty:',\n digital: 'Digital',\n physical: 'Physical',\n subscription: 'Subscription',\n orderSummary: 'Order Summary',\n subtotal: 'Subtotal',\n estimatedTaxes: 'Estimated taxes',\n calculatedAtCheckout: 'Calculated at checkout',\n totalPlusTaxes: 'Total (+ taxes)',\n proceedToCheckout: 'Proceed to Checkout',\n processing: 'Processing...',\n secureCheckout: 'Secure checkout powered by Stripe',\n weAccept: 'We accept:',\n continueShopping: 'Continue Shopping',\n failedToCreate: 'Failed to create order. Please try again.',\n checkoutError: 'An error occurred during checkout',\n },\n orders: {\n title: 'My Orders',\n subtitle: 'Track and manage your purchases',\n emptyTitle: 'No orders yet',\n emptyDescription: 'Your orders will appear here once you make a purchase.',\n shopNow: 'Shop Now',\n orderNumber: 'Order #{{number}}',\n orderDate: 'Ordered on {{date}}',\n items_count: '{{count}} item(s)',\n viewDetails: 'View Details',\n installApp: 'Install App',\n installed: 'Installed',\n failedToLoad: 'Failed to load orders',\n filterAll: 'All',\n reorder: 'Reorder',\n },\n orderConfirmation: {\n title: 'Order Confirmed!',\n subtitle: \"Thank you for your purchase. We'll send a confirmation to your email.\",\n orderNumber: 'Order Number',\n orderDate: 'Order Date',\n paymentStatus: 'Payment Status',\n orderStatus: 'Order Status',\n orderItems: 'Order Items',\n orderSummary: 'Order Summary',\n subtotal: 'Subtotal',\n tax: 'Tax',\n total: 'Total',\n whatHappensNext: \"What's Next?\",\n nextStep1: \"You'll receive a confirmation email with your order details.\",\n nextStep2: 'Your digital products will be available for installation immediately.',\n nextStep3: 'Physical products will be shipped within 3-5 business days.',\n viewOrders: 'View All Orders',\n continueShopping: 'Continue Shopping',\n installNow: 'Install Now',\n },\n installed: {\n title: 'Installed Apps',\n subtitle: 'Manage your installed applications',\n emptyTitle: 'No installed apps',\n emptyDescription: 'Install apps from the marketplace to manage them here.',\n browseMarketplace: 'Browse Marketplace',\n failedToLoad: 'Failed to load installations',\n filterAll: 'All',\n viewDetails: 'View Details',\n uninstall: 'Uninstall',\n settings: 'Settings',\n statusAll: 'All',\n installNew: 'Install New App',\n },\n appDetail: {\n title: 'App Details',\n version: 'Version',\n status: 'Status',\n installedAt: 'Installed At',\n uninstall: 'Uninstall',\n uninstalling: 'Uninstalling...',\n settings: 'Settings',\n openSettings: 'Open Settings',\n failedToLoad: 'Failed to load app details',\n notFound: 'App Not Found',\n notFoundDescription: 'The installation you are looking for could not be found.',\n },\n appSettings: {\n title: 'App Settings',\n saveSettings: 'Save Settings',\n saving: 'Saving...',\n settingsSaved: 'Settings saved successfully',\n failedToSave: 'Failed to save settings',\n noSettings: 'No configurable settings',\n noSettingsDescription: 'This app does not have any configurable settings.',\n },\n licenses: {\n title: 'My Licenses',\n subtitle: 'Review and manage your product entitlements',\n emptyTitle: 'No licenses yet',\n emptyDescription: 'Purchase apps from the marketplace to see your licenses here.',\n browseMarketplace: 'Browse Marketplace',\n failedToLoad: 'Failed to load licenses',\n productId: 'Product {{id}}',\n entitlementId: 'Entitlement ID: {{id}}',\n licenseKey: 'License key: {{key}}',\n expiresOn: 'Expires on {{date}}',\n },\n publisherDashboard: {\n title: 'Publisher Dashboard',\n subtitle: 'Manage your products and track performance',\n totalProducts: 'Total Products',\n totalRevenue: 'Total Revenue',\n totalInstalls: 'Total Installs',\n pendingReviews: 'Pending Reviews',\n recentSubmissions: 'Recent Submissions',\n quickActions: 'Quick Actions',\n submitNewProduct: 'Submit New Product',\n viewSubmissions: 'View Submissions',\n viewRevenue: 'View Revenue',\n noProducts: 'No products yet',\n notRegistered: 'Not a publisher yet',\n registerNow: 'Register as Publisher',\n failedToLoad: 'Failed to load dashboard',\n },\n publisherSubmit: {\n title: 'Submit Product',\n productIdLabel: 'Product ID',\n productIdPlaceholder: 'Enter product ID to submit for review',\n notesLabel: 'Notes (optional)',\n notesPlaceholder: 'Add any notes for the reviewer...',\n submitButton: 'Submit for Review',\n submitting: 'Submitting...',\n successTitle: 'Submission Successful',\n successDescription: 'Your product has been submitted for review.',\n viewSubmissions: 'View Submissions',\n submitAnother: 'Submit Another',\n },\n publisherSubmissions: {\n title: 'My Submissions',\n subtitle: 'Track the status of your product submissions',\n emptyTitle: 'No submissions yet',\n emptyDescription: 'Submit a product for review to see it here.',\n submitProduct: 'Submit a Product',\n failedToLoad: 'Failed to load submissions',\n submittedOn: 'Submitted on {{date}}',\n reviewedOn: 'Reviewed on {{date}}',\n reviewNotes: 'Review notes: {{notes}}',\n },\n publisherRevenue: {\n title: 'Revenue',\n subtitle: 'Track your earnings and payouts',\n totalEarnings: 'Total Earnings',\n pendingPayout: 'Pending Payout',\n lastPayout: 'Last Payout',\n revenueHistory: 'Revenue History',\n noRevenue: 'No revenue data yet',\n noRevenueDescription:\n 'Revenue data will appear here once your products start generating sales.',\n period: 'Period',\n amount: 'Amount',\n status: 'Status',\n },\n productReviews: {\n title: 'Product Reviews',\n subtitle: 'Manage reviews for your products',\n failedToLoad: 'Failed to load reviews',\n noReviews: 'No reviews yet',\n noReviewsDescription:\n 'Reviews will appear here once customers start reviewing your products.',\n rating: 'Rating',\n reviewer: 'Reviewer',\n date: 'Date',\n approve: 'Approve',\n reject: 'Reject',\n },\n search: {\n title: 'Search Results',\n resultsFor: 'Results for \"{{query}}\"',\n noResults: 'No results found',\n noResultsDescription: 'Try different keywords or browse the marketplace.',\n browseMarketplace: 'Browse Marketplace',\n resultCount: '{{count}} results',\n },\n stores: {\n title: 'Stores',\n subtitle: 'Browse available stores',\n emptyTitle: 'No stores found',\n emptyDescription: 'No stores are currently available.',\n failedToLoad: 'Failed to load stores',\n },\n category: {\n title: '{{name}}',\n noProducts: 'No products in this category',\n noProductsDescription: 'Check back later for new products in this category.',\n browseAll: 'Browse All Products',\n },\n },\n};\n"],"mappings":";AAQA,IAAa,IAAiB;CAE5B,OAAO;EACL,QAAQ;GACN,UAAU;GACV,gBAAgB;GAChB,iBAAiB;GACjB,uBAAuB;GACvB,mBAAmB;GACnB,mBAAmB;GACnB,yBAAyB;GACzB,kBAAkB;GAClB,wBAAwB;GACxB,uBAAuB;GACvB,iBAAiB;GACjB,uBAAuB;GACvB,sBAAsB;GACtB,gBAAgB;GAChB,sBAAsB;GACtB,qBAAqB;GACrB,qBAAqB;GACrB,2BAA2B;GAC3B,0BAA0B;GAC1B,oBAAoB;GACpB,0BAA0B;GAC1B,0BAA0B;GAC1B,eAAe;GACf,qBAAqB;GACrB,aAAa;GACb,mBAAmB;GACnB,kBAAkB;GAClB,cAAc;GACd,cAAc;GACd,eAAe;GACf,uBAAuB;GACvB,wBAAwB;GACxB,8BAA8B;GAC9B,qBAAqB;GACrB,yBAAyB;GACzB,mBAAmB;GACnB,kBAAkB;GAClB,gBAAgB;GACjB;EACD,SAAS;GACP,gBAAgB;GAChB,gBAAgB;GAChB,gBAAgB;GAChB,kBAAkB;GAClB,iBAAiB;GACjB,mBAAmB;GACnB,gBAAgB;GAChB,gBAAgB;GAChB,eAAe;GACf,eAAe;GACf,eAAe;GACf,gBAAgB;GAChB,gBAAgB;GAChB,oBAAoB;GACpB,sBAAsB;GACtB,wBAAwB;GACxB,oBAAoB;GACpB,iBAAiB;GACjB,iBAAiB;GACjB,iBAAiB;GACjB,mBAAmB;GACnB,oBAAoB;GACpB,oBAAoB;GACpB,mBAAmB;GACnB,iBAAiB;GAClB;EACD,YAAY;GACV,cAAc;GACd,cAAc;GACd,aAAa;GACb,cAAc;GACd,aAAa;GACb,oBAAoB;GACpB,eAAe;GACf,cAAc;GACd,kBAAkB;GAClB,iBAAiB;GACjB,cAAc;GACd,aAAa;GACb,gBAAgB;GAChB,eAAe;GACf,iBAAiB;GACjB,gBAAgB;GACjB;EACD,QAAQ;GACN,SAAS;GACT,UAAU;GACV,WAAW;GACX,YAAY;GACZ,WAAW;GACX,YAAY;GACZ,UAAU;GACV,YAAY;GACZ,SAAS;GACT,UAAU;GACV,QAAQ;GACR,SAAS;GACT,aAAa;GACb,cAAc;GACd,YAAY;GACZ,aAAa;GACb,OAAO;GACP,QAAQ;GACR,KAAK;GACL,MAAM;GACN,UAAU;GACV,WAAW;GACZ;EACD,QAAQ;GACN,OAAO;GACP,eAAe;GACf,WAAW;GACX,UAAU;GACV,YAAY;GACZ,UAAU;GACV,UAAU;GACV,QAAQ;GACR,WAAW;GACX,SAAS;GACT,SAAS;GACT,UAAU;GACV,WAAW;GACX,QAAQ;GACR,UAAU;GACX;EACD,cAAc;GACZ,KAAK;GACL,UAAU;GACV,aAAa;GACb,WAAW;GACX,OAAO;GACP,UAAU;GACV,MAAM;GACN,QAAQ;GACR,WAAW;GACZ;EACD,eAAe;GACb,MAAM;GACN,aAAa;GACb,cAAc;GACf;EACD,OAAO;GACL,MAAM;GACN,KAAK;GACL,OAAO;GACR;EACD,YAAY;GACV,UAAU;GACV,UAAU;GACV,UAAU;GACV,YAAY;GACZ,YAAY;GACZ,aAAa;GACb,SAAS;GACV;EACD,QAAQ,EACN,OAAO,eACR;EACF;CAGD,WAAW;EACT,QAAQ;GACN,UAAU;GACV,gBAAgB;GAChB,eAAe;GACf,aAAa;GACb,cAAc;GACf;EACD,SAAS;GACP,SAAS;GACT,SAAS;GACT,UAAU;GACX;EACD,YAAY;GACV,cAAc;GACd,eAAe;GACf,cAAc;GACf;EACF;CAGD,QAAQ;EACN,QAAQ;GACN,UAAU;GACV,iBAAiB;GACjB,iBAAiB;GACjB,cAAc;GACf;EACD,YAAY;GACV,gBAAgB;GAChB,aAAa;GACd;EACF;CAGD,OAAO;EACL,QAAQ;GACN,UAAU;GACV,kBAAkB;GAClB,eAAe;GACf,cAAc;GACf;EACD,SAAS;GACP,SAAS;GACT,WAAW;GACX,UAAU;GACX;EACF;CAGD,MAAM;EACJ,OAAO;EACP,OAAO;EACP,UAAU;EACV,kBAAkB;EAClB,YAAY;EACZ,WAAW;EACX,UAAU;EACV,OAAO;EACP,WAAW;EACX,aAAa;EACb,aAAa;EACb,cAAc;EACf;CAGD,KAAK;EACH,aAAa;EACb,MAAM;EACN,QAAQ;EACR,WAAW;EACX,UAAU;EACV,WAAW;EACX,oBAAoB;EACpB,eAAe;EACf,aAAa;EACb,SAAS;EACT,OAAO;EACP,kBAAkB;EACnB;CAGD,QAAQ;EACN,cAAc;EACd,yBAAyB;EACzB,iBAAiB;EACjB,SAAS;EACT,OAAO;EACP,OAAO;EACP,MAAM;EACN,QAAQ;EACR,QAAQ;EACR,MAAM;EACN,QAAQ;EACR,QAAQ;EACR,QAAQ;EACR,MAAM;EACN,WAAW;EACX,SAAS;EACT,MAAM;EACN,MAAM;EACN,UAAU;EACV,UAAU;EACV,kBAAkB;EAClB,SAAS;EACT,QAAQ;EACR,SAAS;EACT,OAAO;EACP,QAAQ;EACR,SAAS;EACT,QAAQ;EACT;CAGD,OAAO;EACL,aAAa;GACX,OAAO;GACP,UAAU;GACV,mBAAmB;GACnB,kBAAkB;GAClB,eAAe;GACf,cAAc;GACd,aAAa;GACb,iBAAiB;GACjB,UAAU;GACV,WAAW;GACX,sBAAsB;GACtB,aAAa;GACb,YAAY;GACZ,aAAa;GACb,MAAM;GACN,WAAW;GACZ;EACD,eAAe;GACb,UAAU;GACV,SAAS;GACT,UAAU;GACV,YAAY;GACZ,YAAY;GACZ,WAAW;GACX,WAAW;GACX,eAAe;GACf,QAAQ;GACR,kBAAkB;GAClB,WAAW;GACX,UAAU;GACV,SAAS;GACT,SAAS;GACT,QAAQ;GACR,eAAe;GACf,WAAW;GACX,iBAAiB;GACjB,aAAa;GACb,cAAc;GACd,YAAY;GACZ,YAAY;GACZ,mBAAmB;GACnB,UAAU;GACV,qBAAqB;GACrB,mBAAmB;GACpB;EACD,MAAM;GACJ,OAAO;GACP,OAAO;GACP,MAAM;GACN,YAAY;GACZ,kBACE;GACF,mBAAmB;GACnB,WAAW;GACX,WAAW;GACX,eAAe;GACf,KAAK;GACL,SAAS;GACT,UAAU;GACV,cAAc;GACd,cAAc;GACd,UAAU;GACV,gBAAgB;GAChB,sBAAsB;GACtB,gBAAgB;GAChB,mBAAmB;GACnB,YAAY;GACZ,gBAAgB;GAChB,UAAU;GACV,kBAAkB;GAClB,gBAAgB;GAChB,eAAe;GAChB;EACD,QAAQ;GACN,OAAO;GACP,UAAU;GACV,YAAY;GACZ,kBAAkB;GAClB,SAAS;GACT,aAAa;GACb,WAAW;GACX,aAAa;GACb,aAAa;GACb,YAAY;GACZ,WAAW;GACX,cAAc;GACd,WAAW;GACX,SAAS;GACV;EACD,mBAAmB;GACjB,OAAO;GACP,UAAU;GACV,aAAa;GACb,WAAW;GACX,eAAe;GACf,aAAa;GACb,YAAY;GACZ,cAAc;GACd,UAAU;GACV,KAAK;GACL,OAAO;GACP,iBAAiB;GACjB,WAAW;GACX,WAAW;GACX,WAAW;GACX,YAAY;GACZ,kBAAkB;GAClB,YAAY;GACb;EACD,WAAW;GACT,OAAO;GACP,UAAU;GACV,YAAY;GACZ,kBAAkB;GAClB,mBAAmB;GACnB,cAAc;GACd,WAAW;GACX,aAAa;GACb,WAAW;GACX,UAAU;GACV,WAAW;GACX,YAAY;GACb;EACD,WAAW;GACT,OAAO;GACP,SAAS;GACT,QAAQ;GACR,aAAa;GACb,WAAW;GACX,cAAc;GACd,UAAU;GACV,cAAc;GACd,cAAc;GACd,UAAU;GACV,qBAAqB;GACtB;EACD,aAAa;GACX,OAAO;GACP,cAAc;GACd,QAAQ;GACR,eAAe;GACf,cAAc;GACd,YAAY;GACZ,uBAAuB;GACxB;EACD,UAAU;GACR,OAAO;GACP,UAAU;GACV,YAAY;GACZ,kBAAkB;GAClB,mBAAmB;GACnB,cAAc;GACd,WAAW;GACX,eAAe;GACf,YAAY;GACZ,WAAW;GACZ;EACD,oBAAoB;GAClB,OAAO;GACP,UAAU;GACV,eAAe;GACf,cAAc;GACd,eAAe;GACf,gBAAgB;GAChB,mBAAmB;GACnB,cAAc;GACd,kBAAkB;GAClB,iBAAiB;GACjB,aAAa;GACb,YAAY;GACZ,eAAe;GACf,aAAa;GACb,cAAc;GACf;EACD,iBAAiB;GACf,OAAO;GACP,gBAAgB;GAChB,sBAAsB;GACtB,YAAY;GACZ,kBAAkB;GAClB,cAAc;GACd,YAAY;GACZ,cAAc;GACd,oBAAoB;GACpB,iBAAiB;GACjB,eAAe;GAChB;EACD,sBAAsB;GACpB,OAAO;GACP,UAAU;GACV,YAAY;GACZ,kBAAkB;GAClB,eAAe;GACf,cAAc;GACd,aAAa;GACb,YAAY;GACZ,aAAa;GACd;EACD,kBAAkB;GAChB,OAAO;GACP,UAAU;GACV,eAAe;GACf,eAAe;GACf,YAAY;GACZ,gBAAgB;GAChB,WAAW;GACX,sBACE;GACF,QAAQ;GACR,QAAQ;GACR,QAAQ;GACT;EACD,gBAAgB;GACd,OAAO;GACP,UAAU;GACV,cAAc;GACd,WAAW;GACX,sBACE;GACF,QAAQ;GACR,UAAU;GACV,MAAM;GACN,SAAS;GACT,QAAQ;GACT;EACD,QAAQ;GACN,OAAO;GACP,YAAY;GACZ,WAAW;GACX,sBAAsB;GACtB,mBAAmB;GACnB,aAAa;GACd;EACD,QAAQ;GACN,OAAO;GACP,UAAU;GACV,YAAY;GACZ,kBAAkB;GAClB,cAAc;GACf;EACD,UAAU;GACR,OAAO;GACP,YAAY;GACZ,uBAAuB;GACvB,WAAW;GACZ;EACF;CACF"}
|