From 7bfd424a646839c01117a98bdf2d246f17736fa3 Mon Sep 17 00:00:00 2001 From: "makabe.t" Date: Fri, 19 Apr 2024 02:14:05 +0000 Subject: [PATCH] =?UTF-8?q?Merged=20PR=20875:=20=E3=83=A1=E3=83=BC?= =?UTF-8?q?=E3=83=AB=E3=81=AE=E5=A4=9A=E8=A8=80=E8=AA=9E=E5=AF=BE=E5=BF=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## 概要 [Task3859: メールの多言語対応](https://paruru.nds-tyo.co.jp:8443/tfs/ReciproCollection/fa4924a4-d079-4fab-9fb5-a9a11eb205f0/_workitems/edit/3859) - メールの文面を各言語版に置き換えました。 - アカウント情報消去完了通知 [U-111]  - ユーザー一括登録 受付通知 [U-120]  - ユーザー一括登録 完了通知 [U-121]  - ユーザー一括登録 失敗通知 [U-122]  - パートナーアカウント情報消去完了通知 [U-123]  ## レビューポイント - 対応メールは適切でしょうか? - メール文面は適切でしょうか? - 反映内容は適切でしょうか? ## UIの変更 - なし ## クエリの変更 - なし ## 動作確認状況 - ローカルで確認 - 行った修正がデグレを発生させていないことを確認できるか - 具体的にどのような確認をしたか - ローカル確認、マージ後にdevelop動作確認 --- .../accounts/accounts.service.spec.ts | 6 +- .../src/gateways/sendgrid/sendgrid.service.ts | 8 +- .../src/templates/template_U_111.html | 135 +++++----- .../src/templates/template_U_111.txt | 8 +- .../src/templates/template_U_120.html | 156 ++++++------ .../src/templates/template_U_120.txt | 63 ++--- .../templates/template_U_120_no_parent.html | 135 +++++----- .../templates/template_U_120_no_parent.txt | 57 ++--- .../src/templates/template_U_121.html | 141 +++++----- .../src/templates/template_U_121.txt | 50 ++-- .../templates/template_U_121_no_parent.html | 120 +++++---- .../templates/template_U_121_no_parent.txt | 44 ++-- .../src/templates/template_U_122.html | 240 ++++++++++-------- .../src/templates/template_U_122.txt | 80 +++--- .../templates/template_U_122_no_parent.html | 219 +++++++++------- .../templates/template_U_122_no_parent.txt | 74 +++--- .../src/templates/template_U_123.html | 125 +++++---- .../src/templates/template_U_123.txt | 32 +-- 18 files changed, 885 insertions(+), 808 deletions(-) diff --git a/dictation_server/src/features/accounts/accounts.service.spec.ts b/dictation_server/src/features/accounts/accounts.service.spec.ts index cd50a2f..190d524 100644 --- a/dictation_server/src/features/accounts/accounts.service.spec.ts +++ b/dictation_server/src/features/accounts/accounts.service.spec.ts @@ -8544,7 +8544,7 @@ describe('deletePartnerAccount', () => { expect(templateFileRecord.length).toBe(0); // パートナーアカウント削除完了通知が送信されていること - expect(_subject).toBe('パートナーアカウント情報消去完了通知 [U-123]'); + expect(_subject).toBe('Partner Account Deleted Notification [U-123]'); } }); it('パートナーアカウントの親が実行者でない場合、エラーとなること', async () => { @@ -9052,7 +9052,7 @@ describe('deletePartnerAccount', () => { expect(templateFileRecord.length).toBe(0); // パートナーアカウント削除完了通知が送信されていること - expect(_subject).toBe('パートナーアカウント情報消去完了通知 [U-123]'); + expect(_subject).toBe('Partner Account Deleted Notification [U-123]'); // 手動復旧が必要なエラーログが出力されていること expect(logs.some((x) => x.startsWith(MANUAL_RECOVERY_REQUIRED))).toBe( @@ -9258,7 +9258,7 @@ describe('deletePartnerAccount', () => { expect(templateFileRecord.length).toBe(0); // パートナーアカウント削除完了通知が送信されていること - expect(_subject).toBe('パートナーアカウント情報消去完了通知 [U-123]'); + expect(_subject).toBe('Partner Account Deleted Notification [U-123]'); // 手動復旧が必要なエラーログが出力されていること expect(logs.some((x) => x.startsWith(MANUAL_RECOVERY_REQUIRED))).toBe( diff --git a/dictation_server/src/gateways/sendgrid/sendgrid.service.ts b/dictation_server/src/gateways/sendgrid/sendgrid.service.ts index f5c219b..b399326 100644 --- a/dictation_server/src/gateways/sendgrid/sendgrid.service.ts +++ b/dictation_server/src/gateways/sendgrid/sendgrid.service.ts @@ -1252,7 +1252,7 @@ export class SendGridService { `[IN] [${context.getTrackingId()}] ${this.sendMailWithU120.name}`, ); try { - const subject = 'ユーザー一括登録 受付通知 [U-120]'; + const subject = 'User Bulk Registration Received Notification [U-120]'; let html: string; let text: string; @@ -1319,7 +1319,7 @@ export class SendGridService { `[IN] [${context.getTrackingId()}] ${this.sendMailWithU121.name}`, ); try { - const subject = 'ユーザー一括登録 完了通知 [U-121]'; + const subject = 'User Bulk Registration Completed Notification [U-121]'; let html: string; let text: string; @@ -1400,7 +1400,7 @@ export class SendGridService { ? 'エラーはありません' : otherErrors.map((x) => `L${x}`).join(', '); - const subject = 'ユーザー一括登録 失敗通知 [U-122]'; + const subject = 'User Bulk Registration Failed Notification [U-122]'; let html: string; let text: string; @@ -1470,7 +1470,7 @@ export class SendGridService { `[IN] [${context.getTrackingId()}] ${this.sendMailWithU123.name}`, ); try { - const subject = 'パートナーアカウント情報消去完了通知 [U-123]'; + const subject = 'Partner Account Deleted Notification [U-123]'; const html = this.templateU123Html .replaceAll(CUSTOMER_NAME, partnerAccountName) diff --git a/dictation_server/src/templates/template_U_111.html b/dictation_server/src/templates/template_U_111.html index ae7fb1d..b074cfd 100644 --- a/dictation_server/src/templates/template_U_111.html +++ b/dictation_server/src/templates/template_U_111.html @@ -1,69 +1,68 @@ - - Account Deleted Notification [U-111] - - -
-

<English>

-

Dear $CUSTOMER_NAME$, -> $PRIMARY_ADMIN_NAME$

-

- Thank you for using ODMS Cloud. Your account, including all information - has been deleted from the ODMS Cloud. -

-

- If you wish to use ODMS Cloud again, you will need to register your - account information again and order annual licenses from an OM Digital - Solutions authorized dealer.
- URL: $TOP_URL$ -

-

- If you have received this e-mail in error, please delete this e-mail - from your system.
- This is an automatically generated e-mail and this mailbox is not - monitored. Please do not reply. -

-
-
-

<Deutsch>

-

Sehr geehrte(r) $CUSTOMER_NAME$, -> $PRIMARY_ADMIN_NAME$

-

- Vielen Dank, dass Sie ODMS Cloud nutzen. Ihr Konto, einschließlich aller - Informationen, wurde aus der ODMS Cloud gelöscht. -

-

- Wenn Sie ODMS Cloud erneut nutzen möchten, müssen Sie Ihre - Kontoinformationen erneut registrieren und Jahreslizenzen bei einem - autorisierten OM Digital Solutions-Händler bestellen.
- URL: $TOP_URL$ -

-

- Wenn Sie diese E-Mail irrtümlich erhalten haben, löschen Sie diese - E-Mail bitte aus Ihrem System.
- Dies ist eine automatisch generierte - E-Mail und diese Mailbox wird nicht überwacht. Bitte antworten Sie - nicht. -

-

-
-
-

<Français>

-

Chère/Cher $CUSTOMER_NAME$, -> $PRIMARY_ADMIN_NAME$

-

- Merci d'utiliser ODMS Cloud. Votre compte, y compris toutes les - informations, a été supprimé du cloud ODMS. -

-

- Si vous souhaitez utiliser à nouveau ODMS Cloud, vous devrez à nouveau - enregistrer les informations de votre compte et commander des licences - annuelles auprès d'un concessionnaire agréé OM Digital Solutions.
- URL: $TOP_URL$ -

-

- Si vous avez reçu cet e-mail par erreur, veuillez supprimer cet e-mail - de votre système.
- Il s'agit d'un e-mail généré automatiquement et cette boîte aux lettres - n'est pas surveillée. Merci de ne pas répondre. -

-
- - + + + Account Deleted Notification [U-111] + + + +
+

<English>

+

+ Dear $CUSTOMER_NAME$, -> $PRIMARY_ADMIN_NAME$ +

+

+ Thank you for using the ODMS Cloud. Your account, including all information has been deleted from the ODMS Cloud. +

+

+ If you wish to use ODMS Cloud again, you will need to register your account information again and order annual + licenses from an OM SYSTEM authorized dealer.
+ URL: $TOP_URL$ +

+

+ If you have received this e-mail in error, please delete this e-mail from your system.
+ This is an automatically generated e-mail and this mailbox is not monitored. Please do not reply. +

+
+
+

<Deutsch>

+

+ Sehr geehrte(r) $CUSTOMER_NAME$, -> $PRIMARY_ADMIN_NAME$ +

+

+ Vielen Dank, dass Sie ODMS Cloud nutzen. Ihr Konto, einschließlich aller Informationen, wurde aus der ODMS Cloud + gelöscht. +

+

+ Wenn Sie ODMS Cloud erneut nutzen möchten, müssen Sie Ihre Kontoinformationen erneut registrieren und + Jahreslizenzen + bei einem autorisierten OM SYSTEM-Händler bestellen.
+ URL: $TOP_URL$ +

+

+ Wenn Sie diese E-Mail irrtümlich erhalten haben, löschen Sie diese E-Mail bitte aus Ihrem System.
+ Dies ist eine automatisch generierte E-Mail und diese Mailbox wird nicht überwacht. Bitte antworten Sie nicht. +

+
+
+

<Français>

+

+ Chère/Cher $CUSTOMER_NAME$, -> $PRIMARY_ADMIN_NAME$ +

+

+ Merci d'utiliser ODMS Cloud. Votre compte, y compris toutes les informations, a été supprimé du cloud ODMS. +

+

+ Si vous souhaitez utiliser à nouveau ODMS Cloud, vous devrez à nouveau enregistrer les informations de votre + compte et + commander des licences annuelles auprès d'un concessionnaire agréé OM SYSTEM.
+ URL: $TOP_URL$ +

+

+ Si vous avez reçu cet e-mail par erreur, veuillez supprimer cet e-mail de votre système.
+ Il s'agit d'un e-mail généré automatiquement et cette boîte aux lettres n'est pas surveillée. Merci de ne pas + répondre. +

+
+ + + \ No newline at end of file diff --git a/dictation_server/src/templates/template_U_111.txt b/dictation_server/src/templates/template_U_111.txt index f91b490..8dcb096 100644 --- a/dictation_server/src/templates/template_U_111.txt +++ b/dictation_server/src/templates/template_U_111.txt @@ -2,9 +2,9 @@ Dear $CUSTOMER_NAME$, -> $PRIMARY_ADMIN_NAME$ -Thank you for using ODMS Cloud. Your account, including all information has been deleted from the ODMS Cloud. +Thank you for using the ODMS Cloud. Your account, including all information has been deleted from the ODMS Cloud. -If you wish to use ODMS Cloud again, you will need to register your account information again and order annual licenses from an OM Digital Solutions authorized dealer. +If you wish to use ODMS Cloud again, you will need to register your account information again and order annual licenses from an OM SYSTEM authorized dealer. URL: $TOP_URL$ If you have received this e-mail in error, please delete this e-mail from your system. @@ -16,7 +16,7 @@ Sehr geehrte(r) $CUSTOMER_NAME$, -> $PRIMARY_ADMIN_NAME$ Vielen Dank, dass Sie ODMS Cloud nutzen. Ihr Konto, einschließlich aller Informationen, wurde aus der ODMS Cloud gelöscht. -Wenn Sie ODMS Cloud erneut nutzen möchten, müssen Sie Ihre Kontoinformationen erneut registrieren und Jahreslizenzen bei einem autorisierten OM Digital Solutions-Händler bestellen. +Wenn Sie ODMS Cloud erneut nutzen möchten, müssen Sie Ihre Kontoinformationen erneut registrieren und Jahreslizenzen bei einem autorisierten OM SYSTEM-Händler bestellen. URL: $TOP_URL$ Wenn Sie diese E-Mail irrtümlich erhalten haben, löschen Sie diese E-Mail bitte aus Ihrem System. @@ -28,7 +28,7 @@ Chère/Cher $CUSTOMER_NAME$, -> $PRIMARY_ADMIN_NAME$ Merci d'utiliser ODMS Cloud. Votre compte, y compris toutes les informations, a été supprimé du cloud ODMS. -Si vous souhaitez utiliser à nouveau ODMS Cloud, vous devrez à nouveau enregistrer les informations de votre compte et commander des licences annuelles auprès d'un concessionnaire agréé OM Digital Solutions. +Si vous souhaitez utiliser à nouveau ODMS Cloud, vous devrez à nouveau enregistrer les informations de votre compte et commander des licences annuelles auprès d'un concessionnaire agréé OM SYSTEM. URL: $TOP_URL$ Si vous avez reçu cet e-mail par erreur, veuillez supprimer cet e-mail de votre système. diff --git a/dictation_server/src/templates/template_U_120.html b/dictation_server/src/templates/template_U_120.html index b4b4e75..3f5c3ad 100644 --- a/dictation_server/src/templates/template_U_120.html +++ b/dictation_server/src/templates/template_U_120.html @@ -1,80 +1,80 @@ - - ユーザー一括登録 受付通知 [U-120] - - -
-

<English>

-

Dear $CUSTOMER_NAME$,

-

ODMS Cloudをご利用いただきありがとうございます。

-

- CSVファイルによるユーザー一括登録を受け付けました。
- - リクエスト日時:$REQUEST_TIME$
- - SCVファイル名:$FILE_NAME$ -

-

- ・登録完了には時間がかかる場合がありますので少々お待ちください。
- ・登録完了通知は別途お送りします。
- ・CSVファイルの内容に間違いがある場合は登録を完了できません。 -

-

- ディーラーによるサポートが必要な場合は、 $DEALER_NAME$ - にお問い合わせください。 -

-

- If you received this e-mail in error, please delete this e-mail from - your system.
- This is an automatically generated e-mail, please do not reply. -

-
-
-

<Deutsch>

-

Dear $CUSTOMER_NAME$,

-

ODMS Cloudをご利用いただきありがとうございます。

-

- CSVファイルによるユーザー一括登録を受け付けました。
- - リクエスト日時:$REQUEST_TIME$
- - SCVファイル名:$FILE_NAME$ -

-

- ・登録完了には時間がかかる場合がありますので少々お待ちください。
- ・登録完了通知は別途お送りします。
- ・CSVファイルの内容に間違いがある場合は登録を完了できません。 -

-

- ディーラーによるサポートが必要な場合は、 $DEALER_NAME$ - にお問い合わせください。 -

-

- If you received this e-mail in error, please delete this e-mail from - your system.
- This is an automatically generated e-mail, please do not reply. -

-
-
-

<Français>

-

Dear $CUSTOMER_NAME$,

-

ODMS Cloudをご利用いただきありがとうございます。

-

- CSVファイルによるユーザー一括登録を受け付けました。
- - リクエスト日時:$REQUEST_TIME$
- - SCVファイル名:$FILE_NAME$ -

-

- ・登録完了には時間がかかる場合がありますので少々お待ちください。
- ・登録完了通知は別途お送りします。
- ・CSVファイルの内容に間違いがある場合は登録を完了できません。 -

-

- ディーラーによるサポートが必要な場合は、 $DEALER_NAME$ - にお問い合わせください。 -

-

- If you received this e-mail in error, please delete this e-mail from - your system.
- This is an automatically generated e-mail, please do not reply. -

-
- - + + User Bulk Registration Received Notification [U-120] + + + +
+

<English>

+

+ Dear $CUSTOMER_NAME$, +

+

+ We have received your bulk user registration request.
+ - Date and time: $REQUEST_TIME$
+ - SCV file name: $FILE_NAME$ +

+

+ ・Please wait until the registration is complete. This may take a few minutes to process.
+ ・Notification will be sent separately upon completion.
+ ・Registration cannot be completed if there are invalid values in the CSV file. +

+

+ If you need support regarding the ODMS Cloud, please contact $DEALER_NAME$. +

+

+ If you received this e-mail in error, please delete this e-mail from your system.
+ This is an automatically generated e-mail and this mailbox is not monitored. Please do not reply. +

+
+
+

<Deutsch>

+

+ Sehr geehrte(r) $CUSTOMER_NAME$, +

+

+ Wir haben Ihre Anfrage zur Massenbenutzerregistrierung erhalten.
+ - Datum und Uhrzeit: $REQUEST_TIME$
+ - SCV-Dateiname: $FILE_NAME$ +

+

+ ・Bitte warten Sie, bis die Registrierung abgeschlossen ist. Die Bearbeitung kann einige Minuten dauern.
+ ・Eine Benachrichtigung wird nach Abschluss separat verschickt.
+ ・Die Registrierung kann nicht abgeschlossen werden, wenn die CSV-Datei ungültige Werte enthält. +

+

+ Wenn Sie Unterstützung bezüglich ODMS Cloud benötigen, wenden Sie sich bitte an $DEALER_NAME$. +

+

+ Wenn Sie diese E-Mail irrtümlich erhalten haben, löschen Sie diese E-Mail bitte aus Ihrem System.
+ Dies ist eine automatisch generierte E-Mail und diese Mailbox wird nicht überwacht. Bitte antworten Sie nicht. +

+

+
+

<Français>

+

+ Chère/Cher $CUSTOMER_NAME$, +

+

+ Nous avons reçu votre demande d'enregistrement groupé d'utilisateur.
+ - Date et heure : $REQUEST_TIME$
+ - Nom du fichier SCV : $FILE_NAME$ +

+

+ ・Veuillez attendre que l'inscription soit terminée. Le traitement peut prendre quelques minutes.
+ ・Une notification sera envoyée séparément une fois terminée.
+ ・L'inscription ne peut pas être complétée s'il y a des valeurs invalides dans le fichier CSV. +

+

+ Si vous avez besoin d'assistance concernant ODMS Cloud, veuillez contacter $DEALER_NAME$. +

+

+ Si vous avez reçu cet e-mail par erreur, veuillez supprimer cet e-mail de votre système.
+ Il s'agit d'un e-mail généré automatiquement et cette boîte aux lettres n'est pas surveillée. Merci de ne pas + répondre. +

+
+ + + \ No newline at end of file diff --git a/dictation_server/src/templates/template_U_120.txt b/dictation_server/src/templates/template_U_120.txt index e8c68ec..e33e7e0 100644 --- a/dictation_server/src/templates/template_U_120.txt +++ b/dictation_server/src/templates/template_U_120.txt @@ -2,56 +2,49 @@ Dear $CUSTOMER_NAME$, -ODMS Cloudをご利用いただきありがとうございます。 +We have received your bulk user registration request. + - Date and time: $REQUEST_TIME$ + - SCV file name: $FILE_NAME$ -CSVファイルによるユーザー一括登録を受け付けました。 - - リクエスト日時:$REQUEST_TIME$ - - SCVファイル名:$FILE_NAME$ +・Please wait until the registration is complete. This may take a few minutes to process. +・Notification will be sent separately upon completion. +・Registration cannot be completed if there are invalid values in the CSV file. -・登録完了には時間がかかる場合がありますので少々お待ちください。 -・登録完了通知は別途お送りします。 -・CSVファイルの内容に間違いがある場合は登録を完了できません。 - -ディーラーによるサポートが必要な場合は、 $DEALER_NAME$ にお問い合わせください。 +If you need support regarding the ODMS Cloud, please contact $DEALER_NAME$. If you received this e-mail in error, please delete this e-mail from your system. -This is an automatically generated e-mail, please do not reply. - +This is an automatically generated e-mail and this mailbox is not monitored. Please do not reply. -Dear $CUSTOMER_NAME$, +Sehr geehrte(r) $CUSTOMER_NAME$, -ODMS Cloudをご利用いただきありがとうございます。 +Wir haben Ihre Anfrage zur Massenbenutzerregistrierung erhalten. + - Datum und Uhrzeit: $REQUEST_TIME$ + - SCV-Dateiname: $FILE_NAME$ -CSVファイルによるユーザー一括登録を受け付けました。 - - リクエスト日時:$REQUEST_TIME$ - - SCVファイル名:$FILE_NAME$ +・Bitte warten Sie, bis die Registrierung abgeschlossen ist. Die Bearbeitung kann einige Minuten dauern. +・Eine Benachrichtigung wird nach Abschluss separat verschickt. +・Die Registrierung kann nicht abgeschlossen werden, wenn die CSV-Datei ungültige Werte enthält. -・登録完了には時間がかかる場合がありますので少々お待ちください。 -・登録完了通知は別途お送りします。 -・CSVファイルの内容に間違いがある場合は登録を完了できません。 +Wenn Sie Unterstützung bezüglich ODMS Cloud benötigen, wenden Sie sich bitte an $DEALER_NAME$. -ディーラーによるサポートが必要な場合は、 $DEALER_NAME$ にお問い合わせください。 - -If you received this e-mail in error, please delete this e-mail from your system. -This is an automatically generated e-mail, please do not reply. +Wenn Sie diese E-Mail irrtümlich erhalten haben, löschen Sie diese E-Mail bitte aus Ihrem System. +Dies ist eine automatisch generierte E-Mail und diese Mailbox wird nicht überwacht. Bitte antworten Sie nicht. -Dear $CUSTOMER_NAME$, +Chère/Cher $CUSTOMER_NAME$, -ODMS Cloudをご利用いただきありがとうございます。 +Nous avons reçu votre demande d'enregistrement groupé d'utilisateur. + - Date et heure : $REQUEST_TIME$ + - Nom du fichier SCV : $FILE_NAME$ -CSVファイルによるユーザー一括登録を受け付けました。 - - リクエスト日時:$REQUEST_TIME$ - - SCVファイル名:$FILE_NAME$ +・Veuillez attendre que l'inscription soit terminée. Le traitement peut prendre quelques minutes. +・Une notification sera envoyée séparément une fois terminée. +・L'inscription ne peut pas être complétée s'il y a des valeurs invalides dans le fichier CSV. -・登録完了には時間がかかる場合がありますので少々お待ちください。 -・登録完了通知は別途お送りします。 -・CSVファイルの内容に間違いがある場合は登録を完了できません。 +Si vous avez besoin d'assistance concernant ODMS Cloud, veuillez contacter $DEALER_NAME$. -ディーラーによるサポートが必要な場合は、 $DEALER_NAME$ にお問い合わせください。 - -If you received this e-mail in error, please delete this e-mail from your system. -This is an automatically generated e-mail, please do not reply. \ No newline at end of file +Si vous avez reçu cet e-mail par erreur, veuillez supprimer cet e-mail de votre système. +Il s'agit d'un e-mail généré automatiquement et cette boîte aux lettres n'est pas surveillée. Merci de ne pas répondre. \ No newline at end of file diff --git a/dictation_server/src/templates/template_U_120_no_parent.html b/dictation_server/src/templates/template_U_120_no_parent.html index 692411d..730449c 100644 --- a/dictation_server/src/templates/template_U_120_no_parent.html +++ b/dictation_server/src/templates/template_U_120_no_parent.html @@ -1,68 +1,71 @@ - - ユーザー一括登録 受付通知 [U-120] - - -
-

<English>

-

Dear $CUSTOMER_NAME$,

-

ODMS Cloudをご利用いただきありがとうございます。

-

- CSVファイルによるユーザー一括登録を受け付けました。
- - リクエスト日時:$REQUEST_TIME$
- - SCVファイル名:$FILE_NAME$ -

-

- ・登録完了には時間がかかる場合がありますので少々お待ちください。
- ・登録完了通知は別途お送りします。
- ・CSVファイルの内容に間違いがある場合は登録を完了できません。 -

-

- If you received this e-mail in error, please delete this e-mail from - your system.
- This is an automatically generated e-mail, please do not reply. -

-
-
-

<Deutsch>

-

Dear $CUSTOMER_NAME$,

-

ODMS Cloudをご利用いただきありがとうございます。

-

- CSVファイルによるユーザー一括登録を受け付けました。
- - リクエスト日時:$REQUEST_TIME$
- - SCVファイル名:$FILE_NAME$ -

-

- ・登録完了には時間がかかる場合がありますので少々お待ちください。
- ・登録完了通知は別途お送りします。
- ・CSVファイルの内容に間違いがある場合は登録を完了できません。 -

-

- If you received this e-mail in error, please delete this e-mail from - your system.
- This is an automatically generated e-mail, please do not reply. -

-
-
-

<Français>

-

Dear $CUSTOMER_NAME$,

-

ODMS Cloudをご利用いただきありがとうございます。

-

- CSVファイルによるユーザー一括登録を受け付けました。
- - リクエスト日時:$REQUEST_TIME$
- - SCVファイル名:$FILE_NAME$ -

-

- ・登録完了には時間がかかる場合がありますので少々お待ちください。
- ・登録完了通知は別途お送りします。
- ・CSVファイルの内容に間違いがある場合は登録を完了できません。 -

-

- If you received this e-mail in error, please delete this e-mail from - your system.
- This is an automatically generated e-mail, please do not reply. -

-
- - + + User Bulk Registration Received Notification [U-120] + + + +
+

<English>

+

+ Dear $CUSTOMER_NAME$, +

+

+ We have received your bulk user registration request.
+ - Date and time: $REQUEST_TIME$
+ - SCV file name: $FILE_NAME$ +

+

+ ・Please wait until the registration is complete. This may take a few minutes to process.
+ ・Notification will be sent separately upon completion.
+ ・Registration cannot be completed if there are invalid values in the CSV file. +

+

+ If you received this e-mail in error, please delete this e-mail from your system.
+ This is an automatically generated e-mail and this mailbox is not monitored. Please do not reply. +

+
+
+

<Deutsch>

+

+ Sehr geehrte(r) $CUSTOMER_NAME$, +

+

+ Wir haben Ihre Anfrage zur Massenbenutzerregistrierung erhalten.
+ - Datum und Uhrzeit: $REQUEST_TIME$
+ - SCV-Dateiname: $FILE_NAME$ +

+

+ ・Bitte warten Sie, bis die Registrierung abgeschlossen ist. Die Bearbeitung kann einige Minuten dauern.
+ ・Eine Benachrichtigung wird nach Abschluss separat verschickt.
+ ・Die Registrierung kann nicht abgeschlossen werden, wenn die CSV-Datei ungültige Werte enthält. +

+

+ Wenn Sie diese E-Mail irrtümlich erhalten haben, löschen Sie diese E-Mail bitte aus Ihrem System.
+ Dies ist eine automatisch generierte E-Mail und diese Mailbox wird nicht überwacht. Bitte antworten Sie nicht. +

+

+
+

<Français>

+

+ Chère/Cher $CUSTOMER_NAME$, +

+

+ Nous avons reçu votre demande d'enregistrement groupé d'utilisateur.
+ - Date et heure : $REQUEST_TIME$
+ - Nom du fichier SCV : $FILE_NAME$ +

+

+ ・Veuillez attendre que l'inscription soit terminée. Le traitement peut prendre quelques minutes.
+ ・Une notification sera envoyée séparément une fois terminée.
+ ・L'inscription ne peut pas être complétée s'il y a des valeurs invalides dans le fichier CSV. +

+

+ Si vous avez reçu cet e-mail par erreur, veuillez supprimer cet e-mail de votre système.
+ Il s'agit d'un e-mail généré automatiquement et cette boîte aux lettres n'est pas surveillée. Merci de ne pas + répondre. +

+
+ + + \ No newline at end of file diff --git a/dictation_server/src/templates/template_U_120_no_parent.txt b/dictation_server/src/templates/template_U_120_no_parent.txt index fca8bcf..d5d85fa 100644 --- a/dictation_server/src/templates/template_U_120_no_parent.txt +++ b/dictation_server/src/templates/template_U_120_no_parent.txt @@ -2,50 +2,43 @@ Dear $CUSTOMER_NAME$, -ODMS Cloudをご利用いただきありがとうございます。 +We have received your bulk user registration request. + - Date and time: $REQUEST_TIME$ + - SCV file name: $FILE_NAME$ -CSVファイルによるユーザー一括登録を受け付けました。 - - リクエスト日時:$REQUEST_TIME$ - - SCVファイル名:$FILE_NAME$ - -・登録完了には時間がかかる場合がありますので少々お待ちください。 -・登録完了通知は別途お送りします。 -・CSVファイルの内容に間違いがある場合は登録を完了できません。 +・Please wait until the registration is complete. This may take a few minutes to process. +・Notification will be sent separately upon completion. +・Registration cannot be completed if there are invalid values in the CSV file. If you received this e-mail in error, please delete this e-mail from your system. -This is an automatically generated e-mail, please do not reply. - +This is an automatically generated e-mail and this mailbox is not monitored. Please do not reply. -Dear $CUSTOMER_NAME$, +Sehr geehrte(r) $CUSTOMER_NAME$, -ODMS Cloudをご利用いただきありがとうございます。 +Wir haben Ihre Anfrage zur Massenbenutzerregistrierung erhalten. + - Datum und Uhrzeit: $REQUEST_TIME$ + - SCV-Dateiname: $FILE_NAME$ -CSVファイルによるユーザー一括登録を受け付けました。 - - リクエスト日時:$REQUEST_TIME$ - - SCVファイル名:$FILE_NAME$ +・Bitte warten Sie, bis die Registrierung abgeschlossen ist. Die Bearbeitung kann einige Minuten dauern. +・Eine Benachrichtigung wird nach Abschluss separat verschickt. +・Die Registrierung kann nicht abgeschlossen werden, wenn die CSV-Datei ungültige Werte enthält. -・登録完了には時間がかかる場合がありますので少々お待ちください。 -・登録完了通知は別途お送りします。 -・CSVファイルの内容に間違いがある場合は登録を完了できません。 - -If you received this e-mail in error, please delete this e-mail from your system. -This is an automatically generated e-mail, please do not reply. +Wenn Sie diese E-Mail irrtümlich erhalten haben, löschen Sie diese E-Mail bitte aus Ihrem System. +Dies ist eine automatisch generierte E-Mail und diese Mailbox wird nicht überwacht. Bitte antworten Sie nicht. -Dear $CUSTOMER_NAME$, +Chère/Cher $CUSTOMER_NAME$, -ODMS Cloudをご利用いただきありがとうございます。 +Nous avons reçu votre demande d'enregistrement groupé d'utilisateur. + - Date et heure : $REQUEST_TIME$ + - Nom du fichier SCV : $FILE_NAME$ -CSVファイルによるユーザー一括登録を受け付けました。 - - リクエスト日時:$REQUEST_TIME$ - - SCVファイル名:$FILE_NAME$ +・Veuillez attendre que l'inscription soit terminée. Le traitement peut prendre quelques minutes. +・Une notification sera envoyée séparément une fois terminée. +・L'inscription ne peut pas être complétée s'il y a des valeurs invalides dans le fichier CSV. -・登録完了には時間がかかる場合がありますので少々お待ちください。 -・登録完了通知は別途お送りします。 -・CSVファイルの内容に間違いがある場合は登録を完了できません。 - -If you received this e-mail in error, please delete this e-mail from your system. -This is an automatically generated e-mail, please do not reply. \ No newline at end of file +Si vous avez reçu cet e-mail par erreur, veuillez supprimer cet e-mail de votre système. +Il s'agit d'un e-mail généré automatiquement et cette boîte aux lettres n'est pas surveillée. Merci de ne pas répondre. \ No newline at end of file diff --git a/dictation_server/src/templates/template_U_121.html b/dictation_server/src/templates/template_U_121.html index 957b7ae..4598b6b 100644 --- a/dictation_server/src/templates/template_U_121.html +++ b/dictation_server/src/templates/template_U_121.html @@ -1,65 +1,80 @@ - - Storage Usage Exceeded Notification [U-119] - - -
-

<English>

-

Dear $CUSTOMER_NAME$,

-

ODMS Cloudをご利用いただきありがとうございます。

-

- CSVファイルによるユーザー一括登録が完了しました。
- - リクエスト日時:$REQUEST_TIME$
- - SCVファイル名:$FILE_NAME$ -

-

- ディーラーによるサポートが必要な場合は、 $DEALER_NAME$ - にお問い合わせください。 -

-

- If you received this e-mail in error, please delete this e-mail from - your system.
- This is an automatically generated e-mail, please do not reply. -

-
-
-

<Deutsch>

-

Dear $CUSTOMER_NAME$,

-

ODMS Cloudをご利用いただきありがとうございます。

-

- CSVファイルによるユーザー一括登録が完了しました。
- - リクエスト日時:$REQUEST_TIME$
- - SCVファイル名:$FILE_NAME$ -

-

- ディーラーによるサポートが必要な場合は、 $DEALER_NAME$ - にお問い合わせください。 -

-

- If you received this e-mail in error, please delete this e-mail from - your system.
- This is an automatically generated e-mail, please do not reply. -

-
-
-

<Français>

-

Dear $CUSTOMER_NAME$,

-

ODMS Cloudをご利用いただきありがとうございます。

-

- CSVファイルによるユーザー一括登録が完了しました。
- - リクエスト日時:$REQUEST_TIME$
- - SCVファイル名:$FILE_NAME$ -

-

- ディーラーによるサポートが必要な場合は、 $DEALER_NAME$ - にお問い合わせください。 -

-

- If you received this e-mail in error, please delete this e-mail from - your system.
- This is an automatically generated e-mail, please do not reply. -

-
- - + + User Bulk Registration Completed Notification [U-121] + + + +
+

<English>

+

+ Bulk user registration using the CSV file has been completed.
+ - Date and time: $REQUEST_TIME$
+ - SCV file name: $FILE_NAME$ +

+

+ ・User Registration Notification [U-114] will be sent to the registered users.
+ ・Registration will not be completed unless the user verifies their email address.
+ ・You can check the verification status of each user from the [User] tab in the ODMS Cloud. +

+

+ If you need support regarding the ODMS Cloud, please contact $DEALER_NAME$. +

+

+ If you received this e-mail in error, please delete this e-mail from your system.
+ This is an automatically generated e-mail and this mailbox is not monitored. Please do not reply. +

+
+
+

<Deutsch>

+

+ Sehr geehrte(r) $CUSTOMER_NAME$, +

+

+ Die Massenbenutzerregistrierung mithilfe der CSV-Datei wurde abgeschlossen.
+ - Datum und Uhrzeit: $REQUEST_TIME$
+ - SCV-Dateiname: $FILE_NAME$ +

+

+ ・Die Benutzerregistrierungsbenachrichtigung [U-114] wird an die registrierten Benutzer gesendet.
+ ・Die Registrierung wird erst abgeschlossen, wenn der Benutzer seine E-Mail-Adresse bestätigt.
+ ・Sie können den Verifizierungsstatus jedes Benutzers auf der Registerkarte [Benutzer] in der ODMS Cloud + überprüfen. +

+

+ Wenn Sie Unterstützung bezüglich ODMS Cloud benötigen, wenden Sie sich bitte an $DEALER_NAME$. +

+

+ Wenn Sie diese E-Mail irrtümlich erhalten haben, löschen Sie diese E-Mail bitte aus Ihrem System.
+ Dies ist eine automatisch generierte E-Mail und diese Mailbox wird nicht überwacht. Bitte antworten Sie nicht. +

+
+
+

<Français>

+

+ Chère/Cher $CUSTOMER_NAME$, +

+

+ L'enregistrement groupé des utilisateurs à l'aide du fichier CSV est terminé.
+ - Date et heure : $REQUEST_TIME$
+ - Nom du fichier SCV : $FILE_NAME$ +

+

+ ・La notification d'enregistrement de l'utilisateur [U-114] sera envoyée aux utilisateurs enregistrés.
+ ・L'inscription ne sera complétée que si l'utilisateur vérifie son adresse e-mail.
+ ・Vous pouvez vérifier le statut de vérification de chaque utilisateur à partir de l'onglet [Utilisateur] dans le + cloud + ODMS. +

+

+ Si vous avez besoin d'assistance concernant ODMS Cloud, veuillez contacter $DEALER_NAME$. +

+

+ Si vous avez reçu cet e-mail par erreur, veuillez supprimer cet e-mail de votre système.
+ Il s'agit d'un e-mail généré automatiquement et cette boîte aux lettres n'est pas surveillée. Merci de ne pas + répondre. +

+
+ + + \ No newline at end of file diff --git a/dictation_server/src/templates/template_U_121.txt b/dictation_server/src/templates/template_U_121.txt index f1995de..63e9176 100644 --- a/dictation_server/src/templates/template_U_121.txt +++ b/dictation_server/src/templates/template_U_121.txt @@ -2,43 +2,49 @@ Dear $CUSTOMER_NAME$, -ODMS Cloudをご利用いただきありがとうございます。 +Bulk user registration using the CSV file has been completed. + - Date and time: $REQUEST_TIME$ + - SCV file name: $FILE_NAME$ -CSVファイルによるユーザー一括登録が完了しました。 - - リクエスト日時:$REQUEST_TIME$ - - SCVファイル名:$FILE_NAME$ +・User Registration Notification [U-114] will be sent to the registered users. +・Registration will not be completed unless the user verifies their email address. +・You can check the verification status of each user from the [User] tab in the ODMS Cloud. -ディーラーによるサポートが必要な場合は、 $DEALER_NAME$ にお問い合わせください。 +If you need support regarding the ODMS Cloud, please contact $DEALER_NAME$. If you received this e-mail in error, please delete this e-mail from your system. -This is an automatically generated e-mail, please do not reply. +This is an automatically generated e-mail and this mailbox is not monitored. Please do not reply. -Dear $CUSTOMER_NAME$, +Sehr geehrte(r) $CUSTOMER_NAME$, -ODMS Cloudをご利用いただきありがとうございます。 +Die Massenbenutzerregistrierung mithilfe der CSV-Datei wurde abgeschlossen. + - Datum und Uhrzeit: $REQUEST_TIME$ + - SCV-Dateiname: $FILE_NAME$ -CSVファイルによるユーザー一括登録が完了しました。 - - リクエスト日時:$REQUEST_TIME$ - - SCVファイル名:$FILE_NAME$ +・Die Benutzerregistrierungsbenachrichtigung [U-114] wird an die registrierten Benutzer gesendet. +・Die Registrierung wird erst abgeschlossen, wenn der Benutzer seine E-Mail-Adresse bestätigt. +・Sie können den Verifizierungsstatus jedes Benutzers auf der Registerkarte [Benutzer] in der ODMS Cloud überprüfen. -ディーラーによるサポートが必要な場合は、 $DEALER_NAME$ にお問い合わせください。 +Wenn Sie Unterstützung bezüglich ODMS Cloud benötigen, wenden Sie sich bitte an $DEALER_NAME$. -If you received this e-mail in error, please delete this e-mail from your system. -This is an automatically generated e-mail, please do not reply. +Wenn Sie diese E-Mail irrtümlich erhalten haben, löschen Sie diese E-Mail bitte aus Ihrem System. +Dies ist eine automatisch generierte E-Mail und diese Mailbox wird nicht überwacht. Bitte antworten Sie nicht. -Dear $CUSTOMER_NAME$, +Chère/Cher $CUSTOMER_NAME$, -ODMS Cloudをご利用いただきありがとうございます。 +L'enregistrement groupé des utilisateurs à l'aide du fichier CSV est terminé. + - Date et heure : $REQUEST_TIME$ + - Nom du fichier SCV : $FILE_NAME$ -CSVファイルによるユーザー一括登録が完了しました。 - - リクエスト日時:$REQUEST_TIME$ - - SCVファイル名:$FILE_NAME$ +・La notification d'enregistrement de l'utilisateur [U-114] sera envoyée aux utilisateurs enregistrés. +・L'inscription ne sera complétée que si l'utilisateur vérifie son adresse e-mail. +・Vous pouvez vérifier le statut de vérification de chaque utilisateur à partir de l'onglet [Utilisateur] dans le cloud ODMS. -ディーラーによるサポートが必要な場合は、 $DEALER_NAME$ にお問い合わせください。 +Si vous avez besoin d'assistance concernant ODMS Cloud, veuillez contacter $DEALER_NAME$. -If you received this e-mail in error, please delete this e-mail from your system. -This is an automatically generated e-mail, please do not reply. \ No newline at end of file +Si vous avez reçu cet e-mail par erreur, veuillez supprimer cet e-mail de votre système. +Il s'agit d'un e-mail généré automatiquement et cette boîte aux lettres n'est pas surveillée. Merci de ne pas répondre. \ No newline at end of file diff --git a/dictation_server/src/templates/template_U_121_no_parent.html b/dictation_server/src/templates/template_U_121_no_parent.html index 0ae8b99..25393c9 100644 --- a/dictation_server/src/templates/template_U_121_no_parent.html +++ b/dictation_server/src/templates/template_U_121_no_parent.html @@ -1,53 +1,71 @@ - - Storage Usage Exceeded Notification [U-119] - - -
-

<English>

-

Dear $CUSTOMER_NAME$,

-

ODMS Cloudをご利用いただきありがとうございます。

-

- CSVファイルによるユーザー一括登録が完了しました。
- - リクエスト日時:$REQUEST_TIME$
- - SCVファイル名:$FILE_NAME$ -

-

- If you received this e-mail in error, please delete this e-mail from - your system.
- This is an automatically generated e-mail, please do not reply. -

-
-
-

<Deutsch>

-

Dear $CUSTOMER_NAME$,

-

ODMS Cloudをご利用いただきありがとうございます。

-

- CSVファイルによるユーザー一括登録が完了しました。
- - リクエスト日時:$REQUEST_TIME$
- - SCVファイル名:$FILE_NAME$ -

-

- If you received this e-mail in error, please delete this e-mail from - your system.
- This is an automatically generated e-mail, please do not reply. -

-
-
-

<Français>

-

Dear $CUSTOMER_NAME$,

-

ODMS Cloudをご利用いただきありがとうございます。

-

- CSVファイルによるユーザー一括登録が完了しました。
- - リクエスト日時:$REQUEST_TIME$
- - SCVファイル名:$FILE_NAME$ -

-

- If you received this e-mail in error, please delete this e-mail from - your system.
- This is an automatically generated e-mail, please do not reply. -

-
- - + + User Bulk Registration Completed Notification [U-121] + + + +
+

<English>

+

+ Bulk user registration using the CSV file has been completed.
+ - Date and time: $REQUEST_TIME$
+ - SCV file name: $FILE_NAME$ +

+

+ ・User Registration Notification [U-114] will be sent to the registered users.
+ ・Registration will not be completed unless the user verifies their email address.
+ ・You can check the verification status of each user from the [User] tab in the ODMS Cloud. +

+

+ If you received this e-mail in error, please delete this e-mail from your system.
+ This is an automatically generated e-mail and this mailbox is not monitored. Please do not reply. +

+
+
+

<Deutsch>

+

+ Sehr geehrte(r) $CUSTOMER_NAME$, +

+

+ Die Massenbenutzerregistrierung mithilfe der CSV-Datei wurde abgeschlossen.
+ - Datum und Uhrzeit: $REQUEST_TIME$
+ - SCV-Dateiname: $FILE_NAME$ +

+

+ ・Die Benutzerregistrierungsbenachrichtigung [U-114] wird an die registrierten Benutzer gesendet.
+ ・Die Registrierung wird erst abgeschlossen, wenn der Benutzer seine E-Mail-Adresse bestätigt.
+ ・Sie können den Verifizierungsstatus jedes Benutzers auf der Registerkarte [Benutzer] in der ODMS Cloud + überprüfen. +

+

+ Wenn Sie diese E-Mail irrtümlich erhalten haben, löschen Sie diese E-Mail bitte aus Ihrem System.
+ Dies ist eine automatisch generierte E-Mail und diese Mailbox wird nicht überwacht. Bitte antworten Sie nicht. +

+
+
+

<Français>

+

+ Chère/Cher $CUSTOMER_NAME$, +

+

+ L'enregistrement groupé des utilisateurs à l'aide du fichier CSV est terminé.
+ - Date et heure : $REQUEST_TIME$
+ - Nom du fichier SCV : $FILE_NAME$ +

+

+ ・La notification d'enregistrement de l'utilisateur [U-114] sera envoyée aux utilisateurs enregistrés.
+ ・L'inscription ne sera complétée que si l'utilisateur vérifie son adresse e-mail.
+ ・Vous pouvez vérifier le statut de vérification de chaque utilisateur à partir de l'onglet [Utilisateur] dans le + cloud + ODMS. +

+

+ Si vous avez reçu cet e-mail par erreur, veuillez supprimer cet e-mail de votre système.
+ Il s'agit d'un e-mail généré automatiquement et cette boîte aux lettres n'est pas surveillée. Merci de ne pas + répondre. +

+
+ + + \ No newline at end of file diff --git a/dictation_server/src/templates/template_U_121_no_parent.txt b/dictation_server/src/templates/template_U_121_no_parent.txt index cc81ddf..c1f7987 100644 --- a/dictation_server/src/templates/template_U_121_no_parent.txt +++ b/dictation_server/src/templates/template_U_121_no_parent.txt @@ -2,37 +2,43 @@ Dear $CUSTOMER_NAME$, -ODMS Cloudをご利用いただきありがとうございます。 +Bulk user registration using the CSV file has been completed. + - Date and time: $REQUEST_TIME$ + - SCV file name: $FILE_NAME$ -CSVファイルによるユーザー一括登録が完了しました。 - - リクエスト日時:$REQUEST_TIME$ - - SCVファイル名:$FILE_NAME$ +・User Registration Notification [U-114] will be sent to the registered users. +・Registration will not be completed unless the user verifies their email address. +・You can check the verification status of each user from the [User] tab in the ODMS Cloud. If you received this e-mail in error, please delete this e-mail from your system. -This is an automatically generated e-mail, please do not reply. +This is an automatically generated e-mail and this mailbox is not monitored. Please do not reply. -Dear $CUSTOMER_NAME$, +Sehr geehrte(r) $CUSTOMER_NAME$, -ODMS Cloudをご利用いただきありがとうございます。 +Die Massenbenutzerregistrierung mithilfe der CSV-Datei wurde abgeschlossen. + - Datum und Uhrzeit: $REQUEST_TIME$ + - SCV-Dateiname: $FILE_NAME$ -CSVファイルによるユーザー一括登録が完了しました。 - - リクエスト日時:$REQUEST_TIME$ - - SCVファイル名:$FILE_NAME$ +・Die Benutzerregistrierungsbenachrichtigung [U-114] wird an die registrierten Benutzer gesendet. +・Die Registrierung wird erst abgeschlossen, wenn der Benutzer seine E-Mail-Adresse bestätigt. +・Sie können den Verifizierungsstatus jedes Benutzers auf der Registerkarte [Benutzer] in der ODMS Cloud überprüfen. -If you received this e-mail in error, please delete this e-mail from your system. -This is an automatically generated e-mail, please do not reply. +Wenn Sie diese E-Mail irrtümlich erhalten haben, löschen Sie diese E-Mail bitte aus Ihrem System. +Dies ist eine automatisch generierte E-Mail und diese Mailbox wird nicht überwacht. Bitte antworten Sie nicht. -Dear $CUSTOMER_NAME$, +Chère/Cher $CUSTOMER_NAME$, -ODMS Cloudをご利用いただきありがとうございます。 +L'enregistrement groupé des utilisateurs à l'aide du fichier CSV est terminé. + - Date et heure : $REQUEST_TIME$ + - Nom du fichier SCV : $FILE_NAME$ -CSVファイルによるユーザー一括登録が完了しました。 - - リクエスト日時:$REQUEST_TIME$ - - SCVファイル名:$FILE_NAME$ +・La notification d'enregistrement de l'utilisateur [U-114] sera envoyée aux utilisateurs enregistrés. +・L'inscription ne sera complétée que si l'utilisateur vérifie son adresse e-mail. +・Vous pouvez vérifier le statut de vérification de chaque utilisateur à partir de l'onglet [Utilisateur] dans le cloud ODMS. -If you received this e-mail in error, please delete this e-mail from your system. -This is an automatically generated e-mail, please do not reply. \ No newline at end of file +Si vous avez reçu cet e-mail par erreur, veuillez supprimer cet e-mail de votre système. +Il s'agit d'un e-mail généré automatiquement et cette boîte aux lettres n'est pas surveillée. Merci de ne pas répondre. \ No newline at end of file diff --git a/dictation_server/src/templates/template_U_122.html b/dictation_server/src/templates/template_U_122.html index 7a5de32..f33c4c3 100644 --- a/dictation_server/src/templates/template_U_122.html +++ b/dictation_server/src/templates/template_U_122.html @@ -1,107 +1,137 @@ - - Storage Usage Exceeded Notification [U-119] - - -
-

<English>

-

Dear $CUSTOMER_NAME$,

-

ODMS Cloudをご利用いただきありがとうございます。

-

CSVファイルによるユーザー一括登録に失敗しました。

-

- 1. 以下の行にあるE-mail addressは既に登録済みか、別の行のE-mail - addressと重複しています。
- $EMAIL_DUPLICATION$ -

-

- 2. - 以下の行にあるAuthorIDは既に登録済みか、別の行のAuthorIDと重複しています。
- $AUTHOR_ID_DUPLICATION$ -

-

- *既に登録済みのE-mail address, Author IDを再登録することはできません。 -

-

- 3. - 以下の行のユーザー登録時に想定外のエラーが発生しました。時間をおいて再度実行しても成功しない場合はディーラーにお問い合わせください。
- $UNEXPECTED_ERROR$ -

-

- ディーラーによるサポートが必要な場合は、 $DEALER_NAME$ - にお問い合わせください。 -

-

- If you received this e-mail in error, please delete this e-mail from - your system. This is an automatically generated e-mail, please do not - reply. -

-
-
-

<Deutsch>

-

Dear $CUSTOMER_NAME$,

-

ODMS Cloudをご利用いただきありがとうございます。

-

CSVファイルによるユーザー一括登録に失敗しました。

-

- 1. 以下の行にあるE-mail addressは既に登録済みか、別の行のE-mail - addressと重複しています。
- $EMAIL_DUPLICATION$ -

-

- 2. - 以下の行にあるAuthorIDは既に登録済みか、別の行のAuthorIDと重複しています。
- $AUTHOR_ID_DUPLICATION$ -

-

- *既に登録済みのE-mail address, Author IDを再登録することはできません。 -

-

- 3. - 以下の行のユーザー登録時に想定外のエラーが発生しました。時間をおいて再度実行しても成功しない場合はディーラーにお問い合わせください。
- $UNEXPECTED_ERROR$ -

-

- ディーラーによるサポートが必要な場合は、 $DEALER_NAME$ - にお問い合わせください。 -

-

- If you received this e-mail in error, please delete this e-mail from - your system. This is an automatically generated e-mail, please do not - reply. -

-
-
-

<Français>

-

Dear $CUSTOMER_NAME$,

-

ODMS Cloudをご利用いただきありがとうございます。

-

CSVファイルによるユーザー一括登録に失敗しました。

-

- 1. 以下の行にあるE-mail addressは既に登録済みか、別の行のE-mail - addressと重複しています。
- $EMAIL_DUPLICATION$ -

-

- 2. - 以下の行にあるAuthorIDは既に登録済みか、別の行のAuthorIDと重複しています。
- $AUTHOR_ID_DUPLICATION$ -

-

- *既に登録済みのE-mail address, Author IDを再登録することはできません。 -

-

- 3. - 以下の行のユーザー登録時に想定外のエラーが発生しました。時間をおいて再度実行しても成功しない場合はディーラーにお問い合わせください。
- $UNEXPECTED_ERROR$ -

-

- ディーラーによるサポートが必要な場合は、 $DEALER_NAME$ - にお問い合わせください。 -

-

- If you received this e-mail in error, please delete this e-mail from - your system. This is an automatically generated e-mail, please do not - reply. -

-
- - + + User Bulk Registration Failed Notification [U-122] + + + +
+

<English>

+

+ Dear $CUSTOMER_NAME$, +

+

+ Bulk user registration using the CSV file has failed. The cause and location of the error is shown in 1, 2, and 3 + below. ( L = Line ) +

+

+ 1. The e-mail address in the line below has already been registered or is a duplicate of an e-mail address in + another + line.
+ $EMAIL_DUPLICATION$ +

+

+ 2. The Author ID in the line below is already registered or is a duplicate of an Author ID in another line.
+ $AUTHOR_ID_DUPLICATION$ +

+

+ * E-mail address and Author ID that have already been registered cannot be registered again.
+ * Rows without errors have been successfully registered. Therefore, if you use the same CSV file and register the + user + that has been successfully registered, a duplicate error will occur. Please create a CSV file containing only the + lines where the error occurred, or manually register them one by one. +

+

+ 3. An unexpected error occurred during user registration on the following line. If it does not succeed after + trying + again, please contact your dealer.
+    $UNEXPECTED_ERROR$ +

+

+ If you need support regarding the ODMS Cloud, please contact $DEALER_NAME$. +

+

+ If you received this e-mail in error, please delete this e-mail from your system.
+ This is an automatically generated e-mail and this mailbox is not monitored. Please do not reply. +

+
+
+

<Deutsch>

+

+ Sehr geehrte(r) $CUSTOMER_NAME$, +

+

+ Die Massenregistrierung von Benutzern mithilfe der CSV-Datei ist fehlgeschlagen. Die Ursache und der Ort des + Fehlers + werden in 1, 2 und 3 unten angezeigt. (L = Linie) +

+

+ 1. Die E-Mail-Adresse in der Zeile unten ist bereits registriert oder ist ein Duplikat einer E-Mail-Adresse in + einer + anderen Zeile.
+ $EMAIL_DUPLICATION$ +

+

+ 2. Die Author-ID in der Zeile darunter ist bereits registriert oder ein Duplikat einer AuthorID in einer anderen + Zeile.
+ $AUTHOR_ID_DUPLICATION$ +

+

+ * E-Mail-Adresse und Autoren-ID, die bereits registriert wurden, können nicht erneut registriert werden.
+ * Zeilen ohne Fehler wurden erfolgreich registriert. Wenn Sie daher dieselbe CSV-Datei verwenden und den + erfolgreich + registrierten Benutzer registrieren, tritt ein doppelter Fehler auf. Bitte erstellen Sie eine CSV-Datei, die nur + die + Zeilen enthält, in denen der Fehler aufgetreten ist, oder registrieren Sie sie einzeln manuell. +

+

+ 3. Bei der Benutzerregistrierung ist in der folgenden Zeile ein unerwarteter Fehler aufgetreten. Sollte es auch + nach + einem erneuten Versuch nicht erfolgreich sein, wenden Sie sich bitte an Ihren Händler.
+ $UNEXPECTED_ERROR$ +

+

+ Wenn Sie Unterstützung bezüglich ODMS Cloud benötigen, wenden Sie sich bitte an $DEALER_NAME$. +

+

+ Wenn Sie diese E-Mail irrtümlich erhalten haben, löschen Sie diese E-Mail bitte aus Ihrem System.
+ Dies ist eine automatisch generierte E-Mail und diese Mailbox wird nicht überwacht. Bitte antworten Sie nicht. +

+
+
+

<Français>

+

+ Chère/Cher $CUSTOMER_NAME$, +

+

+ L'enregistrement groupé des utilisateurs à l'aide du fichier CSV a échoué. La cause et l'emplacement de l'erreur + sont + indiqués aux points 1, 2 et 3 ci-dessous. ( L = Ligne ) +

+

+ 1. L'adresse e-mail dans la ligne ci-dessous a déjà été enregistrée ou est un double d'une adresse e-mail dans une + autre ligne.
+ $EMAIL_DUPLICATION$ +

+

+ 2. L'Identifiant Auteur dans la ligne ci-dessous est déjà enregistré ou est un double d'un Identifiant Auteur dans + une + autre ligne.
+ $AUTHOR_ID_DUPLICATION$ +

+

+ * L'adresse e-mail et l'Identifiant Auteur déjà enregistrés ne peuvent pas être enregistrés à nouveau.
+ * Les lignes sans erreurs ont été enregistrées avec succès. Par conséquent, si vous utilisez le même fichier CSV + et + enregistrez l'utilisateur qui a été enregistré avec succès, une erreur en double se produira. Veuillez créer un + fichier CSV contenant uniquement les lignes où l'erreur s'est produite, ou enregistrez-les manuellement une par + une. +

+

+ 3. Une erreur inattendue s'est produite lors de l'enregistrement de l'utilisateur sur la ligne suivante. Si cela + ne + fonctionne pas après une nouvelle tentative, veuillez contacter votre revendeur.
+ $UNEXPECTED_ERROR$ +

+

+ Si vous avez besoin d'assistance concernant ODMS Cloud, veuillez contacter $DEALER_NAME$. +

+

+ Si vous avez reçu cet e-mail par erreur, veuillez supprimer cet e-mail de votre système.
+ Il s'agit d'un e-mail généré automatiquement et cette boîte aux lettres n'est pas surveillée. Merci de ne pas + répondre. +

+
+ + + \ No newline at end of file diff --git a/dictation_server/src/templates/template_U_122.txt b/dictation_server/src/templates/template_U_122.txt index f4f2710..6729c16 100644 --- a/dictation_server/src/templates/template_U_122.txt +++ b/dictation_server/src/templates/template_U_122.txt @@ -2,73 +2,67 @@ Dear $CUSTOMER_NAME$, -ODMS Cloudをご利用いただきありがとうございます。 +Bulk user registration using the CSV file has failed. The cause and location of the error is shown in 1, 2, and 3 below. ( L = Line ) -CSVファイルによるユーザー一括登録に失敗しました。 + 1. The e-mail address in the line below has already been registered or is a duplicate of an e-mail address in another line. + $EMAIL_DUPLICATION$ - 1. 以下の行にあるE-mail addressは既に登録済みか、別の行のE-mail addressと重複しています。 - $EMAIL_DUPLICATION$ + 2. The Author ID in the line below is already registered or is a duplicate of an Author ID in another line. + $AUTHOR_ID_DUPLICATION$ - 2. 以下の行にあるAuthorIDは既に登録済みか、別の行のAuthorIDと重複しています。 - $AUTHOR_ID_DUPLICATION$ + * E-mail address and Author ID that have already been registered cannot be registered again. + * Rows without errors have been successfully registered. Therefore, if you use the same CSV file and register the user that has been successfully registered, a duplicate error will occur. Please create a CSV file containing only the lines where the error occurred, or manually register them one by one. - *既に登録済みのE-mail address, Author IDを再登録することはできません。 + 3. An unexpected error occurred during user registration on the following line. If it does not succeed after trying again, please contact your dealer. +   $UNEXPECTED_ERROR$ - - 3. 以下の行のユーザー登録時に想定外のエラーが発生しました。時間をおいて再度実行しても成功しない場合はディーラーにお問い合わせください。 -   $UNEXPECTED_ERROR$ - -ディーラーによるサポートが必要な場合は、 $DEALER_NAME$ にお問い合わせください。 +If you need support regarding the ODMS Cloud, please contact $DEALER_NAME$. If you received this e-mail in error, please delete this e-mail from your system. -This is an automatically generated e-mail, please do not reply. +This is an automatically generated e-mail and this mailbox is not monitored. Please do not reply. -Dear $CUSTOMER_NAME$, +Sehr geehrte(r) $CUSTOMER_NAME$, -ODMS Cloudをご利用いただきありがとうございます。 +Die Massenregistrierung von Benutzern mithilfe der CSV-Datei ist fehlgeschlagen. Die Ursache und der Ort des Fehlers werden in 1, 2 und 3 unten angezeigt. (L = Linie) -CSVファイルによるユーザー一括登録に失敗しました。 + 1. Die E-Mail-Adresse in der Zeile unten ist bereits registriert oder ist ein Duplikat einer E-Mail-Adresse in einer anderen Zeile. + $EMAIL_DUPLICATION$ - 1. 以下の行にあるE-mail addressは既に登録済みか、別の行のE-mail addressと重複しています。 - $EMAIL_DUPLICATION$ + 2. Die Author-ID in der Zeile darunter ist bereits registriert oder ein Duplikat einer AuthorID in einer anderen Zeile. + $AUTHOR_ID_DUPLICATION$ - 2. 以下の行にあるAuthorIDは既に登録済みか、別の行のAuthorIDと重複しています。 - $AUTHOR_ID_DUPLICATION$ + * E-Mail-Adresse und Autoren-ID, die bereits registriert wurden, können nicht erneut registriert werden. + * Zeilen ohne Fehler wurden erfolgreich registriert. Wenn Sie daher dieselbe CSV-Datei verwenden und den erfolgreich registrierten Benutzer registrieren, tritt ein doppelter Fehler auf. Bitte erstellen Sie eine CSV-Datei, die nur die Zeilen enthält, in denen der Fehler aufgetreten ist, oder registrieren Sie sie einzeln manuell. - *既に登録済みのE-mail address, Author IDを再登録することはできません。 + 3. Bei der Benutzerregistrierung ist in der folgenden Zeile ein unerwarteter Fehler aufgetreten. Sollte es auch nach einem erneuten Versuch nicht erfolgreich sein, wenden Sie sich bitte an Ihren Händler. + $UNEXPECTED_ERROR$ +Wenn Sie Unterstützung bezüglich ODMS Cloud benötigen, wenden Sie sich bitte an $DEALER_NAME$. - 3. 以下の行のユーザー登録時に想定外のエラーが発生しました。時間をおいて再度実行しても成功しない場合はディーラーにお問い合わせください。 -   $UNEXPECTED_ERROR$ - -ディーラーによるサポートが必要な場合は、 $DEALER_NAME$ にお問い合わせください。 - -If you received this e-mail in error, please delete this e-mail from your system. -This is an automatically generated e-mail, please do not reply. +Wenn Sie diese E-Mail irrtümlich erhalten haben, löschen Sie diese E-Mail bitte aus Ihrem System. +Dies ist eine automatisch generierte E-Mail und diese Mailbox wird nicht überwacht. Bitte antworten Sie nicht. -Dear $CUSTOMER_NAME$, +Chère/Cher $CUSTOMER_NAME$, -ODMS Cloudをご利用いただきありがとうございます。 +L'enregistrement groupé des utilisateurs à l'aide du fichier CSV a échoué. La cause et l'emplacement de l'erreur sont indiqués aux points 1, 2 et 3 ci-dessous. ( L = Ligne ) -CSVファイルによるユーザー一括登録に失敗しました。 + 1. L'adresse e-mail dans la ligne ci-dessous a déjà été enregistrée ou est un double d'une adresse e-mail dans une autre ligne. + $EMAIL_DUPLICATION$ - 1. 以下の行にあるE-mail addressは既に登録済みか、別の行のE-mail addressと重複しています。 - $EMAIL_DUPLICATION$ + 2. L'Identifiant Auteur dans la ligne ci-dessous est déjà enregistré ou est un double d'un Identifiant Auteur dans une autre ligne. + $AUTHOR_ID_DUPLICATION$ - 2. 以下の行にあるAuthorIDは既に登録済みか、別の行のAuthorIDと重複しています。 - $AUTHOR_ID_DUPLICATION$ + * L'adresse e-mail et l'Identifiant Auteur déjà enregistrés ne peuvent pas être enregistrés à nouveau. + * Les lignes sans erreurs ont été enregistrées avec succès. Par conséquent, si vous utilisez le même fichier CSV et enregistrez l'utilisateur qui a été enregistré avec succès, une erreur en double se produira. Veuillez créer un fichier CSV contenant uniquement les lignes où l'erreur s'est produite, ou enregistrez-les manuellement une par une. - *既に登録済みのE-mail address, Author IDを再登録することはできません。 + 3. Une erreur inattendue s'est produite lors de l'enregistrement de l'utilisateur sur la ligne suivante. Si cela ne fonctionne pas après une nouvelle tentative, veuillez contacter votre revendeur. + $UNEXPECTED_ERROR$ +Si vous avez besoin d'assistance concernant ODMS Cloud, veuillez contacter $DEALER_NAME$. - 3. 以下の行のユーザー登録時に想定外のエラーが発生しました。時間をおいて再度実行しても成功しない場合はディーラーにお問い合わせください。 -   $UNEXPECTED_ERROR$ - -ディーラーによるサポートが必要な場合は、 $DEALER_NAME$ にお問い合わせください。 - -If you received this e-mail in error, please delete this e-mail from your system. -This is an automatically generated e-mail, please do not reply. \ No newline at end of file +Si vous avez reçu cet e-mail par erreur, veuillez supprimer cet e-mail de votre système. +Il s'agit d'un e-mail généré automatiquement et cette boîte aux lettres n'est pas surveillée. Merci de ne pas répondre. \ No newline at end of file diff --git a/dictation_server/src/templates/template_U_122_no_parent.html b/dictation_server/src/templates/template_U_122_no_parent.html index cac57e5..bd9a2af 100644 --- a/dictation_server/src/templates/template_U_122_no_parent.html +++ b/dictation_server/src/templates/template_U_122_no_parent.html @@ -1,95 +1,128 @@ - - Storage Usage Exceeded Notification [U-119] - - -
-

<English>

-

Dear $CUSTOMER_NAME$,

-

ODMS Cloudをご利用いただきありがとうございます。

-

CSVファイルによるユーザー一括登録に失敗しました。

-

- 1. 以下の行にあるE-mail addressは既に登録済みか、別の行のE-mail - addressと重複しています。
- $EMAIL_DUPLICATION$ -

-

- 2. - 以下の行にあるAuthorIDは既に登録済みか、別の行のAuthorIDと重複しています。
- $AUTHOR_ID_DUPLICATION$ -

-

- *既に登録済みのE-mail address, Author IDを再登録することはできません。 -

-

- 3. - 以下の行のユーザー登録時に想定外のエラーが発生しました。時間をおいて再度実行しても成功しない場合はディーラーにお問い合わせください。
- $UNEXPECTED_ERROR$ -

-

- If you received this e-mail in error, please delete this e-mail from - your system. This is an automatically generated e-mail, please do not - reply. -

-
-
-

<Deutsch>

-

Dear $CUSTOMER_NAME$,

-

ODMS Cloudをご利用いただきありがとうございます。

-

CSVファイルによるユーザー一括登録に失敗しました。

-

- 1. 以下の行にあるE-mail addressは既に登録済みか、別の行のE-mail - addressと重複しています。
- $EMAIL_DUPLICATION$ -

-

- 2. - 以下の行にあるAuthorIDは既に登録済みか、別の行のAuthorIDと重複しています。
- $AUTHOR_ID_DUPLICATION$ -

-

- *既に登録済みのE-mail address, Author IDを再登録することはできません。 -

-

- 3. - 以下の行のユーザー登録時に想定外のエラーが発生しました。時間をおいて再度実行しても成功しない場合はディーラーにお問い合わせください。
- $UNEXPECTED_ERROR$ -

-

- If you received this e-mail in error, please delete this e-mail from - your system. This is an automatically generated e-mail, please do not - reply. -

-
-
-

<Français>

-

Dear $CUSTOMER_NAME$,

-

ODMS Cloudをご利用いただきありがとうございます。

-

CSVファイルによるユーザー一括登録に失敗しました。

-

- 1. 以下の行にあるE-mail addressは既に登録済みか、別の行のE-mail - addressと重複しています。
- $EMAIL_DUPLICATION$ -

-

- 2. - 以下の行にあるAuthorIDは既に登録済みか、別の行のAuthorIDと重複しています。
- $AUTHOR_ID_DUPLICATION$ -

-

- *既に登録済みのE-mail address, Author IDを再登録することはできません。 -

-

- 3. - 以下の行のユーザー登録時に想定外のエラーが発生しました。時間をおいて再度実行しても成功しない場合はディーラーにお問い合わせください。
- $UNEXPECTED_ERROR$ -

-

- If you received this e-mail in error, please delete this e-mail from - your system. This is an automatically generated e-mail, please do not - reply. -

-
- - + + User Bulk Registration Failed Notification [U-122] + + + +
+

<English>

+

+ Dear $CUSTOMER_NAME$, +

+

+ Bulk user registration using the CSV file has failed. The cause and location of the error is shown in 1, 2, and 3 + below. ( L = Line ) +

+

+ 1. The e-mail address in the line below has already been registered or is a duplicate of an e-mail address in + another + line.
+ $EMAIL_DUPLICATION$ +

+

+ 2. The Author ID in the line below is already registered or is a duplicate of an Author ID in another line.
+ $AUTHOR_ID_DUPLICATION$ +

+

+ * E-mail address and Author ID that have already been registered cannot be registered again.
+ * Rows without errors have been successfully registered. Therefore, if you use the same CSV file and register the + user + that has been successfully registered, a duplicate error will occur. Please create a CSV file containing only the + lines where the error occurred, or manually register them one by one. +

+

+ 3. An unexpected error occurred during user registration on the following line. If it does not succeed after + trying + again, please contact your dealer.
+    $UNEXPECTED_ERROR$ +

+

+ If you received this e-mail in error, please delete this e-mail from your system.
+ This is an automatically generated e-mail and this mailbox is not monitored. Please do not reply. +

+
+
+

<Deutsch>

+

+ Sehr geehrte(r) $CUSTOMER_NAME$, +

+

+ Die Massenregistrierung von Benutzern mithilfe der CSV-Datei ist fehlgeschlagen. Die Ursache und der Ort des + Fehlers + werden in 1, 2 und 3 unten angezeigt. (L = Linie) +

+

+ 1. Die E-Mail-Adresse in der Zeile unten ist bereits registriert oder ist ein Duplikat einer E-Mail-Adresse in + einer + anderen Zeile.
+ $EMAIL_DUPLICATION$ +

+

+ 2. Die Author-ID in der Zeile darunter ist bereits registriert oder ein Duplikat einer AuthorID in einer anderen + Zeile.
+ $AUTHOR_ID_DUPLICATION$ +

+

+ * E-Mail-Adresse und Autoren-ID, die bereits registriert wurden, können nicht erneut registriert werden.
+ * Zeilen ohne Fehler wurden erfolgreich registriert. Wenn Sie daher dieselbe CSV-Datei verwenden und den + erfolgreich + registrierten Benutzer registrieren, tritt ein doppelter Fehler auf. Bitte erstellen Sie eine CSV-Datei, die nur + die + Zeilen enthält, in denen der Fehler aufgetreten ist, oder registrieren Sie sie einzeln manuell. +

+

+ 3. Bei der Benutzerregistrierung ist in der folgenden Zeile ein unerwarteter Fehler aufgetreten. Sollte es auch + nach + einem erneuten Versuch nicht erfolgreich sein, wenden Sie sich bitte an Ihren Händler.
+ $UNEXPECTED_ERROR$ +

+

+ Wenn Sie diese E-Mail irrtümlich erhalten haben, löschen Sie diese E-Mail bitte aus Ihrem System.
+ Dies ist eine automatisch generierte E-Mail und diese Mailbox wird nicht überwacht. Bitte antworten Sie nicht. +

+
+
+

<Français>

+

+ Chère/Cher $CUSTOMER_NAME$, +

+

+ L'enregistrement groupé des utilisateurs à l'aide du fichier CSV a échoué. La cause et l'emplacement de l'erreur + sont + indiqués aux points 1, 2 et 3 ci-dessous. ( L = Ligne ) +

+

+ 1. L'adresse e-mail dans la ligne ci-dessous a déjà été enregistrée ou est un double d'une adresse e-mail dans une + autre ligne.
+ $EMAIL_DUPLICATION$ +

+

+ 2. L'Identifiant Auteur dans la ligne ci-dessous est déjà enregistré ou est un double d'un Identifiant Auteur dans + une + autre ligne.
+ $AUTHOR_ID_DUPLICATION$ +

+

+ * L'adresse e-mail et l'Identifiant Auteur déjà enregistrés ne peuvent pas être enregistrés à nouveau.
+ * Les lignes sans erreurs ont été enregistrées avec succès. Par conséquent, si vous utilisez le même fichier CSV + et + enregistrez l'utilisateur qui a été enregistré avec succès, une erreur en double se produira. Veuillez créer un + fichier CSV contenant uniquement les lignes où l'erreur s'est produite, ou enregistrez-les manuellement une par + une. +

+

+ 3. Une erreur inattendue s'est produite lors de l'enregistrement de l'utilisateur sur la ligne suivante. Si cela + ne + fonctionne pas après une nouvelle tentative, veuillez contacter votre revendeur.
+ $UNEXPECTED_ERROR$ +

+

+ Si vous avez reçu cet e-mail par erreur, veuillez supprimer cet e-mail de votre système.
+ Il s'agit d'un e-mail généré automatiquement et cette boîte aux lettres n'est pas surveillée. Merci de ne pas + répondre. +

+
+ + + \ No newline at end of file diff --git a/dictation_server/src/templates/template_U_122_no_parent.txt b/dictation_server/src/templates/template_U_122_no_parent.txt index 3b54d39..f91ba7f 100644 --- a/dictation_server/src/templates/template_U_122_no_parent.txt +++ b/dictation_server/src/templates/template_U_122_no_parent.txt @@ -2,67 +2,61 @@ Dear $CUSTOMER_NAME$, -ODMS Cloudをご利用いただきありがとうございます。 +Bulk user registration using the CSV file has failed. The cause and location of the error is shown in 1, 2, and 3 below. ( L = Line ) -CSVファイルによるユーザー一括登録に失敗しました。 + 1. The e-mail address in the line below has already been registered or is a duplicate of an e-mail address in another line. + $EMAIL_DUPLICATION$ - 1. 以下の行にあるE-mail addressは既に登録済みか、別の行のE-mail addressと重複しています。 - $EMAIL_DUPLICATION$ + 2. The Author ID in the line below is already registered or is a duplicate of an Author ID in another line. + $AUTHOR_ID_DUPLICATION$ - 2. 以下の行にあるAuthorIDは既に登録済みか、別の行のAuthorIDと重複しています。 - $AUTHOR_ID_DUPLICATION$ + * E-mail address and Author ID that have already been registered cannot be registered again. + * Rows without errors have been successfully registered. Therefore, if you use the same CSV file and register the user that has been successfully registered, a duplicate error will occur. Please create a CSV file containing only the lines where the error occurred, or manually register them one by one. - *既に登録済みのE-mail address, Author IDを再登録することはできません。 - - - 3. 以下の行のユーザー登録時に想定外のエラーが発生しました。時間をおいて再度実行しても成功しない場合はディーラーにお問い合わせください。 -   $UNEXPECTED_ERROR$ + 3. An unexpected error occurred during user registration on the following line. If it does not succeed after trying again, please contact your dealer. +   $UNEXPECTED_ERROR$ If you received this e-mail in error, please delete this e-mail from your system. -This is an automatically generated e-mail, please do not reply. +This is an automatically generated e-mail and this mailbox is not monitored. Please do not reply. -Dear $CUSTOMER_NAME$, +Sehr geehrte(r) $CUSTOMER_NAME$, -ODMS Cloudをご利用いただきありがとうございます。 +Die Massenregistrierung von Benutzern mithilfe der CSV-Datei ist fehlgeschlagen. Die Ursache und der Ort des Fehlers werden in 1, 2 und 3 unten angezeigt. (L = Linie) -CSVファイルによるユーザー一括登録に失敗しました。 + 1. Die E-Mail-Adresse in der Zeile unten ist bereits registriert oder ist ein Duplikat einer E-Mail-Adresse in einer anderen Zeile. + $EMAIL_DUPLICATION$ - 1. 以下の行にあるE-mail addressは既に登録済みか、別の行のE-mail addressと重複しています。 - $EMAIL_DUPLICATION$ + 2. Die Author-ID in der Zeile darunter ist bereits registriert oder ein Duplikat einer AuthorID in einer anderen Zeile. + $AUTHOR_ID_DUPLICATION$ - 2. 以下の行にあるAuthorIDは既に登録済みか、別の行のAuthorIDと重複しています。 - $AUTHOR_ID_DUPLICATION$ + * E-Mail-Adresse und Autoren-ID, die bereits registriert wurden, können nicht erneut registriert werden. + * Zeilen ohne Fehler wurden erfolgreich registriert. Wenn Sie daher dieselbe CSV-Datei verwenden und den erfolgreich registrierten Benutzer registrieren, tritt ein doppelter Fehler auf. Bitte erstellen Sie eine CSV-Datei, die nur die Zeilen enthält, in denen der Fehler aufgetreten ist, oder registrieren Sie sie einzeln manuell. - *既に登録済みのE-mail address, Author IDを再登録することはできません。 + 3. Bei der Benutzerregistrierung ist in der folgenden Zeile ein unerwarteter Fehler aufgetreten. Sollte es auch nach einem erneuten Versuch nicht erfolgreich sein, wenden Sie sich bitte an Ihren Händler. + $UNEXPECTED_ERROR$ - - 3. 以下の行のユーザー登録時に想定外のエラーが発生しました。時間をおいて再度実行しても成功しない場合はディーラーにお問い合わせください。 -   $UNEXPECTED_ERROR$ - -If you received this e-mail in error, please delete this e-mail from your system. -This is an automatically generated e-mail, please do not reply. +Wenn Sie diese E-Mail irrtümlich erhalten haben, löschen Sie diese E-Mail bitte aus Ihrem System. +Dies ist eine automatisch generierte E-Mail und diese Mailbox wird nicht überwacht. Bitte antworten Sie nicht. -Dear $CUSTOMER_NAME$, +Chère/Cher $CUSTOMER_NAME$, -ODMS Cloudをご利用いただきありがとうございます。 +L'enregistrement groupé des utilisateurs à l'aide du fichier CSV a échoué. La cause et l'emplacement de l'erreur sont indiqués aux points 1, 2 et 3 ci-dessous. ( L = Ligne ) -CSVファイルによるユーザー一括登録に失敗しました。 + 1. L'adresse e-mail dans la ligne ci-dessous a déjà été enregistrée ou est un double d'une adresse e-mail dans une autre ligne. + $EMAIL_DUPLICATION$ - 1. 以下の行にあるE-mail addressは既に登録済みか、別の行のE-mail addressと重複しています。 - $EMAIL_DUPLICATION$ + 2. L'Identifiant Auteur dans la ligne ci-dessous est déjà enregistré ou est un double d'un Identifiant Auteur dans une autre ligne. + $AUTHOR_ID_DUPLICATION$ - 2. 以下の行にあるAuthorIDは既に登録済みか、別の行のAuthorIDと重複しています。 - $AUTHOR_ID_DUPLICATION$ + * L'adresse e-mail et l'Identifiant Auteur déjà enregistrés ne peuvent pas être enregistrés à nouveau. + * Les lignes sans erreurs ont été enregistrées avec succès. Par conséquent, si vous utilisez le même fichier CSV et enregistrez l'utilisateur qui a été enregistré avec succès, une erreur en double se produira. Veuillez créer un fichier CSV contenant uniquement les lignes où l'erreur s'est produite, ou enregistrez-les manuellement une par une. - *既に登録済みのE-mail address, Author IDを再登録することはできません。 + 3. Une erreur inattendue s'est produite lors de l'enregistrement de l'utilisateur sur la ligne suivante. Si cela ne fonctionne pas après une nouvelle tentative, veuillez contacter votre revendeur. + $UNEXPECTED_ERROR$ - - 3. 以下の行のユーザー登録時に想定外のエラーが発生しました。時間をおいて再度実行しても成功しない場合はディーラーにお問い合わせください。 -   $UNEXPECTED_ERROR$ - -If you received this e-mail in error, please delete this e-mail from your system. -This is an automatically generated e-mail, please do not reply. \ No newline at end of file +Si vous avez reçu cet e-mail par erreur, veuillez supprimer cet e-mail de votre système. +Il s'agit d'un e-mail généré automatiquement et cette boîte aux lettres n'est pas surveillée. Merci de ne pas répondre. \ No newline at end of file diff --git a/dictation_server/src/templates/template_U_123.html b/dictation_server/src/templates/template_U_123.html index 2e46fc4..86c1e5b 100644 --- a/dictation_server/src/templates/template_U_123.html +++ b/dictation_server/src/templates/template_U_123.html @@ -1,65 +1,64 @@ - - Storage Usage Exceeded Notification [U-119] - - -
-

<English>

-

Dear $CUSTOMER_NAME$, -> $PRIMARY_ADMIN_NAME$

-

ODMS Cloudをご利用いただきありがとうございます。

-

- お客様のアカウント情報は$DEALER_NAME$によりODMS - Cloudから削除されました。 -

-

- 再度ODMS - Cloudにアカウント登録する場合は、$DEALER_NAME$にご相談いただくか、OM - Degital Solutionsに問い合わせください。 -

-

- If you received this e-mail in error, please delete this e-mail from - your system.
- This is an automatically generated e-mail, please do not reply. -

-
-
-

<Deutsch>

-

Dear $CUSTOMER_NAME$, -> $PRIMARY_ADMIN_NAME$

-

ODMS Cloudをご利用いただきありがとうございます。

-

- お客様のアカウント情報は$DEALER_NAME$によりODMS - Cloudから削除されました。 -

-

- 再度ODMS - Cloudにアカウント登録する場合は、$DEALER_NAME$にご相談いただくか、OM - Degital Solutionsに問い合わせください。 -

-

- If you received this e-mail in error, please delete this e-mail from - your system.
- This is an automatically generated e-mail, please do not reply. -

-
-
-

<Français>

-

Dear $CUSTOMER_NAME$, -> $PRIMARY_ADMIN_NAME$

-

ODMS Cloudをご利用いただきありがとうございます。

-

- お客様のアカウント情報は$DEALER_NAME$によりODMS - Cloudから削除されました。 -

-

- 再度ODMS - Cloudにアカウント登録する場合は、$DEALER_NAME$にご相談いただくか、OM - Degital Solutionsに問い合わせください。 -

-

- If you received this e-mail in error, please delete this e-mail from - your system.
- This is an automatically generated e-mail, please do not reply. -

-
- - + + Partner Account Deleted Notification [U-123] + + + +
+

<English>

+

+ Dear $CUSTOMER_NAME$, -> $PRIMARY_ADMIN_NAME$ +

+

+ Your account information has been removed from the ODMS Cloud by $DEALER_NAME$. +

+

+ If you would like to register your account with the ODMS Cloud again, please contact your $DEALER_NAME$ or contact + OM + System directly. +

+

+ If you received this e-mail in error, please delete this e-mail from your system.
+ This is an automatically generated e-mail and this mailbox is not monitored. Please do not reply. +

+
+
+

<Deutsch>

+

+ Sehr geehrte(r) $CUSTOMER_NAME$, -> $PRIMARY_ADMIN_NAME$ +

+

+ Ihre Kontoinformationen wurden von $DEALER_NAME$ aus der ODMS Cloud entfernt. +

+

+ Wenn Sie Ihr Konto erneut bei der ODMS Cloud registrieren möchten, wenden Sie sich bitte an Ihren $DEALER_NAME$ + oder + wenden Sie sich direkt an OM System. +

+

+ Wenn Sie diese E-Mail irrtümlich erhalten haben, löschen Sie diese E-Mail bitte aus Ihrem System.
+ Dies ist eine automatisch generierte E-Mail und diese Mailbox wird nicht überwacht. Bitte antworten Sie nicht. +

+
+
+

<Français>

+

+ Chère/Cher $CUSTOMER_NAME$, -> $PRIMARY_ADMIN_NAME$ +

+

+ Les informations de votre compte ont été supprimées du cloud ODMS par $DEALER_NAME$. +

+

+ Si vous souhaitez enregistrer à nouveau votre compte sur ODMS Cloud, veuillez contacter votre $DEALER_NAME$ ou + contacter directement OM System. +

+

+ Si vous avez reçu cet e-mail par erreur, veuillez supprimer cet e-mail de votre système.
+ Il s'agit d'un e-mail généré automatiquement et cette boîte aux lettres n'est pas surveillée. Merci de ne pas + répondre. +

+
+ + + \ No newline at end of file diff --git a/dictation_server/src/templates/template_U_123.txt b/dictation_server/src/templates/template_U_123.txt index 3a98e16..ea9f994 100644 --- a/dictation_server/src/templates/template_U_123.txt +++ b/dictation_server/src/templates/template_U_123.txt @@ -2,37 +2,31 @@ Dear $CUSTOMER_NAME$, -> $PRIMARY_ADMIN_NAME$ -ODMS Cloudをご利用いただきありがとうございます。 +Your account information has been removed from the ODMS Cloud by $DEALER_NAME$. -お客様のアカウント情報は$DEALER_NAME$によりODMS Cloudから削除されました。 - -再度ODMS Cloudにアカウント登録する場合は、$DEALER_NAME$にご相談いただくか、OM Degital Solutionsに問い合わせください。 +If you would like to register your account with the ODMS Cloud again, please contact your $DEALER_NAME$ or contact OM System directly. If you received this e-mail in error, please delete this e-mail from your system. -This is an automatically generated e-mail, please do not reply. +This is an automatically generated e-mail and this mailbox is not monitored. Please do not reply. -Dear $CUSTOMER_NAME$, -> $PRIMARY_ADMIN_NAME$ +Sehr geehrte(r) $CUSTOMER_NAME$, -> $PRIMARY_ADMIN_NAME$ -ODMS Cloudをご利用いただきありがとうございます。 +Ihre Kontoinformationen wurden von $DEALER_NAME$ aus der ODMS Cloud entfernt. -お客様のアカウント情報は$DEALER_NAME$によりODMS Cloudから削除されました。 +Wenn Sie Ihr Konto erneut bei der ODMS Cloud registrieren möchten, wenden Sie sich bitte an Ihren $DEALER_NAME$ oder wenden Sie sich direkt an OM System. -再度ODMS Cloudにアカウント登録する場合は、$DEALER_NAME$にご相談いただくか、OM Degital Solutionsに問い合わせください。 - -If you received this e-mail in error, please delete this e-mail from your system. -This is an automatically generated e-mail, please do not reply. +Wenn Sie diese E-Mail irrtümlich erhalten haben, löschen Sie diese E-Mail bitte aus Ihrem System. +Dies ist eine automatisch generierte E-Mail und diese Mailbox wird nicht überwacht. Bitte antworten Sie nicht. -Dear $CUSTOMER_NAME$, -> $PRIMARY_ADMIN_NAME$ +Chère/Cher $CUSTOMER_NAME$, -> $PRIMARY_ADMIN_NAME$ -ODMS Cloudをご利用いただきありがとうございます。 +Les informations de votre compte ont été supprimées du cloud ODMS par $DEALER_NAME$. -お客様のアカウント情報は$DEALER_NAME$によりODMS Cloudから削除されました。 +Si vous souhaitez enregistrer à nouveau votre compte sur ODMS Cloud, veuillez contacter votre $DEALER_NAME$ ou contacter directement OM System. -再度ODMS Cloudにアカウント登録する場合は、$DEALER_NAME$にご相談いただくか、OM Degital Solutionsに問い合わせください。 - -If you received this e-mail in error, please delete this e-mail from your system. -This is an automatically generated e-mail, please do not reply. \ No newline at end of file +Si vous avez reçu cet e-mail par erreur, veuillez supprimer cet e-mail de votre système. +Il s'agit d'un e-mail généré automatiquement et cette boîte aux lettres n'est pas surveillée. Merci de ne pas répondre. \ No newline at end of file