Merged PR 650: 最新の翻訳情報をWebアプリに適用する
## 概要 [Task3357: 最新の翻訳情報をWebアプリに適用する](https://paruru.nds-tyo.co.jp:8443/tfs/ReciproCollection/fa4924a4-d079-4fab-9fb5-a9a11eb205f0/_workitems/edit/3357) - 最新の翻訳情報を反映 ## レビューポイント - 特になし ## UIの変更 - Before/Afterのスクショなど - スクショ置き場 ## 動作確認状況 - ローカルで確認、develop環境で確認など ## 補足 - 以下の翻訳情報はまだもらえていないので、残っている ``` タスク一覧 dictationPage.message.backupFailedError dictationPage.message.cancelFailedError dictationPage.label.fileBackup dictationPage.label.downloadForBackup dictationPage.label.applications 共通 common.label.headerSupport ヘルプページ全般 ライセンス情報 LicenseSummaryPage.label.licenseLabel LicenseSummaryPage.label.storageLabel
This commit is contained in:
parent
9baae2d2dc
commit
16f743c4c4
@ -51,7 +51,7 @@ export const HEADER_MENUS: {
|
||||
},
|
||||
];
|
||||
|
||||
export const HEADER_NAME = getTranslationID("common.label.headerName");
|
||||
export const HEADER_NAME = "ODMS Cloud";
|
||||
|
||||
/**
|
||||
* adminのみに表示するヘッダータブ
|
||||
|
||||
@ -74,7 +74,7 @@ const LoginedHeader: React.FC<HeaderProps> = (props: HeaderProps) => {
|
||||
<div className={styles.headerLogo}>
|
||||
<img src={logo} alt="OM System" />
|
||||
</div>
|
||||
<div className={styles.headerSub}>{t(HEADER_NAME)}</div>
|
||||
<div className={styles.headerSub}>{HEADER_NAME}</div>
|
||||
<div className={styles.headerMenu}>
|
||||
<ul>
|
||||
{filterMenus.map((x) => (
|
||||
|
||||
@ -19,7 +19,7 @@ const NotLoginHeader: React.FC<NotLoginHeaderProps> = (
|
||||
<div className={`${styles.headerLogo}`}>
|
||||
<img src={logo} alt="OM System" />
|
||||
</div>
|
||||
<p className={`${styles.headerSub}`}>{t(HEADER_NAME)}</p>
|
||||
<p className={`${styles.headerSub}`}>{HEADER_NAME}</p>
|
||||
</header>
|
||||
);
|
||||
};
|
||||
|
||||
@ -38,7 +38,7 @@ export const FilePropertyPopup: React.FC<FilePropertyPopupProps> = (props) => {
|
||||
</p>
|
||||
<dl className={`${styles.formList} ${styles.property} ${styles.hasbg}`}>
|
||||
<dt className={styles.formTitle}>
|
||||
{t(getTranslationID("dictationPage.label.general"))}
|
||||
{t(getTranslationID("filePropertyPopup.label.general"))}
|
||||
</dt>
|
||||
<dt>{t(getTranslationID("dictationPage.label.fileName"))}</dt>
|
||||
<dd>{selectedFileTask?.fileName.replace(".zip", "") ?? ""}</dd>
|
||||
@ -93,7 +93,7 @@ export const FilePropertyPopup: React.FC<FilePropertyPopupProps> = (props) => {
|
||||
<dt>{t(getTranslationID("dictationPage.label.comment"))}</dt>
|
||||
<dd>{selectedFileTask?.comment ?? ""}</dd>
|
||||
<dt className={styles.formTitle}>
|
||||
{t(getTranslationID("dictationPage.label.job"))}
|
||||
{t(getTranslationID("filePropertyPopup.label.job"))}
|
||||
</dt>
|
||||
<dt>{t(getTranslationID("dictationPage.label.jobNumber"))}</dt>
|
||||
<dd>{selectedFileTask?.jobNumber ?? ""}</dd>
|
||||
@ -116,7 +116,7 @@ export const FilePropertyPopup: React.FC<FilePropertyPopupProps> = (props) => {
|
||||
<dd className={`${styles.full} ${styles.alignRight}`}>
|
||||
<a onClick={closePopup} className={`${styles.buttonText}`}>
|
||||
<img src={close} className={styles.modalTitleIcon} alt="close" />
|
||||
{t(getTranslationID("dictationPage.label.close"))}
|
||||
{t(getTranslationID("filePropertyPopup.label.close"))}
|
||||
</a>
|
||||
</dd>
|
||||
</dl>
|
||||
|
||||
@ -126,7 +126,7 @@ const TermsPage: React.FC = (): JSX.Element => {
|
||||
>
|
||||
{t(getTranslationID("termsPage.label.linkOfEula"))}
|
||||
</a>
|
||||
{` ${t(getTranslationID("termsPage.label.forOdds"))}`}
|
||||
{` ${t(getTranslationID("termsPage.label.forOdms"))}`}
|
||||
</p>
|
||||
<p>
|
||||
<label>
|
||||
@ -159,7 +159,7 @@ const TermsPage: React.FC = (): JSX.Element => {
|
||||
getTranslationID("termsPage.label.linkOfPrivacyNotice")
|
||||
)}
|
||||
</a>
|
||||
{` ${t(getTranslationID("termsPage.label.forOdds"))}`}
|
||||
{` ${t(getTranslationID("termsPage.label.forOdms"))}`}
|
||||
</p>
|
||||
<p>
|
||||
<label>
|
||||
@ -194,7 +194,7 @@ const TermsPage: React.FC = (): JSX.Element => {
|
||||
>
|
||||
{t(getTranslationID("termsPage.label.linkOfDpa"))}
|
||||
</a>
|
||||
{` ${t(getTranslationID("termsPage.label.forOdds"))}`}
|
||||
{` ${t(getTranslationID("termsPage.label.forOdms"))}`}
|
||||
</p>
|
||||
<p>
|
||||
<label>
|
||||
|
||||
@ -2,13 +2,13 @@
|
||||
"common": {
|
||||
"message": {
|
||||
"inputEmptyError": "Pflichtfeld",
|
||||
"passwordIncorrectError": "(de)入力されたパスワードがルールを満たしていません。下記のルールを満たすパスワードを入力してください。",
|
||||
"emailIncorrectError": "(de)メールアドレスの形式が不正です。正しいメールアドレスの形式で入力してください。",
|
||||
"passwordIncorrectError": "Das von Ihnen eingegebene Passwort entspricht nicht den Spezifikationen. Bitte geben Sie das korrekte Passwort ein, wie in den Spezifikationen unten beschrieben.",
|
||||
"emailIncorrectError": "Das Format der E-Mail-Adresse ist ungültig. Bitte geben Sie eine gültige E-Mail-Adresse ein.",
|
||||
"internalServerError": "Verarbeitung fehlgeschlagen. Bitte versuchen Sie es später noch einmal.",
|
||||
"listEmpty": "Es gibt 0 Suchergebnisse.",
|
||||
"dialogConfirm": "Möchten Sie die Operation durchführen?",
|
||||
"success": "Erfolgreich verarbeitet",
|
||||
"displayDialog": "(de)サインアウトしてもよろしいですか?"
|
||||
"displayDialog": "Möchten Sie sich wirklich abmelden?"
|
||||
},
|
||||
"label": {
|
||||
"cancel": "Abbrechen",
|
||||
@ -17,22 +17,21 @@
|
||||
"save": "Speichern",
|
||||
"delete": "Löschen",
|
||||
"return": "zurückkehren",
|
||||
"operationInsteadOf": "(de)Operation instead of:",
|
||||
"headerName": "(de)ODMS Cloud",
|
||||
"headerAccount": "(de)Account",
|
||||
"headerUser": "(de)User",
|
||||
"headerLicense": "(de)License",
|
||||
"headerDictations": "(de)Dictations",
|
||||
"headerWorkflow": "(de)Workflow",
|
||||
"headerPartners": "(de)Partners",
|
||||
"operationInsteadOf": "Betrieb der ODMS Cloud im Auftrag von:",
|
||||
"headerAccount": "Konto",
|
||||
"headerUser": "Benutzer",
|
||||
"headerLicense": "Abonnement",
|
||||
"headerDictations": "Diktate",
|
||||
"headerWorkflow": "Arbeitsablauf",
|
||||
"headerPartners": "Partner",
|
||||
"headerSupport": "(de)Support",
|
||||
"tier1": "(de)Admin",
|
||||
"tier2": "(de)BC",
|
||||
"tier3": "(de)Distributor",
|
||||
"tier4": "(de)Dealer",
|
||||
"tier5": "(de)Customer",
|
||||
"notSelected": "(de)None",
|
||||
"signOutButton": "(de)Sign out"
|
||||
"tier1": "Admin",
|
||||
"tier2": "BC",
|
||||
"tier3": "Verteiler",
|
||||
"tier4": "Händler",
|
||||
"tier5": "Kunde",
|
||||
"notSelected": "Keine",
|
||||
"signOutButton": "Abmelden"
|
||||
}
|
||||
},
|
||||
"topPage": {
|
||||
@ -49,7 +48,7 @@
|
||||
"signInButton": "Anmelden",
|
||||
"newUser": "Neuer Benutzer",
|
||||
"signUpButton": "Benutzerkonto erstellen",
|
||||
"logoAlt": "(de)OM Dictation Management System in the Cloud"
|
||||
"logoAlt": "OM Dictation Management System in the Cloud"
|
||||
}
|
||||
},
|
||||
"signupPage": {
|
||||
@ -75,7 +74,7 @@
|
||||
"email": "E-Mail-Addresse",
|
||||
"password": "Passwort",
|
||||
"termsLink": "Klicken Sie hier, um die Nutzungsbedingungen zu lesen.",
|
||||
"termsLinkFor": "(de)for ODDS.",
|
||||
"termsLinkFor": "für ODMS Cloud.",
|
||||
"termsCheckBox": "Ja, ich stimme den Nutzungsbedingungen zu.",
|
||||
"createAccountButton": "Einreichen"
|
||||
}
|
||||
@ -176,7 +175,6 @@
|
||||
"freeLicense": "Anzahl ungenutzter Lizenzen",
|
||||
"expiringWithin14daysLicense": "Anzahl der Lizenzen, die innerhalb von 14 Tagen ablaufen",
|
||||
"issueRequesting": "Gesamtzahl der bestellten Lizenzen",
|
||||
"numberOfRequesting": "Gesamtzahl der Bestellungen",
|
||||
"shortage": "Mangel",
|
||||
"storageSize": "Lagerung verfügbar",
|
||||
"usedSize": "Gebrauchter Lagerung",
|
||||
@ -254,10 +252,7 @@
|
||||
"fileBackup": "(de)File Backup",
|
||||
"downloadForBackup": "(de)Download for backup",
|
||||
"applications": "(de)Applications",
|
||||
"cancelDictation": "(de)Cancel Dictation",
|
||||
"general": "(de)General",
|
||||
"job": "(de)Job",
|
||||
"close": "(de)Close"
|
||||
"cancelDictation": "Transkription abbrechen"
|
||||
}
|
||||
},
|
||||
"cardLicenseIssuePopupPage": {
|
||||
@ -379,29 +374,29 @@
|
||||
"workflowPage": {
|
||||
"label": {
|
||||
"title": "Arbeitsablauf",
|
||||
"addRoutingRule": "(de)Add Routing Rule",
|
||||
"editRoutingRule": "(de)Edit Routing Rule",
|
||||
"templateSetting": "(de)Template Setting",
|
||||
"worktypeIdSetting": "(de)WorktypeID Setting",
|
||||
"typistGroupSetting": "(de)Transcriptionist Group Setting",
|
||||
"addRoutingRule": "Routing-Regel hinzufügen",
|
||||
"editRoutingRule": "Routing-Regel bearbeiten",
|
||||
"templateSetting": "Vorlageneinstellung",
|
||||
"worktypeIdSetting": "Einstellung der Aufgabentypkennung",
|
||||
"typistGroupSetting": "Gruppeneinstellung für Transkriptionisten",
|
||||
"authorID": "Autoren-ID",
|
||||
"worktype": "Aufgabentypkennung",
|
||||
"worktypeOptional": "(de)Worktype ID (Optional)",
|
||||
"worktypeOptional": "Aufgabentypkennung (Optional)",
|
||||
"transcriptionist": "Transkriptionist",
|
||||
"template": "(de)Template",
|
||||
"templateOptional": "(de)Template (Optional)",
|
||||
"editRule": "(de)Edit Rule",
|
||||
"template": "Vorlage",
|
||||
"templateOptional": "Vorlage (Optional)",
|
||||
"editRule": "Regel bearbeiten",
|
||||
"selected": "Ausgewählter transkriptionist",
|
||||
"pool": "Transkriptionsliste",
|
||||
"selectAuthor": "(de)Select Author ID",
|
||||
"selectWorktypeId": "(de)Select Worktype ID",
|
||||
"selectTemplate": "(de)Select Template"
|
||||
"selectAuthor": "Autoren-ID auswählen",
|
||||
"selectWorktypeId": "Aufgabentypkennung auswählen",
|
||||
"selectTemplate": "Vorlage auswählen"
|
||||
},
|
||||
"message": {
|
||||
"selectedTypistEmptyError": "(de)Transcriptionist,TranscriptionistGroupがいないルーティングルールは保存できません。ルーティング先を1つ以上選択してください。",
|
||||
"workflowConflictError": "(de)指定したAuthorIDとWorktypeIDの組み合わせで既にルーティングルールが登録されています。他の組み合わせで登録してください。",
|
||||
"selectedTypistEmptyError": "Transkriptionist oder Transkriptionistgruppe wurde nicht ausgewählt. Bitte wählen Sie eine oder mehrere aus der Transkriptionsliste aus.",
|
||||
"workflowConflictError": "Eine Routing-Regel wurde bereits mit der angegebenen Kombination aus AuthorID und WorktypeID registriert. Bitte registrieren Sie sich mit einer anderen Kombination.",
|
||||
"inputEmptyError": "Pflichtfeld",
|
||||
"saveFailedError": "(de)ルーティングルールの保存に失敗しました。画面を更新し、再度実行してください"
|
||||
"saveFailedError": "Die Routing-Regel konnte nicht gespeichert werden. Bitte aktualisieren Sie den Bildschirm und versuchen Sie es erneut."
|
||||
}
|
||||
},
|
||||
"typistGroupSetting": {
|
||||
@ -435,38 +430,38 @@
|
||||
"addWorktype": "Aufgabentyp hinzufügen",
|
||||
"editWorktypeId": "Aufgabentypkennung bearbeiten",
|
||||
"saveChange": "Änderungen speichern",
|
||||
"editOptionItems": "(de)Option Item",
|
||||
"itemLabel": "(de)Item label",
|
||||
"defaultValue": "(de)Default value",
|
||||
"initialValue": "(de)Initial value",
|
||||
"default": "(de)Default",
|
||||
"blank": "(de)Blank",
|
||||
"lastInput": "(de)Last Input",
|
||||
"optionItemTerms": "(de)The Item label and Initial value should be alphanumeric and symbols, but not include: \\ / : * ? “ < > | ."
|
||||
"editOptionItems": "Optionales Attribut",
|
||||
"itemLabel": "Artikeletiketten",
|
||||
"defaultValue": "Standardwert",
|
||||
"initialValue": "Anfangswert",
|
||||
"default": "Standard",
|
||||
"blank": "Leer",
|
||||
"lastInput": "Letzte Werteingabe",
|
||||
"optionItemTerms": "Die Artikeletiketten und der Anfangswert können alphanumerische Zeichen und Symbole enthalten. Die folgenden Symbole können nicht verwendet werden:\\/:*?\"<>|."
|
||||
},
|
||||
"message": {
|
||||
"worktypeIdIncorrectError": "Die von Ihnen eingegebene Aufgabentypkennung entspricht nicht den Spezifikationen. Bitte geben Sie den korrekten Arbeitstyp ein, wie in den Spezifikationen unten beschrieben.",
|
||||
"alreadyWorktypeIdExistError": "Diese Aufgabentypkennung ist derzeit registriert. Bitte registrieren Sie sich mit einer anderen Worktype-ID.",
|
||||
"worktypeIDLimitError": "Die Aufgabentypkennung kann nicht hinzugefügt werden, da die maximale Anzahl an Registrierungen erreicht wurde.",
|
||||
"optionItemInvalidError": "(de)Default valueがDefaultに設定されている場合、Initial valueは入力が必須です。",
|
||||
"worktypeIdAlreadyDeletedError": "(de)WorktypeIDは既に削除されています。画面を更新し、再度ご確認ください",
|
||||
"optionItemSaveFailedError": "(de)オプションアイテムの保存に失敗しました。画面を更新し、再度実行してください",
|
||||
"optionItemIncorrectError": "(de)入力されたItem labelまたはInitial valueがルールを満たしていません。下記のルールを満たす値を入力してください",
|
||||
"updateActiveWorktypeFailedError": "(de)Active WorktypeIDの保存に失敗しました。画面を更新し、再度実行してください",
|
||||
"worktypeInUseError": "(de)このWorktype IDはルーティングルールで使用されているため削除できません。",
|
||||
"updateWorktypeFailedError": "(de)WorktypeIDの保存に失敗しました。画面を更新し、再度ご確認ください"
|
||||
"optionItemInvalidError": "Die Einstellung des Anfangswerts wurde nicht abgeschlossen. Bitte legen Sie den Anfangswert fest oder ändern Sie den Standardwert.",
|
||||
"worktypeIdAlreadyDeletedError": "Aufgabentypkennung wurde bereits gelöscht. Bitte aktualisieren Sie Ihren Bildschirm und überprüfen Sie es erneut.",
|
||||
"optionItemSaveFailedError": "Optionales Attribut konnte nicht gespeichert werden. Bitte aktualisieren Sie den Bildschirm und versuchen Sie es erneut.",
|
||||
"optionItemIncorrectError": "Die eingegebene Artikeletiketten oder der Anfangswert entspricht nicht den Regeln. Bitte geben Sie einen Wert ein, der den folgenden Regeln entspricht.",
|
||||
"updateActiveWorktypeFailedError": "Die aktive Aufgabentypkennung konnte nicht gespeichert werden. Bitte aktualisieren Sie Ihren Bildschirm und überprüfen Sie es erneut.",
|
||||
"worktypeInUseError": "Diese Aufgabentypkennung kann nicht gelöscht werden, da sie derzeit in einer Routing-Regel verwendet wird.",
|
||||
"updateWorktypeFailedError": "Aufgabentypkennung konnte nicht gespeichert werden. Bitte aktualisieren Sie den Bildschirm und versuchen Sie es erneut."
|
||||
}
|
||||
},
|
||||
"templateFilePage": {
|
||||
"label": {
|
||||
"title": "(de)Template List",
|
||||
"addTemplate": "(de)Add Template",
|
||||
"fileName": "(de)Flie Name",
|
||||
"chooseFile": "(de)Choose File",
|
||||
"notFileChosen": "(de)- Not file chosen -",
|
||||
"fileSizeTerms": "(de)ファイルサイズは5MBまでです。",
|
||||
"fileSizeError": "(de)選択されたファイルのサイズが大きすぎます。サイズが5MB以下のファイルを選択してください。",
|
||||
"fileEmptyError": "(de)ファイル選択は必須です。ファイルを選択してください。"
|
||||
"title": "Vorlagenliste",
|
||||
"addTemplate": "Vorlage hinzufügen",
|
||||
"fileName": "Dateiname",
|
||||
"chooseFile": "Datei aussuchen",
|
||||
"notFileChosen": "- Keine Datei ausgewählt -",
|
||||
"fileSizeTerms": "Die maximale Dateigröße, die gespeichert werden kann, beträgt 5 MB.",
|
||||
"fileSizeError": "Die ausgewählte Dateigröße ist zu groß. Bitte wählen Sie eine Datei mit einer Größe von 5 MB oder weniger aus.",
|
||||
"fileEmptyError": "Dateiauswahl ist erforderlich. Bitte wählen Sie eine Datei aus."
|
||||
}
|
||||
},
|
||||
"partnerPage": {
|
||||
@ -475,7 +470,7 @@
|
||||
"addAccount": "Konto hinzufügen",
|
||||
"name": "Name der Firma",
|
||||
"category": "Kontoebene",
|
||||
"accountId": "Autoren-ID",
|
||||
"accountId": "Konto-ID",
|
||||
"country": "Land",
|
||||
"primaryAdmin": "Hauptadministrator",
|
||||
"email": "Email",
|
||||
@ -484,60 +479,60 @@
|
||||
"deleteAccount": "Konto löschen"
|
||||
},
|
||||
"message": {
|
||||
"delegateNotAllowedError": "(de)パートナーの代行操作が許可されていません。画面を更新し、再度ご確認ください。",
|
||||
"deleteFailedError": "(de)代行操作に失敗しました。画面を更新し、再度ご確認ください。",
|
||||
"delegateCancelError": "(de)代行操作の許可が取り消されたため、代行操作を終了しました。"
|
||||
"delegateNotAllowedError": "Aktionen im Namen des Partners sind nicht zulässig. Bitte aktualisieren Sie den Bildschirm und überprüfen Sie ihn erneut.",
|
||||
"deleteFailedError": "Der Delegierungsvorgang ist fehlgeschlagen. Bitte aktualisieren Sie den Bildschirm und überprüfen Sie ihn erneut.",
|
||||
"delegateCancelError": "Der delegierte Vorgang wurde beendet, da die Berechtigung für den delegierten Vorgang widerrufen wurde."
|
||||
}
|
||||
},
|
||||
"accountPage": {
|
||||
"label": {
|
||||
"title": "(de)Account",
|
||||
"fileDeleteSetting": "(de)File Delete Setting",
|
||||
"accountInformation": "(de)Account Information",
|
||||
"companyName": "(de)Company Name",
|
||||
"accountID": "(de)Account ID",
|
||||
"yourCategory": "(de)Your Category",
|
||||
"yourCountry": "(de)Your Country",
|
||||
"yourDealer": "(de)Your Dealer(Upper layer)",
|
||||
"selectDealer": "(de)Select Dealer",
|
||||
"dealerManagement": "(de)Dealer Management",
|
||||
"administratorInformation": "(de)Administrator Information",
|
||||
"primaryAdministrator": "(de)Primary Administrator",
|
||||
"secondaryAdministrator": "(de)Secondary Administrator",
|
||||
"emailAddress": "(de)E-mail address",
|
||||
"selectSecondaryAdministrator": "(de)Select Secondary Administrator",
|
||||
"saveChanges": "(de)Save Changes",
|
||||
"deleteAccount": "(de)Delete Account"
|
||||
"title": "Konto",
|
||||
"fileDeleteSetting": "Einstellung zum Löschen von Dateien",
|
||||
"accountInformation": "Kontoinformationen",
|
||||
"companyName": "Name der Firma",
|
||||
"accountID": "Konto-ID",
|
||||
"yourCategory": "Konto Typ",
|
||||
"yourCountry": "Land",
|
||||
"yourDealer": "Händler",
|
||||
"selectDealer": "Händler auswählen",
|
||||
"dealerManagement": "Erlauben Sie dem Händler, Änderungen vorzunehmen",
|
||||
"administratorInformation": "Administratorinformationen",
|
||||
"primaryAdministrator": "Hauptadministrator",
|
||||
"secondaryAdministrator": "Zweiter Administrator",
|
||||
"emailAddress": "E-Mail-Addresse",
|
||||
"selectSecondaryAdministrator": "Sekundäradministrator auswählen",
|
||||
"saveChanges": "Änderungen speichern",
|
||||
"deleteAccount": "Konto löschen"
|
||||
},
|
||||
"message": {
|
||||
"updateAccountFailedError": "(de)アカウント情報の保存に失敗しました。画面を更新し、再度実行してください"
|
||||
"updateAccountFailedError": "Kontoinformationen konnten nicht gespeichert werden. Bitte aktualisieren Sie den Bildschirm und versuchen Sie es erneut."
|
||||
}
|
||||
},
|
||||
"deleteAccountPopup": {
|
||||
"label": {
|
||||
"title": "(de)Delete Account",
|
||||
"subTitle": "(de)Delete your account?",
|
||||
"cautionOfDeleteingAccountData": "(de)Deleting your account will remove all of your audio files and\nlicenses from system. and you'll cannot use ODMS Cloud.\nThis cannot be undone.",
|
||||
"deleteButton": "(de)Delete account",
|
||||
"cancelButton": "(de)Cancel"
|
||||
"title": "Konto löschen",
|
||||
"subTitle": "Lösche deinen Konto?",
|
||||
"cautionOfDeleteingAccountData": "Durch das Löschen Ihres Kontos werden alle Benutzerinformationen, Lizenzen und Diktatdateien aus dem System entfernt. Gelöschte Informationen können nicht wiederhergestellt werden.",
|
||||
"deleteButton": "Konto löschen",
|
||||
"cancelButton": "Abbrechen"
|
||||
}
|
||||
},
|
||||
"accountDeleteSuccess": {
|
||||
"label": {
|
||||
"title": "(de)Account Delete Success",
|
||||
"message": "(de)Your account has been deleted. Thank you for using our services.",
|
||||
"backToTopPageLink": "(de)Back to TOP Page"
|
||||
"title": "Kontolöschung erfolgreich",
|
||||
"message": "Dein Account wurde gelöscht. Vielen Dank, dass Sie die ODMS Cloud nutzen.",
|
||||
"backToTopPageLink": "Zurück zur Startseite"
|
||||
}
|
||||
},
|
||||
"termsPage": {
|
||||
"label": {
|
||||
"title": "(de)Terms of Use has updated. Please confirm again.",
|
||||
"linkOfEula": "(de)Click here to read the terms of use.",
|
||||
"linkOfDpa": "(de)Click here to read the terms of use.",
|
||||
"checkBoxForConsent": "(de)Yes, I agree to the terms of use.",
|
||||
"forOdds": "(de)for ODDS.",
|
||||
"button": "(de)Continue",
|
||||
"linkOfPrivacyNotice": "(de)Click here to read the terms of use."
|
||||
"title": "Die Nutzungsbedingungen wurden aktualisiert. Für die weitere Nutzung der ODMS Cloud ist eine erneute Bestätigung erforderlich.",
|
||||
"linkOfEula": "Klicken Sie hier, um die Endbenutzer-Lizenzvereinbarung zu lesen.",
|
||||
"linkOfDpa": "Klicken Sie hier, um die Datenverarbeitungsvereinbarung zu lesen.",
|
||||
"checkBoxForConsent": "Ja, ich stimme den Nutzungsbedingungen zu.",
|
||||
"forOdms": "für ODMS Cloud.",
|
||||
"button": "Fortsetzen",
|
||||
"linkOfPrivacyNotice": "Klicken Sie hier, um die Datenschutzerklärung zu lesen."
|
||||
}
|
||||
},
|
||||
"supportPage": {
|
||||
|
||||
@ -2,13 +2,13 @@
|
||||
"common": {
|
||||
"message": {
|
||||
"inputEmptyError": "Mandatory Field",
|
||||
"passwordIncorrectError": "入力されたパスワードがルールを満たしていません。下記のルールを満たすパスワードを入力してください。",
|
||||
"emailIncorrectError": "メールアドレスの形式が不正です。正しいメールアドレスの形式で入力してください。",
|
||||
"passwordIncorrectError": "The password you entered does not meet specifications. Please enter the correct password as outlined in the specifications below.",
|
||||
"emailIncorrectError": "The format of the e-mail address is not valid. Please enter a valid email address.",
|
||||
"internalServerError": "Processing failed. Please try again later. ",
|
||||
"listEmpty": "There are 0 search results.",
|
||||
"dialogConfirm": "Do you want to perform the operation?",
|
||||
"success": "Successfully Processed",
|
||||
"displayDialog": "サインアウトしてもよろしいですか?"
|
||||
"displayDialog": "Are you sure you want to sign out?"
|
||||
},
|
||||
"label": {
|
||||
"cancel": "Cancel",
|
||||
@ -17,11 +17,10 @@
|
||||
"save": "Save",
|
||||
"delete": "Delete",
|
||||
"return": "Return",
|
||||
"operationInsteadOf": "Operation instead of:",
|
||||
"headerName": "ODMS Cloud",
|
||||
"operationInsteadOf": "Operating the ODMS Cloud on behalf of:",
|
||||
"headerAccount": "Account",
|
||||
"headerUser": "User",
|
||||
"headerLicense": "License",
|
||||
"headerLicense": "Subscription",
|
||||
"headerDictations": "Dictations",
|
||||
"headerWorkflow": "Workflow",
|
||||
"headerPartners": "Partners",
|
||||
@ -75,7 +74,7 @@
|
||||
"email": "Email Address",
|
||||
"password": "Password",
|
||||
"termsLink": "Click here to read the terms of use",
|
||||
"termsLinkFor": "for ODDS.",
|
||||
"termsLinkFor": "for OMDS Cloud.",
|
||||
"termsCheckBox": "Yes, I agree to the terms of use.",
|
||||
"createAccountButton": "Submit"
|
||||
}
|
||||
@ -176,7 +175,6 @@
|
||||
"freeLicense": "Number of unused licenses",
|
||||
"expiringWithin14daysLicense": "Number of licenses expiring within 14 days",
|
||||
"issueRequesting": "Total number of licenses on order",
|
||||
"numberOfRequesting": "Total number of orders",
|
||||
"shortage": "Shortage",
|
||||
"storageSize": "Storage Available",
|
||||
"usedSize": "Storage Used",
|
||||
@ -254,10 +252,7 @@
|
||||
"fileBackup": "File Backup",
|
||||
"downloadForBackup": "Download for backup",
|
||||
"applications": "Applications",
|
||||
"cancelDictation": "Cancel Dictation",
|
||||
"general": "General",
|
||||
"job": "Job",
|
||||
"close": "Close"
|
||||
"cancelDictation": "Cancel Transcription"
|
||||
}
|
||||
},
|
||||
"cardLicenseIssuePopupPage": {
|
||||
@ -382,7 +377,7 @@
|
||||
"addRoutingRule": "Add Routing Rule",
|
||||
"editRoutingRule": "Edit Routing Rule",
|
||||
"templateSetting": "Template Setting",
|
||||
"worktypeIdSetting": "WorktypeID Setting",
|
||||
"worktypeIdSetting": "Worktype ID Setting",
|
||||
"typistGroupSetting": "Transcriptionist Group Setting",
|
||||
"authorID": "Author ID",
|
||||
"worktype": "Worktype ID",
|
||||
@ -398,10 +393,10 @@
|
||||
"selectTemplate": "Select Template"
|
||||
},
|
||||
"message": {
|
||||
"selectedTypistEmptyError": "Transcriptionist,TranscriptionistGroupがいないルーティングルールは保存できません。ルーティング先を1つ以上選択してください。",
|
||||
"workflowConflictError": "指定したAuthorIDとWorktypeIDの組み合わせで既にルーティングルールが登録されています。他の組み合わせで登録してください。",
|
||||
"selectedTypistEmptyError": "Transcriptionist, or Transcriptionist Group has not been selected. Please select one or more from the Transcription List.",
|
||||
"workflowConflictError": "A routing rule has already been registered with the specified AuthorID and WorktypeID combination. Please register with different combination.",
|
||||
"inputEmptyError": "Mandatory Field",
|
||||
"saveFailedError": "ルーティングルールの保存に失敗しました。画面を更新し、再度実行してください"
|
||||
"saveFailedError": "Failed to save the routing rule. Please refresh the screen and try again."
|
||||
}
|
||||
},
|
||||
"typistGroupSetting": {
|
||||
@ -436,37 +431,37 @@
|
||||
"editWorktypeId": "Edit Worktype ID",
|
||||
"saveChange": "Save Changes",
|
||||
"editOptionItems": "Option Item",
|
||||
"itemLabel": "Item label",
|
||||
"itemLabel": "Item labels",
|
||||
"defaultValue": "Default value",
|
||||
"initialValue": "Initial value",
|
||||
"default": "Default",
|
||||
"blank": "Blank",
|
||||
"lastInput": "Last Input",
|
||||
"optionItemTerms": "The Item label and Initial value should be alphanumeric and symbols, but not include: \\ / : * ? “ < > | ."
|
||||
"lastInput": "Last input value",
|
||||
"optionItemTerms": "The Item label and Initial value can contain alphanumeric and symbols. The following symbols cannot be used:\\/:*?\"<>|."
|
||||
},
|
||||
"message": {
|
||||
"worktypeIdIncorrectError": "The Worktype ID you entered does not meet specifications. Please enter the correct Worktype as outlined in the specifications below.",
|
||||
"alreadyWorktypeIdExistError": "This Worktype ID is currently registered. Please register with a different Worktype ID.",
|
||||
"worktypeIDLimitError": "Worktype ID cannot be added because it has reached the maximum number of registrations.",
|
||||
"optionItemInvalidError": "Default valueがDefaultに設定されている場合、Initial valueは入力が必須です。",
|
||||
"worktypeIdAlreadyDeletedError": "WorktypeIDは既に削除されています。画面を更新し、再度ご確認ください",
|
||||
"optionItemSaveFailedError": "オプションアイテムの保存に失敗しました。画面を更新し、再度実行してください",
|
||||
"optionItemIncorrectError": "入力されたItem labelまたはInitial valueがルールを満たしていません。下記のルールを満たす値を入力してください",
|
||||
"updateActiveWorktypeFailedError": "Active WorktypeIDの保存に失敗しました。画面を更新し、再度実行してください",
|
||||
"worktypeInUseError": "このWorktype IDはルーティングルールで使用されているため削除できません。",
|
||||
"updateWorktypeFailedError": "WorktypeIDの保存に失敗しました。画面を更新し、再度ご確認ください"
|
||||
"optionItemInvalidError": "Initial value setting has not been completed. Please set the Initial value or change the Default value.",
|
||||
"worktypeIdAlreadyDeletedError": "WorktypeID has already been deleted. Please refresh your screen and check again.",
|
||||
"optionItemSaveFailedError": "Failed to save Option Item. Please refresh the screen and try again.",
|
||||
"optionItemIncorrectError": "The entered Item label or Initial value does not meet the rules. Please enter a value that meets the rules below.",
|
||||
"updateActiveWorktypeFailedError": "Failed to save Active WorktypeID. Please refresh your screen and check again.",
|
||||
"worktypeInUseError": "This Worktype ID cannot be deleted because it is currently being used in a routing rule.",
|
||||
"updateWorktypeFailedError": "Failed to save WorktypeID. Please refresh the screen and try again."
|
||||
}
|
||||
},
|
||||
"templateFilePage": {
|
||||
"label": {
|
||||
"title": "Template List",
|
||||
"addTemplate": "Add Template",
|
||||
"fileName": "Flie Name",
|
||||
"chooseFile": "Choose File",
|
||||
"notFileChosen": "- Not file chosen -",
|
||||
"fileSizeTerms": "ファイルサイズは5MBまでです。",
|
||||
"fileSizeError": "選択されたファイルのサイズが大きすぎます。サイズが5MB以下のファイルを選択してください。",
|
||||
"fileEmptyError": "ファイル選択は必須です。ファイルを選択してください。"
|
||||
"fileName": "File Name",
|
||||
"chooseFile": "Select file",
|
||||
"notFileChosen": "- No file selected -",
|
||||
"fileSizeTerms": "The maximum file size that can be saved is 5MB.",
|
||||
"fileSizeError": "The selected file size is too large. Please select a file that is 5MB or less in size.",
|
||||
"fileEmptyError": "File selection is required. Please select a file."
|
||||
}
|
||||
},
|
||||
"partnerPage": {
|
||||
@ -484,9 +479,9 @@
|
||||
"deleteAccount": "Delete Account"
|
||||
},
|
||||
"message": {
|
||||
"delegateNotAllowedError": "パートナーの代行操作が許可されていません。画面を更新し、再度ご確認ください。",
|
||||
"deleteFailedError": "代行操作に失敗しました。画面を更新し、再度ご確認ください。",
|
||||
"delegateCancelError": "代行操作の許可が取り消されたため、代行操作を終了しました。"
|
||||
"delegateNotAllowedError": "Actions on behalf of partner are not allowed. Please refresh the screen and check again.",
|
||||
"deleteFailedError": "Delegate operation failed. Please refresh the screen and check again.",
|
||||
"delegateCancelError": "The delegated operation has been terminated because permission for the delegated operation has been revoked."
|
||||
}
|
||||
},
|
||||
"accountPage": {
|
||||
@ -496,48 +491,48 @@
|
||||
"accountInformation": "Account Information",
|
||||
"companyName": "Company Name",
|
||||
"accountID": "Account ID",
|
||||
"yourCategory": "Your Category",
|
||||
"yourCountry": "Your Country",
|
||||
"yourDealer": "Your Dealer(Upper layer)",
|
||||
"yourCategory": "Account Type",
|
||||
"yourCountry": "Country",
|
||||
"yourDealer": "Dealer",
|
||||
"selectDealer": "Select Dealer",
|
||||
"dealerManagement": "Dealer Management",
|
||||
"administratorInformation": "Administrator Information",
|
||||
"primaryAdministrator": "Primary Administrator",
|
||||
"primaryAdministrator": "Primary administrator",
|
||||
"secondaryAdministrator": "Secondary Administrator",
|
||||
"emailAddress": "E-mail address",
|
||||
"emailAddress": "Email Address",
|
||||
"selectSecondaryAdministrator": "Select Secondary Administrator",
|
||||
"saveChanges": "Save Changes",
|
||||
"deleteAccount": "Delete Account"
|
||||
},
|
||||
"message": {
|
||||
"updateAccountFailedError": "アカウント情報の保存に失敗しました。画面を更新し、再度実行してください"
|
||||
"updateAccountFailedError": "Failed to save account information. Please refresh the screen and try again."
|
||||
}
|
||||
},
|
||||
"deleteAccountPopup": {
|
||||
"label": {
|
||||
"title": "Delete Account",
|
||||
"subTitle": "Delete your account?",
|
||||
"cautionOfDeleteingAccountData": "Deleting your account will remove all of your audio files and\nlicenses from system. and you'll cannot use ODMS Cloud.\nThis cannot be undone.",
|
||||
"deleteButton": "Delete account",
|
||||
"cautionOfDeleteingAccountData": "Deleting your account will remove all user information, licenses, and dictation files from the system. Deleted information cannot be restored.",
|
||||
"deleteButton": "Delete Account",
|
||||
"cancelButton": "Cancel"
|
||||
}
|
||||
},
|
||||
"accountDeleteSuccess": {
|
||||
"label": {
|
||||
"title": "Account Delete Success",
|
||||
"message": "Your account has been deleted. Thank you for using our services.",
|
||||
"message": "Your account has been deleted. Thank you for using the ODMS Cloud.",
|
||||
"backToTopPageLink": "Back to TOP Page"
|
||||
}
|
||||
},
|
||||
"termsPage": {
|
||||
"label": {
|
||||
"title": "Terms of Use has updated. Please confirm again.",
|
||||
"linkOfEula": "Click here to read the terms of use.",
|
||||
"linkOfDpa": "Click here to read the terms of use.",
|
||||
"title": "Terms of Use have been updated. Reconfirmation is required to continue using the ODMS Cloud.",
|
||||
"linkOfEula": "Click here to read the End User License Agreement.",
|
||||
"linkOfDpa": "Click here to read the Data Processing Agreement.",
|
||||
"checkBoxForConsent": "Yes, I agree to the terms of use.",
|
||||
"forOdds": "for ODDS.",
|
||||
"forOdms": "for ODMS Cloud.",
|
||||
"button": "Continue",
|
||||
"linkOfPrivacyNotice": "Click here to read the terms of use."
|
||||
"linkOfPrivacyNotice": "Click here to read the Privacy Notice."
|
||||
}
|
||||
},
|
||||
"supportPage": {
|
||||
|
||||
@ -2,13 +2,13 @@
|
||||
"common": {
|
||||
"message": {
|
||||
"inputEmptyError": "Campo obligatorio",
|
||||
"passwordIncorrectError": "(es)入力されたパスワードがルールを満たしていません。下記のルールを満たすパスワードを入力してください。",
|
||||
"emailIncorrectError": "(es)メールアドレスの形式が不正です。正しいメールアドレスの形式で入力してください。",
|
||||
"passwordIncorrectError": "La contraseña que ingresó no cumple con las especificaciones. Ingrese la contraseña correcta como se describe en las especificaciones a continuación.",
|
||||
"emailIncorrectError": "El formato de la dirección de correo electrónico no es válido. Por favor, introduce una dirección de correo electrónico válida.",
|
||||
"internalServerError": "El procesamiento falló. Por favor, inténtelo de nuevo más tarde.",
|
||||
"listEmpty": "Hay 0 resultados de búsqueda.",
|
||||
"dialogConfirm": "¿Quieres realizar la operación?",
|
||||
"success": "Procesado con éxito",
|
||||
"displayDialog": "(es)サインアウトしてもよろしいですか?"
|
||||
"displayDialog": "¿Estás seguro de que quieres cerrar sesión?"
|
||||
},
|
||||
"label": {
|
||||
"cancel": "Cancelar",
|
||||
@ -17,22 +17,21 @@
|
||||
"save": "Ahorrar",
|
||||
"delete": "Delete",
|
||||
"return": "Devolver",
|
||||
"operationInsteadOf": "(es)Operation instead of:",
|
||||
"headerName": "(es)ODMS Cloud",
|
||||
"headerAccount": "(es)Account",
|
||||
"headerUser": "(es)User",
|
||||
"headerLicense": "(es)License",
|
||||
"headerDictations": "(es)Dictations",
|
||||
"headerWorkflow": "(es)Workflow",
|
||||
"headerPartners": "(es)Partners",
|
||||
"operationInsteadOf": "Operar la nube ODMS en nombre de:",
|
||||
"headerAccount": "Cuenta",
|
||||
"headerUser": "Usuario",
|
||||
"headerLicense": "Suscripción",
|
||||
"headerDictations": "Dictado",
|
||||
"headerWorkflow": "flujo de trabajo",
|
||||
"headerPartners": "Socios",
|
||||
"headerSupport": "(es)Support",
|
||||
"tier1": "(es)Admin",
|
||||
"tier2": "(es)BC",
|
||||
"tier3": "(es)Distributor",
|
||||
"tier4": "(es)Dealer",
|
||||
"tier5": "(es)Customer",
|
||||
"notSelected": "(es)None",
|
||||
"signOutButton": "(es)Sign out"
|
||||
"tier1": "Admin",
|
||||
"tier2": "BC",
|
||||
"tier3": "Distribuidor",
|
||||
"tier4": "Concesionario",
|
||||
"tier5": "Cliente",
|
||||
"notSelected": "Ninguno",
|
||||
"signOutButton": "cerrar sesión"
|
||||
}
|
||||
},
|
||||
"topPage": {
|
||||
@ -49,7 +48,7 @@
|
||||
"signInButton": "Iniciar sesión",
|
||||
"newUser": "Nuevo usuario",
|
||||
"signUpButton": "Crear una cuenta",
|
||||
"logoAlt": "(es)OM Dictation Management System in the Cloud"
|
||||
"logoAlt": "OM Dictation Management System in the Cloud"
|
||||
}
|
||||
},
|
||||
"signupPage": {
|
||||
@ -75,7 +74,7 @@
|
||||
"email": "Dirección de correo electrónico",
|
||||
"password": "Contraseña",
|
||||
"termsLink": "Haga clic aquí para leer el término de uso.",
|
||||
"termsLinkFor": "(es)for ODDS.",
|
||||
"termsLinkFor": "para la nube ODMS.",
|
||||
"termsCheckBox": "Sí, estoy de acuerdo con los términos de uso.",
|
||||
"createAccountButton": "Entregar"
|
||||
}
|
||||
@ -176,7 +175,6 @@
|
||||
"freeLicense": "Número de licencias sin usar",
|
||||
"expiringWithin14daysLicense": "Número de licencias que vencen en 14 días",
|
||||
"issueRequesting": "Número total de licencias en pedido",
|
||||
"numberOfRequesting": "Número total de pedidos",
|
||||
"shortage": "Escasez",
|
||||
"storageSize": "Almacenamiento disponible",
|
||||
"usedSize": "Almacenamiento utilizado",
|
||||
@ -254,10 +252,7 @@
|
||||
"fileBackup": "(es)File Backup",
|
||||
"downloadForBackup": "(es)Download for backup",
|
||||
"applications": "(es)Applications",
|
||||
"cancelDictation": "(es)Cancel Dictation",
|
||||
"general": "(es)General",
|
||||
"job": "(es)Job",
|
||||
"close": "(es)Close"
|
||||
"cancelDictation": "Cancelar transcripción"
|
||||
}
|
||||
},
|
||||
"cardLicenseIssuePopupPage": {
|
||||
@ -379,29 +374,29 @@
|
||||
"workflowPage": {
|
||||
"label": {
|
||||
"title": "flujo de trabajo",
|
||||
"addRoutingRule": "(es)Add Routing Rule",
|
||||
"editRoutingRule": "(es)Edit Routing Rule",
|
||||
"templateSetting": "(es)Template Setting",
|
||||
"worktypeIdSetting": "(es)WorktypeID Setting",
|
||||
"typistGroupSetting": "(es)Transcriptionist Group Setting",
|
||||
"addRoutingRule": "Agregar regla de enrutamiento",
|
||||
"editRoutingRule": "Editar regla de enrutamiento",
|
||||
"templateSetting": "Configuración de plantilla",
|
||||
"worktypeIdSetting": "Configuración de ID de tipo de trabajo",
|
||||
"typistGroupSetting": "Configuración del grupo transcriptor",
|
||||
"authorID": "ID de autor",
|
||||
"worktype": "ID de tipo de trabajo",
|
||||
"worktypeOptional": "(es)Worktype ID (Optional)",
|
||||
"worktypeOptional": "ID de tipo de trabajo (Opcional)",
|
||||
"transcriptionist": "Transcriptor",
|
||||
"template": "(es)Template",
|
||||
"templateOptional": "(es)Template (Optional)",
|
||||
"editRule": "(es)Edit Rule",
|
||||
"template": "Plantilla",
|
||||
"templateOptional": "Plantilla (Opcional)",
|
||||
"editRule": "Editar regla",
|
||||
"selected": "Transcriptor seleccionado",
|
||||
"pool": "Lista de transcriptor",
|
||||
"selectAuthor": "(es)Select Author ID",
|
||||
"selectWorktypeId": "(es)Select Worktype ID",
|
||||
"selectTemplate": "(es)Select Template"
|
||||
"selectAuthor": "Seleccionar ID de autor",
|
||||
"selectWorktypeId": "Seleccionar ID de tipo de trabajo",
|
||||
"selectTemplate": "Seleccionar Plantilla"
|
||||
},
|
||||
"message": {
|
||||
"selectedTypistEmptyError": "(es)Transcriptionist,TranscriptionistGroupがいないルーティングルールは保存できません。ルーティング先を1つ以上選択してください。",
|
||||
"workflowConflictError": "(es)指定したAuthorIDとWorktypeIDの組み合わせで既にルーティングルールが登録されています。他の組み合わせで登録してください。",
|
||||
"selectedTypistEmptyError": "No se ha seleccionado el transcriptor o el grupo de transcriptores. Seleccione uno o más de la lista de transcripción.",
|
||||
"workflowConflictError": "Ya se ha registrado una regla de enrutamiento con la combinación AuthorID y WorktypeID especificada. Regístrese con una combinación diferente.",
|
||||
"inputEmptyError": "Campo obligatorio",
|
||||
"saveFailedError": "(es)ルーティングルールの保存に失敗しました。画面を更新し、再度実行してください"
|
||||
"saveFailedError": "No se pudo guardar la regla de enrutamiento. Actualice la pantalla e inténtelo de nuevo."
|
||||
}
|
||||
},
|
||||
"typistGroupSetting": {
|
||||
@ -435,38 +430,38 @@
|
||||
"addWorktype": "Agregar tipo de trabajo",
|
||||
"editWorktypeId": "Editar ID de tipo de trabajo",
|
||||
"saveChange": "Guardar cambios",
|
||||
"editOptionItems": "(es)Option Item",
|
||||
"itemLabel": "(es)Item label",
|
||||
"defaultValue": "(es)Default value",
|
||||
"initialValue": "(es)Initial value",
|
||||
"default": "(es)Default",
|
||||
"blank": "(es)Blank",
|
||||
"lastInput": "(es)Last Input",
|
||||
"optionItemTerms": "(es)The Item label and Initial value should be alphanumeric and symbols, but not include: \\ / : * ? “ < > | ."
|
||||
"editOptionItems": "Elemento opcional",
|
||||
"itemLabel": "Etiquetas de elementos",
|
||||
"defaultValue": "Valor por defecto",
|
||||
"initialValue": "Valor inicial",
|
||||
"default": "Por defecto",
|
||||
"blank": "Vacío",
|
||||
"lastInput": "Última introducción de valor",
|
||||
"optionItemTerms": "La Etiquetas de elementos y el valor inicial pueden contener símbolos y alfanuméricos. No se pueden utilizar los siguientes símbolos:\\/:*?\"<>|."
|
||||
},
|
||||
"message": {
|
||||
"worktypeIdIncorrectError": "El ID de tipo de trabajo que ingresó no cumple con las especificaciones. Ingrese el tipo de trabajo correcto como se describe en las especificaciones a continuación.",
|
||||
"alreadyWorktypeIdExistError": "Este ID de tipo de trabajo está registrado actualmente. Regístrese con una ID de tipo de trabajo diferente.",
|
||||
"worktypeIDLimitError": "No se puede agregar el ID de tipo de trabajo porque ha alcanzado el número máximo de registros.",
|
||||
"optionItemInvalidError": "(es)Default valueがDefaultに設定されている場合、Initial valueは入力が必須です。",
|
||||
"worktypeIdAlreadyDeletedError": "(es)WorktypeIDは既に削除されています。画面を更新し、再度ご確認ください",
|
||||
"optionItemSaveFailedError": "(es)オプションアイテムの保存に失敗しました。画面を更新し、再度実行してください",
|
||||
"optionItemIncorrectError": "(es)入力されたItem labelまたはInitial valueがルールを満たしていません。下記のルールを満たす値を入力してください",
|
||||
"updateActiveWorktypeFailedError": "(es)Active WorktypeIDの保存に失敗しました。画面を更新し、再度実行してください",
|
||||
"worktypeInUseError": "(es)このWorktype IDはルーティングルールで使用されているため削除できません。",
|
||||
"updateWorktypeFailedError": "(es)WorktypeIDの保存に失敗しました。画面を更新し、再度ご確認ください"
|
||||
"optionItemInvalidError": "La configuración del valor inicial no se ha completado. Establezca el valor inicial o cambie el valor predeterminado.",
|
||||
"worktypeIdAlreadyDeletedError": "El ID de tipo de trabajo ya se ha eliminado. Actualice su pantalla y verifique nuevamente.",
|
||||
"optionItemSaveFailedError": "No se pudo guardar el Elemento opcional. Actualice la pantalla e inténtelo de nuevo.",
|
||||
"optionItemIncorrectError": "La Etiquetas de elementos o el valor inicial no cumple con las reglas. Ingrese un valor que cumpla con las reglas a continuación.",
|
||||
"updateActiveWorktypeFailedError": "No se pudo guardar el ID de tipo de trabajo activo. Actualice su pantalla y verifique nuevamente.",
|
||||
"worktypeInUseError": "Este ID de tipo de trabajo no se puede eliminar porque actualmente se está utilizando en una regla de enrutamiento.",
|
||||
"updateWorktypeFailedError": "No se pudo guardar el ID de tipo de trabajo. Actualice la pantalla e inténtelo de nuevo."
|
||||
}
|
||||
},
|
||||
"templateFilePage": {
|
||||
"label": {
|
||||
"title": "(es)Template List",
|
||||
"addTemplate": "(es)Add Template",
|
||||
"fileName": "(es)Flie Name",
|
||||
"chooseFile": "(es)Choose File",
|
||||
"notFileChosen": "(es)- Not file chosen -",
|
||||
"fileSizeTerms": "(es)ファイルサイズは5MBまでです。",
|
||||
"fileSizeError": "(es)選択されたファイルのサイズが大きすぎます。サイズが5MB以下のファイルを選択してください。",
|
||||
"fileEmptyError": "(es)ファイル選択は必須です。ファイルを選択してください。"
|
||||
"title": "Lista de plantillas",
|
||||
"addTemplate": "Agregar plantilla",
|
||||
"fileName": "Nombre del archivo",
|
||||
"chooseFile": "Seleccione Archivo",
|
||||
"notFileChosen": "- Ningún archivo seleccionado -",
|
||||
"fileSizeTerms": "El tamaño máximo de archivo que se puede guardar es de 5 MB.",
|
||||
"fileSizeError": "El tamaño del archivo seleccionado es demasiado grande. Seleccione un archivo que tenga un tamaño de 5 MB o menos.",
|
||||
"fileEmptyError": "Se requiere selección de archivos. Por favor seleccione un archivo."
|
||||
}
|
||||
},
|
||||
"partnerPage": {
|
||||
@ -475,69 +470,69 @@
|
||||
"addAccount": "Añadir cuenta",
|
||||
"name": "Nombre de empresa",
|
||||
"category": "Nivel de cuenta",
|
||||
"accountId": "ID de autor",
|
||||
"accountId": "ID de la cuenta",
|
||||
"country": "País",
|
||||
"primaryAdmin": "Administrador primario",
|
||||
"email": "Email",
|
||||
"dealerManagement": "Permitir que el distribuidor realice los cambios",
|
||||
"dealerManagement": "Permitir que el concesionario realice los cambios",
|
||||
"partners": "Socios",
|
||||
"deleteAccount": "Borrar cuenta"
|
||||
},
|
||||
"message": {
|
||||
"delegateNotAllowedError": "(es)パートナーの代行操作が許可されていません。画面を更新し、再度ご確認ください。",
|
||||
"deleteFailedError": "(es)代行操作に失敗しました。画面を更新し、再度ご確認ください。",
|
||||
"delegateCancelError": "(es)代行操作の許可が取り消されたため、代行操作を終了しました。"
|
||||
"delegateNotAllowedError": "No se permiten acciones en nombre del socio. Actualice la pantalla y verifique nuevamente.",
|
||||
"deleteFailedError": "La operación del delegado falló. Actualice la pantalla y verifique nuevamente.",
|
||||
"delegateCancelError": "La operación delegada finalizó porque se revocó el permiso para la operación delegada."
|
||||
}
|
||||
},
|
||||
"accountPage": {
|
||||
"label": {
|
||||
"title": "(es)Account",
|
||||
"fileDeleteSetting": "(es)File Delete Setting",
|
||||
"accountInformation": "(es)Account Information",
|
||||
"companyName": "(es)Company Name",
|
||||
"accountID": "(es)Account ID",
|
||||
"yourCategory": "(es)Your Category",
|
||||
"yourCountry": "(es)Your Country",
|
||||
"yourDealer": "(es)Your Dealer(Upper layer)",
|
||||
"selectDealer": "(es)Select Dealer",
|
||||
"dealerManagement": "(es)Dealer Management",
|
||||
"administratorInformation": "(es)Administrator Information",
|
||||
"primaryAdministrator": "(es)Primary Administrator",
|
||||
"secondaryAdministrator": "(es)Secondary Administrator",
|
||||
"emailAddress": "(es)E-mail address",
|
||||
"selectSecondaryAdministrator": "(es)Select Secondary Administrator",
|
||||
"saveChanges": "(es)Save Changes",
|
||||
"deleteAccount": "(es)Delete Account"
|
||||
"title": "Cuenta",
|
||||
"fileDeleteSetting": "Configuración de eliminación de archivos",
|
||||
"accountInformation": "Información de la cuenta",
|
||||
"companyName": "Nombre de empresa",
|
||||
"accountID": "ID de la cuenta",
|
||||
"yourCategory": "Tipo de cuenta",
|
||||
"yourCountry": "País",
|
||||
"yourDealer": "Concesionario",
|
||||
"selectDealer": "Seleccionar Concesionario",
|
||||
"dealerManagement": "Permitir que el concesionario realice los cambios",
|
||||
"administratorInformation": "Información del administrador",
|
||||
"primaryAdministrator": "Administrador primario",
|
||||
"secondaryAdministrator": "Administrador secundario",
|
||||
"emailAddress": "Dirección de correo electrónico",
|
||||
"selectSecondaryAdministrator": "Seleccionar administrador secundario",
|
||||
"saveChanges": "Guardar cambios",
|
||||
"deleteAccount": "Borrar cuenta"
|
||||
},
|
||||
"message": {
|
||||
"updateAccountFailedError": "(es)アカウント情報の保存に失敗しました。画面を更新し、再度実行してください"
|
||||
"updateAccountFailedError": "No se pudo guardar la información de la cuenta. Actualice la pantalla e inténtelo de nuevo."
|
||||
}
|
||||
},
|
||||
"deleteAccountPopup": {
|
||||
"label": {
|
||||
"title": "(es)Delete Account",
|
||||
"subTitle": "(es)Delete your account?",
|
||||
"cautionOfDeleteingAccountData": "(es)Deleting your account will remove all of your audio files and\nlicenses from system. and you'll cannot use ODMS Cloud.\nThis cannot be undone.",
|
||||
"deleteButton": "(es)Delete account",
|
||||
"cancelButton": "(es)Cancel"
|
||||
"title": "Borrar cuenta",
|
||||
"subTitle": "¿Eliminar tu cuenta?",
|
||||
"cautionOfDeleteingAccountData": "Al eliminar su cuenta, se eliminará toda la información del usuario, las licencias y los archivos de dictado del sistema. La información eliminada no se puede restaurar.",
|
||||
"deleteButton": "Borrar cuenta",
|
||||
"cancelButton": "Cancelar"
|
||||
}
|
||||
},
|
||||
"accountDeleteSuccess": {
|
||||
"label": {
|
||||
"title": "(es)Account Delete Success",
|
||||
"message": "(es)Your account has been deleted. Thank you for using our services.",
|
||||
"backToTopPageLink": "(es)Back to TOP Page"
|
||||
"title": "Eliminación exitosa de la cuenta",
|
||||
"message": "Tu cuenta ha sido eliminada. Gracias por utilizar la nube ODMS.",
|
||||
"backToTopPageLink": "Volver a la página superior"
|
||||
}
|
||||
},
|
||||
"termsPage": {
|
||||
"label": {
|
||||
"title": "(es)Terms of Use has updated. Please confirm again.",
|
||||
"linkOfEula": "(es)Click here to read the terms of use.",
|
||||
"linkOfDpa": "(es)Click here to read the terms of use.",
|
||||
"checkBoxForConsent": "(es)Yes, I agree to the terms of use.",
|
||||
"forOdds": "(es)for ODDS.",
|
||||
"button": "(es)Continue",
|
||||
"linkOfPrivacyNotice": "(es)Click here to read the terms of use."
|
||||
"title": "Los Términos de uso han sido actualizados. Se requiere reconfirmación para continuar usando ODMS Cloud.",
|
||||
"linkOfEula": "Haga clic aquí para leer el Acuerdo de licencia de usuario final.",
|
||||
"linkOfDpa": "Haga clic aquí para leer el Acuerdo de procesamiento de datos.",
|
||||
"checkBoxForConsent": "Sí, acepto los términos de uso.",
|
||||
"forOdms": "para la nube ODMS.",
|
||||
"button": "Continuar",
|
||||
"linkOfPrivacyNotice": "Haga clic aquí para leer el Aviso de Privacidad."
|
||||
}
|
||||
},
|
||||
"supportPage": {
|
||||
|
||||
@ -2,13 +2,13 @@
|
||||
"common": {
|
||||
"message": {
|
||||
"inputEmptyError": "Champ obligatoire",
|
||||
"passwordIncorrectError": "(fr)入力されたパスワードがルールを満たしていません。下記のルールを満たすパスワードを入力してください。",
|
||||
"emailIncorrectError": "(fr)メールアドレスの形式が不正です。正しいメールアドレスの形式で入力してください。",
|
||||
"passwordIncorrectError": "Le mot de passe que vous avez entré ne répond pas aux spécifications. Veuillez saisir le mot de passe correct, comme indiqué dans les spécifications ci-dessous.",
|
||||
"emailIncorrectError": "Le format de l'adresse e-mail n'est pas valide. S'il vous plaît, mettez une adresse email valide.",
|
||||
"internalServerError": "Le traitement a échoué. Veuillez réessayer plus tard.",
|
||||
"listEmpty": "Il y a 0 résultats de recherche.",
|
||||
"dialogConfirm": "Voulez-vous effectuer l'opération?",
|
||||
"success": "Traité avec succès",
|
||||
"displayDialog": "(fr)サインアウトしてもよろしいですか?"
|
||||
"displayDialog": "Êtes-vous certain de vouloir vous déconnecter?"
|
||||
},
|
||||
"label": {
|
||||
"cancel": "Annuler",
|
||||
@ -17,22 +17,21 @@
|
||||
"save": "Sauvegarder",
|
||||
"delete": "Delete",
|
||||
"return": "Retour",
|
||||
"operationInsteadOf": "(fr)Operation instead of:",
|
||||
"headerName": "(fr)ODMS Cloud",
|
||||
"headerAccount": "(fr)Account",
|
||||
"headerUser": "(fr)User",
|
||||
"headerLicense": "(fr)License",
|
||||
"headerDictations": "(fr)Dictations",
|
||||
"headerWorkflow": "(fr)Workflow",
|
||||
"headerPartners": "(fr)Partners",
|
||||
"operationInsteadOf": "Exploiter le Cloud ODMS pour le compte de :",
|
||||
"headerAccount": "Compte",
|
||||
"headerUser": "Utilisateur",
|
||||
"headerLicense": "Abonnement",
|
||||
"headerDictations": "Dictées",
|
||||
"headerWorkflow": "Flux de travail",
|
||||
"headerPartners": "Partenaires",
|
||||
"headerSupport": "(fr)Support",
|
||||
"tier1": "(fr)Admin",
|
||||
"tier2": "(fr)BC",
|
||||
"tier3": "(fr)Distributor",
|
||||
"tier4": "(fr)Dealer",
|
||||
"tier5": "(fr)Customer",
|
||||
"notSelected": "(fr)None",
|
||||
"signOutButton": "(fr)Sign out"
|
||||
"tier1": "Admin",
|
||||
"tier2": "BC",
|
||||
"tier3": "Distributeur",
|
||||
"tier4": "Concessionnaire",
|
||||
"tier5": "Client",
|
||||
"notSelected": "Aucune",
|
||||
"signOutButton": "se déconnecter"
|
||||
}
|
||||
},
|
||||
"topPage": {
|
||||
@ -49,7 +48,7 @@
|
||||
"signInButton": "S'identifier",
|
||||
"newUser": "Nouvel utilisateur",
|
||||
"signUpButton": "Créer un compte",
|
||||
"logoAlt": "(fr)OM Dictation Management System in the Cloud"
|
||||
"logoAlt": "OM Dictation Management System in the Cloud"
|
||||
}
|
||||
},
|
||||
"signupPage": {
|
||||
@ -75,7 +74,7 @@
|
||||
"email": "Adresse e-mail",
|
||||
"password": "Mot de passe",
|
||||
"termsLink": "Cliquez ici pour lire les conditions d'utilisation.",
|
||||
"termsLinkFor": "(fr)for ODDS.",
|
||||
"termsLinkFor": "pour ODMS Cloud.",
|
||||
"termsCheckBox": "Oui, j'accepte les conditions d'utilisation.",
|
||||
"createAccountButton": "Soumettre"
|
||||
}
|
||||
@ -176,7 +175,6 @@
|
||||
"freeLicense": "Nombre de licences inutilisées",
|
||||
"expiringWithin14daysLicense": "Nombre de licences expirant dans les 14 jours",
|
||||
"issueRequesting": "Nombre total de licences commandées",
|
||||
"numberOfRequesting": "Nombre total de commandes",
|
||||
"shortage": "Pénurie",
|
||||
"storageSize": "Stockage disponible",
|
||||
"usedSize": "Stockage utilisé",
|
||||
@ -254,10 +252,7 @@
|
||||
"fileBackup": "(fr)File Backup",
|
||||
"downloadForBackup": "(fr)Download for backup",
|
||||
"applications": "(fr)Applications",
|
||||
"cancelDictation": "(fr)Cancel Dictation",
|
||||
"general": "(fr)General",
|
||||
"job": "(fr)Job",
|
||||
"close": "(fr)Close"
|
||||
"cancelDictation": "Annuler la transcription"
|
||||
}
|
||||
},
|
||||
"cardLicenseIssuePopupPage": {
|
||||
@ -379,29 +374,29 @@
|
||||
"workflowPage": {
|
||||
"label": {
|
||||
"title": "Flux de travail",
|
||||
"addRoutingRule": "(fr)Add Routing Rule",
|
||||
"editRoutingRule": "(fr)Edit Routing Rule",
|
||||
"templateSetting": "(fr)Template Setting",
|
||||
"worktypeIdSetting": "(fr)WorktypeID Setting",
|
||||
"typistGroupSetting": "(fr)Transcriptionist Group Setting",
|
||||
"addRoutingRule": "Ajouter une règle de routage",
|
||||
"editRoutingRule": "Modifier la règle de routage",
|
||||
"templateSetting": "Paramètre de Masque",
|
||||
"worktypeIdSetting": "Paramètre d'ID du type de travail",
|
||||
"typistGroupSetting": "Paramètre de groupe de transcriptionniste",
|
||||
"authorID": "Identifiant Auteur",
|
||||
"worktype": "Identifiant du Type de travail",
|
||||
"worktypeOptional": "(fr)Worktype ID (Optional)",
|
||||
"worktypeOptional": "Identifiant du Type de travail (Facultatif)",
|
||||
"transcriptionist": "Transcriptionniste",
|
||||
"template": "(fr)Template",
|
||||
"templateOptional": "(fr)Template (Optional)",
|
||||
"editRule": "(fr)Edit Rule",
|
||||
"template": "Masque",
|
||||
"templateOptional": "Masque (Facultatif)",
|
||||
"editRule": "Modifier la règle",
|
||||
"selected": "Transcriptionniste sélectionné",
|
||||
"pool": "Liste de transcriptionniste",
|
||||
"selectAuthor": "(fr)Select Author ID",
|
||||
"selectWorktypeId": "(fr)Select Worktype ID",
|
||||
"selectTemplate": "(fr)Select Template"
|
||||
"selectAuthor": "Sélectionner le Identifiant Auteur",
|
||||
"selectWorktypeId": "Sélectionner le Identifiant du Type de travail",
|
||||
"selectTemplate": "Sélectionner le Masque"
|
||||
},
|
||||
"message": {
|
||||
"selectedTypistEmptyError": "(fr)Transcriptionist,TranscriptionistGroupがいないルーティングルールは保存できません。ルーティング先を1つ以上選択してください。",
|
||||
"workflowConflictError": "(fr)指定したAuthorIDとWorktypeIDの組み合わせで既にルーティングルールが登録されています。他の組み合わせで登録してください。",
|
||||
"selectedTypistEmptyError": "Transcriptionist ou Transcriptionist Group n’a pas été sélectionné. Veuillez en sélectionner un ou plusieurs dans la liste de transcription.",
|
||||
"workflowConflictError": "Une règle de routage a déjà été enregistrée avec la combinaison AuthorID et WorktypeID spécifiée. Veuillez vous inscrire avec une combinaison différente.",
|
||||
"inputEmptyError": "Champ obligatoire",
|
||||
"saveFailedError": "(fr)ルーティングルールの保存に失敗しました。画面を更新し、再度実行してください"
|
||||
"saveFailedError": "Échec de l'enregistrement de la règle de routage. Veuillez actualiser l'écran et réessayer."
|
||||
}
|
||||
},
|
||||
"typistGroupSetting": {
|
||||
@ -435,38 +430,38 @@
|
||||
"addWorktype": "Ajouter type de travail",
|
||||
"editWorktypeId": "Modifier l'ID du type de travail",
|
||||
"saveChange": "Sauvegarder les modifications",
|
||||
"editOptionItems": "(fr)Option Item",
|
||||
"itemLabel": "(fr)Item label",
|
||||
"defaultValue": "(fr)Default value",
|
||||
"initialValue": "(fr)Initial value",
|
||||
"default": "(fr)Default",
|
||||
"blank": "(fr)Blank",
|
||||
"lastInput": "(fr)Last Input",
|
||||
"optionItemTerms": "(fr)The Item label and Initial value should be alphanumeric and symbols, but not include: \\ / : * ? “ < > | ."
|
||||
"editOptionItems": "Elément d’option",
|
||||
"itemLabel": "Étiquettes d'élément",
|
||||
"defaultValue": "Valeur par défaut",
|
||||
"initialValue": "Valeur initiale",
|
||||
"default": "Défaut",
|
||||
"blank": "Vide",
|
||||
"lastInput": "Valeur saisie la dernière fois",
|
||||
"optionItemTerms": "Étiquettes d'élément et la valeur initiale peuvent contenir des caractères alphanumériques et des symboles. Les symboles suivants ne peuvent pas être utilisés :\\/:*?\"<>|."
|
||||
},
|
||||
"message": {
|
||||
"worktypeIdIncorrectError": "L'ID du type de travail que vous avez saisi ne répond pas aux spécifications. Veuillez saisir le type de travail correct, comme indiqué dans les spécifications ci-dessous.",
|
||||
"alreadyWorktypeIdExistError": "Cet ID de type de travail est actuellement enregistré. Veuillez vous inscrire avec un identifiant de type de travail différent.",
|
||||
"worktypeIDLimitError": "L'ID du type de travail ne peut pas être ajouté car il a atteint le nombre maximum d'enregistrements.",
|
||||
"optionItemInvalidError": "(fr)Default valueがDefaultに設定されている場合、Initial valueは入力が必須です。",
|
||||
"worktypeIdAlreadyDeletedError": "(fr)WorktypeIDは既に削除されています。画面を更新し、再度ご確認ください",
|
||||
"optionItemSaveFailedError": "(fr)オプションアイテムの保存に失敗しました。画面を更新し、再度実行してください",
|
||||
"optionItemIncorrectError": "(fr)入力されたItem labelまたはInitial valueがルールを満たしていません。下記のルールを満たす値を入力してください",
|
||||
"updateActiveWorktypeFailedError": "(fr)Active WorktypeIDの保存に失敗しました。画面を更新し、再度実行してください",
|
||||
"worktypeInUseError": "(fr)このWorktype IDはルーティングルールで使用されているため削除できません。",
|
||||
"updateWorktypeFailedError": "(fr)WorktypeIDの保存に失敗しました。画面を更新し、再度ご確認ください"
|
||||
"optionItemInvalidError": "Le réglage de la valeur initiale n'est pas terminé. Veuillez définir la valeur initiale ou modifier la valeur par défaut.",
|
||||
"worktypeIdAlreadyDeletedError": "Identifiant du Type de travail a déjà été supprimé. Veuillez actualiser votre écran et vérifier à nouveau.",
|
||||
"optionItemSaveFailedError": "Échec de l'enregistrement de l'élément d'option. Veuillez actualiser l'écran et réessayer.",
|
||||
"optionItemIncorrectError": "Le Elément d’option ou la valeur initiale saisi ne respecte pas les règles. Veuillez saisir une valeur qui répond aux règles ci-dessous.",
|
||||
"updateActiveWorktypeFailedError": "Échec de l'enregistrement de l'Active Identifiant du Type de travail. Veuillez actualiser votre écran et vérifier à nouveau.",
|
||||
"worktypeInUseError": "Cet Identifiant du Type de travail ne peut pas être supprimé car il est actuellement utilisé dans une règle de routage.",
|
||||
"updateWorktypeFailedError": "Échec de l'enregistrement de Identifiant du Type de travail. Veuillez actualiser l'écran et réessayer."
|
||||
}
|
||||
},
|
||||
"templateFilePage": {
|
||||
"label": {
|
||||
"title": "(fr)Template List",
|
||||
"addTemplate": "(fr)Add Template",
|
||||
"fileName": "(fr)Flie Name",
|
||||
"chooseFile": "(fr)Choose File",
|
||||
"notFileChosen": "(fr)- Not file chosen -",
|
||||
"fileSizeTerms": "(fr)ファイルサイズは5MBまでです。",
|
||||
"fileSizeError": "(fr)選択されたファイルのサイズが大きすぎます。サイズが5MB以下のファイルを選択してください。",
|
||||
"fileEmptyError": "(fr)ファイル選択は必須です。ファイルを選択してください。"
|
||||
"title": "Liste des modèles",
|
||||
"addTemplate": "Ajouter un modèle",
|
||||
"fileName": "Nom de fichier",
|
||||
"chooseFile": "Choisir le fichier",
|
||||
"notFileChosen": "- Aucun fichier sélectionné -",
|
||||
"fileSizeTerms": "La taille maximale du fichier pouvant être enregistré est de 5 Mo.",
|
||||
"fileSizeError": "La taille du fichier sélectionné est trop grande. Veuillez sélectionner un fichier d'une taille maximale de 5 Mo.",
|
||||
"fileEmptyError": "La sélection de fichiers est requise. Veuillez sélectionner un fichier."
|
||||
}
|
||||
},
|
||||
"partnerPage": {
|
||||
@ -475,69 +470,69 @@
|
||||
"addAccount": "Ajouter compte",
|
||||
"name": "Nom de l'entreprise",
|
||||
"category": "Niveau compte",
|
||||
"accountId": "Identifiant Auteur",
|
||||
"accountId": "identifiant de compte",
|
||||
"country": "Pays",
|
||||
"primaryAdmin": "Administrateur principal",
|
||||
"email": "Email",
|
||||
"dealerManagement": "Autoriser le revendeur à modifier les paramètres",
|
||||
"dealerManagement": "Autoriser le concessionnaire à modifier les paramètres",
|
||||
"partners": "Partenaires",
|
||||
"deleteAccount": "Supprimer le compte"
|
||||
},
|
||||
"message": {
|
||||
"delegateNotAllowedError": "(fr)パートナーの代行操作が許可されていません。画面を更新し、再度ご確認ください。",
|
||||
"deleteFailedError": "(fr)代行操作に失敗しました。画面を更新し、再度ご確認ください。",
|
||||
"delegateCancelError": "(fr)代行操作の許可が取り消されたため、代行操作を終了しました。"
|
||||
"delegateNotAllowedError": "Les actions au nom du partenaire ne sont pas autorisées. Veuillez actualiser l'écran et vérifier à nouveau.",
|
||||
"deleteFailedError": "L’opération de délégation a échoué. Veuillez actualiser l'écran et vérifier à nouveau.",
|
||||
"delegateCancelError": "L'opération déléguée a été interrompue car l'autorisation pour l'opération déléguée a été révoquée."
|
||||
}
|
||||
},
|
||||
"accountPage": {
|
||||
"label": {
|
||||
"title": "(fr)Account",
|
||||
"fileDeleteSetting": "(fr)File Delete Setting",
|
||||
"accountInformation": "(fr)Account Information",
|
||||
"companyName": "(fr)Company Name",
|
||||
"accountID": "(fr)Account ID",
|
||||
"yourCategory": "(fr)Your Category",
|
||||
"yourCountry": "(fr)Your Country",
|
||||
"yourDealer": "(fr)Your Dealer(Upper layer)",
|
||||
"selectDealer": "(fr)Select Dealer",
|
||||
"dealerManagement": "(fr)Dealer Management",
|
||||
"administratorInformation": "(fr)Administrator Information",
|
||||
"primaryAdministrator": "(fr)Primary Administrator",
|
||||
"secondaryAdministrator": "(fr)Secondary Administrator",
|
||||
"emailAddress": "(fr)E-mail address",
|
||||
"selectSecondaryAdministrator": "(fr)Select Secondary Administrator",
|
||||
"saveChanges": "(fr)Save Changes",
|
||||
"deleteAccount": "(fr)Delete Account"
|
||||
"title": "Compte",
|
||||
"fileDeleteSetting": "Paramètre de suppression de fichier",
|
||||
"accountInformation": "Information sur le compte",
|
||||
"companyName": "Nom de l'entreprise",
|
||||
"accountID": "identifiant de compte",
|
||||
"yourCategory": "Type de compte",
|
||||
"yourCountry": "Pays",
|
||||
"yourDealer": "Concessionnaire",
|
||||
"selectDealer": "Sélectionner le Concessionnaire",
|
||||
"dealerManagement": "Autoriser le concessionnaire à modifier les paramètres",
|
||||
"administratorInformation": "Informations sur l'administrateur",
|
||||
"primaryAdministrator": "Administrateur principal",
|
||||
"secondaryAdministrator": "Administrateur secondaire",
|
||||
"emailAddress": "Adresse e-mail",
|
||||
"selectSecondaryAdministrator": "Sélectionner le administrateur secondaire",
|
||||
"saveChanges": "Sauvegarder les modifications",
|
||||
"deleteAccount": "Supprimer le compte"
|
||||
},
|
||||
"message": {
|
||||
"updateAccountFailedError": "(fr)アカウント情報の保存に失敗しました。画面を更新し、再度実行してください"
|
||||
"updateAccountFailedError": "Échec de l'enregistrement des informations du compte. Veuillez actualiser l'écran et réessayer."
|
||||
}
|
||||
},
|
||||
"deleteAccountPopup": {
|
||||
"label": {
|
||||
"title": "(fr)Delete Account",
|
||||
"subTitle": "(fr)Delete your account?",
|
||||
"cautionOfDeleteingAccountData": "(fr)Deleting your account will remove all of your audio files and\nlicenses from system. and you'll cannot use ODMS Cloud.\nThis cannot be undone.",
|
||||
"deleteButton": "(fr)Delete account",
|
||||
"cancelButton": "(fr)Cancel"
|
||||
"title": "Supprimer le compte",
|
||||
"subTitle": "Supprimer votre compte?",
|
||||
"cautionOfDeleteingAccountData": "La suppression de votre compte supprimera toutes les informations utilisateur, licences et fichiers de dictée du système. Les informations supprimées ne peuvent pas être restaurées.",
|
||||
"deleteButton": "Supprimer le compte",
|
||||
"cancelButton": "Annuler"
|
||||
}
|
||||
},
|
||||
"accountDeleteSuccess": {
|
||||
"label": {
|
||||
"title": "(fr)Account Delete Success",
|
||||
"message": "(fr)Your account has been deleted. Thank you for using our services.",
|
||||
"backToTopPageLink": "(fr)Back to TOP Page"
|
||||
"title": "Succès de la suppression du compte",
|
||||
"message": "Votre compte a été supprimé. Merci d'utiliser le Cloud ODMS.",
|
||||
"backToTopPageLink": "Retour à la page supérieure"
|
||||
}
|
||||
},
|
||||
"termsPage": {
|
||||
"label": {
|
||||
"title": "(fr)Terms of Use has updated. Please confirm again.",
|
||||
"linkOfEula": "(fr)Click here to read the terms of use.",
|
||||
"linkOfDpa": "(fr)Click here to read the terms of use.",
|
||||
"checkBoxForConsent": "(fr)Yes, I agree to the terms of use.",
|
||||
"forOdds": "(fr)for ODDS.",
|
||||
"button": "(fr)Continue",
|
||||
"linkOfPrivacyNotice": "(fr)Click here to read the terms of use."
|
||||
"title": "Les conditions d'utilisation ont été mises à jour. Une reconfirmation est requise pour continuer à utiliser le cloud ODMS.",
|
||||
"linkOfEula": "Cliquez ici pour lire le contrat de licence utilisateur final.",
|
||||
"linkOfDpa": "Cliquez ici pour lire l'accord de traitement des données.",
|
||||
"checkBoxForConsent": "Oui, j'accepte les conditions d'utilisation.",
|
||||
"forOdms": "pour ODMS Cloud.",
|
||||
"button": "Continuer",
|
||||
"linkOfPrivacyNotice": "Cliquez ici pour lire l'avis de confidentialité."
|
||||
}
|
||||
},
|
||||
"supportPage": {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user