common-header-lib 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (195) hide show
  1. package/README.md +24 -0
  2. package/assets/.gitkeep +0 -0
  3. package/assets/i18n/ar.json +83 -0
  4. package/assets/i18n/de.json +83 -0
  5. package/assets/i18n/en.json +83 -0
  6. package/assets/i18n/es.json +83 -0
  7. package/assets/i18n/fr.json +83 -0
  8. package/assets/i18n/hi.json +83 -0
  9. package/assets/i18n/ja.json +83 -0
  10. package/assets/i18n/ko.json +83 -0
  11. package/assets/images/APP019.svg +6 -0
  12. package/assets/images/APP020.svg +4 -0
  13. package/assets/images/APP021.svg +6 -0
  14. package/assets/images/APP022.svg +6 -0
  15. package/assets/images/APP023.svg +11 -0
  16. package/assets/images/APP024.svg +9 -0
  17. package/assets/images/APP025.svg +8 -0
  18. package/assets/images/APP026.svg +4 -0
  19. package/assets/images/APP027.svg +5 -0
  20. package/assets/images/APP028.svg +6 -0
  21. package/assets/images/APP029.svg +12 -0
  22. package/assets/images/APP030.svg +20 -0
  23. package/assets/images/APP031.svg +14 -0
  24. package/assets/images/APP032.svg +17 -0
  25. package/assets/images/Frame.svg +104 -0
  26. package/assets/images/apps-1.svg +22 -0
  27. package/assets/images/bell-icon.svg +3 -0
  28. package/assets/images/check_circle.svg +3 -0
  29. package/assets/images/close copy.svg +5 -0
  30. package/assets/images/close.svg +5 -0
  31. package/assets/images/copy-img.svg +3 -0
  32. package/assets/images/cross-search.svg +4 -0
  33. package/assets/images/domain_img.svg +3 -0
  34. package/assets/images/east.svg +3 -0
  35. package/assets/images/error.svg +3 -0
  36. package/assets/images/filepath.svg +8 -0
  37. package/assets/images/flag1.svg +3 -0
  38. package/assets/images/gc-mail.svg +3 -0
  39. package/assets/images/grey-arrow.svg +3 -0
  40. package/assets/images/info.svg +3 -0
  41. package/assets/images/local.svg +3 -0
  42. package/assets/images/lock-pass.svg +3 -0
  43. package/assets/images/lock1.svg +3 -0
  44. package/assets/images/login-bg/default_bg.svg +448 -0
  45. package/assets/images/login-bg/visibility.svg +3 -0
  46. package/assets/images/login-bg/visibility_off.svg +3 -0
  47. package/assets/images/logo.png +0 -0
  48. package/assets/images/logout.svg +3 -0
  49. package/assets/images/mail-icon.svg +3 -0
  50. package/assets/images/marker-pin.svg +4 -0
  51. package/assets/images/noti_ticket.svg +3 -0
  52. package/assets/images/pass-img.svg +3 -0
  53. package/assets/images/refresh-1.svg +3 -0
  54. package/assets/images/schedule.svg +1 -0
  55. package/assets/images/search-filter.svg +3 -0
  56. package/assets/images/search-icon.svg +3 -0
  57. package/assets/images/settings.svg +3 -0
  58. package/assets/images/successful.svg +10 -0
  59. package/assets/images/user-name.svg +3 -0
  60. package/assets/scss/_sidebar.scss +267 -0
  61. package/assets/scss/styles.scss +577 -0
  62. package/esm2020/common-header-lib.mjs +5 -0
  63. package/esm2020/lib/Validators/noSpaceAllowed.mjs +16 -0
  64. package/esm2020/lib/common-header-lib.component.mjs +612 -0
  65. package/esm2020/lib/common-header-lib.module.mjs +208 -0
  66. package/esm2020/lib/common-header-lib.service.mjs +200 -0
  67. package/esm2020/lib/components/confirm-dialog/confirm-dialog.component.mjs +49 -0
  68. package/esm2020/lib/components/general-configuration/general-configuration.component.mjs +402 -0
  69. package/esm2020/lib/components/general-configuration/landingpg-config/landingpg-config.component.mjs +124 -0
  70. package/esm2020/lib/components/general-configuration/timezone-configuration/timezone-configuration.component.mjs +138 -0
  71. package/esm2020/lib/components/grid-pagination/grid-pagination.component.mjs +39 -0
  72. package/esm2020/lib/components/ng-translation/ng-translation.component.mjs +65 -0
  73. package/esm2020/lib/components/no-service-my-access-pg/no-service-my-access-pg.component.mjs +19 -0
  74. package/esm2020/lib/components/notification-sidebar/notification-sidebar.component.mjs +40 -0
  75. package/esm2020/lib/components/side-popup/side-popup.component.mjs +34 -0
  76. package/esm2020/lib/components/user-mailbox/user-mailbox.component.mjs +173 -0
  77. package/esm2020/lib/components/user-sidebar/user-sidebar.component.mjs +279 -0
  78. package/esm2020/lib/components/viewpassword-popup/viewpassword-popup.component.mjs +196 -0
  79. package/esm2020/lib/model/data_model.mjs +217 -0
  80. package/esm2020/lib/pipes/custome-dateformat.pipe.mjs +27 -0
  81. package/esm2020/lib/pipes/date-diff.pipe.mjs +56 -0
  82. package/esm2020/lib/pipes/slice-to-two.pipe.mjs +34 -0
  83. package/esm2020/lib/services/EncrypDecryp_RSA.service.mjs +100 -0
  84. package/esm2020/lib/services/async-passwordcheck.service.mjs +72 -0
  85. package/esm2020/lib/services/cookie-storage-manager.service.mjs +78 -0
  86. package/esm2020/lib/services/encrpdata.service.mjs +55 -0
  87. package/esm2020/lib/services/encrydecrydata.service.mjs +207 -0
  88. package/esm2020/lib/services/event.service.mjs +133 -0
  89. package/esm2020/lib/services/http/http-common.service.mjs +216 -0
  90. package/esm2020/lib/services/http/http-general-config.service.mjs +84 -0
  91. package/esm2020/lib/services/rest-login-form.service.mjs +296 -0
  92. package/esm2020/lib/services/rest-signalr.service.mjs +100 -0
  93. package/esm2020/lib/services/storage.service.mjs +33 -0
  94. package/esm2020/lib/services/toast-msg.service.mjs +95 -0
  95. package/esm2020/lib/services/vapt-validation.service.mjs +31 -0
  96. package/esm2020/public-api.mjs +13 -0
  97. package/fesm2015/common-header-lib.mjs +4165 -0
  98. package/fesm2015/common-header-lib.mjs.map +1 -0
  99. package/fesm2020/common-header-lib.mjs +4146 -0
  100. package/fesm2020/common-header-lib.mjs.map +1 -0
  101. package/index.d.ts +5 -0
  102. package/lib/Validators/noSpaceAllowed.d.ts +2 -0
  103. package/lib/common-header-lib.component.d.ts +148 -0
  104. package/lib/common-header-lib.module.d.ts +43 -0
  105. package/lib/common-header-lib.service.d.ts +25 -0
  106. package/lib/components/confirm-dialog/confirm-dialog.component.d.ts +13 -0
  107. package/lib/components/general-configuration/general-configuration.component.d.ts +86 -0
  108. package/lib/components/general-configuration/landingpg-config/landingpg-config.component.d.ts +37 -0
  109. package/lib/components/general-configuration/timezone-configuration/timezone-configuration.component.d.ts +38 -0
  110. package/lib/components/grid-pagination/grid-pagination.component.d.ts +20 -0
  111. package/lib/components/ng-translation/ng-translation.component.d.ts +22 -0
  112. package/lib/components/no-service-my-access-pg/no-service-my-access-pg.component.d.ts +8 -0
  113. package/lib/components/notification-sidebar/notification-sidebar.component.d.ts +16 -0
  114. package/lib/components/side-popup/side-popup.component.d.ts +14 -0
  115. package/lib/components/user-mailbox/user-mailbox.component.d.ts +40 -0
  116. package/lib/components/user-sidebar/user-sidebar.component.d.ts +61 -0
  117. package/lib/components/viewpassword-popup/viewpassword-popup.component.d.ts +47 -0
  118. package/lib/model/data_model.d.ts +184 -0
  119. package/lib/pipes/custome-dateformat.pipe.d.ts +8 -0
  120. package/lib/pipes/date-diff.pipe.d.ts +9 -0
  121. package/lib/pipes/slice-to-two.pipe.d.ts +7 -0
  122. package/lib/services/EncrypDecryp_RSA.service.d.ts +15 -0
  123. package/lib/services/async-passwordcheck.service.d.ts +18 -0
  124. package/lib/services/cookie-storage-manager.service.d.ts +16 -0
  125. package/lib/services/encrpdata.service.d.ts +12 -0
  126. package/lib/services/encrydecrydata.service.d.ts +33 -0
  127. package/lib/services/event.service.d.ts +30 -0
  128. package/lib/services/http/http-common.service.d.ts +30 -0
  129. package/lib/services/http/http-general-config.service.d.ts +15 -0
  130. package/lib/services/rest-login-form.service.d.ts +39 -0
  131. package/lib/services/rest-signalr.service.d.ts +23 -0
  132. package/lib/services/storage.service.d.ts +11 -0
  133. package/lib/services/toast-msg.service.d.ts +21 -0
  134. package/lib/services/vapt-validation.service.d.ts +7 -0
  135. package/package.json +49 -0
  136. package/public-api.d.ts +8 -0
  137. package/src/assets/i18n/ar.json +83 -0
  138. package/src/assets/i18n/de.json +83 -0
  139. package/src/assets/i18n/en.json +83 -0
  140. package/src/assets/i18n/es.json +83 -0
  141. package/src/assets/i18n/fr.json +83 -0
  142. package/src/assets/i18n/hi.json +83 -0
  143. package/src/assets/i18n/ja.json +83 -0
  144. package/src/assets/i18n/ko.json +83 -0
  145. package/src/assets/images/APP019.svg +6 -0
  146. package/src/assets/images/APP020.svg +4 -0
  147. package/src/assets/images/APP021.svg +6 -0
  148. package/src/assets/images/APP022.svg +6 -0
  149. package/src/assets/images/APP023.svg +11 -0
  150. package/src/assets/images/APP024.svg +9 -0
  151. package/src/assets/images/APP025.svg +8 -0
  152. package/src/assets/images/APP026.svg +4 -0
  153. package/src/assets/images/APP027.svg +5 -0
  154. package/src/assets/images/APP028.svg +6 -0
  155. package/src/assets/images/APP029.svg +12 -0
  156. package/src/assets/images/APP030.svg +20 -0
  157. package/src/assets/images/APP031.svg +14 -0
  158. package/src/assets/images/APP032.svg +17 -0
  159. package/src/assets/images/Frame.svg +104 -0
  160. package/src/assets/images/apps-1.svg +22 -0
  161. package/src/assets/images/bell-icon.svg +3 -0
  162. package/src/assets/images/check_circle.svg +3 -0
  163. package/src/assets/images/close copy.svg +5 -0
  164. package/src/assets/images/close.svg +5 -0
  165. package/src/assets/images/copy-img.svg +3 -0
  166. package/src/assets/images/cross-search.svg +4 -0
  167. package/src/assets/images/domain_img.svg +3 -0
  168. package/src/assets/images/east.svg +3 -0
  169. package/src/assets/images/error.svg +3 -0
  170. package/src/assets/images/filepath.svg +8 -0
  171. package/src/assets/images/flag1.svg +3 -0
  172. package/src/assets/images/gc-mail.svg +3 -0
  173. package/src/assets/images/grey-arrow.svg +3 -0
  174. package/src/assets/images/info.svg +3 -0
  175. package/src/assets/images/local.svg +3 -0
  176. package/src/assets/images/lock-pass.svg +3 -0
  177. package/src/assets/images/lock1.svg +3 -0
  178. package/src/assets/images/login-bg/default_bg.svg +448 -0
  179. package/src/assets/images/login-bg/visibility.svg +3 -0
  180. package/src/assets/images/login-bg/visibility_off.svg +3 -0
  181. package/src/assets/images/logo.png +0 -0
  182. package/src/assets/images/logout.svg +3 -0
  183. package/src/assets/images/mail-icon.svg +3 -0
  184. package/src/assets/images/marker-pin.svg +4 -0
  185. package/src/assets/images/noti_ticket.svg +3 -0
  186. package/src/assets/images/pass-img.svg +3 -0
  187. package/src/assets/images/refresh-1.svg +3 -0
  188. package/src/assets/images/schedule.svg +1 -0
  189. package/src/assets/images/search-filter.svg +3 -0
  190. package/src/assets/images/search-icon.svg +3 -0
  191. package/src/assets/images/settings.svg +3 -0
  192. package/src/assets/images/successful.svg +10 -0
  193. package/src/assets/images/user-name.svg +3 -0
  194. package/src/assets/scss/_sidebar.scss +267 -0
  195. package/src/assets/scss/styles.scss +577 -0
package/README.md ADDED
@@ -0,0 +1,24 @@
1
+ # CommonHeaderLib
2
+
3
+ This library was generated with [Angular CLI](https://github.com/angular/angular-cli) version 14.2.0.
4
+
5
+ ## Code scaffolding
6
+
7
+ Run `ng generate component component-name --project common-header-lib` to generate a new component. You can also use `ng generate directive|pipe|service|class|guard|interface|enum|module --project common-header-lib`.
8
+ > Note: Don't forget to add `--project common-header-lib` or else it will be added to the default project in your `angular.json` file.
9
+
10
+ ## Build
11
+
12
+ Run `ng build common-header-lib` to build the project. The build artifacts will be stored in the `dist/` directory.
13
+
14
+ ## Publishing
15
+
16
+ After building your library with `ng build common-header-lib`, go to the dist folder `cd dist/common-header-lib` and run `npm publish`.
17
+
18
+ ## Running unit tests
19
+
20
+ Run `ng test common-header-lib` to execute the unit tests via [Karma](https://karma-runner.github.io).
21
+
22
+ ## Further help
23
+
24
+ To get more help on the Angular CLI use `ng help` or go check out the [Angular CLI Overview and Command Reference](https://angular.io/cli) page.
File without changes
@@ -0,0 +1,83 @@
1
+ {
2
+ "Generic_lib": {
3
+ "Action": "فعل",
4
+ "ArconLearningCenter": "مركز أركون التعليمي",
5
+ "AssetName": "اسم الأصول",
6
+ "AssetNameFieldValidation": "الرجاء تحديد اسم الأصل",
7
+ "AssetNamePlaceholder": "حدد اسم الأصل",
8
+ "AssetType": "نوع الأصول",
9
+ "AssetTypeFieldValidation": "الرجاء تحديد نوع الأصول",
10
+ "AssetTypePlaceholder": "حدد نوع الأصل",
11
+ "ChangePassword": "تغيير كلمة المرور",
12
+ "CommonError": "حدث خطأ ما!",
13
+ "ConfirmPassword": "تأكيد كلمة المرور",
14
+ "ConfirmPasswordFieldNewValidation": "يجب أن تكون كلمة المرور وتأكيد كلمة المرور متماثلتين",
15
+ "ConfirmPasswordFieldValidation": "الرجاء إدخال تأكيد كلمة المرور الخاصة بك",
16
+ "ConfirmPasswordPlaceholder": "أعد إدخال كلمة المرور الجديدة",
17
+ "ConnectionMethod": "طريقة الاتصال",
18
+ "ConnectionMethodFieldValidation": "الرجاء تحديد طريقة الاتصال",
19
+ "ConnectionMethodPlaceholder": "حدد طريقة الاتصال",
20
+ "CurrentPassword": "كلمة المرور الحالية",
21
+ "CurrentSession": "الجلسة الحالية",
22
+ "CurrentSetting": "الإعداد الحالي",
23
+ "Email": "بريد إلكتروني",
24
+ "EmailAddress": "عنوان البريد الإلكتروني",
25
+ "From": "من",
26
+ "GeneralConfiguration": "التكوين العام",
27
+ "hrs": "ساعات",
28
+ "LandingPageConfig": "صفحة المقصود الافتراضية بعد السدوي",
29
+ "LandingPageErrorMsg": "لا يمكن تحديث تكوين الصفحة المقصودة",
30
+ "LandingPagePlaceHolder": "حدد اسم التطبيق",
31
+ "LandingPageSuccessMsg": "تم تكوين الصفحة المقصودة بنجاح",
32
+ "LastSession": "الجلسة الأخيرة",
33
+ "LastUpdated": "آخر تحديث",
34
+ "Logout": "تسجيل الخروج",
35
+ "MailBox": "صندوق البريد",
36
+ "min": "دقائق",
37
+ "NewPassword": "كلمة المرور الجديدة",
38
+ "NewPasswordFieldValidation": "الرجاء إدخال كلمة المرور الجديدة",
39
+ "NewPasswordPlaceholder": "أدخل كلمة المرور الجديدة",
40
+ "NoSearchResult": "لم نتمكن من العثور على أي خدمة تطابق بحثك ضمن LOB المختار.",
41
+ "NoText": "غير متوفر",
42
+ "Notification": "إشعار",
43
+ "OneTime": "مرة واحدة",
44
+ "Password": "كلمة المرور",
45
+ "PasswordFieldValidation": "الرجاء إدخال كلمة المرور الحالية الخاصة بك",
46
+ "PasswordPlaceholder": "أدخل كلمة المرور الحالية",
47
+ "Permanent": "دائم",
48
+ "PreferencePath": "مسار التفضيل",
49
+ "PreferencePathErrorMsg": "تعذر تحديث مسار التفضيل",
50
+ "PreferencePathFieldSpaceValidation": "الرجاء إدخال المسار المفضل",
51
+ "PreferencePathFieldValidation": "الرجاء إدخال المسار المفضل",
52
+ "PreferencePathPlaceholder": "معرف الحالة المرجعي",
53
+ "PreferencePathSuccessMsg": "تم تحديث مسار التفضيل بنجاح",
54
+ "PreferredTimezone": "المنطقة الزمنية المفضلة",
55
+ "Search": "بحث",
56
+ "secs": "ثواني",
57
+ "SelectLanguage": "اختر اللغة",
58
+ "SSHKey": "مفتاح SSH",
59
+ "Submit": "إرسال",
60
+ "TimeBased": "يعتمد على الوقت",
61
+ "TimeZoneErrorMsg": "لا يمكن تحديث المنطقة الزمنية",
62
+ "TimeZoneFieldValidation": "الرجاء تحديد المنطقة الزمنية",
63
+ "TimeZonePlaceHolder": "حدد المنطقة الزمنية المفضلة",
64
+ "TimeZoneSuccessMsg": "تم تحديث المنطقة الزمنية بنجاح",
65
+ "Update": "تحديث",
66
+ "UserName": "اسم المستخدم",
67
+ "ViewFrom": "عرض من",
68
+ "ViewPassword": "عرض كلمة المرور",
69
+ "ChangeLOB": "تغيير وحدة الأعمال",
70
+ "DoYouWantToChangeTheCurrentLOB": "هل تريد تغيير وحدة الأعمال الحالية؟",
71
+ "No": "لا",
72
+ "Yes": "نعم",
73
+ "Subject": "الموضوع",
74
+ "RemainingTime": "الوقت المتبقي",
75
+ "KeyPassphrase": "عبارة مرور المفتاح",
76
+ "DownloadSSHNote": "ملاحظة: انقر على زر \"تنزيل مفتاح SSH\" لتنزيل ملف مفتاح SSH بصيغة \".ppk\" / \".pem\".",
77
+ "DownloadKey": "تنزيل مفتاح SSH",
78
+ "VaultCredentials": "بيانات اعتماد الخزنة",
79
+ "Copy": "نسخ",
80
+ "YouHaveNNotifications": "لديك {{count}} إشعارات",
81
+ "Refresh": "تحديث"
82
+ }
83
+ }
@@ -0,0 +1,83 @@
1
+ {
2
+ "Generic_lib": {
3
+ "Action": "Aktion",
4
+ "ArconLearningCenter": "Arcon Lernzentrum",
5
+ "AssetName": "Asset-Name",
6
+ "AssetNameFieldValidation": "Bitte Asset-Namen auswählen",
7
+ "AssetNamePlaceholder": "Asset-Namen auswählen",
8
+ "AssetType": "Asset-Typ",
9
+ "AssetTypeFieldValidation": "Bitte Asset-Typ auswählen",
10
+ "AssetTypePlaceholder": "Asset-Typ auswählen",
11
+ "ChangePassword": "Passwort ändern",
12
+ "CommonError": "Etwas ist schiefgelaufen!",
13
+ "ConfirmPassword": "Passwort bestätigen",
14
+ "ConfirmPasswordFieldNewValidation": "Passwort und Bestätigung müssen übereinstimmen",
15
+ "ConfirmPasswordFieldValidation": "Bitte Passwortbestätigung eingeben",
16
+ "ConfirmPasswordPlaceholder": "Neues Passwort erneut eingeben",
17
+ "ConnectionMethod": "Verbindungsmethode",
18
+ "ConnectionMethodFieldValidation": "Bitte Verbindungsmethode auswählen",
19
+ "ConnectionMethodPlaceholder": "Verbindungsmethode auswählen",
20
+ "CurrentPassword": "Aktuelles Passwort",
21
+ "CurrentSession": "Aktuelle Sitzung",
22
+ "CurrentSetting": "Aktuelle Einstellung",
23
+ "Email": "E-Mail",
24
+ "EmailAddress": "E-Mail-Adresse",
25
+ "From": "Von",
26
+ "GeneralConfiguration": "Allgemeine Konfiguration",
27
+ "hrs": "Std",
28
+ "LandingPageConfig": "Standard-Startseite nach Anmeldung",
29
+ "LandingPageErrorMsg": "Konfiguration der Startseite konnte nicht aktualisiert werden",
30
+ "LandingPagePlaceHolder": "Anwendungsnamen auswählen",
31
+ "LandingPageSuccessMsg": "Startseite erfolgreich konfiguriert",
32
+ "LastSession": "Letzte Sitzung",
33
+ "LastUpdated": "Zuletzt aktualisiert",
34
+ "Logout": "Abmelden",
35
+ "MailBox": "Postfach",
36
+ "min": "Min",
37
+ "NewPassword": "Neues Passwort",
38
+ "NewPasswordFieldValidation": "Bitte neues Passwort eingeben",
39
+ "NewPasswordPlaceholder": "Neues Passwort eingeben",
40
+ "NoSearchResult": "Keine passenden Dienste im ausgewählten LOB gefunden.",
41
+ "NoText": "Nicht verfügbar",
42
+ "Notification": "Benachrichtigung",
43
+ "OneTime": "Einmalig",
44
+ "Password": "Passwort",
45
+ "PasswordFieldValidation": "Bitte aktuelles Passwort eingeben",
46
+ "PasswordPlaceholder": "Aktuelles Passwort eingeben",
47
+ "Permanent": "Dauerhaft",
48
+ "PreferencePath": "Pfad für Einstellungen",
49
+ "PreferencePathErrorMsg": "Einstellungspfad konnte nicht aktualisiert werden",
50
+ "PreferencePathFieldSpaceValidation": "Bitte Einstellungspfad eingeben",
51
+ "PreferencePathFieldValidation": "Bitte Einstellungspfad eingeben",
52
+ "PreferencePathPlaceholder": "Referenzfall-ID",
53
+ "PreferencePathSuccessMsg": "Einstellungspfad erfolgreich aktualisiert",
54
+ "PreferredTimezone": "Bevorzugte Zeitzone",
55
+ "Search": "Suchen",
56
+ "secs": "Sek",
57
+ "SelectLanguage": "Sprache auswählen",
58
+ "SSHKey": "SSH-Schlüssel",
59
+ "Submit": "Absenden",
60
+ "TimeBased": "Zeitbasiert",
61
+ "TimeZoneErrorMsg": "Zeitzone konnte nicht aktualisiert werden",
62
+ "TimeZoneFieldValidation": "Bitte Zeitzone auswählen",
63
+ "TimeZonePlaceHolder": "Bevorzugte Zeitzone auswählen",
64
+ "TimeZoneSuccessMsg": "Zeitzone erfolgreich aktualisiert",
65
+ "Update": "Aktualisieren",
66
+ "UserName": "Benutzername",
67
+ "ViewFrom": "Anzeigen von",
68
+ "ViewPassword": "Passwort anzeigen",
69
+ "ChangeLOB": "Geschäftsbereich ändern",
70
+ "DoYouWantToChangeTheCurrentLOB": "Möchten Sie den aktuellen Geschäftsbereich ändern?",
71
+ "No": "Nein",
72
+ "Yes": "Ja",
73
+ "Subject": "Betreff",
74
+ "RemainingTime": "Verbleibende Zeit",
75
+ "KeyPassphrase": "Schlüsselpassphrase",
76
+ "DownloadSSHNote": "Hinweis: Klicken Sie auf die Schaltfläche „SSH-Schlüssel herunterladen“, um die SSH-Schlüsseldatei im Format „.ppk“ / „.pem“ herunterzuladen.",
77
+ "DownloadKey": "SSH-Schlüssel herunterladen",
78
+ "VaultCredentials": "Tresor-Anmeldedaten",
79
+ "Copy": "Kopieren",
80
+ "YouHaveNNotifications": "Sie haben {{count}} Benachrichtigungen",
81
+ "Refresh": "Aktualisieren"
82
+ }
83
+ }
@@ -0,0 +1,83 @@
1
+ {
2
+ "Generic_lib": {
3
+ "Action": "Action",
4
+ "ArconLearningCenter": "Arcon Learning Center",
5
+ "AssetName": "Asset Name",
6
+ "AssetNameFieldValidation": "Please Select Asset Name",
7
+ "AssetNamePlaceholder": "Select Asset Name",
8
+ "AssetType": "Asset Type",
9
+ "AssetTypeFieldValidation": "Please Select Asset Type",
10
+ "AssetTypePlaceholder": "Select Asset Type",
11
+ "ChangePassword": "Change Password",
12
+ "CommonError": "Something Went Wrong !",
13
+ "ConfirmPassword": "Confirm Password",
14
+ "ConfirmPasswordFieldNewValidation": "Password and Confirm Password Must be Same",
15
+ "ConfirmPasswordFieldValidation": "Please Enter Your Confirm Password",
16
+ "ConfirmPasswordPlaceholder": "Re-enter New Password",
17
+ "ConnectionMethod": "Connection Method",
18
+ "ConnectionMethodFieldValidation": "Please Select Connection Method",
19
+ "ConnectionMethodPlaceholder": "Select Connection Method",
20
+ "CurrentPassword": "Current Password",
21
+ "CurrentSession": "Current Session",
22
+ "CurrentSetting": "Current Setting",
23
+ "Email": "Email",
24
+ "EmailAddress": "Email Address",
25
+ "From": "From",
26
+ "GeneralConfiguration": "General Configuration",
27
+ "hrs": "hrs",
28
+ "LandingPageConfig": "Post-login Default Landing Page",
29
+ "LandingPageErrorMsg": "Landing Page Configuration Couldn't Update",
30
+ "LandingPagePlaceHolder": "Select Application Name",
31
+ "LandingPageSuccessMsg": "Landing Page Configured SuccessFully",
32
+ "LastSession": "Last Session",
33
+ "LastUpdated": "Last Updated",
34
+ "Logout": "Logout",
35
+ "MailBox": "Mail Box",
36
+ "min": "min",
37
+ "NewPassword": "New Password",
38
+ "NewPasswordFieldValidation": "Please Enter Your New Password",
39
+ "NewPasswordPlaceholder": "Enter New Password",
40
+ "NoSearchResult": "We couldn't find any service matching your search within the chosen LOB. Try refining your keywords or choosing a different LOB for better results",
41
+ "NoText": "NA",
42
+ "Notification": "Notification",
43
+ "OneTime": "OneTime",
44
+ "Password": "Password",
45
+ "PasswordFieldValidation": "Please Enter Your current Password",
46
+ "PasswordPlaceholder": "Enter Current Password",
47
+ "Permanent": "Permanent",
48
+ "PreferencePath": "Preference Path",
49
+ "PreferencePathErrorMsg": "Preference Path Couldn't Update",
50
+ "PreferencePathFieldSpaceValidation": "Please Enter Preference Path",
51
+ "PreferencePathFieldValidation": "Please Enter Preference Path",
52
+ "PreferencePathPlaceholder": "Reference Case ID",
53
+ "PreferencePathSuccessMsg": "Preference Path Updated SuccessFully",
54
+ "PreferredTimezone": "Preferred Timezone",
55
+ "Search": "Search",
56
+ "secs": "secs",
57
+ "SelectLanguage": "Select Language",
58
+ "SSHKey": "SSH Key",
59
+ "Submit": "Submit",
60
+ "TimeBased": "TimeBased",
61
+ "TimeZoneErrorMsg": "Time Zone Updated Couldn't Update",
62
+ "TimeZoneFieldValidation": "Please Select Timezone",
63
+ "TimeZonePlaceHolder": "Select Preferred Timezone",
64
+ "TimeZoneSuccessMsg": "Time Zone Updated SuccessFully",
65
+ "Update": "Update",
66
+ "UserName": "User Name",
67
+ "ViewFrom": "View From",
68
+ "ViewPassword": "View Password",
69
+ "ChangeLOB": "Change LOB",
70
+ "DoYouWantToChangeTheCurrentLOB": "Do you want to change the current LOB?",
71
+ "No": "No",
72
+ "Yes": "Yes",
73
+ "Subject": "Subject",
74
+ "RemainingTime": "Remaining Time",
75
+ "KeyPassphrase": "Key Passphrase",
76
+ "DownloadSSHNote": "Note : Click on 'Download SSH Key' button to download SSHKey File in '.ppk' / '.pem' format.",
77
+ "DownloadKey": "Download SSH Key",
78
+ "VaultCredentials": "Vault Credentials",
79
+ "Copy": "Copy",
80
+ "YouHaveNNotifications": "You have {{count}} notifications",
81
+ "Refresh": "Refresh"
82
+ }
83
+ }
@@ -0,0 +1,83 @@
1
+ {
2
+ "Generic_lib": {
3
+ "Action": "Acción",
4
+ "ArconLearningCenter": "Centro de Aprendizaje Arcon",
5
+ "AssetName": "Nombre del activo",
6
+ "AssetNameFieldValidation": "Por favor seleccione el nombre del activo",
7
+ "AssetNamePlaceholder": "Seleccione el nombre del activo",
8
+ "AssetType": "Tipo de activo",
9
+ "AssetTypeFieldValidation": "Por favor seleccione el tipo de activo",
10
+ "AssetTypePlaceholder": "Seleccione el tipo de activo",
11
+ "ChangePassword": "Cambiar contraseña",
12
+ "CommonError": "¡Algo salió mal!",
13
+ "ConfirmPassword": "Confirmar contraseña",
14
+ "ConfirmPasswordFieldNewValidation": "La contraseña y su confirmación deben coincidir",
15
+ "ConfirmPasswordFieldValidation": "Por favor ingrese la confirmación de contraseña",
16
+ "ConfirmPasswordPlaceholder": "Vuelva a ingresar la nueva contraseña",
17
+ "ConnectionMethod": "Método de conexión",
18
+ "ConnectionMethodFieldValidation": "Por favor seleccione el método de conexión",
19
+ "ConnectionMethodPlaceholder": "Seleccione el método de conexión",
20
+ "CurrentPassword": "Contraseña actual",
21
+ "CurrentSession": "Sesión actual",
22
+ "CurrentSetting": "Configuración actual",
23
+ "Email": "Correo electrónico",
24
+ "EmailAddress": "Dirección de correo electrónico",
25
+ "From": "De",
26
+ "GeneralConfiguration": "Configuración general",
27
+ "hrs": "hrs",
28
+ "LandingPageConfig": "Página de inicio predeterminada tras inicio de sesión",
29
+ "LandingPageErrorMsg": "No se pudo actualizar la configuración de la página de inicio",
30
+ "LandingPagePlaceHolder": "Seleccione el nombre de la aplicación",
31
+ "LandingPageSuccessMsg": "Página de inicio configurada correctamente",
32
+ "LastSession": "Última sesión",
33
+ "LastUpdated": "Última actualización",
34
+ "Logout": "Cerrar sesión",
35
+ "MailBox": "Buzón",
36
+ "min": "min",
37
+ "NewPassword": "Nueva contraseña",
38
+ "NewPasswordFieldValidation": "Por favor ingrese la nueva contraseña",
39
+ "NewPasswordPlaceholder": "Ingrese la nueva contraseña",
40
+ "NoSearchResult": "No encontramos ningún servicio que coincida con su búsqueda.",
41
+ "NoText": "No disponible",
42
+ "Notification": "Notificación",
43
+ "OneTime": "Una vez",
44
+ "Password": "Contraseña",
45
+ "PasswordFieldValidation": "Por favor ingrese su contraseña actual",
46
+ "PasswordPlaceholder": "Ingrese la contraseña actual",
47
+ "Permanent": "Permanente",
48
+ "PreferencePath": "Ruta de preferencias",
49
+ "PreferencePathErrorMsg": "No se pudo actualizar la ruta de preferencias",
50
+ "PreferencePathFieldSpaceValidation": "Por favor ingrese la ruta de preferencias",
51
+ "PreferencePathFieldValidation": "Por favor ingrese la ruta de preferencias",
52
+ "PreferencePathPlaceholder": "ID de caso de referencia",
53
+ "PreferencePathSuccessMsg": "Ruta de preferencias actualizada correctamente",
54
+ "PreferredTimezone": "Zona horaria preferida",
55
+ "Search": "Buscar",
56
+ "secs": "seg",
57
+ "SelectLanguage": "Seleccionar idioma",
58
+ "SSHKey": "Clave SSH",
59
+ "Submit": "Enviar",
60
+ "TimeBased": "Basado en tiempo",
61
+ "TimeZoneErrorMsg": "No se pudo actualizar la zona horaria",
62
+ "TimeZoneFieldValidation": "Por favor seleccione la zona horaria",
63
+ "TimeZonePlaceHolder": "Seleccione la zona horaria preferida",
64
+ "TimeZoneSuccessMsg": "Zona horaria actualizada correctamente",
65
+ "Update": "Actualizar",
66
+ "UserName": "Nombre de usuario",
67
+ "ViewFrom": "Ver desde",
68
+ "ViewPassword": "Ver contraseña",
69
+ "ChangeLOB": "Cambiar LOB",
70
+ "DoYouWantToChangeTheCurrentLOB": "¿Desea cambiar el LOB actual?",
71
+ "No": "No",
72
+ "Yes": "Sí",
73
+ "Subject": "Asunto",
74
+ "RemainingTime": "Tiempo restante",
75
+ "KeyPassphrase": "Frase de contraseña de la clave",
76
+ "DownloadSSHNote": "Nota: Haga clic en el botón \"Descargar clave SSH\" para descargar el archivo de clave SSH en formato \".ppk\" / \".pem\".",
77
+ "DownloadKey": "Descargar clave SSH",
78
+ "VaultCredentials": "Credenciales del almacén",
79
+ "Copy": "Copiar",
80
+ "YouHaveNNotifications": "Tienes {{count}} notificaciones",
81
+ "Refresh": "Actualizar"
82
+ }
83
+ }
@@ -0,0 +1,83 @@
1
+ {
2
+ "Generic_lib": {
3
+ "Action": "Action",
4
+ "ArconLearningCenter": "Centre d’apprentissage Arcon",
5
+ "AssetName": "Nom de l’actif",
6
+ "AssetNameFieldValidation": "Veuillez sélectionner le nom de l’actif",
7
+ "AssetNamePlaceholder": "Sélectionnez le nom de l’actif",
8
+ "AssetType": "Type d’actif",
9
+ "AssetTypeFieldValidation": "Veuillez sélectionner le type d’actif",
10
+ "AssetTypePlaceholder": "Sélectionnez le type d’actif",
11
+ "ChangePassword": "Changer le mot de passe",
12
+ "CommonError": "Quelque chose s’est mal passé !",
13
+ "ConfirmPassword": "Confirmer le mot de passe",
14
+ "ConfirmPasswordFieldNewValidation": "Le mot de passe et la confirmation doivent correspondre",
15
+ "ConfirmPasswordFieldValidation": "Veuillez entrer la confirmation du mot de passe",
16
+ "ConfirmPasswordPlaceholder": "Entrez à nouveau le nouveau mot de passe",
17
+ "ConnectionMethod": "Méthode de connexion",
18
+ "ConnectionMethodFieldValidation": "Veuillez sélectionner la méthode de connexion",
19
+ "ConnectionMethodPlaceholder": "Sélectionnez la méthode de connexion",
20
+ "CurrentPassword": "Mot de passe actuel",
21
+ "CurrentSession": "Session actuelle",
22
+ "CurrentSetting": "Paramètre actuel",
23
+ "Email": "E-mail",
24
+ "EmailAddress": "Adresse e-mail",
25
+ "From": "De",
26
+ "GeneralConfiguration": "Configuration générale",
27
+ "hrs": "heures",
28
+ "LandingPageConfig": "Page d’accueil par défaut après connexion",
29
+ "LandingPageErrorMsg": "Impossible de mettre à jour la configuration de la page d’accueil",
30
+ "LandingPagePlaceHolder": "Sélectionnez le nom de l’application",
31
+ "LandingPageSuccessMsg": "Page d’accueil configurée avec succès",
32
+ "LastSession": "Dernière session",
33
+ "LastUpdated": "Dernière mise à jour",
34
+ "Logout": "Se déconnecter",
35
+ "MailBox": "Boîte aux lettres",
36
+ "min": "min",
37
+ "NewPassword": "Nouveau mot de passe",
38
+ "NewPasswordFieldValidation": "Veuillez entrer le nouveau mot de passe",
39
+ "NewPasswordPlaceholder": "Entrez le nouveau mot de passe",
40
+ "NoSearchResult": "Aucun service correspondant trouvé dans le LOB sélectionné.",
41
+ "NoText": "N/A",
42
+ "Notification": "Notification",
43
+ "OneTime": "Une fois",
44
+ "Password": "Mot de passe",
45
+ "PasswordFieldValidation": "Veuillez entrer votre mot de passe actuel",
46
+ "PasswordPlaceholder": "Entrez le mot de passe actuel",
47
+ "Permanent": "Permanent",
48
+ "PreferencePath": "Chemin des préférences",
49
+ "PreferencePathErrorMsg": "Impossible de mettre à jour le chemin des préférences",
50
+ "PreferencePathFieldSpaceValidation": "Veuillez entrer le chemin des préférences",
51
+ "PreferencePathFieldValidation": "Veuillez entrer le chemin des préférences",
52
+ "PreferencePathPlaceholder": "ID du cas de référence",
53
+ "PreferencePathSuccessMsg": "Chemin des préférences mis à jour avec succès",
54
+ "PreferredTimezone": "Fuseau horaire préféré",
55
+ "Search": "Rechercher",
56
+ "secs": "sec",
57
+ "SelectLanguage": "Choisir la langue",
58
+ "SSHKey": "Clé SSH",
59
+ "Submit": "Soumettre",
60
+ "TimeBased": "Basé sur le temps",
61
+ "TimeZoneErrorMsg": "Impossible de mettre à jour le fuseau horaire",
62
+ "TimeZoneFieldValidation": "Veuillez sélectionner le fuseau horaire",
63
+ "TimeZonePlaceHolder": "Sélectionnez le fuseau horaire préféré",
64
+ "TimeZoneSuccessMsg": "Fuseau horaire mis à jour avec succès",
65
+ "Update": "Mettre à jour",
66
+ "UserName": "Nom d’utilisateur",
67
+ "ViewFrom": "Afficher depuis",
68
+ "ViewPassword": "Afficher le mot de passe",
69
+ "ChangeLOB": "Changer le LOB",
70
+ "DoYouWantToChangeTheCurrentLOB": "Souhaitez-vous changer le LOB actuel ?",
71
+ "No": "Non",
72
+ "Yes": "Oui",
73
+ "Subject": "Objet",
74
+ "RemainingTime": "Temps restant",
75
+ "KeyPassphrase": "Phrase secrète de la clé",
76
+ "DownloadSSHNote": "Remarque : Cliquez sur le bouton « Télécharger la clé SSH » pour télécharger le fichier de clé SSH au format « .ppk » / « .pem ».",
77
+ "DownloadKey": "Télécharger la clé SSH",
78
+ "VaultCredentials": "Identifiants du coffre",
79
+ "Copy": "Copier",
80
+ "YouHaveNNotifications": "Vous avez {{count}} notifications",
81
+ "Refresh": "Actualiser"
82
+ }
83
+ }
@@ -0,0 +1,83 @@
1
+ {
2
+ "Generic_lib": {
3
+ "Action": "क्रिया",
4
+ "ArconLearningCenter": "आर्कॉन लर्निंग सेंटर",
5
+ "AssetName": "एसेट नाम",
6
+ "AssetNameFieldValidation": "कृपया एसेट नाम चुनें",
7
+ "AssetNamePlaceholder": "एसेट नाम चुनें",
8
+ "AssetType": "एसेट प्रकार",
9
+ "AssetTypeFieldValidation": "कृपया एसेट प्रकार चुनें",
10
+ "AssetTypePlaceholder": "एसेट प्रकार चुनें",
11
+ "ChangePassword": "पासवर्ड बदलें",
12
+ "CommonError": "कुछ गलत हो गया!",
13
+ "ConfirmPassword": "पासवर्ड की पुष्टि करें",
14
+ "ConfirmPasswordFieldNewValidation": "पासवर्ड और पुष्टि एक समान होनी चाहिए",
15
+ "ConfirmPasswordFieldValidation": "कृपया पासवर्ड पुष्टि दर्ज करें",
16
+ "ConfirmPasswordPlaceholder": "नया पासवर्ड दोबारा दर्ज करें",
17
+ "ConnectionMethod": "कनेक्शन विधि",
18
+ "ConnectionMethodFieldValidation": "कृपया कनेक्शन विधि चुनें",
19
+ "ConnectionMethodPlaceholder": "कनेक्शन विधि चुनें",
20
+ "CurrentPassword": "वर्तमान पासवर्ड",
21
+ "CurrentSession": "वर्तमान सत्र",
22
+ "CurrentSetting": "वर्तमान सेटिंग",
23
+ "Email": "ईमेल",
24
+ "EmailAddress": "ईमेल पता",
25
+ "From": "से",
26
+ "GeneralConfiguration": "सामान्य कॉन्फ़िगरेशन",
27
+ "hrs": "घंटे",
28
+ "LandingPageConfig": "लॉगिन के बाद की डिफ़ॉल्ट लैंडिंग पेज",
29
+ "LandingPageErrorMsg": "लैंडिंग पेज कॉन्फ़िगरेशन अपडेट नहीं हो सका",
30
+ "LandingPagePlaceHolder": "एप्लिकेशन नाम चुनें",
31
+ "LandingPageSuccessMsg": "लैंडिंग पेज सफलतापूर्वक कॉन्फ़िगर किया गया",
32
+ "LastSession": "पिछला सत्र",
33
+ "LastUpdated": "अंतिम अपडेट",
34
+ "Logout": "लॉग आउट",
35
+ "MailBox": "मेल बॉक्स",
36
+ "min": "मिनट",
37
+ "NewPassword": "नया पासवर्ड",
38
+ "NewPasswordFieldValidation": "कृपया नया पासवर्ड दर्ज करें",
39
+ "NewPasswordPlaceholder": "नया पासवर्ड दर्ज करें",
40
+ "NoSearchResult": "चयनित LOB में कोई मिलती हुई सेवा नहीं मिली।",
41
+ "NoText": "उपलब्ध नहीं",
42
+ "Notification": "सूचना",
43
+ "OneTime": "एक बार",
44
+ "Password": "पासवर्ड",
45
+ "PasswordFieldValidation": "कृपया अपना वर्तमान पासवर्ड दर्ज करें",
46
+ "PasswordPlaceholder": "वर्तमान पासवर्ड दर्ज करें",
47
+ "Permanent": "स्थायी",
48
+ "PreferencePath": "प्राथमिकता पथ",
49
+ "PreferencePathErrorMsg": "प्राथमिकता पथ अपडेट नहीं हो सका",
50
+ "PreferencePathFieldSpaceValidation": "कृपया प्राथमिकता पथ दर्ज करें",
51
+ "PreferencePathFieldValidation": "कृपया प्राथमिकता पथ दर्ज करें",
52
+ "PreferencePathPlaceholder": "रेफ़रेंस केस आईडी",
53
+ "PreferencePathSuccessMsg": "प्राथमिकता पथ सफलतापूर्वक अपडेट किया गया",
54
+ "PreferredTimezone": "पसंदीदा समय क्षेत्र",
55
+ "Search": "खोजें",
56
+ "secs": "सेकंड",
57
+ "SelectLanguage": "भाषा चुनें",
58
+ "SSHKey": "SSH कुंजी",
59
+ "Submit": "सबमिट करें",
60
+ "TimeBased": "समय आधारित",
61
+ "TimeZoneErrorMsg": "समय क्षेत्र अपडेट नहीं हो सका",
62
+ "TimeZoneFieldValidation": "कृपया समय क्षेत्र चुनें",
63
+ "TimeZonePlaceHolder": "पसंदीदा समय क्षेत्र चुनें",
64
+ "TimeZoneSuccessMsg": "समय क्षेत्र सफलतापूर्वक अपडेट किया गया",
65
+ "Update": "अपडेट करें",
66
+ "UserName": "उपयोगकर्ता नाम",
67
+ "ViewFrom": "से देखें",
68
+ "ViewPassword": "पासवर्ड देखें",
69
+ "ChangeLOB": "LOB बदलें",
70
+ "DoYouWantToChangeTheCurrentLOB": "क्या आप वर्तमान LOB बदलना चाहते हैं?",
71
+ "No": "नहीं",
72
+ "Yes": "हाँ",
73
+ "Subject": "विषय",
74
+ "RemainingTime": "शेष समय",
75
+ "KeyPassphrase": "कुंजी पासफ्रेज़",
76
+ "DownloadSSHNote": "नोट: '.ppk' / '.pem' फ़ॉर्मेट में SSH कुंजी फ़ाइल डाउनलोड करने के लिए 'Download SSH Key' बटन पर क्लिक करें।",
77
+ "DownloadKey": "SSH कुंजी डाउनलोड करें",
78
+ "VaultCredentials": "वॉल्ट क्रेडेंशियल्स",
79
+ "Copy": "कॉपी",
80
+ "YouHaveNNotifications": "आपके पास {{count}} सूचनाएँ हैं",
81
+ "Refresh": "रीफ़्रेश"
82
+ }
83
+ }
@@ -0,0 +1,83 @@
1
+ {
2
+ "Generic_lib": {
3
+ "Action": "アクション",
4
+ "ArconLearningCenter": "Arcon学習センター",
5
+ "AssetName": "アセット名",
6
+ "AssetNameFieldValidation": "アセット名を選択してください",
7
+ "AssetNamePlaceholder": "アセット名を選択",
8
+ "AssetType": "アセットタイプ",
9
+ "AssetTypeFieldValidation": "アセットタイプを選択してください",
10
+ "AssetTypePlaceholder": "アセットタイプを選択",
11
+ "ChangePassword": "パスワード変更",
12
+ "CommonError": "問題が発生しました!",
13
+ "ConfirmPassword": "パスワード確認",
14
+ "ConfirmPasswordFieldNewValidation": "パスワードと確認が一致する必要があります",
15
+ "ConfirmPasswordFieldValidation": "パスワード確認を入力してください",
16
+ "ConfirmPasswordPlaceholder": "新しいパスワードを再入力",
17
+ "ConnectionMethod": "接続方法",
18
+ "ConnectionMethodFieldValidation": "接続方法を選択してください",
19
+ "ConnectionMethodPlaceholder": "接続方法を選択",
20
+ "CurrentPassword": "現在のパスワード",
21
+ "CurrentSession": "現在のセッション",
22
+ "CurrentSetting": "現在の設定",
23
+ "Email": "メール",
24
+ "EmailAddress": "メールアドレス",
25
+ "From": "送信者",
26
+ "GeneralConfiguration": "一般設定",
27
+ "hrs": "時間",
28
+ "LandingPageConfig": "ログイン後のデフォルトランディングページ",
29
+ "LandingPageErrorMsg": "ランディングページ設定を更新できませんでした",
30
+ "LandingPagePlaceHolder": "アプリ名を選択",
31
+ "LandingPageSuccessMsg": "ランディングページが正常に設定されました",
32
+ "LastSession": "前回のセッション",
33
+ "LastUpdated": "最終更新",
34
+ "Logout": "ログアウト",
35
+ "MailBox": "メールボックス",
36
+ "min": "分",
37
+ "NewPassword": "新しいパスワード",
38
+ "NewPasswordFieldValidation": "新しいパスワードを入力してください",
39
+ "NewPasswordPlaceholder": "新しいパスワードを入力",
40
+ "NoSearchResult": "選択したLOBに一致するサービスが見つかりませんでした。",
41
+ "NoText": "該当なし",
42
+ "Notification": "通知",
43
+ "OneTime": "一回",
44
+ "Password": "パスワード",
45
+ "PasswordFieldValidation": "現在のパスワードを入力してください",
46
+ "PasswordPlaceholder": "現在のパスワードを入力",
47
+ "Permanent": "永久",
48
+ "PreferencePath": "設定パス",
49
+ "PreferencePathErrorMsg": "設定パスを更新できませんでした",
50
+ "PreferencePathFieldSpaceValidation": "設定パスを入力してください",
51
+ "PreferencePathFieldValidation": "設定パスを入力してください",
52
+ "PreferencePathPlaceholder": "参照ケースID",
53
+ "PreferencePathSuccessMsg": "設定パスが正常に更新されました",
54
+ "PreferredTimezone": "希望タイムゾーン",
55
+ "Search": "検索",
56
+ "secs": "秒",
57
+ "SelectLanguage": "言語を選択",
58
+ "SSHKey": "SSHキー",
59
+ "Submit": "送信",
60
+ "TimeBased": "時間ベース",
61
+ "TimeZoneErrorMsg": "タイムゾーンを更新できませんでした",
62
+ "TimeZoneFieldValidation": "タイムゾーンを選択してください",
63
+ "TimeZonePlaceHolder": "希望タイムゾーンを選択",
64
+ "TimeZoneSuccessMsg": "タイムゾーンが正常に更新されました",
65
+ "Update": "更新",
66
+ "UserName": "ユーザー名",
67
+ "ViewFrom": "表示元",
68
+ "ViewPassword": "パスワード表示",
69
+ "ChangeLOB": "LOBを変更",
70
+ "DoYouWantToChangeTheCurrentLOB": "現在のLOBを変更しますか?",
71
+ "No": "いいえ",
72
+ "Yes": "はい",
73
+ "Subject": "件名",
74
+ "RemainingTime": "残り時間",
75
+ "KeyPassphrase": "キーパスフレーズ",
76
+ "DownloadSSHNote": "注: 「SSHキーをダウンロード」ボタンをクリックして、「.ppk」/「.pem」形式のSSHキーファイルをダウンロードしてください。",
77
+ "DownloadKey": "SSHキーをダウンロード",
78
+ "VaultCredentials": "ボールト認証情報",
79
+ "Copy": "コピー",
80
+ "YouHaveNNotifications": "{{count}} 件の通知があります",
81
+ "Refresh": "更新"
82
+ }
83
+ }