From 40ff3ebd7ccdbd9e31a2c5541017f2a4c801583c Mon Sep 17 00:00:00 2001 From: dev-natalya <37357918+dev-natalya@users.noreply.github.com> Date: Fri, 17 May 2024 22:38:17 +0500 Subject: [PATCH] ADDED: order related sentences --- src/arabic-standard.ts | 3 +++ src/chinese-simplified.ts | 3 +++ src/english.ts | 4 ++++ src/french.ts | 3 +++ src/german.ts | 3 +++ src/hindi.ts | 3 +++ src/indonesian.ts | 3 +++ src/japanese.ts | 3 +++ src/korean.ts | 3 +++ src/portuguese.ts | 3 +++ src/russian.ts | 9 ++++++--- src/spanish.ts | 3 +++ src/thai.ts | 3 +++ src/vietnamese.ts | 3 +++ 14 files changed, 46 insertions(+), 3 deletions(-) diff --git a/src/arabic-standard.ts b/src/arabic-standard.ts index 7e797b6..ff08967 100644 --- a/src/arabic-standard.ts +++ b/src/arabic-standard.ts @@ -9,6 +9,7 @@ export const text: text = { deleteShop: `(en) Delete shop`, decline: `(en) Decline`, haveAnyQuestions: `(en) Have any questions?`, + usernameHasCanceledTheOrder: (...v) => `(en) ${v[0]} has canceled the order`, lackOfInformation: `(en) Lack of information`, letsUploadYourFirstProduct: `(en) Let's upload your first product`, notAcceptingOrders: `(en) Not accepting orders`, @@ -27,6 +28,8 @@ export const text: text = { viewReview: `(en) View review`, weWouldLoveToHearFromYou: `(en) We would love to hear from you`, leaveAReview: `(en) Leave a review`, + youReceivedANewOrderFrom: (...v) => + `(en) You received a new order from ${v[0]}`, youHaveSuccessfullyCreatedYourShop: `(en) You have successfully created your shop`, couldYouPleaseProvideTheReasonForTheCancellation: `(en) Could you please provide the reason for the cancellation`, yourFeedbackWouldBeGreatlyAppreciated: `(en) Your feedback would be greatly appreciated`, diff --git a/src/chinese-simplified.ts b/src/chinese-simplified.ts index 0cef972..2c7ef96 100644 --- a/src/chinese-simplified.ts +++ b/src/chinese-simplified.ts @@ -9,6 +9,7 @@ export const text: text = { deleteShop: `(en) Delete shop`, decline: `(en) Decline`, haveAnyQuestions: `(en) Have any questions?`, + usernameHasCanceledTheOrder: (...v) => `(en) ${v[0]} has canceled the order`, lackOfInformation: `(en) Lack of information`, letsUploadYourFirstProduct: `(en) Let's upload your first product`, notAcceptingOrders: `(en) Not accepting orders`, @@ -27,6 +28,8 @@ export const text: text = { viewReview: `(en) View review`, weWouldLoveToHearFromYou: `(en) We would love to hear from you`, leaveAReview: `(en) Leave a review`, + youReceivedANewOrderFrom: (...v) => + `(en) You received a new order from ${v[0]}`, youHaveSuccessfullyCreatedYourShop: `(en) You have successfully created your shop`, couldYouPleaseProvideTheReasonForTheCancellation: `(en) Could you please provide the reason for the cancellation`, yourFeedbackWouldBeGreatlyAppreciated: `(en) Your feedback would be greatly appreciated`, diff --git a/src/english.ts b/src/english.ts index 7160d6e..7ee0061 100644 --- a/src/english.ts +++ b/src/english.ts @@ -161,6 +161,8 @@ export const text = { guestView: `Guest view`, harassment: `Harassment`, haveAnyQuestions: `Have any questions?`, + usernameHasCanceledTheOrder: (username: string) => + `${username} has canceled the order`, hasNotAddedADescriptionFor: (username: string, title: string) => `@${username} has not added a description for "${title}"`, hasNotSharedAnyPublicDetailsYet: (username: string) => @@ -406,6 +408,8 @@ export const text = { wrongEmailOrPassword: `Wrong email or password`, yes: `yes`, yesterday: `Yesterday`, + youReceivedANewOrderFrom: (username: string) => + `You received a new order from ${username}`, youHaveSuccessfullyCreatedYourShop: `You have successfully created your shop`, youAreAlreadyAuthenticated: `You are already authenticated`, youCanAutoPublishToYourSocialMediaAccount: `You can auto publish to your social media account`, diff --git a/src/french.ts b/src/french.ts index aaed0b0..fc14576 100644 --- a/src/french.ts +++ b/src/french.ts @@ -9,6 +9,7 @@ export const text: text = { deleteShop: `(en) Delete shop`, decline: `(en) Decline`, haveAnyQuestions: `(en) Have any questions?`, + usernameHasCanceledTheOrder: (...v) => `(en) ${v[0]} has canceled the order`, lackOfInformation: `(en) Lack of information`, letsUploadYourFirstProduct: `(en) Let's upload your first product`, notAcceptingOrders: `(en) Not accepting orders`, @@ -27,6 +28,8 @@ export const text: text = { viewReview: `(en) View review`, weWouldLoveToHearFromYou: `(en) We would love to hear from you`, leaveAReview: `(en) Leave a review`, + youReceivedANewOrderFrom: (...v) => + `(en) You received a new order from ${v[0]}`, youHaveSuccessfullyCreatedYourShop: `(en) You have successfully created your shop`, couldYouPleaseProvideTheReasonForTheCancellation: `(en) Could you please provide the reason for the cancellation`, yourFeedbackWouldBeGreatlyAppreciated: `(en) Your feedback would be greatly appreciated`, diff --git a/src/german.ts b/src/german.ts index 25ebd9d..6d3f338 100644 --- a/src/german.ts +++ b/src/german.ts @@ -9,6 +9,7 @@ export const text: text = { deleteShop: `(en) Delete shop`, decline: `(en) Decline`, haveAnyQuestions: `(en) Have any questions?`, + usernameHasCanceledTheOrder: (...v) => `(en) ${v[0]} has canceled the order`, lackOfInformation: `(en) Lack of information`, letsUploadYourFirstProduct: `(en) Let's upload your first product`, notAcceptingOrders: `(en) Not accepting orders`, @@ -27,6 +28,8 @@ export const text: text = { viewReview: `(en) View review`, weWouldLoveToHearFromYou: `(en) We would love to hear from you`, leaveAReview: `(en) Leave a review`, + youReceivedANewOrderFrom: (...v) => + `(en) You received a new order from ${v[0]}`, youHaveSuccessfullyCreatedYourShop: `(en) You have successfully created your shop`, couldYouPleaseProvideTheReasonForTheCancellation: `(en) Could you please provide the reason for the cancellation`, yourFeedbackWouldBeGreatlyAppreciated: `(en) Your feedback would be greatly appreciated`, diff --git a/src/hindi.ts b/src/hindi.ts index 78f77d8..4ff1fc7 100644 --- a/src/hindi.ts +++ b/src/hindi.ts @@ -9,6 +9,7 @@ export const text: text = { deleteShop: `(en) Delete shop`, decline: `(en) Decline`, haveAnyQuestions: `(en) Have any questions?`, + usernameHasCanceledTheOrder: (...v) => `(en) ${v[0]} has canceled the order`, lackOfInformation: `(en) Lack of information`, letsUploadYourFirstProduct: `(en) Let's upload your first product`, notAcceptingOrders: `(en) Not accepting orders`, @@ -27,6 +28,8 @@ export const text: text = { viewReview: `(en) View review`, weWouldLoveToHearFromYou: `(en) We would love to hear from you`, leaveAReview: `(en) Leave a review`, + youReceivedANewOrderFrom: (...v) => + `(en) You received a new order from ${v[0]}`, youHaveSuccessfullyCreatedYourShop: `(en) You have successfully created your shop`, couldYouPleaseProvideTheReasonForTheCancellation: `(en) Could you please provide the reason for the cancellation`, yourFeedbackWouldBeGreatlyAppreciated: `(en) Your feedback would be greatly appreciated`, diff --git a/src/indonesian.ts b/src/indonesian.ts index e933e2e..6fa1e87 100644 --- a/src/indonesian.ts +++ b/src/indonesian.ts @@ -9,6 +9,7 @@ export const text: text = { deleteShop: `(en) Delete shop`, decline: `(en) Decline`, haveAnyQuestions: `(en) Have any questions?`, + usernameHasCanceledTheOrder: (...v) => `(en) ${v[0]} has canceled the order`, lackOfInformation: `(en) Lack of information`, letsUploadYourFirstProduct: `(en) Let's upload your first product`, notAcceptingOrders: `(en) Not accepting orders`, @@ -27,6 +28,8 @@ export const text: text = { viewReview: `(en) View review`, weWouldLoveToHearFromYou: `(en) We would love to hear from you`, leaveAReview: `(en) Leave a review`, + youReceivedANewOrderFrom: (...v) => + `(en) You received a new order from ${v[0]}`, youHaveSuccessfullyCreatedYourShop: `(en) You have successfully created your shop`, couldYouPleaseProvideTheReasonForTheCancellation: `(en) Could you please provide the reason for the cancellation`, yourFeedbackWouldBeGreatlyAppreciated: `(en) Your feedback would be greatly appreciated`, diff --git a/src/japanese.ts b/src/japanese.ts index 33c69ca..fe05bc9 100644 --- a/src/japanese.ts +++ b/src/japanese.ts @@ -9,6 +9,7 @@ export const text: text = { deleteShop: `(en) Delete shop`, decline: `(en) Decline`, haveAnyQuestions: `(en) Have any questions?`, + usernameHasCanceledTheOrder: (...v) => `(en) ${v[0]} has canceled the order`, lackOfInformation: `(en) Lack of information`, letsUploadYourFirstProduct: `(en) Let's upload your first product`, notAcceptingOrders: `(en) Not accepting orders`, @@ -27,6 +28,8 @@ export const text: text = { viewReview: `(en) View review`, weWouldLoveToHearFromYou: `(en) We would love to hear from you`, leaveAReview: `(en) Leave a review`, + youReceivedANewOrderFrom: (...v) => + `(en) You received a new order from ${v[0]}`, youHaveSuccessfullyCreatedYourShop: `(en) You have successfully created your shop`, couldYouPleaseProvideTheReasonForTheCancellation: `(en) Could you please provide the reason for the cancellation`, yourFeedbackWouldBeGreatlyAppreciated: `(en) Your feedback would be greatly appreciated`, diff --git a/src/korean.ts b/src/korean.ts index 8ce90f4..6bab0e0 100644 --- a/src/korean.ts +++ b/src/korean.ts @@ -9,6 +9,7 @@ export const text: text = { deleteShop: `(en) Delete shop`, decline: `(en) Decline`, haveAnyQuestions: `(en) Have any questions?`, + usernameHasCanceledTheOrder: (...v) => `(en) ${v[0]} has canceled the order`, lackOfInformation: `(en) Lack of information`, letsUploadYourFirstProduct: `(en) Let's upload your first product`, notAcceptingOrders: `(en) Not accepting orders`, @@ -27,6 +28,8 @@ export const text: text = { viewReview: `(en) View review`, weWouldLoveToHearFromYou: `(en) We would love to hear from you`, leaveAReview: `(en) Leave a review`, + youReceivedANewOrderFrom: (...v) => + `(en) You received a new order from ${v[0]}`, youHaveSuccessfullyCreatedYourShop: `(en) You have successfully created your shop`, couldYouPleaseProvideTheReasonForTheCancellation: `(en) Could you please provide the reason for the cancellation`, yourFeedbackWouldBeGreatlyAppreciated: `(en) Your feedback would be greatly appreciated`, diff --git a/src/portuguese.ts b/src/portuguese.ts index 83afe25..0843a0e 100644 --- a/src/portuguese.ts +++ b/src/portuguese.ts @@ -9,6 +9,7 @@ export const text: text = { deleteShop: `(en) Delete shop`, decline: `(en) Decline`, haveAnyQuestions: `(en) Have any questions?`, + usernameHasCanceledTheOrder: (...v) => `(en) ${v[0]} has canceled the order`, lackOfInformation: `(en) Lack of information`, letsUploadYourFirstProduct: `(en) Let's upload your first product`, notAcceptingOrders: `(en) Not accepting orders`, @@ -27,6 +28,8 @@ export const text: text = { viewReview: `(en) View review`, weWouldLoveToHearFromYou: `(en) We would love to hear from you`, leaveAReview: `(en) Leave a review`, + youReceivedANewOrderFrom: (...v) => + `(en) You received a new order from ${v[0]}`, youHaveSuccessfullyCreatedYourShop: `(en) You have successfully created your shop`, couldYouPleaseProvideTheReasonForTheCancellation: `(en) Could you please provide the reason for the cancellation`, yourFeedbackWouldBeGreatlyAppreciated: `(en) Your feedback would be greatly appreciated`, diff --git a/src/russian.ts b/src/russian.ts index d026fcb..5fc3ab7 100644 --- a/src/russian.ts +++ b/src/russian.ts @@ -1,7 +1,7 @@ export const text: text = { - contactUs: `Свяжитесь с нами`, - haveAnyQuestions: `У Вас есть вопросы?`, - weWouldLoveToHearFromYou: `Будем рады обратной связи от вас`, + usernameHasCanceledTheOrder: (...v) => `(en) ${v[0]} has canceled the order`, + youReceivedANewOrderFrom: (...v) => + `(en) You received a new order from ${v[0]}`, _colon: `: `, _comma: `, `, _dot: `. `, @@ -92,6 +92,7 @@ export const text: text = { contactInformation: `Контактная информация`, contactSeller: `Связаться с продавцом`, contactSupport: `Связаться со службой поддержки`, + contactUs: `Свяжитесь с нами`, continue: `Продолжить`, contractTitle: `Название контракта`, copyLink: `Скопировать ссылку`, @@ -162,6 +163,7 @@ export const text: text = { getStarted: `Начать`, guestView: `Гостевой просмотр`, harassment: `Домогательство`, + haveAnyQuestions: `У Вас есть вопросы?`, hasNotAddedADescriptionFor: (...v) => `@${v[0]} не добавил описание для "${v[1]}"`, hasNotSharedAnyPublicDetailsYet: (...v) => @@ -396,6 +398,7 @@ export const text: text = { weSentYouANewVerificationEmailPleaseEnterTheCode: `Мы отправили вам новый email с подтверждением. Введите код`, weSupportOnlyTheFollowingFileExtensions: `Мы поддерживаем только следующие расширения файлов:`, work: `Работа`, + weWouldLoveToHearFromYou: `Будем рады обратной связи от вас`, workDescription: `Описание работы`, leaveAReview: `Оставить отзыв`, wrongEmailOrPassword: `Неправильный email или пароль`, diff --git a/src/spanish.ts b/src/spanish.ts index 6c0a7a6..abeeb82 100644 --- a/src/spanish.ts +++ b/src/spanish.ts @@ -9,6 +9,7 @@ export const text: text = { deleteShop: `(en) Delete shop`, decline: `(en) Decline`, haveAnyQuestions: `(en) Have any questions?`, + usernameHasCanceledTheOrder: (...v) => `(en) ${v[0]} has canceled the order`, lackOfInformation: `(en) Lack of information`, letsUploadYourFirstProduct: `(en) Let's upload your first product`, notAcceptingOrders: `(en) Not accepting orders`, @@ -27,6 +28,8 @@ export const text: text = { viewReview: `(en) View review`, weWouldLoveToHearFromYou: `(en) We would love to hear from you`, leaveAReview: `(en) Leave a review`, + youReceivedANewOrderFrom: (...v) => + `(en) You received a new order from ${v[0]}`, youHaveSuccessfullyCreatedYourShop: `(en) You have successfully created your shop`, couldYouPleaseProvideTheReasonForTheCancellation: `(en) Could you please provide the reason for the cancellation`, yourFeedbackWouldBeGreatlyAppreciated: `(en) Your feedback would be greatly appreciated`, diff --git a/src/thai.ts b/src/thai.ts index 5fa32e6..0a4cb6c 100644 --- a/src/thai.ts +++ b/src/thai.ts @@ -9,6 +9,7 @@ export const text: text = { deleteShop: `(en) Delete shop`, decline: `(en) Decline`, haveAnyQuestions: `(en) Have any questions?`, + usernameHasCanceledTheOrder: (...v) => `(en) ${v[0]} has canceled the order`, lackOfInformation: `(en) Lack of information`, letsUploadYourFirstProduct: `(en) Let's upload your first product`, notAcceptingOrders: `(en) Not accepting orders`, @@ -27,6 +28,8 @@ export const text: text = { viewReview: `(en) View review`, weWouldLoveToHearFromYou: `(en) We would love to hear from you`, leaveAReview: `(en) Leave a review`, + youReceivedANewOrderFrom: (...v) => + `(en) You received a new order from ${v[0]}`, youHaveSuccessfullyCreatedYourShop: `(en) You have successfully created your shop`, couldYouPleaseProvideTheReasonForTheCancellation: `(en) Could you please provide the reason for the cancellation`, yourFeedbackWouldBeGreatlyAppreciated: `(en) Your feedback would be greatly appreciated`, diff --git a/src/vietnamese.ts b/src/vietnamese.ts index 67f48b6..ddb474e 100644 --- a/src/vietnamese.ts +++ b/src/vietnamese.ts @@ -9,6 +9,7 @@ export const text: text = { deleteShop: `(en) Delete shop`, decline: `(en) Decline`, haveAnyQuestions: `(en) Have any questions?`, + usernameHasCanceledTheOrder: (...v) => `(en) ${v[0]} has canceled the order`, lackOfInformation: `(en) Lack of information`, letsUploadYourFirstProduct: `(en) Let's upload your first product`, notAcceptingOrders: `(en) Not accepting orders`, @@ -27,6 +28,8 @@ export const text: text = { viewReview: `(en) View review`, weWouldLoveToHearFromYou: `(en) We would love to hear from you`, leaveAReview: `(en) Leave a review`, + youReceivedANewOrderFrom: (...v) => + `(en) You received a new order from ${v[0]}`, youHaveSuccessfullyCreatedYourShop: `(en) You have successfully created your shop`, couldYouPleaseProvideTheReasonForTheCancellation: `(en) Could you please provide the reason for the cancellation`, yourFeedbackWouldBeGreatlyAppreciated: `(en) Your feedback would be greatly appreciated`,