@anime.club/translations 1.1.107 → 1.1.108

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/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
7
- "version": "1.1.107",
7
+ "version": "1.1.108",
8
8
  "files": [
9
9
  "src",
10
10
  "types"
@@ -6,6 +6,8 @@ export const text: text = {
6
6
  allFilesYouUploadHereWillBeAvailableToTheBuyer: `(en) All files you upload here will be available to the buyer`,
7
7
  bigAppreciationToTheSellerForTheirHardWork: `(en) Big appreciation to the seller for their hard work`,
8
8
  buyerReviewedTheOrder: `(en) Buyer reviewed the order`,
9
+ buyerHasNotLeftAReviewYet: `(en) Buyer has not left a review yet`,
10
+ feedbackReceived: `(en) Feedback received!`,
9
11
  beforeAcceptingPleaseReviewTheBuyersRequestCarefully: `(en) Before accepting, please review the buyer's request carefully`,
10
12
  checkOutMyShop: `(en) Check out my shop`,
11
13
  commercialUseAllowed: `(en) Commercial use allowed`,
@@ -14,6 +16,7 @@ export const text: text = {
14
16
  createAShopWithStripe: `(en) Create a shop with Stripe`,
15
17
  createdBy: `(en) Created by`,
16
18
  download: `(en) Dowload`,
19
+ downloadThemBelow: `(en) Download them below`,
17
20
  describeTheDetailsOfYourExtra: `(en) Describe the details of your extra`,
18
21
  enjoyYourPurchase: `(en) Enjoy your purchase! 😊`,
19
22
  extrasAreOptionalAddOnsToEnhanceYourProduct: `(en) Extras are optional add-ons to enhance your product`,
@@ -37,6 +40,7 @@ export const text: text = {
37
40
  pleaseRespondToTheOrderBy: (...v) =>
38
41
  `(en) Please respond to the order by ${v[0]}`,
39
42
  review: `(en) Review`,
43
+ reviewed: `(en) Reviewed`,
40
44
  reviewTitle: `(en) Review title`,
41
45
  reason: `(en) Reason`,
42
46
  yourOrderIncludesXRevisionS: (...v) =>
@@ -53,7 +57,7 @@ export const text: text = {
53
57
  thisFieldIsOptional: `(en) This field is optional`,
54
58
  thisCannotBeUndone: `(en) This cannot be undone`,
55
59
  ensureYouveUploadedTheFinalVersion: `(en) Ensure you've uploaded the final version before submitting`,
56
- theSellerHasUploadedTheseFilesForYou: `(en) The seller has uploaded these files for you. Download them below!`,
60
+ theSellerHasUploadedTheseFilesForYou: `(en) The seller has uploaded these files for you`,
57
61
  pleaseUploadOnlyFinishedWorkHereMaximumFiles: `(en) Please upload only finished work here`,
58
62
  allWIPRelatedFilesShouldBeUploadedInMessages: `(en) All WIP-related files should be uploaded in messages`,
59
63
  unfortunatelyTheSellerHadToCancelThisOrder: (...v) =>
@@ -6,6 +6,8 @@ export const text: text = {
6
6
  allFilesYouUploadHereWillBeAvailableToTheBuyer: `(en) All files you upload here will be available to the buyer`,
7
7
  bigAppreciationToTheSellerForTheirHardWork: `(en) Big appreciation to the seller for their hard work`,
8
8
  buyerReviewedTheOrder: `(en) Buyer reviewed the order`,
9
+ buyerHasNotLeftAReviewYet: `(en) Buyer has not left a review yet`,
10
+ feedbackReceived: `(en) Feedback received!`,
9
11
  beforeAcceptingPleaseReviewTheBuyersRequestCarefully: `(en) Before accepting, please review the buyer's request carefully`,
10
12
  checkOutMyShop: `(en) Check out my shop`,
11
13
  commercialUseAllowed: `(en) Commercial use allowed`,
@@ -14,6 +16,7 @@ export const text: text = {
14
16
  createAShopWithStripe: `(en) Create a shop with Stripe`,
15
17
  createdBy: `(en) Created by`,
16
18
  download: `(en) Dowload`,
19
+ downloadThemBelow: `(en) Download them below`,
17
20
  describeTheDetailsOfYourExtra: `(en) Describe the details of your extra`,
18
21
  enjoyYourPurchase: `(en) Enjoy your purchase! 😊`,
19
22
  extrasAreOptionalAddOnsToEnhanceYourProduct: `(en) Extras are optional add-ons to enhance your product`,
@@ -37,6 +40,7 @@ export const text: text = {
37
40
  pleaseRespondToTheOrderBy: (...v) =>
38
41
  `(en) Please respond to the order by ${v[0]}`,
39
42
  review: `(en) Review`,
43
+ reviewed: `(en) Reviewed`,
40
44
  reviewTitle: `(en) Review title`,
41
45
  reason: `(en) Reason`,
42
46
  yourOrderIncludesXRevisionS: (...v) =>
@@ -53,7 +57,7 @@ export const text: text = {
53
57
  thisFieldIsOptional: `(en) This field is optional`,
54
58
  thisCannotBeUndone: `(en) This cannot be undone`,
55
59
  ensureYouveUploadedTheFinalVersion: `(en) Ensure you've uploaded the final version before submitting`,
56
- theSellerHasUploadedTheseFilesForYou: `(en) The seller has uploaded these files for you. Download them below!`,
60
+ theSellerHasUploadedTheseFilesForYou: `(en) The seller has uploaded these files for you`,
57
61
  pleaseUploadOnlyFinishedWorkHereMaximumFiles: `(en) Please upload only finished work here`,
58
62
  allWIPRelatedFilesShouldBeUploadedInMessages: `(en) All WIP-related files should be uploaded in messages`,
59
63
  unfortunatelyTheSellerHadToCancelThisOrder: (...v) =>
package/src/english.ts CHANGED
@@ -62,6 +62,8 @@ export const text = {
62
62
  bigAppreciationToTheSellerForTheirHardWork: `Big appreciation to the seller for their hard work`,
63
63
  block: `Block`,
64
64
  buyerReviewedTheOrder: `Buyer reviewed the order`,
65
+ buyerHasNotLeftAReviewYet: `Buyer has not left a review yet`,
66
+ feedbackReceived: `Feedback received!`,
65
67
  blockUser: (username: string) => `Block @${username}`,
66
68
  beforeAcceptingPleaseReviewTheBuyersRequestCarefully: `Before accepting, please review the buyer's request carefully`,
67
69
  blog: `Blog`,
@@ -126,6 +128,7 @@ export const text = {
126
128
  deletePost: `Delete post`,
127
129
  deleteProduct: `Delete product`,
128
130
  download: `Dowload`,
131
+ downloadThemBelow: `Download them below`,
129
132
  deliveryTime: `Delivery time`,
130
133
  describeTheDetailsOfYourExtra: `Describe the details of your extra`,
131
134
  description: `Description`,
@@ -341,6 +344,7 @@ export const text = {
341
344
  reorderFiles: `Reorder files`,
342
345
  report: `Report`,
343
346
  review: `Review`,
347
+ reviewed: `Reviewed`,
344
348
  reviewTitle: `Review title`,
345
349
  reason: `Reason`,
346
350
  revisions: `Revisions`,
@@ -419,7 +423,7 @@ export const text = {
419
423
  `To view this data, you need to unblock @${username}`,
420
424
  trademarkViolation: `Trademark violation`,
421
425
  typeYourTextHere: `Type your text here...`,
422
- theSellerHasUploadedTheseFilesForYou: `The seller has uploaded these files for you. Download them below!`,
426
+ theSellerHasUploadedTheseFilesForYou: `The seller has uploaded these files for you`,
423
427
  unblock: `Unblock`,
424
428
  unblockUser: (username: string) => `Unblock @${username}`,
425
429
  unfollow: `Unfollow`,
package/src/french.ts CHANGED
@@ -6,6 +6,8 @@ export const text: text = {
6
6
  allFilesYouUploadHereWillBeAvailableToTheBuyer: `(en) All files you upload here will be available to the buyer`,
7
7
  bigAppreciationToTheSellerForTheirHardWork: `(en) Big appreciation to the seller for their hard work`,
8
8
  buyerReviewedTheOrder: `(en) Buyer reviewed the order`,
9
+ buyerHasNotLeftAReviewYet: `(en) Buyer has not left a review yet`,
10
+ feedbackReceived: `(en) Feedback received!`,
9
11
  beforeAcceptingPleaseReviewTheBuyersRequestCarefully: `(en) Before accepting, please review the buyer's request carefully`,
10
12
  checkOutMyShop: `(en) Check out my shop`,
11
13
  commercialUseAllowed: `(en) Commercial use allowed`,
@@ -14,6 +16,7 @@ export const text: text = {
14
16
  createAShopWithStripe: `(en) Create a shop with Stripe`,
15
17
  createdBy: `(en) Created by`,
16
18
  download: `(en) Dowload`,
19
+ downloadThemBelow: `(en) Download them below`,
17
20
  describeTheDetailsOfYourExtra: `(en) Describe the details of your extra`,
18
21
  enjoyYourPurchase: `(en) Enjoy your purchase! 😊`,
19
22
  extrasAreOptionalAddOnsToEnhanceYourProduct: `(en) Extras are optional add-ons to enhance your product`,
@@ -37,6 +40,7 @@ export const text: text = {
37
40
  pleaseRespondToTheOrderBy: (...v) =>
38
41
  `(en) Please respond to the order by ${v[0]}`,
39
42
  review: `(en) Review`,
43
+ reviewed: `(en) Reviewed`,
40
44
  reviewTitle: `(en) Review title`,
41
45
  reason: `(en) Reason`,
42
46
  yourOrderIncludesXRevisionS: (...v) =>
@@ -53,7 +57,7 @@ export const text: text = {
53
57
  thisFieldIsOptional: `(en) This field is optional`,
54
58
  thisCannotBeUndone: `(en) This cannot be undone`,
55
59
  ensureYouveUploadedTheFinalVersion: `(en) Ensure you've uploaded the final version before submitting`,
56
- theSellerHasUploadedTheseFilesForYou: `(en) The seller has uploaded these files for you. Download them below!`,
60
+ theSellerHasUploadedTheseFilesForYou: `(en) The seller has uploaded these files for you`,
57
61
  pleaseUploadOnlyFinishedWorkHereMaximumFiles: `(en) Please upload only finished work here`,
58
62
  allWIPRelatedFilesShouldBeUploadedInMessages: `(en) All WIP-related files should be uploaded in messages`,
59
63
  unfortunatelyTheSellerHadToCancelThisOrder: (...v) =>
package/src/german.ts CHANGED
@@ -6,6 +6,8 @@ export const text: text = {
6
6
  allFilesYouUploadHereWillBeAvailableToTheBuyer: `(en) All files you upload here will be available to the buyer`,
7
7
  bigAppreciationToTheSellerForTheirHardWork: `(en) Big appreciation to the seller for their hard work`,
8
8
  buyerReviewedTheOrder: `(en) Buyer reviewed the order`,
9
+ buyerHasNotLeftAReviewYet: `(en) Buyer has not left a review yet`,
10
+ feedbackReceived: `(en) Feedback received!`,
9
11
  beforeAcceptingPleaseReviewTheBuyersRequestCarefully: `(en) Before accepting, please review the buyer's request carefully`,
10
12
  checkOutMyShop: `(en) Check out my shop`,
11
13
  commercialUseAllowed: `(en) Commercial use allowed`,
@@ -14,6 +16,7 @@ export const text: text = {
14
16
  createAShopWithStripe: `(en) Create a shop with Stripe`,
15
17
  createdBy: `(en) Created by`,
16
18
  download: `(en) Dowload`,
19
+ downloadThemBelow: `(en) Download them below`,
17
20
  describeTheDetailsOfYourExtra: `(en) Describe the details of your extra`,
18
21
  enjoyYourPurchase: `(en) Enjoy your purchase! 😊`,
19
22
  extrasAreOptionalAddOnsToEnhanceYourProduct: `(en) Extras are optional add-ons to enhance your product`,
@@ -37,6 +40,7 @@ export const text: text = {
37
40
  pleaseRespondToTheOrderBy: (...v) =>
38
41
  `(en) Please respond to the order by ${v[0]}`,
39
42
  review: `(en) Review`,
43
+ reviewed: `(en) Reviewed`,
40
44
  reviewTitle: `(en) Review title`,
41
45
  reason: `(en) Reason`,
42
46
  yourOrderIncludesXRevisionS: (...v) =>
@@ -53,7 +57,7 @@ export const text: text = {
53
57
  thisFieldIsOptional: `(en) This field is optional`,
54
58
  thisCannotBeUndone: `(en) This cannot be undone`,
55
59
  ensureYouveUploadedTheFinalVersion: `(en) Ensure you've uploaded the final version before submitting`,
56
- theSellerHasUploadedTheseFilesForYou: `(en) The seller has uploaded these files for you. Download them below!`,
60
+ theSellerHasUploadedTheseFilesForYou: `(en) The seller has uploaded these files for you`,
57
61
  pleaseUploadOnlyFinishedWorkHereMaximumFiles: `(en) Please upload only finished work here`,
58
62
  allWIPRelatedFilesShouldBeUploadedInMessages: `(en) All WIP-related files should be uploaded in messages`,
59
63
  unfortunatelyTheSellerHadToCancelThisOrder: (...v) =>
package/src/hindi.ts CHANGED
@@ -6,6 +6,8 @@ export const text: text = {
6
6
  allFilesYouUploadHereWillBeAvailableToTheBuyer: `(en) All files you upload here will be available to the buyer`,
7
7
  bigAppreciationToTheSellerForTheirHardWork: `(en) Big appreciation to the seller for their hard work`,
8
8
  buyerReviewedTheOrder: `(en) Buyer reviewed the order`,
9
+ buyerHasNotLeftAReviewYet: `(en) Buyer has not left a review yet`,
10
+ feedbackReceived: `(en) Feedback received!`,
9
11
  beforeAcceptingPleaseReviewTheBuyersRequestCarefully: `(en) Before accepting, please review the buyer's request carefully`,
10
12
  checkOutMyShop: `(en) Check out my shop`,
11
13
  commercialUseAllowed: `(en) Commercial use allowed`,
@@ -14,6 +16,7 @@ export const text: text = {
14
16
  createAShopWithStripe: `(en) Create a shop with Stripe`,
15
17
  createdBy: `(en) Created by`,
16
18
  download: `(en) Dowload`,
19
+ downloadThemBelow: `(en) Download them below`,
17
20
  describeTheDetailsOfYourExtra: `(en) Describe the details of your extra`,
18
21
  enjoyYourPurchase: `(en) Enjoy your purchase! 😊`,
19
22
  extrasAreOptionalAddOnsToEnhanceYourProduct: `(en) Extras are optional add-ons to enhance your product`,
@@ -37,6 +40,7 @@ export const text: text = {
37
40
  pleaseRespondToTheOrderBy: (...v) =>
38
41
  `(en) Please respond to the order by ${v[0]}`,
39
42
  review: `(en) Review`,
43
+ reviewed: `(en) Reviewed`,
40
44
  reviewTitle: `(en) Review title`,
41
45
  reason: `(en) Reason`,
42
46
  yourOrderIncludesXRevisionS: (...v) =>
@@ -53,7 +57,7 @@ export const text: text = {
53
57
  thisFieldIsOptional: `(en) This field is optional`,
54
58
  thisCannotBeUndone: `(en) This cannot be undone`,
55
59
  ensureYouveUploadedTheFinalVersion: `(en) Ensure you've uploaded the final version before submitting`,
56
- theSellerHasUploadedTheseFilesForYou: `(en) The seller has uploaded these files for you. Download them below!`,
60
+ theSellerHasUploadedTheseFilesForYou: `(en) The seller has uploaded these files for you`,
57
61
  pleaseUploadOnlyFinishedWorkHereMaximumFiles: `(en) Please upload only finished work here`,
58
62
  allWIPRelatedFilesShouldBeUploadedInMessages: `(en) All WIP-related files should be uploaded in messages`,
59
63
  unfortunatelyTheSellerHadToCancelThisOrder: (...v) =>
package/src/indonesian.ts CHANGED
@@ -6,6 +6,8 @@ export const text: text = {
6
6
  allFilesYouUploadHereWillBeAvailableToTheBuyer: `(en) All files you upload here will be available to the buyer`,
7
7
  bigAppreciationToTheSellerForTheirHardWork: `(en) Big appreciation to the seller for their hard work`,
8
8
  buyerReviewedTheOrder: `(en) Buyer reviewed the order`,
9
+ buyerHasNotLeftAReviewYet: `(en) Buyer has not left a review yet`,
10
+ feedbackReceived: `(en) Feedback received!`,
9
11
  beforeAcceptingPleaseReviewTheBuyersRequestCarefully: `(en) Before accepting, please review the buyer's request carefully`,
10
12
  checkOutMyShop: `(en) Check out my shop`,
11
13
  commercialUseAllowed: `(en) Commercial use allowed`,
@@ -14,6 +16,7 @@ export const text: text = {
14
16
  createAShopWithStripe: `(en) Create a shop with Stripe`,
15
17
  createdBy: `(en) Created by`,
16
18
  download: `(en) Dowload`,
19
+ downloadThemBelow: `(en) Download them below`,
17
20
  describeTheDetailsOfYourExtra: `(en) Describe the details of your extra`,
18
21
  enjoyYourPurchase: `(en) Enjoy your purchase! 😊`,
19
22
  extrasAreOptionalAddOnsToEnhanceYourProduct: `(en) Extras are optional add-ons to enhance your product`,
@@ -37,6 +40,7 @@ export const text: text = {
37
40
  pleaseRespondToTheOrderBy: (...v) =>
38
41
  `(en) Please respond to the order by ${v[0]}`,
39
42
  review: `(en) Review`,
43
+ reviewed: `(en) Reviewed`,
40
44
  reviewTitle: `(en) Review title`,
41
45
  reason: `(en) Reason`,
42
46
  yourOrderIncludesXRevisionS: (...v) =>
@@ -53,7 +57,7 @@ export const text: text = {
53
57
  thisFieldIsOptional: `(en) This field is optional`,
54
58
  thisCannotBeUndone: `(en) This cannot be undone`,
55
59
  ensureYouveUploadedTheFinalVersion: `(en) Ensure you've uploaded the final version before submitting`,
56
- theSellerHasUploadedTheseFilesForYou: `(en) The seller has uploaded these files for you. Download them below!`,
60
+ theSellerHasUploadedTheseFilesForYou: `(en) The seller has uploaded these files for you`,
57
61
  pleaseUploadOnlyFinishedWorkHereMaximumFiles: `(en) Please upload only finished work here`,
58
62
  allWIPRelatedFilesShouldBeUploadedInMessages: `(en) All WIP-related files should be uploaded in messages`,
59
63
  unfortunatelyTheSellerHadToCancelThisOrder: (...v) =>
package/src/japanese.ts CHANGED
@@ -6,6 +6,8 @@ export const text: text = {
6
6
  allFilesYouUploadHereWillBeAvailableToTheBuyer: `(en) All files you upload here will be available to the buyer`,
7
7
  bigAppreciationToTheSellerForTheirHardWork: `(en) Big appreciation to the seller for their hard work`,
8
8
  buyerReviewedTheOrder: `(en) Buyer reviewed the order`,
9
+ buyerHasNotLeftAReviewYet: `(en) Buyer has not left a review yet`,
10
+ feedbackReceived: `(en) Feedback received!`,
9
11
  beforeAcceptingPleaseReviewTheBuyersRequestCarefully: `(en) Before accepting, please review the buyer's request carefully`,
10
12
  checkOutMyShop: `(en) Check out my shop`,
11
13
  commercialUseAllowed: `(en) Commercial use allowed`,
@@ -14,6 +16,7 @@ export const text: text = {
14
16
  createAShopWithStripe: `(en) Create a shop with Stripe`,
15
17
  createdBy: `(en) Created by`,
16
18
  download: `(en) Dowload`,
19
+ downloadThemBelow: `(en) Download them below`,
17
20
  describeTheDetailsOfYourExtra: `(en) Describe the details of your extra`,
18
21
  enjoyYourPurchase: `(en) Enjoy your purchase! 😊`,
19
22
  extrasAreOptionalAddOnsToEnhanceYourProduct: `(en) Extras are optional add-ons to enhance your product`,
@@ -37,6 +40,7 @@ export const text: text = {
37
40
  pleaseRespondToTheOrderBy: (...v) =>
38
41
  `(en) Please respond to the order by ${v[0]}`,
39
42
  review: `(en) Review`,
43
+ reviewed: `(en) Reviewed`,
40
44
  reviewTitle: `(en) Review title`,
41
45
  reason: `(en) Reason`,
42
46
  yourOrderIncludesXRevisionS: (...v) =>
@@ -53,7 +57,7 @@ export const text: text = {
53
57
  thisFieldIsOptional: `(en) This field is optional`,
54
58
  thisCannotBeUndone: `(en) This cannot be undone`,
55
59
  ensureYouveUploadedTheFinalVersion: `(en) Ensure you've uploaded the final version before submitting`,
56
- theSellerHasUploadedTheseFilesForYou: `(en) The seller has uploaded these files for you. Download them below!`,
60
+ theSellerHasUploadedTheseFilesForYou: `(en) The seller has uploaded these files for you`,
57
61
  pleaseUploadOnlyFinishedWorkHereMaximumFiles: `(en) Please upload only finished work here`,
58
62
  allWIPRelatedFilesShouldBeUploadedInMessages: `(en) All WIP-related files should be uploaded in messages`,
59
63
  unfortunatelyTheSellerHadToCancelThisOrder: (...v) =>
package/src/korean.ts CHANGED
@@ -6,6 +6,8 @@ export const text: text = {
6
6
  allFilesYouUploadHereWillBeAvailableToTheBuyer: `(en) All files you upload here will be available to the buyer`,
7
7
  bigAppreciationToTheSellerForTheirHardWork: `(en) Big appreciation to the seller for their hard work`,
8
8
  buyerReviewedTheOrder: `(en) Buyer reviewed the order`,
9
+ buyerHasNotLeftAReviewYet: `(en) Buyer has not left a review yet`,
10
+ feedbackReceived: `(en) Feedback received!`,
9
11
  beforeAcceptingPleaseReviewTheBuyersRequestCarefully: `(en) Before accepting, please review the buyer's request carefully`,
10
12
  checkOutMyShop: `(en) Check out my shop`,
11
13
  commercialUseAllowed: `(en) Commercial use allowed`,
@@ -14,6 +16,7 @@ export const text: text = {
14
16
  createAShopWithStripe: `(en) Create a shop with Stripe`,
15
17
  createdBy: `(en) Created by`,
16
18
  download: `(en) Dowload`,
19
+ downloadThemBelow: `(en) Download them below`,
17
20
  describeTheDetailsOfYourExtra: `(en) Describe the details of your extra`,
18
21
  enjoyYourPurchase: `(en) Enjoy your purchase! 😊`,
19
22
  extrasAreOptionalAddOnsToEnhanceYourProduct: `(en) Extras are optional add-ons to enhance your product`,
@@ -37,6 +40,7 @@ export const text: text = {
37
40
  pleaseRespondToTheOrderBy: (...v) =>
38
41
  `(en) Please respond to the order by ${v[0]}`,
39
42
  review: `(en) Review`,
43
+ reviewed: `(en) Reviewed`,
40
44
  reviewTitle: `(en) Review title`,
41
45
  reason: `(en) Reason`,
42
46
  yourOrderIncludesXRevisionS: (...v) =>
@@ -53,7 +57,7 @@ export const text: text = {
53
57
  thisFieldIsOptional: `(en) This field is optional`,
54
58
  thisCannotBeUndone: `(en) This cannot be undone`,
55
59
  ensureYouveUploadedTheFinalVersion: `(en) Ensure you've uploaded the final version before submitting`,
56
- theSellerHasUploadedTheseFilesForYou: `(en) The seller has uploaded these files for you. Download them below!`,
60
+ theSellerHasUploadedTheseFilesForYou: `(en) The seller has uploaded these files for you`,
57
61
  pleaseUploadOnlyFinishedWorkHereMaximumFiles: `(en) Please upload only finished work here`,
58
62
  allWIPRelatedFilesShouldBeUploadedInMessages: `(en) All WIP-related files should be uploaded in messages`,
59
63
  unfortunatelyTheSellerHadToCancelThisOrder: (...v) =>
package/src/portuguese.ts CHANGED
@@ -6,6 +6,8 @@ export const text: text = {
6
6
  allFilesYouUploadHereWillBeAvailableToTheBuyer: `(en) All files you upload here will be available to the buyer`,
7
7
  bigAppreciationToTheSellerForTheirHardWork: `(en) Big appreciation to the seller for their hard work`,
8
8
  buyerReviewedTheOrder: `(en) Buyer reviewed the order`,
9
+ buyerHasNotLeftAReviewYet: `(en) Buyer has not left a review yet`,
10
+ feedbackReceived: `(en) Feedback received!`,
9
11
  beforeAcceptingPleaseReviewTheBuyersRequestCarefully: `(en) Before accepting, please review the buyer's request carefully`,
10
12
  checkOutMyShop: `(en) Check out my shop`,
11
13
  commercialUseAllowed: `(en) Commercial use allowed`,
@@ -14,6 +16,7 @@ export const text: text = {
14
16
  createAShopWithStripe: `(en) Create a shop with Stripe`,
15
17
  createdBy: `(en) Created by`,
16
18
  download: `(en) Dowload`,
19
+ downloadThemBelow: `(en) Download them below`,
17
20
  describeTheDetailsOfYourExtra: `(en) Describe the details of your extra`,
18
21
  enjoyYourPurchase: `(en) Enjoy your purchase! 😊`,
19
22
  extrasAreOptionalAddOnsToEnhanceYourProduct: `(en) Extras are optional add-ons to enhance your product`,
@@ -37,6 +40,7 @@ export const text: text = {
37
40
  pleaseRespondToTheOrderBy: (...v) =>
38
41
  `(en) Please respond to the order by ${v[0]}`,
39
42
  review: `(en) Review`,
43
+ reviewed: `(en) Reviewed`,
40
44
  reviewTitle: `(en) Review title`,
41
45
  reason: `(en) Reason`,
42
46
  yourOrderIncludesXRevisionS: (...v) =>
@@ -53,7 +57,7 @@ export const text: text = {
53
57
  thisFieldIsOptional: `(en) This field is optional`,
54
58
  thisCannotBeUndone: `(en) This cannot be undone`,
55
59
  ensureYouveUploadedTheFinalVersion: `(en) Ensure you've uploaded the final version before submitting`,
56
- theSellerHasUploadedTheseFilesForYou: `(en) The seller has uploaded these files for you. Download them below!`,
60
+ theSellerHasUploadedTheseFilesForYou: `(en) The seller has uploaded these files for you`,
57
61
  pleaseUploadOnlyFinishedWorkHereMaximumFiles: `(en) Please upload only finished work here`,
58
62
  allWIPRelatedFilesShouldBeUploadedInMessages: `(en) All WIP-related files should be uploaded in messages`,
59
63
  unfortunatelyTheSellerHadToCancelThisOrder: (...v) =>
package/src/russian.ts CHANGED
@@ -6,6 +6,8 @@ export const text: text = {
6
6
  allFilesYouUploadHereWillBeAvailableToTheBuyer: `(en) All files you upload here will be available to the buyer`,
7
7
  bigAppreciationToTheSellerForTheirHardWork: `(en) Big appreciation to the seller for their hard work`,
8
8
  buyerReviewedTheOrder: `(en) Buyer reviewed the order`,
9
+ buyerHasNotLeftAReviewYet: `(en) Buyer has not left a review yet`,
10
+ feedbackReceived: `(en) Feedback received!`,
9
11
  beforeAcceptingPleaseReviewTheBuyersRequestCarefully: `(en) Before accepting, please review the buyer's request carefully`,
10
12
  checkOutMyShop: `(en) Check out my shop`,
11
13
  commercialUseAllowed: `(en) Commercial use allowed`,
@@ -14,6 +16,7 @@ export const text: text = {
14
16
  createAShopWithStripe: `(en) Create a shop with Stripe`,
15
17
  createdBy: `(en) Created by`,
16
18
  download: `(en) Dowload`,
19
+ downloadThemBelow: `(en) Download them below`,
17
20
  describeTheDetailsOfYourExtra: `(en) Describe the details of your extra`,
18
21
  enjoyYourPurchase: `(en) Enjoy your purchase! 😊`,
19
22
  extrasAreOptionalAddOnsToEnhanceYourProduct: `(en) Extras are optional add-ons to enhance your product`,
@@ -37,6 +40,7 @@ export const text: text = {
37
40
  pleaseRespondToTheOrderBy: (...v) =>
38
41
  `(en) Please respond to the order by ${v[0]}`,
39
42
  review: `(en) Review`,
43
+ reviewed: `(en) Reviewed`,
40
44
  reviewTitle: `(en) Review title`,
41
45
  reason: `(en) Reason`,
42
46
  yourOrderIncludesXRevisionS: (...v) =>
@@ -53,7 +57,7 @@ export const text: text = {
53
57
  thisFieldIsOptional: `(en) This field is optional`,
54
58
  thisCannotBeUndone: `(en) This cannot be undone`,
55
59
  ensureYouveUploadedTheFinalVersion: `(en) Ensure you've uploaded the final version before submitting`,
56
- theSellerHasUploadedTheseFilesForYou: `(en) The seller has uploaded these files for you. Download them below!`,
60
+ theSellerHasUploadedTheseFilesForYou: `(en) The seller has uploaded these files for you`,
57
61
  pleaseUploadOnlyFinishedWorkHereMaximumFiles: `(en) Please upload only finished work here`,
58
62
  allWIPRelatedFilesShouldBeUploadedInMessages: `(en) All WIP-related files should be uploaded in messages`,
59
63
  unfortunatelyTheSellerHadToCancelThisOrder: (...v) =>
package/src/spanish.ts CHANGED
@@ -6,6 +6,8 @@ export const text: text = {
6
6
  allFilesYouUploadHereWillBeAvailableToTheBuyer: `(en) All files you upload here will be available to the buyer`,
7
7
  bigAppreciationToTheSellerForTheirHardWork: `(en) Big appreciation to the seller for their hard work`,
8
8
  buyerReviewedTheOrder: `(en) Buyer reviewed the order`,
9
+ buyerHasNotLeftAReviewYet: `(en) Buyer has not left a review yet`,
10
+ feedbackReceived: `(en) Feedback received!`,
9
11
  beforeAcceptingPleaseReviewTheBuyersRequestCarefully: `(en) Before accepting, please review the buyer's request carefully`,
10
12
  checkOutMyShop: `(en) Check out my shop`,
11
13
  commercialUseAllowed: `(en) Commercial use allowed`,
@@ -14,6 +16,7 @@ export const text: text = {
14
16
  createAShopWithStripe: `(en) Create a shop with Stripe`,
15
17
  createdBy: `(en) Created by`,
16
18
  download: `(en) Dowload`,
19
+ downloadThemBelow: `(en) Download them below`,
17
20
  describeTheDetailsOfYourExtra: `(en) Describe the details of your extra`,
18
21
  enjoyYourPurchase: `(en) Enjoy your purchase! 😊`,
19
22
  extrasAreOptionalAddOnsToEnhanceYourProduct: `(en) Extras are optional add-ons to enhance your product`,
@@ -37,6 +40,7 @@ export const text: text = {
37
40
  pleaseRespondToTheOrderBy: (...v) =>
38
41
  `(en) Please respond to the order by ${v[0]}`,
39
42
  review: `(en) Review`,
43
+ reviewed: `(en) Reviewed`,
40
44
  reviewTitle: `(en) Review title`,
41
45
  reason: `(en) Reason`,
42
46
  yourOrderIncludesXRevisionS: (...v) =>
@@ -53,7 +57,7 @@ export const text: text = {
53
57
  thisFieldIsOptional: `(en) This field is optional`,
54
58
  thisCannotBeUndone: `(en) This cannot be undone`,
55
59
  ensureYouveUploadedTheFinalVersion: `(en) Ensure you've uploaded the final version before submitting`,
56
- theSellerHasUploadedTheseFilesForYou: `(en) The seller has uploaded these files for you. Download them below!`,
60
+ theSellerHasUploadedTheseFilesForYou: `(en) The seller has uploaded these files for you`,
57
61
  pleaseUploadOnlyFinishedWorkHereMaximumFiles: `(en) Please upload only finished work here`,
58
62
  allWIPRelatedFilesShouldBeUploadedInMessages: `(en) All WIP-related files should be uploaded in messages`,
59
63
  unfortunatelyTheSellerHadToCancelThisOrder: (...v) =>
package/src/thai.ts CHANGED
@@ -6,6 +6,8 @@ export const text: text = {
6
6
  allFilesYouUploadHereWillBeAvailableToTheBuyer: `(en) All files you upload here will be available to the buyer`,
7
7
  bigAppreciationToTheSellerForTheirHardWork: `(en) Big appreciation to the seller for their hard work`,
8
8
  buyerReviewedTheOrder: `(en) Buyer reviewed the order`,
9
+ buyerHasNotLeftAReviewYet: `(en) Buyer has not left a review yet`,
10
+ feedbackReceived: `(en) Feedback received!`,
9
11
  beforeAcceptingPleaseReviewTheBuyersRequestCarefully: `(en) Before accepting, please review the buyer's request carefully`,
10
12
  checkOutMyShop: `(en) Check out my shop`,
11
13
  commercialUseAllowed: `(en) Commercial use allowed`,
@@ -14,6 +16,7 @@ export const text: text = {
14
16
  createAShopWithStripe: `(en) Create a shop with Stripe`,
15
17
  createdBy: `(en) Created by`,
16
18
  download: `(en) Dowload`,
19
+ downloadThemBelow: `(en) Download them below`,
17
20
  describeTheDetailsOfYourExtra: `(en) Describe the details of your extra`,
18
21
  enjoyYourPurchase: `(en) Enjoy your purchase! 😊`,
19
22
  extrasAreOptionalAddOnsToEnhanceYourProduct: `(en) Extras are optional add-ons to enhance your product`,
@@ -37,6 +40,7 @@ export const text: text = {
37
40
  pleaseRespondToTheOrderBy: (...v) =>
38
41
  `(en) Please respond to the order by ${v[0]}`,
39
42
  review: `(en) Review`,
43
+ reviewed: `(en) Reviewed`,
40
44
  reviewTitle: `(en) Review title`,
41
45
  reason: `(en) Reason`,
42
46
  yourOrderIncludesXRevisionS: (...v) =>
@@ -53,7 +57,7 @@ export const text: text = {
53
57
  thisFieldIsOptional: `(en) This field is optional`,
54
58
  thisCannotBeUndone: `(en) This cannot be undone`,
55
59
  ensureYouveUploadedTheFinalVersion: `(en) Ensure you've uploaded the final version before submitting`,
56
- theSellerHasUploadedTheseFilesForYou: `(en) The seller has uploaded these files for you. Download them below!`,
60
+ theSellerHasUploadedTheseFilesForYou: `(en) The seller has uploaded these files for you`,
57
61
  pleaseUploadOnlyFinishedWorkHereMaximumFiles: `(en) Please upload only finished work here`,
58
62
  allWIPRelatedFilesShouldBeUploadedInMessages: `(en) All WIP-related files should be uploaded in messages`,
59
63
  unfortunatelyTheSellerHadToCancelThisOrder: (...v) =>
package/src/vietnamese.ts CHANGED
@@ -6,6 +6,8 @@ export const text: text = {
6
6
  allFilesYouUploadHereWillBeAvailableToTheBuyer: `(en) All files you upload here will be available to the buyer`,
7
7
  bigAppreciationToTheSellerForTheirHardWork: `(en) Big appreciation to the seller for their hard work`,
8
8
  buyerReviewedTheOrder: `(en) Buyer reviewed the order`,
9
+ buyerHasNotLeftAReviewYet: `(en) Buyer has not left a review yet`,
10
+ feedbackReceived: `(en) Feedback received!`,
9
11
  beforeAcceptingPleaseReviewTheBuyersRequestCarefully: `(en) Before accepting, please review the buyer's request carefully`,
10
12
  checkOutMyShop: `(en) Check out my shop`,
11
13
  commercialUseAllowed: `(en) Commercial use allowed`,
@@ -14,6 +16,7 @@ export const text: text = {
14
16
  createAShopWithStripe: `(en) Create a shop with Stripe`,
15
17
  createdBy: `(en) Created by`,
16
18
  download: `(en) Dowload`,
19
+ downloadThemBelow: `(en) Download them below`,
17
20
  describeTheDetailsOfYourExtra: `(en) Describe the details of your extra`,
18
21
  enjoyYourPurchase: `(en) Enjoy your purchase! 😊`,
19
22
  extrasAreOptionalAddOnsToEnhanceYourProduct: `(en) Extras are optional add-ons to enhance your product`,
@@ -37,6 +40,7 @@ export const text: text = {
37
40
  pleaseRespondToTheOrderBy: (...v) =>
38
41
  `(en) Please respond to the order by ${v[0]}`,
39
42
  review: `(en) Review`,
43
+ reviewed: `(en) Reviewed`,
40
44
  reviewTitle: `(en) Review title`,
41
45
  reason: `(en) Reason`,
42
46
  yourOrderIncludesXRevisionS: (...v) =>
@@ -53,7 +57,7 @@ export const text: text = {
53
57
  thisFieldIsOptional: `(en) This field is optional`,
54
58
  thisCannotBeUndone: `(en) This cannot be undone`,
55
59
  ensureYouveUploadedTheFinalVersion: `(en) Ensure you've uploaded the final version before submitting`,
56
- theSellerHasUploadedTheseFilesForYou: `(en) The seller has uploaded these files for you. Download them below!`,
60
+ theSellerHasUploadedTheseFilesForYou: `(en) The seller has uploaded these files for you`,
57
61
  pleaseUploadOnlyFinishedWorkHereMaximumFiles: `(en) Please upload only finished work here`,
58
62
  allWIPRelatedFilesShouldBeUploadedInMessages: `(en) All WIP-related files should be uploaded in messages`,
59
63
  unfortunatelyTheSellerHadToCancelThisOrder: (...v) =>