@burdenoff/microfe-store 2026.830.1 → 2026.830.2
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/dist/components/InstallAppModal.js +145 -150
- package/dist/components/InstallAppModal.js.map +1 -1
- package/dist/components/MarkdownEditor.js +71 -70
- package/dist/components/MarkdownEditor.js.map +1 -1
- package/dist/components/cart/CartDrawer.js +179 -175
- package/dist/components/cart/CartDrawer.js.map +1 -1
- package/dist/pages/AppDetailPage.js +110 -119
- package/dist/pages/AppDetailPage.js.map +1 -1
- package/dist/pages/AppSettingsPage.js +60 -59
- package/dist/pages/AppSettingsPage.js.map +1 -1
- package/dist/pages/CartPage.js +122 -121
- package/dist/pages/CartPage.js.map +1 -1
- package/dist/pages/InstalledAppsPage.js +188 -197
- package/dist/pages/InstalledAppsPage.js.map +1 -1
- package/dist/pages/MarketplaceHomePage.js +559 -556
- package/dist/pages/MarketplaceHomePage.js.map +1 -1
- package/dist/pages/MyLicensesPage.js +68 -67
- package/dist/pages/MyLicensesPage.js.map +1 -1
- package/dist/pages/OrderConfirmationPage.js +117 -129
- package/dist/pages/OrderConfirmationPage.js.map +1 -1
- package/dist/pages/OrdersPage.js +87 -90
- package/dist/pages/OrdersPage.js.map +1 -1
- package/dist/pages/ProductDetailPage.js +600 -606
- package/dist/pages/ProductDetailPage.js.map +1 -1
- package/dist/shared/hooks/useTr.d.ts +16 -0
- package/dist/shared/hooks/useTr.js +14 -0
- package/dist/shared/hooks/useTr.js.map +1 -0
- package/dist/translations/en.d.ts +327 -10
- package/dist/translations/en.js +343 -26
- package/dist/translations/en.js.map +1 -1
- package/package.json +1 -1
package/dist/translations/en.js
CHANGED
|
@@ -206,17 +206,46 @@ var e = {
|
|
|
206
206
|
cart: {
|
|
207
207
|
title: "Shopping Cart",
|
|
208
208
|
empty: "Your cart is empty",
|
|
209
|
-
|
|
209
|
+
emptyHint: "Start shopping to add items to your cart",
|
|
210
|
+
checkout: "Proceed to Checkout",
|
|
210
211
|
continueShopping: "Continue Shopping",
|
|
211
|
-
removeItem: "Remove
|
|
212
|
+
removeItem: "Remove {{name}} from cart",
|
|
213
|
+
removeItemTitle: "Remove item",
|
|
212
214
|
clearCart: "Clear cart",
|
|
213
215
|
subtotal: "Subtotal",
|
|
214
216
|
total: "Total",
|
|
217
|
+
tax: "Tax",
|
|
218
|
+
each: "{{price}} each",
|
|
219
|
+
closeCart: "Close cart",
|
|
220
|
+
quantity: "Quantity: {{quantity}}",
|
|
221
|
+
decreaseQuantity: "Decrease quantity of {{name}}",
|
|
222
|
+
increaseQuantity: "Increase quantity of {{name}}",
|
|
215
223
|
itemAdded: "Item added to cart",
|
|
216
224
|
itemRemoved: "Item removed from cart",
|
|
217
225
|
cartCleared: "Cart cleared",
|
|
218
226
|
mergeSuccess: "Guest cart merged successfully"
|
|
219
227
|
},
|
|
228
|
+
installApp: {
|
|
229
|
+
title: "Install App",
|
|
230
|
+
reviewPermissions: "Review Permissions",
|
|
231
|
+
selectWorkspace: "Select the workspace where you want to install this app:",
|
|
232
|
+
failedToLoadWorkspaces: "Failed to load workspaces",
|
|
233
|
+
noWorkspaces: "No workspaces available",
|
|
234
|
+
version: "Version",
|
|
235
|
+
latest: "Latest",
|
|
236
|
+
latestWithVersion: "Latest ({{version}})",
|
|
237
|
+
versionWithStatus: "{{version}} ({{status}})",
|
|
238
|
+
installingInto: "Installing into",
|
|
239
|
+
permissionsRequested: "Permissions requested",
|
|
240
|
+
consentDescription: "By clicking {{button}}, you grant {{appName}} access to the following in the selected workspace:",
|
|
241
|
+
acceptAndInstall: "Accept & Install",
|
|
242
|
+
permissionReadWrite: "Read and write data within this workspace on your behalf",
|
|
243
|
+
permissionWebhooks: "Receive webhook events for workspace activity",
|
|
244
|
+
permissionAuthorized: "Act as an authorized integration within this workspace",
|
|
245
|
+
revokeHint: "You can revoke access at any time from your Installed Apps settings.",
|
|
246
|
+
installing: "Installing…",
|
|
247
|
+
installApp: "Install App"
|
|
248
|
+
},
|
|
220
249
|
nav: {
|
|
221
250
|
marketplace: "Marketplace",
|
|
222
251
|
cart: "Cart",
|
|
@@ -238,7 +267,6 @@ var e = {
|
|
|
238
267
|
accessDenied: "Access Denied",
|
|
239
268
|
accessDeniedDescription: "You do not have permission to access this section.",
|
|
240
269
|
moduleLoadError: "Something went wrong loading this module. Please refresh the page.",
|
|
241
|
-
loading: "Loading...",
|
|
242
270
|
error: "Something went wrong",
|
|
243
271
|
retry: "Retry",
|
|
244
272
|
save: "Save",
|
|
@@ -262,37 +290,139 @@ var e = {
|
|
|
262
290
|
close: "Close",
|
|
263
291
|
submit: "Submit",
|
|
264
292
|
confirm: "Confirm",
|
|
265
|
-
browse: "Browse"
|
|
293
|
+
browse: "Browse",
|
|
294
|
+
continue: "Continue",
|
|
295
|
+
loading: "Loading…",
|
|
296
|
+
loadMore: "Load more",
|
|
297
|
+
product: "Product",
|
|
298
|
+
item: "item",
|
|
299
|
+
unknownProduct: "Unknown product",
|
|
300
|
+
notProvided: "Not provided",
|
|
301
|
+
notApplicable: "N/A",
|
|
302
|
+
markdownEditor: {
|
|
303
|
+
write: "Write",
|
|
304
|
+
preview: "Preview",
|
|
305
|
+
formatting: "Markdown formatting",
|
|
306
|
+
bold: "Bold",
|
|
307
|
+
italic: "Italic",
|
|
308
|
+
link: "Link",
|
|
309
|
+
inlineCode: "Inline code",
|
|
310
|
+
bulletList: "Bullet list",
|
|
311
|
+
nothingToPreview: "Nothing to preview."
|
|
312
|
+
}
|
|
266
313
|
},
|
|
267
314
|
pages: {
|
|
268
315
|
marketplace: {
|
|
316
|
+
appTitle: "App",
|
|
269
317
|
title: "Marketplace",
|
|
270
|
-
subtitle: "Discover and
|
|
271
|
-
|
|
272
|
-
|
|
318
|
+
subtitle: "Discover apps, workflows, and integrations for your workspace",
|
|
319
|
+
cart: "Cart",
|
|
320
|
+
search: {
|
|
321
|
+
label: "Search marketplace products",
|
|
322
|
+
placeholder: "Search apps, workflows, integrations...",
|
|
323
|
+
clear: "Clear search",
|
|
324
|
+
searching: "Searching...",
|
|
325
|
+
resultCount: "{{count}} result{{plural}} for \"{{query}}\""
|
|
326
|
+
},
|
|
327
|
+
filters: "Filters",
|
|
328
|
+
sortLabel: "Sort",
|
|
329
|
+
quickFilterFree: "Free",
|
|
330
|
+
quickFilterRating: "4+ Stars",
|
|
331
|
+
quickFilterFeatured: "Featured",
|
|
332
|
+
clearAll: "Clear all",
|
|
333
|
+
filterPricing: "Pricing",
|
|
334
|
+
filterPrice: "Price",
|
|
335
|
+
filterMinRating: "Min Rating",
|
|
336
|
+
filterRating: "Rating",
|
|
337
|
+
filterCategory: "Category",
|
|
338
|
+
filterNature: "Nature",
|
|
339
|
+
filterLicense: "License",
|
|
340
|
+
activeFilters: "Active filters:",
|
|
341
|
+
activeFilterType: "Type:",
|
|
342
|
+
activeFilterPrice: "Price:",
|
|
343
|
+
activeFilterRating: "Rating:",
|
|
344
|
+
activeFilterCategory: "Category:",
|
|
345
|
+
activeFilterNature: "Nature:",
|
|
346
|
+
activeFilterLicense: "License:",
|
|
347
|
+
activeFilterFeatured: "Featured Only",
|
|
348
|
+
pricingAll: "All Prices",
|
|
349
|
+
pricingFree: "Free",
|
|
350
|
+
pricingPaid: "Paid (One-time)",
|
|
351
|
+
pricingSubscription: "Subscription",
|
|
352
|
+
ratingAny: "Any Rating",
|
|
353
|
+
rating3: "3+ Stars",
|
|
354
|
+
rating3_5: "3.5+ Stars",
|
|
355
|
+
rating4: "4+ Stars",
|
|
356
|
+
rating4_5: "4.5+ Stars",
|
|
357
|
+
natureAll: "All Types",
|
|
358
|
+
natureDigital: "Digital",
|
|
359
|
+
naturePhysical: "Physical",
|
|
360
|
+
sortRelevance: "Relevance",
|
|
361
|
+
sortRating: "Highest Rated",
|
|
362
|
+
sortDownloads: "Most Downloads",
|
|
363
|
+
sortNewest: "Newest First",
|
|
364
|
+
sortPriceLow: "Price: Low to High",
|
|
365
|
+
sortPriceHigh: "Price: High to Low",
|
|
366
|
+
sortNameAsc: "Name A-Z",
|
|
367
|
+
typeAll: "All Apps",
|
|
273
368
|
allCategories: "All Categories",
|
|
369
|
+
allLicenses: "All Licenses",
|
|
370
|
+
featured: "Featured",
|
|
371
|
+
featuredApp: "Featured App",
|
|
372
|
+
viewAll: "View all",
|
|
373
|
+
viewDetails: "View Details",
|
|
374
|
+
viewProduct: "View {{name}}",
|
|
375
|
+
free: "Free",
|
|
376
|
+
installed: "Installed",
|
|
377
|
+
downloads: "{{count}} downloads",
|
|
378
|
+
downloadsCount: "{{count}} downloads",
|
|
379
|
+
pagePurpose: "The marketplace is where you discover and install apps, agents, workflows, nodes and widgets that extend your workspaces. Browse featured and trending picks, filter by type or category, search for something specific, then open any product to view pricing and reviews before adding it to your cart.",
|
|
380
|
+
errorTitle: "Failed to load marketplace",
|
|
381
|
+
errorDescription: "An error occurred while fetching products",
|
|
382
|
+
browseByType: "Browse by Type",
|
|
383
|
+
searchResults: "Search Results",
|
|
384
|
+
filteredResults: "Filtered Results",
|
|
385
|
+
appsFound: "{{count}} app{{plural}} found",
|
|
386
|
+
noFilterMatch: "No apps match your filters",
|
|
387
|
+
noFilterMatchDescription: "Try adjusting your filter criteria or clearing filters to see more results.",
|
|
388
|
+
clearAllFilters: "Clear All Filters",
|
|
389
|
+
mostDownloaded: "Most Downloaded",
|
|
390
|
+
mostDownloadedSubtitle: "Top picks by our community",
|
|
391
|
+
newReleases: "New Releases",
|
|
392
|
+
newReleasesSubtitle: "Recently published apps",
|
|
393
|
+
freeApps: "Free Apps",
|
|
394
|
+
freeAppsSubtitle: "No cost, full functionality",
|
|
395
|
+
allApps: "All Apps",
|
|
396
|
+
allAppsSubtitle: "{{count}} apps available",
|
|
397
|
+
deprecatedApps: "Deprecated Apps You've Installed",
|
|
398
|
+
deprecatedAppsSubtitle: "These apps are no longer supported — hover the badge for details",
|
|
399
|
+
deprecated: "No Longer Supported",
|
|
400
|
+
deprecatedHint: "This node is no longer supported. We encourage you to migrate to newer alternatives.",
|
|
401
|
+
noAppsTitle: "No apps available yet",
|
|
402
|
+
noAppsDescription: "The marketplace is empty. Check back soon for new apps, workflows, and integrations.",
|
|
403
|
+
filterByCategory: "Filter by category",
|
|
274
404
|
featuredApps: "Featured Apps",
|
|
275
405
|
popularApps: "Popular Apps",
|
|
276
406
|
recentlyUpdated: "Recently Updated",
|
|
277
|
-
freeApps: "Free Apps",
|
|
278
407
|
noResults: "No products found",
|
|
279
408
|
noResultsDescription: "Try adjusting your search or filter to find what you are looking for.",
|
|
280
409
|
clearSearch: "Clear search",
|
|
281
|
-
installNow: "Install Now"
|
|
282
|
-
viewDetails: "View Details",
|
|
283
|
-
free: "Free",
|
|
284
|
-
installed: "Installed"
|
|
410
|
+
installNow: "Install Now"
|
|
285
411
|
},
|
|
286
412
|
productDetail: {
|
|
287
413
|
overview: "Overview",
|
|
288
414
|
reviews: "Reviews",
|
|
289
415
|
versions: "Versions",
|
|
290
416
|
installApp: "Install App",
|
|
417
|
+
install: "Install",
|
|
291
418
|
installing: "Installing...",
|
|
292
419
|
installed: "Installed",
|
|
420
|
+
installedVersion: "Installed v{{version}}",
|
|
293
421
|
addToCart: "Add to Cart",
|
|
422
|
+
inCart: "In Cart",
|
|
294
423
|
alreadyInCart: "Already in Cart",
|
|
295
|
-
buyNow: "Buy
|
|
424
|
+
buyNow: "Buy {{price}}",
|
|
425
|
+
processing: "Processing…",
|
|
296
426
|
viewInstallation: "View Installation",
|
|
297
427
|
publisher: "Publisher",
|
|
298
428
|
category: "Category",
|
|
@@ -300,16 +430,100 @@ var e = {
|
|
|
300
430
|
updated: "Updated",
|
|
301
431
|
rating: "Rating",
|
|
302
432
|
reviews_count: "{{count}} reviews",
|
|
433
|
+
downloadsCount: "{{count}}+ downloads",
|
|
434
|
+
downloadsLabel: "Downloads",
|
|
435
|
+
typeLabel: "Type",
|
|
303
436
|
noReviews: "No reviews yet",
|
|
304
437
|
beFirstToReview: "Be the first to review this product.",
|
|
438
|
+
beFirstToReviewShort: "No reviews yet. Be the first to review!",
|
|
305
439
|
writeReview: "Write a Review",
|
|
306
440
|
submitReview: "Submit Review",
|
|
441
|
+
updateReview: "Update Review",
|
|
442
|
+
deleteReview: "Delete Review",
|
|
307
443
|
yourRating: "Your Rating",
|
|
444
|
+
yourRatingLabel: "Your rating",
|
|
308
445
|
yourReview: "Your Review (optional)",
|
|
446
|
+
reviewTitleLabel: "Title",
|
|
447
|
+
reviewTitlePlaceholder: "Summarize your experience",
|
|
448
|
+
reviewBodyLabel: "Review",
|
|
449
|
+
reviewBodyPlaceholder: "What worked well? What should improve?",
|
|
309
450
|
reviewPlaceholder: "Share your experience with this product...",
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
451
|
+
savingReview: "Saving...",
|
|
452
|
+
removingReview: "Removing...",
|
|
453
|
+
installToReview: "Install this app to leave a review.",
|
|
454
|
+
ratingRequired: "Choose a rating from 1 to 5 stars.",
|
|
455
|
+
reviewSaveError: "We could not save your review. Please try again.",
|
|
456
|
+
reviewUpdated: "Your review was updated.",
|
|
457
|
+
reviewSubmitted: "Your review was submitted.",
|
|
458
|
+
deleteReviewTitle: "Delete review",
|
|
459
|
+
deleteReviewMessage: "Are you sure you want to remove your review?",
|
|
460
|
+
reviewDeleteError: "We could not remove your review. Please try again.",
|
|
461
|
+
reviewRemoved: "Your review was removed.",
|
|
462
|
+
verifiedBuyer: "Verified Buyer",
|
|
463
|
+
markHelpful: "Mark this review as helpful",
|
|
464
|
+
helpful: "Helpful ({{count}})",
|
|
465
|
+
updatingHelpful: "Updating…",
|
|
466
|
+
showLess: "Show less",
|
|
467
|
+
showMore: "Show more",
|
|
468
|
+
showAllReviews: "Show all {{count}} reviews",
|
|
469
|
+
notFoundTitle: "Product not found",
|
|
470
|
+
notFoundDetail: "The product you are looking for does not exist or has been removed.",
|
|
471
|
+
backToMarketplace: "Back to Marketplace",
|
|
472
|
+
errorTitle: "Failed to load product",
|
|
473
|
+
errorDescription: "An error occurred while loading the product details.",
|
|
474
|
+
aboutThisApp: "About this app",
|
|
475
|
+
noDescription: "No description available.",
|
|
476
|
+
noDesc: "No description available",
|
|
477
|
+
ratingsAndReviews: "Ratings & Reviews",
|
|
478
|
+
requiredPermissions: "Required Permissions",
|
|
479
|
+
integrations: "Integrations",
|
|
480
|
+
additionalInformation: "Additional Information",
|
|
481
|
+
versionLabel: "Version",
|
|
482
|
+
publishedLabel: "Published",
|
|
483
|
+
updatedLabel: "Updated",
|
|
484
|
+
licenseLabel: "License",
|
|
485
|
+
minPlatformVersionLabel: "Min Platform Version",
|
|
486
|
+
appSupport: "App support",
|
|
487
|
+
documentation: "Documentation",
|
|
488
|
+
sourceRepository: "Source repository",
|
|
489
|
+
contactPublisher: "Contact publisher",
|
|
490
|
+
visitWebsite: "Visit website",
|
|
491
|
+
similarApps: "Similar apps",
|
|
492
|
+
previewTitle: "Preview",
|
|
493
|
+
noPreview: "No preview available",
|
|
494
|
+
noPreviewHint: "Upload screenshots in the Store Listing tab to show a preview here",
|
|
495
|
+
subscriptionPrice: "{{price}}/mo",
|
|
496
|
+
outOfStock: "Out of stock",
|
|
497
|
+
inStock: "{{count}} in stock",
|
|
498
|
+
quantity: "Qty",
|
|
499
|
+
decreaseQuantity: "Decrease quantity",
|
|
500
|
+
increaseQuantity: "Increase quantity",
|
|
501
|
+
updateToVersion: "Update to v{{version}}",
|
|
502
|
+
installToWorkspace: "Install to Workspace",
|
|
503
|
+
addToCartError: "Failed to add this product to cart. Please try again.",
|
|
504
|
+
createOrderError: "Failed to create order. Please try again.",
|
|
505
|
+
checkoutError: "Failed to start checkout",
|
|
506
|
+
pickupAvailable: "Available for pickup — no shipping required",
|
|
507
|
+
shipsToAddress: "Ships to your delivery address",
|
|
508
|
+
sellerReturnsPolicy: "Returns and refunds are handled by {{seller}} per their store policy.",
|
|
509
|
+
theSeller: "the seller",
|
|
510
|
+
availableForWorkspace: "This app is available for your workspace",
|
|
511
|
+
purchaseFinalNotice: "All purchases are final. Digital app orders cannot be cancelled or refunded once completed.",
|
|
512
|
+
licenseStatus: "License: {{status}}",
|
|
513
|
+
licenseExpires: " (Expires: {{date}})",
|
|
514
|
+
pagePurpose: "Everything you need to decide whether to install {{name}}: what it does, screenshots, pricing, the permissions and integrations it needs, and real customer reviews. When you are ready, install it (free apps) or buy it, then add it to a workspace — and leave a review once you have used it.",
|
|
515
|
+
nextStepInstallLabel: "Install this app",
|
|
516
|
+
nextStepInstallDescription: "It’s free — add it to a workspace in a couple of clicks.",
|
|
517
|
+
nextStepBuyLabel: "Buy or add to cart",
|
|
518
|
+
nextStepOwnedDescription: "You already own this — install it where you need it.",
|
|
519
|
+
nextStepBuyDescription: "Purchase now, or add it to your cart to check out later.",
|
|
520
|
+
nextStepPermissionsLabel: "Review what it can access",
|
|
521
|
+
nextStepPermissionsDescription: "Check the permissions this app requires before installing.",
|
|
522
|
+
nextStepReviewsLabel: "Read the reviews",
|
|
523
|
+
nextStepReviewsDescription: "See what other customers think before committing.",
|
|
524
|
+
cancelReviewEditing: "Cancel review editing",
|
|
525
|
+
editYourReview: "Edit your review",
|
|
526
|
+
cancelReview: "Cancel review"
|
|
313
527
|
},
|
|
314
528
|
cart: {
|
|
315
529
|
title: "Shopping Cart",
|
|
@@ -322,6 +536,7 @@ var e = {
|
|
|
322
536
|
clearCart: "Clear Cart",
|
|
323
537
|
singleLicense: "Single license",
|
|
324
538
|
qty: "Qty:",
|
|
539
|
+
each: "{{price}} each",
|
|
325
540
|
digital: "Digital",
|
|
326
541
|
physical: "Physical",
|
|
327
542
|
subscription: "Subscription",
|
|
@@ -352,10 +567,57 @@ var e = {
|
|
|
352
567
|
installed: "Installed",
|
|
353
568
|
failedToLoad: "Failed to load orders",
|
|
354
569
|
filterAll: "All",
|
|
355
|
-
reorder: "Reorder"
|
|
570
|
+
reorder: "Reorder",
|
|
571
|
+
loading: "Loading your orders…",
|
|
572
|
+
browseMarketplace: "Browse Marketplace",
|
|
573
|
+
tabCompleted: "Completed",
|
|
574
|
+
tabPending: "Pending",
|
|
575
|
+
noCompletedTitle: "No completed orders yet",
|
|
576
|
+
noPendingTitle: "No pending orders",
|
|
577
|
+
colOrder: "Order",
|
|
578
|
+
colDate: "Date",
|
|
579
|
+
colItems: "Items",
|
|
580
|
+
colTotal: "Total",
|
|
581
|
+
colStatus: "Status",
|
|
582
|
+
colProduct: "Product",
|
|
583
|
+
colQty: "Qty",
|
|
584
|
+
colPrice: "Price",
|
|
585
|
+
colAction: "Action",
|
|
586
|
+
item: "item",
|
|
587
|
+
items: "items",
|
|
588
|
+
orderTracking: "Order tracking",
|
|
589
|
+
statusPending: "Pending",
|
|
590
|
+
statusCompleted: "Completed",
|
|
591
|
+
statusProcessing: "Processing",
|
|
592
|
+
statusFailed: "Failed",
|
|
593
|
+
statusRefunded: "Refunded",
|
|
594
|
+
statusCancelled: "Cancelled",
|
|
595
|
+
estimatedDelivery: "Est. delivery {{date}}",
|
|
596
|
+
trackingNumber: "Tracking #: {{number}}",
|
|
597
|
+
trackPackage: "Track package",
|
|
598
|
+
stepProcessing: "Processing",
|
|
599
|
+
stepShipped: "Shipped",
|
|
600
|
+
stepOutForDelivery: "Out for delivery",
|
|
601
|
+
stepDelivered: "Delivered",
|
|
602
|
+
qtyTimesPrice: "{{qty}} × {{price}}",
|
|
603
|
+
subtotal: "Subtotal:",
|
|
604
|
+
tax: "Tax:",
|
|
605
|
+
total: "Total:"
|
|
356
606
|
},
|
|
357
607
|
orderConfirmation: {
|
|
358
|
-
title: "Order
|
|
608
|
+
title: "Order placed successfully",
|
|
609
|
+
totalAt: "Total: {{total}}",
|
|
610
|
+
orderId: "Order ID",
|
|
611
|
+
loading: "Loading your order…",
|
|
612
|
+
shipping: "Shipping",
|
|
613
|
+
status: "Status: {{status}}",
|
|
614
|
+
estimatedDelivery: "Estimated delivery: {{date}}",
|
|
615
|
+
trackPackage: "Track package",
|
|
616
|
+
licenses: "Your licenses ({{count}})",
|
|
617
|
+
expires: "Expires: {{date}}",
|
|
618
|
+
copyLicenseKey: "Copy license key",
|
|
619
|
+
copied: "Copied to clipboard",
|
|
620
|
+
installToWorkspace: "Install to workspace",
|
|
359
621
|
subtitle: "Thank you for your purchase. We'll send a confirmation to your email.",
|
|
360
622
|
orderNumber: "Order Number",
|
|
361
623
|
orderDate: "Order Date",
|
|
@@ -366,11 +628,15 @@ var e = {
|
|
|
366
628
|
subtotal: "Subtotal",
|
|
367
629
|
tax: "Tax",
|
|
368
630
|
total: "Total",
|
|
369
|
-
|
|
631
|
+
whatsNext: "What's next?",
|
|
632
|
+
nextInstall: "Install what you bought",
|
|
633
|
+
nextTrack: "Track your order",
|
|
634
|
+
nextReceipt: "Keep this receipt",
|
|
635
|
+
nextDiscover: "Discover more",
|
|
370
636
|
nextStep1: "You'll receive a confirmation email with your order details.",
|
|
371
637
|
nextStep2: "Your digital products will be available for installation immediately.",
|
|
372
638
|
nextStep3: "Physical products will be shipped within 3-5 business days.",
|
|
373
|
-
viewOrders: "View
|
|
639
|
+
viewOrders: "View My Orders",
|
|
374
640
|
continueShopping: "Continue Shopping",
|
|
375
641
|
installNow: "Install Now"
|
|
376
642
|
},
|
|
@@ -386,7 +652,32 @@ var e = {
|
|
|
386
652
|
uninstall: "Uninstall",
|
|
387
653
|
settings: "Settings",
|
|
388
654
|
statusAll: "All",
|
|
389
|
-
installNew: "Install New App"
|
|
655
|
+
installNew: "Install New App",
|
|
656
|
+
statusActive: "Active",
|
|
657
|
+
statusInactive: "Inactive",
|
|
658
|
+
statusPending: "Pending",
|
|
659
|
+
statusInstalling: "Installing",
|
|
660
|
+
statusFailed: "Failed",
|
|
661
|
+
statusUninstalled: "Uninstalled",
|
|
662
|
+
uninstallError: "Could not uninstall. Try again.",
|
|
663
|
+
searchPlaceholder: "Search by name, workspace…",
|
|
664
|
+
noMatchTitle: "No apps match this filter",
|
|
665
|
+
noMatchDescription: "Try a different status filter, or browse the marketplace.",
|
|
666
|
+
emptyTitleAlt: "No apps installed",
|
|
667
|
+
emptyDescriptionAlt: "Browse the marketplace to install your first app.",
|
|
668
|
+
noSearchResults: "No results match your search.",
|
|
669
|
+
colApp: "App",
|
|
670
|
+
colWorkspace: "Workspace",
|
|
671
|
+
colStatus: "Status",
|
|
672
|
+
colVersion: "Version",
|
|
673
|
+
colInstalled: "Installed",
|
|
674
|
+
colActions: "Actions",
|
|
675
|
+
delisted: "Delisted",
|
|
676
|
+
details: "Details",
|
|
677
|
+
configure: "Configure",
|
|
678
|
+
product: "Product",
|
|
679
|
+
uninstallTitle: "Uninstall app",
|
|
680
|
+
uninstallPrompt: "Remove {{app}} from {{workspace}}?"
|
|
390
681
|
},
|
|
391
682
|
appDetail: {
|
|
392
683
|
title: "App Details",
|
|
@@ -399,7 +690,20 @@ var e = {
|
|
|
399
690
|
openSettings: "Open Settings",
|
|
400
691
|
failedToLoad: "Failed to load app details",
|
|
401
692
|
notFound: "App Not Found",
|
|
402
|
-
notFoundDescription: "The installation you are looking for could not be found."
|
|
693
|
+
notFoundDescription: "The installation you are looking for could not be found.",
|
|
694
|
+
loading: "Loading installation…",
|
|
695
|
+
backToInstalled: "Back to installed apps",
|
|
696
|
+
integrationConfigTitle: "Configuration is managed on the third-party's side",
|
|
697
|
+
installationId: "Installation ID: {{id}}",
|
|
698
|
+
manageConfig: "Manage configuration",
|
|
699
|
+
openProductPage: "Open the product page",
|
|
700
|
+
installedAtLabel: "Installed at",
|
|
701
|
+
updatedAt: "Updated at",
|
|
702
|
+
workspaceId: "Workspace ID",
|
|
703
|
+
organizationId: "Organization ID",
|
|
704
|
+
installedBy: "Installed by",
|
|
705
|
+
runtimeMetadata: "Runtime metadata",
|
|
706
|
+
metadata: "metadata"
|
|
403
707
|
},
|
|
404
708
|
appSettings: {
|
|
405
709
|
title: "App Settings",
|
|
@@ -408,7 +712,13 @@ var e = {
|
|
|
408
712
|
settingsSaved: "Settings saved successfully",
|
|
409
713
|
failedToSave: "Failed to save settings",
|
|
410
714
|
noSettings: "No configurable settings",
|
|
411
|
-
noSettingsDescription: "This app does not have any configurable settings."
|
|
715
|
+
noSettingsDescription: "This app does not have any configurable settings.",
|
|
716
|
+
loading: "Loading settings…",
|
|
717
|
+
notFound: "Installation not found",
|
|
718
|
+
backToInstalled: "Back to installed apps",
|
|
719
|
+
configDetails: "configuration details",
|
|
720
|
+
manifest: "Manifest",
|
|
721
|
+
metadataContext: "Metadata & Context"
|
|
412
722
|
},
|
|
413
723
|
licenses: {
|
|
414
724
|
title: "My Licenses",
|
|
@@ -420,7 +730,9 @@ var e = {
|
|
|
420
730
|
productId: "Product {{id}}",
|
|
421
731
|
entitlementId: "Entitlement ID: {{id}}",
|
|
422
732
|
licenseKey: "License key: {{key}}",
|
|
423
|
-
expiresOn: "Expires on {{date}}"
|
|
733
|
+
expiresOn: "Expires on {{date}}",
|
|
734
|
+
loading: "Loading licenses",
|
|
735
|
+
product: "Product {{id}}"
|
|
424
736
|
},
|
|
425
737
|
publisherDashboard: {
|
|
426
738
|
title: "Publisher Dashboard",
|
|
@@ -494,7 +806,11 @@ var e = {
|
|
|
494
806
|
noResults: "No results found",
|
|
495
807
|
noResultsDescription: "Try different keywords or browse the marketplace.",
|
|
496
808
|
browseMarketplace: "Browse Marketplace",
|
|
497
|
-
resultCount: "{{count}} results"
|
|
809
|
+
resultCount: "{{count}} results",
|
|
810
|
+
placeholder: "Search apps, workflows, integrations...",
|
|
811
|
+
searching: "Searching…",
|
|
812
|
+
emptyTitle: "Search the marketplace",
|
|
813
|
+
noResultsTitle: "No matching products found"
|
|
498
814
|
},
|
|
499
815
|
stores: {
|
|
500
816
|
title: "Stores",
|
|
@@ -507,7 +823,8 @@ var e = {
|
|
|
507
823
|
title: "{{name}}",
|
|
508
824
|
noProducts: "No products in this category",
|
|
509
825
|
noProductsDescription: "Check back later for new products in this category.",
|
|
510
|
-
browseAll: "Browse All Products"
|
|
826
|
+
browseAll: "Browse All Products",
|
|
827
|
+
thisCategory: "this category"
|
|
511
828
|
}
|
|
512
829
|
}
|
|
513
830
|
};
|