pds-dev-kit-web 0.4.0 → 0.5.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 (268) hide show
  1. package/.vscode/settings.json +49 -0
  2. package/README.md +1 -1
  3. package/dist/index.d.ts +9 -8
  4. package/dist/index.js +46 -1
  5. package/dist/src/common/assets/icons/line/PostWelcome.d.ts +4 -0
  6. package/dist/src/common/assets/icons/line/PostWelcome.js +37 -0
  7. package/dist/src/common/assets/icons/line/TenSecBack.d.ts +4 -0
  8. package/dist/src/common/assets/icons/line/TenSecBack.js +34 -0
  9. package/dist/src/common/assets/icons/line/TenSecBackArrow.d.ts +4 -0
  10. package/dist/src/common/assets/icons/line/TenSecBackArrow.js +34 -0
  11. package/dist/src/common/assets/icons/line/TenSecForward.d.ts +4 -0
  12. package/dist/src/common/assets/icons/line/TenSecForward.js +34 -0
  13. package/dist/src/common/assets/icons/line/TenSecForwardArrow.d.ts +4 -0
  14. package/dist/src/common/assets/icons/line/TenSecForwardArrow.js +34 -0
  15. package/dist/src/common/assets/icons/line/index.d.ts +5 -0
  16. package/dist/src/common/assets/icons/line/index.js +10 -0
  17. package/dist/src/common/components/Form/Form.d.ts +16 -0
  18. package/dist/src/common/components/Form/Form.js +40 -0
  19. package/dist/src/common/components/Form/index.d.ts +1 -0
  20. package/dist/src/common/components/Form/index.js +8 -0
  21. package/dist/src/common/components/index.d.ts +2 -0
  22. package/dist/src/common/components/index.js +5 -0
  23. package/dist/src/common/decorators/withFormProvider.d.ts +4 -0
  24. package/dist/src/common/decorators/withFormProvider.js +28 -0
  25. package/dist/src/common/index.d.ts +6 -1
  26. package/dist/src/common/index.js +4 -1
  27. package/dist/src/common/services/i18n/resources/en.json +2794 -2569
  28. package/dist/src/common/services/i18n/resources/es.json +280 -55
  29. package/dist/src/common/services/i18n/resources/index.d.ts +936 -36
  30. package/dist/src/common/services/i18n/resources/jp.json +280 -55
  31. package/dist/src/common/services/i18n/resources/ko.json +277 -52
  32. package/dist/src/common/styles/colorSet/PaletteColor_Dark.json +10 -7
  33. package/dist/src/common/styles/colorSet/PaletteColor_light.json +4 -1
  34. package/dist/src/common/styles/colorSet/UIColor.json +10 -3
  35. package/dist/src/common/styles/colorSet/index.d.ts +71 -58
  36. package/dist/src/common/styles/colorSet/index.js +2 -2
  37. package/dist/src/common/styles/colorSet/ui-type.d.ts +8 -1
  38. package/dist/src/common/styles/index.d.ts +2 -0
  39. package/dist/src/common/styles/theme.d.ts +2 -0
  40. package/dist/src/common/styles/theme.js +4 -2
  41. package/dist/src/common/styles/ui-colors.js +1 -1
  42. package/dist/src/common/types/form.d.ts +3 -0
  43. package/dist/src/common/types/form.js +2 -0
  44. package/dist/src/common/types/icon.d.ts +4 -0
  45. package/dist/src/common/types/icon.js +2 -0
  46. package/dist/src/common/types/styled-components.d.ts +2 -0
  47. package/dist/src/common/types/uiColors.d.ts +2 -0
  48. package/dist/src/common/types/uiColors.js +2 -0
  49. package/dist/src/desktop/common/components/TextFieldBase/TextFieldBase.d.ts +45 -0
  50. package/dist/src/desktop/common/components/TextFieldBase/TextFieldBase.js +265 -0
  51. package/dist/src/desktop/common/components/TextFieldBase/index.d.ts +1 -0
  52. package/dist/src/desktop/common/components/TextFieldBase/index.js +8 -0
  53. package/dist/src/desktop/common/components/index.d.ts +2 -0
  54. package/dist/src/desktop/common/components/index.js +5 -0
  55. package/dist/src/desktop/components/Card/Card.d.ts +11 -0
  56. package/dist/src/desktop/components/Card/Card.js +50 -0
  57. package/dist/src/desktop/components/Card/index.d.ts +1 -0
  58. package/dist/src/desktop/components/Card/index.js +8 -0
  59. package/dist/src/desktop/components/CardList/CardList.d.ts +10 -0
  60. package/dist/src/desktop/components/CardList/CardList.js +30 -0
  61. package/dist/src/desktop/components/CardList/index.d.ts +1 -0
  62. package/dist/src/desktop/components/CardList/index.js +8 -0
  63. package/dist/src/desktop/components/Checkbox/Checkbox.d.ts +11 -0
  64. package/dist/src/desktop/components/Checkbox/Checkbox.js +65 -0
  65. package/dist/src/desktop/components/Checkbox/index.d.ts +1 -0
  66. package/dist/src/desktop/components/Checkbox/index.js +8 -0
  67. package/dist/src/desktop/components/Chip/Chip.d.ts +19 -0
  68. package/dist/src/desktop/components/Chip/Chip.js +131 -0
  69. package/dist/src/desktop/components/Chip/index.d.ts +1 -0
  70. package/dist/src/desktop/components/Chip/index.js +8 -0
  71. package/dist/src/desktop/components/ContextMenu/ContextMenu.d.ts +7 -0
  72. package/dist/src/desktop/components/ContextMenu/ContextMenu.js +33 -0
  73. package/dist/src/desktop/components/ContextMenu/index.d.ts +1 -0
  74. package/dist/src/desktop/components/ContextMenu/index.js +8 -0
  75. package/dist/src/desktop/components/ContextMenuItem/ContextMenuItem.d.ts +10 -0
  76. package/dist/src/desktop/components/ContextMenuItem/ContextMenuItem.js +65 -0
  77. package/dist/src/desktop/components/ContextMenuItem/index.d.ts +1 -0
  78. package/dist/src/desktop/components/ContextMenuItem/index.js +8 -0
  79. package/dist/src/desktop/components/DesktopHeaderBar/DesktopHeaderBar.d.ts +39 -0
  80. package/dist/src/desktop/components/DesktopHeaderBar/DesktopHeaderBar.js +81 -0
  81. package/dist/src/desktop/components/DesktopHeaderBar/index.d.ts +1 -0
  82. package/dist/src/desktop/components/DesktopHeaderBar/index.js +8 -0
  83. package/dist/src/desktop/components/DesktopTabBar/DesktopTabBar.d.ts +15 -0
  84. package/dist/src/desktop/components/DesktopTabBar/DesktopTabBar.js +125 -0
  85. package/dist/src/desktop/components/DesktopTabBar/index.d.ts +1 -0
  86. package/dist/src/desktop/components/DesktopTabBar/index.js +8 -0
  87. package/dist/src/desktop/components/EditApplyTextField/EditApplyTextField.d.ts +32 -0
  88. package/dist/src/desktop/components/EditApplyTextField/EditApplyTextField.js +238 -0
  89. package/dist/src/desktop/components/EditApplyTextField/index.d.ts +1 -0
  90. package/dist/src/desktop/components/EditApplyTextField/index.js +8 -0
  91. package/dist/src/desktop/components/FilterBar/FilterBar.d.ts +19 -0
  92. package/dist/src/desktop/components/FilterBar/FilterBar.js +53 -0
  93. package/dist/src/desktop/components/FilterBar/index.d.ts +1 -0
  94. package/dist/src/desktop/components/FilterBar/index.js +8 -0
  95. package/dist/src/desktop/components/FloatingActionButton/FloatingActionButton.d.ts +19 -0
  96. package/dist/src/desktop/components/FloatingActionButton/FloatingActionButton.js +96 -0
  97. package/dist/src/desktop/components/FloatingActionButton/index.d.ts +1 -0
  98. package/dist/src/desktop/components/FloatingActionButton/index.js +8 -0
  99. package/dist/src/desktop/components/IconButton/IconButton.js +3 -3
  100. package/dist/src/desktop/components/ImageSlide/ImageSlide.d.ts +13 -0
  101. package/dist/src/desktop/components/ImageSlide/ImageSlide.js +97 -0
  102. package/dist/src/desktop/components/ImageSlide/index.d.ts +1 -0
  103. package/dist/src/desktop/components/ImageSlide/index.js +8 -0
  104. package/dist/src/desktop/components/MainButton/MainButton.d.ts +21 -0
  105. package/dist/src/desktop/components/MainButton/MainButton.js +190 -0
  106. package/dist/src/desktop/components/MainButton/index.d.ts +1 -0
  107. package/dist/src/desktop/components/MainButton/index.js +8 -0
  108. package/dist/src/desktop/components/Radio/Radio.d.ts +12 -0
  109. package/dist/src/desktop/components/Radio/Radio.js +45 -0
  110. package/dist/src/desktop/components/Radio/index.d.ts +1 -0
  111. package/dist/src/desktop/components/Radio/index.js +8 -0
  112. package/dist/src/desktop/components/ReactionButton/ReactionButton.d.ts +11 -0
  113. package/dist/src/desktop/components/ReactionButton/ReactionButton.js +108 -0
  114. package/dist/src/desktop/components/ReactionButton/index.d.ts +1 -0
  115. package/dist/src/desktop/components/ReactionButton/index.js +8 -0
  116. package/dist/src/desktop/components/Select/Select.d.ts +16 -0
  117. package/dist/src/desktop/components/Select/Select.js +136 -0
  118. package/dist/src/desktop/components/Select/index.d.ts +1 -0
  119. package/dist/src/desktop/components/Select/index.js +8 -0
  120. package/dist/src/desktop/components/StatusBlock/StatusBlock.js +1 -1
  121. package/dist/src/desktop/components/TextButton/TextButton.d.ts +11 -0
  122. package/dist/src/desktop/components/TextButton/TextButton.js +103 -0
  123. package/dist/src/desktop/components/TextButton/index.d.ts +1 -0
  124. package/dist/src/desktop/components/TextButton/index.js +8 -0
  125. package/dist/src/desktop/components/TextField/TextField.d.ts +42 -0
  126. package/dist/src/desktop/components/TextField/TextField.js +252 -0
  127. package/dist/src/desktop/components/TextField/index.d.ts +1 -0
  128. package/dist/src/desktop/components/TextField/index.js +8 -0
  129. package/dist/src/desktop/components/TextLabel/TextLabel.d.ts +3 -1
  130. package/dist/src/desktop/components/TextLabel/TextLabel.js +7 -4
  131. package/dist/src/desktop/components/UploadIconButton/UploadIconButton.d.ts +21 -0
  132. package/dist/src/desktop/components/UploadIconButton/UploadIconButton.js +149 -0
  133. package/dist/src/desktop/components/UploadIconButton/index.d.ts +1 -0
  134. package/dist/src/desktop/components/UploadIconButton/index.js +8 -0
  135. package/dist/src/desktop/components/UploadIconButton/types.d.ts +8 -0
  136. package/dist/src/desktop/components/UploadIconButton/types.js +11 -0
  137. package/dist/src/desktop/components/UploadMainButton/UploadMainButton.d.ts +18 -0
  138. package/dist/src/desktop/components/UploadMainButton/UploadMainButton.js +173 -0
  139. package/dist/src/desktop/components/UploadMainButton/index.d.ts +1 -0
  140. package/dist/src/desktop/components/UploadMainButton/index.js +8 -0
  141. package/dist/src/desktop/components/UploadMainButton/types.d.ts +25 -0
  142. package/dist/src/desktop/components/UploadMainButton/types.js +28 -0
  143. package/dist/src/desktop/components/UploadTextButton/UploadTextButton.d.ts +12 -0
  144. package/dist/src/desktop/components/UploadTextButton/UploadTextButton.js +83 -0
  145. package/dist/src/desktop/components/UploadTextButton/index.d.ts +1 -0
  146. package/dist/src/desktop/components/UploadTextButton/index.js +8 -0
  147. package/dist/src/desktop/components/UserDesktopNavBar/UserDesktopNavBar.d.ts +20 -0
  148. package/dist/src/desktop/components/UserDesktopNavBar/UserDesktopNavBar.js +104 -0
  149. package/dist/src/desktop/components/UserDesktopNavBar/index.d.ts +1 -0
  150. package/dist/src/desktop/components/UserDesktopNavBar/index.js +8 -0
  151. package/dist/src/desktop/components/UserDesktopTabBar/UserDesktopTabBar.d.ts +11 -0
  152. package/dist/src/desktop/components/UserDesktopTabBar/UserDesktopTabBar.js +74 -0
  153. package/dist/src/desktop/components/UserDesktopTabBar/index.d.ts +1 -0
  154. package/dist/src/desktop/components/UserDesktopTabBar/index.js +8 -0
  155. package/dist/src/desktop/components/index.d.ts +24 -1
  156. package/dist/src/desktop/components/index.js +47 -1
  157. package/dist/src/desktop/index.d.ts +2 -2
  158. package/dist/src/desktop/index.js +24 -1
  159. package/dist/src/desktop/layout/LayoutWS/Containers/ContentsContainer/variation/WSF.js +1 -1
  160. package/dist/src/hybrid/components/Icon/Icon.d.ts +2 -2
  161. package/dist/src/hybrid/components/Icon/Icon.js +1 -1
  162. package/dist/src/hybrid/components/ImageView/ImageView.d.ts +4 -2
  163. package/dist/src/hybrid/components/ImageView/ImageView.js +110 -28
  164. package/dist/src/hybrid/components/Switch/Switch.d.ts +9 -0
  165. package/dist/src/hybrid/components/Switch/Switch.js +75 -0
  166. package/dist/src/hybrid/components/Switch/index.d.ts +1 -0
  167. package/dist/src/hybrid/components/Switch/index.js +8 -0
  168. package/dist/src/hybrid/components/index.d.ts +2 -1
  169. package/dist/src/hybrid/components/index.js +3 -1
  170. package/dist/src/hybrid/index.d.ts +2 -2
  171. package/dist/src/hybrid/index.js +2 -1
  172. package/dist/src/mobile/common/components/TextFieldBase/TextFieldBase.d.ts +45 -0
  173. package/dist/src/mobile/common/components/TextFieldBase/TextFieldBase.js +265 -0
  174. package/dist/src/mobile/common/components/TextFieldBase/index.d.ts +1 -0
  175. package/dist/src/mobile/common/components/TextFieldBase/index.js +8 -0
  176. package/dist/src/mobile/common/components/index.d.ts +2 -0
  177. package/dist/src/mobile/common/components/index.js +5 -0
  178. package/dist/src/mobile/components/BlogTextField/BlogTextField.d.ts +29 -0
  179. package/dist/src/mobile/components/BlogTextField/BlogTextField.js +105 -0
  180. package/dist/src/mobile/components/BlogTextField/index.d.ts +1 -0
  181. package/dist/src/mobile/components/BlogTextField/index.js +8 -0
  182. package/dist/src/mobile/components/Card/Card.d.ts +11 -0
  183. package/dist/src/mobile/components/Card/Card.js +50 -0
  184. package/dist/src/mobile/components/Card/index.d.ts +1 -0
  185. package/dist/src/mobile/components/Card/index.js +8 -0
  186. package/dist/src/mobile/components/CardList/CardList.d.ts +10 -0
  187. package/dist/src/mobile/components/CardList/CardList.js +30 -0
  188. package/dist/src/mobile/components/CardList/index.d.ts +1 -0
  189. package/dist/src/mobile/components/CardList/index.js +8 -0
  190. package/dist/src/mobile/components/Checkbox/Checkbox.d.ts +11 -0
  191. package/dist/src/mobile/components/Checkbox/Checkbox.js +62 -0
  192. package/dist/src/mobile/components/Checkbox/index.d.ts +1 -0
  193. package/dist/src/mobile/components/Checkbox/index.js +8 -0
  194. package/dist/src/mobile/components/Chip/Chip.d.ts +19 -0
  195. package/dist/src/mobile/components/Chip/Chip.js +131 -0
  196. package/dist/src/mobile/components/Chip/index.d.ts +1 -0
  197. package/dist/src/mobile/components/Chip/index.js +8 -0
  198. package/dist/src/mobile/components/ContextMenu/ContextMenu.d.ts +7 -0
  199. package/dist/src/mobile/components/ContextMenu/ContextMenu.js +33 -0
  200. package/dist/src/mobile/components/ContextMenu/index.d.ts +1 -0
  201. package/dist/src/mobile/components/ContextMenu/index.js +8 -0
  202. package/dist/src/mobile/components/ContextMenuItem/ContextMenuItem.d.ts +10 -0
  203. package/dist/src/mobile/components/ContextMenuItem/ContextMenuItem.js +62 -0
  204. package/dist/src/mobile/components/ContextMenuItem/index.d.ts +1 -0
  205. package/dist/src/mobile/components/ContextMenuItem/index.js +8 -0
  206. package/dist/src/mobile/components/IconButton/IconButton.d.ts +1 -6
  207. package/dist/src/mobile/components/IconButton/IconButton.js +3 -3
  208. package/dist/src/mobile/components/ImageSlide/ImageSlide.d.ts +13 -0
  209. package/dist/src/mobile/components/ImageSlide/ImageSlide.js +97 -0
  210. package/dist/src/mobile/components/ImageSlide/index.d.ts +1 -0
  211. package/dist/src/mobile/components/ImageSlide/index.js +8 -0
  212. package/dist/src/mobile/components/MainButton/MainButton.d.ts +21 -0
  213. package/dist/src/mobile/components/MainButton/MainButton.js +181 -0
  214. package/dist/src/mobile/components/MainButton/index.d.ts +1 -0
  215. package/dist/src/mobile/components/MainButton/index.js +8 -0
  216. package/dist/src/mobile/components/MobileHeaderBar/MobileHeaderBar.d.ts +19 -0
  217. package/dist/src/mobile/components/MobileHeaderBar/MobileHeaderBar.js +97 -0
  218. package/dist/src/mobile/components/MobileHeaderBar/index.d.ts +1 -0
  219. package/dist/src/mobile/components/MobileHeaderBar/index.js +8 -0
  220. package/dist/src/mobile/components/MobileTabBar/MobileTabBar.d.ts +10 -0
  221. package/dist/src/mobile/components/MobileTabBar/MobileTabBar.js +46 -0
  222. package/dist/src/mobile/components/MobileTabBar/index.d.ts +1 -0
  223. package/dist/src/mobile/components/MobileTabBar/index.js +8 -0
  224. package/dist/src/mobile/components/Radio/Radio.d.ts +12 -0
  225. package/dist/src/mobile/components/Radio/Radio.js +45 -0
  226. package/dist/src/mobile/components/Radio/index.d.ts +1 -0
  227. package/dist/src/mobile/components/Radio/index.js +8 -0
  228. package/dist/src/mobile/components/ReactionButton/ReactionButton.d.ts +11 -0
  229. package/dist/src/mobile/components/ReactionButton/ReactionButton.js +108 -0
  230. package/dist/src/mobile/components/ReactionButton/index.d.ts +1 -0
  231. package/dist/src/mobile/components/ReactionButton/index.js +8 -0
  232. package/dist/src/mobile/components/Select/Select.d.ts +16 -0
  233. package/dist/src/mobile/components/Select/Select.js +132 -0
  234. package/dist/src/mobile/components/Select/index.d.ts +1 -0
  235. package/dist/src/mobile/components/Select/index.js +8 -0
  236. package/dist/src/mobile/components/StatusBlock/StatusBlock.js +1 -1
  237. package/dist/src/mobile/components/TextButton/TextButton.d.ts +11 -0
  238. package/dist/src/mobile/components/TextButton/TextButton.js +100 -0
  239. package/dist/src/mobile/components/TextButton/index.d.ts +1 -0
  240. package/dist/src/mobile/components/TextButton/index.js +8 -0
  241. package/dist/src/mobile/components/TextField/TextField.d.ts +42 -0
  242. package/dist/src/mobile/components/TextField/TextField.js +252 -0
  243. package/dist/src/mobile/components/TextField/index.d.ts +1 -0
  244. package/dist/src/mobile/components/TextField/index.js +8 -0
  245. package/dist/src/mobile/components/TextLabel/TextLabel.d.ts +3 -1
  246. package/dist/src/mobile/components/TextLabel/TextLabel.js +7 -4
  247. package/dist/src/mobile/components/UploadIconButton/UploadIconButton.d.ts +21 -0
  248. package/dist/src/mobile/components/UploadIconButton/UploadIconButton.js +138 -0
  249. package/dist/src/mobile/components/UploadIconButton/index.d.ts +1 -0
  250. package/dist/src/mobile/components/UploadIconButton/index.js +8 -0
  251. package/dist/src/mobile/components/UploadIconButton/types.d.ts +8 -0
  252. package/dist/src/mobile/components/UploadIconButton/types.js +11 -0
  253. package/dist/src/mobile/components/UploadMainButton/UploadMainButton.d.ts +18 -0
  254. package/dist/src/mobile/components/UploadMainButton/UploadMainButton.js +161 -0
  255. package/dist/src/mobile/components/UploadMainButton/index.d.ts +1 -0
  256. package/dist/src/mobile/components/UploadMainButton/index.js +8 -0
  257. package/dist/src/mobile/components/UploadMainButton/types.d.ts +25 -0
  258. package/dist/src/mobile/components/UploadMainButton/types.js +28 -0
  259. package/dist/src/mobile/components/UploadTextButton/UploadTextButton.d.ts +12 -0
  260. package/dist/src/mobile/components/UploadTextButton/UploadTextButton.js +77 -0
  261. package/dist/src/mobile/components/UploadTextButton/index.d.ts +1 -0
  262. package/dist/src/mobile/components/UploadTextButton/index.js +8 -0
  263. package/dist/src/mobile/components/index.d.ts +20 -1
  264. package/dist/src/mobile/components/index.js +39 -1
  265. package/dist/src/mobile/index.d.ts +2 -2
  266. package/dist/src/mobile/index.js +20 -1
  267. package/dist/src/mobile/layout/LayoutMP/Containers/NavigationContainer/variation/Navigation.js +1 -1
  268. package/package.json +5 -1
@@ -1947,6 +1947,7 @@ declare const locale: {
1947
1947
  str_994: string;
1948
1948
  str_995: string;
1949
1949
  str_err_996: string;
1950
+ str_pay_method_credit: string;
1950
1951
  str_err_997: string;
1951
1952
  str_err_998: string;
1952
1953
  str_err_999: string;
@@ -2021,6 +2022,9 @@ declare const locale: {
2021
2022
  str_pg_title_vodp_label: string;
2022
2023
  str_pg_title_vodp_settings: string;
2023
2024
  str_1059: string;
2025
+ str_pay_actor_merchant: string;
2026
+ str_pay_actor_publpay: string;
2027
+ str_pay_actor_pg: string;
2024
2028
  str_view_percent: string;
2025
2029
  str_1060: string;
2026
2030
  str_1062: string;
@@ -2207,6 +2211,7 @@ declare const locale: {
2207
2211
  str_err_1233: string;
2208
2212
  str_err_1234: string;
2209
2213
  str_1235: string;
2214
+ str_err_1236: string;
2210
2215
  str_pam_ls: string;
2211
2216
  str_pam_ls_live_event_board: string;
2212
2217
  str_pam_ls_live_event: string;
@@ -2254,11 +2259,25 @@ declare const locale: {
2254
2259
  str_1259: string;
2255
2260
  str_1260: string;
2256
2261
  str_1261: string;
2262
+ str_1262: string;
2263
+ str_1263: string;
2264
+ str_1264: string;
2265
+ str_1265: string;
2266
+ str_1266: string;
2267
+ str_1267: string;
2268
+ str_1268: string;
2269
+ str_1269: string;
2270
+ str_1270: string;
2271
+ str_1271: string;
2272
+ str_1272: string;
2257
2273
  str_1273: string;
2274
+ str_1274: string;
2275
+ str_1275: string;
2258
2276
  str_papp_event_live_name: string;
2259
2277
  str_papp_event_live_id: string;
2260
2278
  str_err_1276: string;
2261
2279
  str_err_1277: string;
2280
+ str_1278: string;
2262
2281
  str_1279: string;
2263
2282
  str_err_1280: string;
2264
2283
  str_err_1281: string;
@@ -2270,6 +2289,11 @@ declare const locale: {
2270
2289
  str_err_1291: string;
2271
2290
  str_change: string;
2272
2291
  str_err_1292: string;
2292
+ str_1293: string;
2293
+ str_1294: string;
2294
+ str_1295: string;
2295
+ str_1296: string;
2296
+ str_1297: string;
2273
2297
  str_1298: string;
2274
2298
  str_1299: string;
2275
2299
  str_1300: string;
@@ -2298,6 +2322,10 @@ declare const locale: {
2298
2322
  str_1321: string;
2299
2323
  str_1322: string;
2300
2324
  str_1323: string;
2325
+ str_1324: string;
2326
+ str_1325: string;
2327
+ str_1326: string;
2328
+ str_1327: string;
2301
2329
  str_1328: string;
2302
2330
  str_vodp_section_mainslidebanner: string;
2303
2331
  str_vodp_section_serieslist: string;
@@ -2353,6 +2381,8 @@ declare const locale: {
2353
2381
  str_err_1375: string;
2354
2382
  str_err_1376: string;
2355
2383
  str_err_1377: string;
2384
+ str_1378: string;
2385
+ str_1379: string;
2356
2386
  str_1380: string;
2357
2387
  str_1381: string;
2358
2388
  str_channel_payment_info: string;
@@ -2436,6 +2466,9 @@ declare const locale: {
2436
2466
  str_pam_vods_cc_uk: string;
2437
2467
  str_pam_vods_cc_ur: string;
2438
2468
  str_pam_vods_cc_vi: string;
2469
+ str_1394: string;
2470
+ str_1395: string;
2471
+ str_1396: string;
2439
2472
  str_my_subscriptions: string;
2440
2473
  str_all_channel_subscriptions: string;
2441
2474
  str_1397: string;
@@ -2467,6 +2500,7 @@ declare const locale: {
2467
2500
  str_event_performer_system: string;
2468
2501
  str_event_performer_seller: string;
2469
2502
  str_event_performer_user: string;
2503
+ str_footer_info_uw: string;
2470
2504
  str_err_1404: string;
2471
2505
  str_1405: string;
2472
2506
  str_1406: string;
@@ -2575,6 +2609,7 @@ declare const locale: {
2575
2609
  str_pam_lpc_landing_post: string;
2576
2610
  str_pam_lpc_comment: string;
2577
2611
  str_pam_lpc_label: string;
2612
+ str_1457: string;
2578
2613
  str_1458: string;
2579
2614
  str_1459: string;
2580
2615
  str_1460: string;
@@ -2593,6 +2628,12 @@ declare const locale: {
2593
2628
  str_1474: string;
2594
2629
  str_1475: string;
2595
2630
  str_err_1476: string;
2631
+ str_1477: string;
2632
+ str_1478: string;
2633
+ str_1479: string;
2634
+ str_1480: string;
2635
+ str_1481: string;
2636
+ str_1482: string;
2596
2637
  str_err_1484: string;
2597
2638
  str_pay_merchant: string;
2598
2639
  str_dynamic_layout_editor: string;
@@ -2798,8 +2839,8 @@ declare const locale: {
2798
2839
  str_photobook_post: string;
2799
2840
  str_papp_photobook_like: string;
2800
2841
  str_papp_photobook_dislike: string;
2801
- str_pg_title_operator_manage: string;
2802
- str_pg_title_operator_list: string;
2842
+ str_pg_title_managers: string;
2843
+ str_pg_title_managers_list: string;
2803
2844
  str_1601: string;
2804
2845
  str_1602: string;
2805
2846
  str_1603: string;
@@ -2817,13 +2858,13 @@ declare const locale: {
2817
2858
  str_pg_title_photobook_comment_manage: string;
2818
2859
  str_pg_title_papp_photobook_post_update: string;
2819
2860
  str_pg_title_papp_photobook_post_detail: string;
2820
- str_create_operator_account: string;
2821
- str_create_operator_account_step_1: string;
2822
- str_create_operator_account_step_2: string;
2823
- str_create_operator_account_step_3: string;
2824
- str_create_operator_account_step_4: string;
2861
+ str_create_manager_account: string;
2862
+ str_create_manager_account_step_1: string;
2863
+ str_create_manager_account_step_2: string;
2864
+ str_create_manager_account_step_3: string;
2865
+ str_create_manager_account_step_4: string;
2825
2866
  str_1612: string;
2826
- str_operator_type: string;
2867
+ str_manager_type: string;
2827
2868
  str_1613: string;
2828
2869
  str_1614: string;
2829
2870
  str_1615: string;
@@ -2861,7 +2902,6 @@ declare const locale: {
2861
2902
  str_switched_counts: string;
2862
2903
  str_link_url: string;
2863
2904
  str_err_1637: string;
2864
- str_create_operator_account_step_5: string;
2865
2905
  str_1638: string;
2866
2906
  str_1639: string;
2867
2907
  str_1640: string;
@@ -2903,6 +2943,191 @@ declare const locale: {
2903
2943
  str_1670: string;
2904
2944
  str_1671: string;
2905
2945
  str_1672: string;
2946
+ str_1673: string;
2947
+ str_err_1674: string;
2948
+ str_1675: string;
2949
+ str_1676: string;
2950
+ str_1677: string;
2951
+ str_1678: string;
2952
+ str_papp_cate_g: string;
2953
+ str_1679: string;
2954
+ str_1680: string;
2955
+ str_1681: string;
2956
+ str_1682: string;
2957
+ str_1683: string;
2958
+ str_1684: string;
2959
+ str_1685: string;
2960
+ str_1686: string;
2961
+ str_1687: string;
2962
+ str_1688: string;
2963
+ str_1689: string;
2964
+ str_1690: string;
2965
+ str_1691: string;
2966
+ str_1692: string;
2967
+ str_1693: string;
2968
+ str_1694: string;
2969
+ str_1695: string;
2970
+ str_1696: string;
2971
+ str_1697: string;
2972
+ str_1698: string;
2973
+ str_1699: string;
2974
+ str_1700: string;
2975
+ str_1701: string;
2976
+ str_1702: string;
2977
+ str_1703: string;
2978
+ str_1704: string;
2979
+ str_1705: string;
2980
+ str_1706: string;
2981
+ str_1707: string;
2982
+ str_1708: string;
2983
+ str_1709: string;
2984
+ str_1710: string;
2985
+ str_1711: string;
2986
+ str_1712: string;
2987
+ str_1713: string;
2988
+ str_1714: string;
2989
+ str_1715: string;
2990
+ str_1716: string;
2991
+ str_1717: string;
2992
+ str_1718: string;
2993
+ str_1719: string;
2994
+ str_1720: string;
2995
+ str_1721: string;
2996
+ str_1722: string;
2997
+ str_1723: string;
2998
+ str_1724: string;
2999
+ str_1725: string;
3000
+ str_1726: string;
3001
+ str_1727: string;
3002
+ str_1728: string;
3003
+ str_1729: string;
3004
+ str_1730: string;
3005
+ str_1731: string;
3006
+ str_1732: string;
3007
+ str_1733: string;
3008
+ str_1734: string;
3009
+ str_1735: string;
3010
+ str_pg_title_sign_in_key_for_manager: string;
3011
+ str_1736: string;
3012
+ str_1737: string;
3013
+ str_go: string;
3014
+ str_1738: string;
3015
+ str_1739: string;
3016
+ str_1740: string;
3017
+ str_1741: string;
3018
+ str_papp_inquiry_board: string;
3019
+ str_papp_inquiry_board_name: string;
3020
+ str_papp_inquiry_board_id: string;
3021
+ str_1742: string;
3022
+ str_err_1743: string;
3023
+ str_err_1744: string;
3024
+ str_1745: string;
3025
+ str_1746: string;
3026
+ str_1747: string;
3027
+ str_1748: string;
3028
+ str_papp_inquiry_board_board: string;
3029
+ str_papp_inquiry_board_post: string;
3030
+ str_papp_inquiry_board_comment: string;
3031
+ str_papp_inquiry_board_like: string;
3032
+ str_papp_inquiry_board_dislike: string;
3033
+ str_err_1749: string;
3034
+ str_1750: string;
3035
+ str_1751: string;
3036
+ str_err_1752: string;
3037
+ str_err_1753: string;
3038
+ str_pg_title_invalid_access: string;
3039
+ str_1754: string;
3040
+ str_1755: string;
3041
+ str_1757: string;
3042
+ str_pg_title_channel_profile: string;
3043
+ str_1758: string;
3044
+ str_1759: string;
3045
+ str_1761: string;
3046
+ str_1762: string;
3047
+ str_1763: string;
3048
+ str_1764: string;
3049
+ str_erase: string;
3050
+ str_papp_promotion_page_board: string;
3051
+ str_papp_promotion_page_landing_post: string;
3052
+ str_papp_promotion_page_comment: string;
3053
+ str_papp_promotion_page_label: string;
3054
+ str_1766: string;
3055
+ str_vod_size_mb: string;
3056
+ str_1768: string;
3057
+ str_1769: string;
3058
+ str_1770: string;
3059
+ str_1771: string;
3060
+ str_1772: string;
3061
+ str_1773: string;
3062
+ str_err_1774: string;
3063
+ str_vod_size_gb: string;
3064
+ str_1778: string;
3065
+ str_1779: string;
3066
+ str_papp_welcome_page_id: string;
3067
+ str_papp_welcome_page_name: string;
3068
+ str_papp_welcome_page_board: string;
3069
+ str_papp_welcome_page_post: string;
3070
+ str_1780: string;
3071
+ str_1781: string;
3072
+ str_err_1782: string;
3073
+ str_1783: string;
3074
+ str_pg_title_inquiry_board_posts: string;
3075
+ str_pg_title_inquiry_board_post_settings: string;
3076
+ str_err_1784: string;
3077
+ str_pg_title_inquiry_board_post_detail_info: string;
3078
+ str_1785: string;
3079
+ str_1786: string;
3080
+ str_1787: string;
3081
+ str_1788: string;
3082
+ str_1789: string;
3083
+ str_pg_title_papp_inquiry_board_post_detail: string;
3084
+ str_pg_title_papp_inquiry_board_post_comment: string;
3085
+ str_request_history: string;
3086
+ str_1790: string;
3087
+ str_1791: string;
3088
+ str_status_waiting: string;
3089
+ str_status_in_progress: string;
3090
+ str_status_answered: string;
3091
+ str_pay_price_info: string;
3092
+ str_1792: string;
3093
+ str_1793: string;
3094
+ str_err_1794: string;
3095
+ str_1795: string;
3096
+ str_1796: string;
3097
+ str_1797: string;
3098
+ str_1798: string;
3099
+ str_1799: string;
3100
+ str_1800: string;
3101
+ str_1801: string;
3102
+ str_1802: string;
3103
+ str_err_1803: string;
3104
+ str_err_1804: string;
3105
+ str_err_1805: string;
3106
+ str_err_1806: string;
3107
+ str_papp_welcome_page_settings: string;
3108
+ str_papp_welcome_page_setting: string;
3109
+ str_papp_welcome_page_title: string;
3110
+ str_papp_welcome_page_untitled: string;
3111
+ str_papp_welcome_page_explain: string;
3112
+ str_papp_welcome_page_welcome: string;
3113
+ str_papp_welcome_page_media_preview: string;
3114
+ str_1807: string;
3115
+ str_1808: string;
3116
+ str_1809: string;
3117
+ str_1810: string;
3118
+ str_1811: string;
3119
+ str_err_1812: string;
3120
+ str_1813: string;
3121
+ str_err_1814: string;
3122
+ str_err_1815: string;
3123
+ str_1816: string;
3124
+ str_1817: string;
3125
+ str_1818: string;
3126
+ str_1819: string;
3127
+ str_1820: string;
3128
+ str_fm_price_kr: string;
3129
+ str_1821: string;
3130
+ str_1822: string;
2906
3131
  };
2907
3132
  };
2908
3133
  readonly en: {
@@ -4853,6 +5078,7 @@ declare const locale: {
4853
5078
  str_994: string;
4854
5079
  str_995: string;
4855
5080
  str_err_996: string;
5081
+ str_pay_method_credit: string;
4856
5082
  str_err_997: string;
4857
5083
  str_err_998: string;
4858
5084
  str_err_999: string;
@@ -4927,6 +5153,9 @@ declare const locale: {
4927
5153
  str_pg_title_vodp_label: string;
4928
5154
  str_pg_title_vodp_settings: string;
4929
5155
  str_1059: string;
5156
+ str_pay_actor_merchant: string;
5157
+ str_pay_actor_publpay: string;
5158
+ str_pay_actor_pg: string;
4930
5159
  str_view_percent: string;
4931
5160
  str_1060: string;
4932
5161
  str_1062: string;
@@ -5113,6 +5342,7 @@ declare const locale: {
5113
5342
  str_err_1233: string;
5114
5343
  str_err_1234: string;
5115
5344
  str_1235: string;
5345
+ str_err_1236: string;
5116
5346
  str_pam_ls: string;
5117
5347
  str_pam_ls_live_event_board: string;
5118
5348
  str_pam_ls_live_event: string;
@@ -5160,11 +5390,25 @@ declare const locale: {
5160
5390
  str_1259: string;
5161
5391
  str_1260: string;
5162
5392
  str_1261: string;
5393
+ str_1262: string;
5394
+ str_1263: string;
5395
+ str_1264: string;
5396
+ str_1265: string;
5397
+ str_1266: string;
5398
+ str_1267: string;
5399
+ str_1268: string;
5400
+ str_1269: string;
5401
+ str_1270: string;
5402
+ str_1271: string;
5403
+ str_1272: string;
5163
5404
  str_1273: string;
5405
+ str_1274: string;
5406
+ str_1275: string;
5164
5407
  str_papp_event_live_name: string;
5165
5408
  str_papp_event_live_id: string;
5166
5409
  str_err_1276: string;
5167
5410
  str_err_1277: string;
5411
+ str_1278: string;
5168
5412
  str_1279: string;
5169
5413
  str_err_1280: string;
5170
5414
  str_err_1281: string;
@@ -5176,6 +5420,11 @@ declare const locale: {
5176
5420
  str_err_1291: string;
5177
5421
  str_change: string;
5178
5422
  str_err_1292: string;
5423
+ str_1293: string;
5424
+ str_1294: string;
5425
+ str_1295: string;
5426
+ str_1296: string;
5427
+ str_1297: string;
5179
5428
  str_1298: string;
5180
5429
  str_1299: string;
5181
5430
  str_1300: string;
@@ -5204,6 +5453,10 @@ declare const locale: {
5204
5453
  str_1321: string;
5205
5454
  str_1322: string;
5206
5455
  str_1323: string;
5456
+ str_1324: string;
5457
+ str_1325: string;
5458
+ str_1326: string;
5459
+ str_1327: string;
5207
5460
  str_1328: string;
5208
5461
  str_vodp_section_mainslidebanner: string;
5209
5462
  str_vodp_section_serieslist: string;
@@ -5259,6 +5512,8 @@ declare const locale: {
5259
5512
  str_err_1375: string;
5260
5513
  str_err_1376: string;
5261
5514
  str_err_1377: string;
5515
+ str_1378: string;
5516
+ str_1379: string;
5262
5517
  str_1380: string;
5263
5518
  str_1381: string;
5264
5519
  str_channel_payment_info: string;
@@ -5342,6 +5597,9 @@ declare const locale: {
5342
5597
  str_pam_vods_cc_uk: string;
5343
5598
  str_pam_vods_cc_ur: string;
5344
5599
  str_pam_vods_cc_vi: string;
5600
+ str_1394: string;
5601
+ str_1395: string;
5602
+ str_1396: string;
5345
5603
  str_my_subscriptions: string;
5346
5604
  str_all_channel_subscriptions: string;
5347
5605
  str_1397: string;
@@ -5373,6 +5631,7 @@ declare const locale: {
5373
5631
  str_event_performer_system: string;
5374
5632
  str_event_performer_seller: string;
5375
5633
  str_event_performer_user: string;
5634
+ str_footer_info_uw: string;
5376
5635
  str_err_1404: string;
5377
5636
  str_1405: string;
5378
5637
  str_1406: string;
@@ -5481,6 +5740,7 @@ declare const locale: {
5481
5740
  str_pam_lpc_landing_post: string;
5482
5741
  str_pam_lpc_comment: string;
5483
5742
  str_pam_lpc_label: string;
5743
+ str_1457: string;
5484
5744
  str_1458: string;
5485
5745
  str_1459: string;
5486
5746
  str_1460: string;
@@ -5499,6 +5759,12 @@ declare const locale: {
5499
5759
  str_1474: string;
5500
5760
  str_1475: string;
5501
5761
  str_err_1476: string;
5762
+ str_1477: string;
5763
+ str_1478: string;
5764
+ str_1479: string;
5765
+ str_1480: string;
5766
+ str_1481: string;
5767
+ str_1482: string;
5502
5768
  str_err_1484: string;
5503
5769
  str_pay_merchant: string;
5504
5770
  str_dynamic_layout_editor: string;
@@ -5704,8 +5970,8 @@ declare const locale: {
5704
5970
  str_photobook_post: string;
5705
5971
  str_papp_photobook_like: string;
5706
5972
  str_papp_photobook_dislike: string;
5707
- str_pg_title_operator_manage: string;
5708
- str_pg_title_operator_list: string;
5973
+ str_pg_title_managers: string;
5974
+ str_pg_title_managers_list: string;
5709
5975
  str_1601: string;
5710
5976
  str_1602: string;
5711
5977
  str_1603: string;
@@ -5723,13 +5989,13 @@ declare const locale: {
5723
5989
  str_pg_title_photobook_comment_manage: string;
5724
5990
  str_pg_title_papp_photobook_post_update: string;
5725
5991
  str_pg_title_papp_photobook_post_detail: string;
5726
- str_create_operator_account: string;
5727
- str_create_operator_account_step_1: string;
5728
- str_create_operator_account_step_2: string;
5729
- str_create_operator_account_step_3: string;
5730
- str_create_operator_account_step_4: string;
5992
+ str_create_manager_account: string;
5993
+ str_create_manager_account_step_1: string;
5994
+ str_create_manager_account_step_2: string;
5995
+ str_create_manager_account_step_3: string;
5996
+ str_create_manager_account_step_4: string;
5731
5997
  str_1612: string;
5732
- str_operator_type: string;
5998
+ str_manager_type: string;
5733
5999
  str_1613: string;
5734
6000
  str_1614: string;
5735
6001
  str_1615: string;
@@ -5767,7 +6033,6 @@ declare const locale: {
5767
6033
  str_switched_counts: string;
5768
6034
  str_link_url: string;
5769
6035
  str_err_1637: string;
5770
- str_create_operator_account_step_5: string;
5771
6036
  str_1638: string;
5772
6037
  str_1639: string;
5773
6038
  str_1640: string;
@@ -5809,6 +6074,191 @@ declare const locale: {
5809
6074
  str_1670: string;
5810
6075
  str_1671: string;
5811
6076
  str_1672: string;
6077
+ str_1673: string;
6078
+ str_err_1674: string;
6079
+ str_1675: string;
6080
+ str_1676: string;
6081
+ str_1677: string;
6082
+ str_1678: string;
6083
+ str_papp_cate_g: string;
6084
+ str_1679: string;
6085
+ str_1680: string;
6086
+ str_1681: string;
6087
+ str_1682: string;
6088
+ str_1683: string;
6089
+ str_1684: string;
6090
+ str_1685: string;
6091
+ str_1686: string;
6092
+ str_1687: string;
6093
+ str_1688: string;
6094
+ str_1689: string;
6095
+ str_1690: string;
6096
+ str_1691: string;
6097
+ str_1692: string;
6098
+ str_1693: string;
6099
+ str_1694: string;
6100
+ str_1695: string;
6101
+ str_1696: string;
6102
+ str_1697: string;
6103
+ str_1698: string;
6104
+ str_1699: string;
6105
+ str_1700: string;
6106
+ str_1701: string;
6107
+ str_1702: string;
6108
+ str_1703: string;
6109
+ str_1704: string;
6110
+ str_1705: string;
6111
+ str_1706: string;
6112
+ str_1707: string;
6113
+ str_1708: string;
6114
+ str_1709: string;
6115
+ str_1710: string;
6116
+ str_1711: string;
6117
+ str_1712: string;
6118
+ str_1713: string;
6119
+ str_1714: string;
6120
+ str_1715: string;
6121
+ str_1716: string;
6122
+ str_1717: string;
6123
+ str_1718: string;
6124
+ str_1719: string;
6125
+ str_1720: string;
6126
+ str_1721: string;
6127
+ str_1722: string;
6128
+ str_1723: string;
6129
+ str_1724: string;
6130
+ str_1725: string;
6131
+ str_1726: string;
6132
+ str_1727: string;
6133
+ str_1728: string;
6134
+ str_1729: string;
6135
+ str_1730: string;
6136
+ str_1731: string;
6137
+ str_1732: string;
6138
+ str_1733: string;
6139
+ str_1734: string;
6140
+ str_1735: string;
6141
+ str_pg_title_sign_in_key_for_manager: string;
6142
+ str_1736: string;
6143
+ str_1737: string;
6144
+ str_go: string;
6145
+ str_1738: string;
6146
+ str_1739: string;
6147
+ str_1740: string;
6148
+ str_1741: string;
6149
+ str_papp_inquiry_board: string;
6150
+ str_papp_inquiry_board_name: string;
6151
+ str_papp_inquiry_board_id: string;
6152
+ str_1742: string;
6153
+ str_err_1743: string;
6154
+ str_err_1744: string;
6155
+ str_1745: string;
6156
+ str_1746: string;
6157
+ str_1747: string;
6158
+ str_1748: string;
6159
+ str_papp_inquiry_board_board: string;
6160
+ str_papp_inquiry_board_post: string;
6161
+ str_papp_inquiry_board_comment: string;
6162
+ str_papp_inquiry_board_like: string;
6163
+ str_papp_inquiry_board_dislike: string;
6164
+ str_err_1749: string;
6165
+ str_1750: string;
6166
+ str_1751: string;
6167
+ str_err_1752: string;
6168
+ str_err_1753: string;
6169
+ str_pg_title_invalid_access: string;
6170
+ str_1754: string;
6171
+ str_1755: string;
6172
+ str_1757: string;
6173
+ str_pg_title_channel_profile: string;
6174
+ str_1758: string;
6175
+ str_1759: string;
6176
+ str_1761: string;
6177
+ str_1762: string;
6178
+ str_1763: string;
6179
+ str_1764: string;
6180
+ str_erase: string;
6181
+ str_papp_promotion_page_board: string;
6182
+ str_papp_promotion_page_landing_post: string;
6183
+ str_papp_promotion_page_comment: string;
6184
+ str_papp_promotion_page_label: string;
6185
+ str_1766: string;
6186
+ str_vod_size_mb: string;
6187
+ str_1768: string;
6188
+ str_1769: string;
6189
+ str_1770: string;
6190
+ str_1771: string;
6191
+ str_1772: string;
6192
+ str_1773: string;
6193
+ str_err_1774: string;
6194
+ str_vod_size_gb: string;
6195
+ str_1778: string;
6196
+ str_1779: string;
6197
+ str_papp_welcome_page_id: string;
6198
+ str_papp_welcome_page_name: string;
6199
+ str_papp_welcome_page_board: string;
6200
+ str_papp_welcome_page_post: string;
6201
+ str_1780: string;
6202
+ str_1781: string;
6203
+ str_err_1782: string;
6204
+ str_1783: string;
6205
+ str_pg_title_inquiry_board_posts: string;
6206
+ str_pg_title_inquiry_board_post_settings: string;
6207
+ str_err_1784: string;
6208
+ str_pg_title_inquiry_board_post_detail_info: string;
6209
+ str_1785: string;
6210
+ str_1786: string;
6211
+ str_1787: string;
6212
+ str_1788: string;
6213
+ str_1789: string;
6214
+ str_pg_title_papp_inquiry_board_post_detail: string;
6215
+ str_pg_title_papp_inquiry_board_post_comment: string;
6216
+ str_request_history: string;
6217
+ str_1790: string;
6218
+ str_1791: string;
6219
+ str_status_waiting: string;
6220
+ str_status_in_progress: string;
6221
+ str_status_answered: string;
6222
+ str_pay_price_info: string;
6223
+ str_1792: string;
6224
+ str_1793: string;
6225
+ str_err_1794: string;
6226
+ str_1795: string;
6227
+ str_1796: string;
6228
+ str_1797: string;
6229
+ str_1798: string;
6230
+ str_1799: string;
6231
+ str_1800: string;
6232
+ str_1801: string;
6233
+ str_1802: string;
6234
+ str_err_1803: string;
6235
+ str_err_1804: string;
6236
+ str_err_1805: string;
6237
+ str_err_1806: string;
6238
+ str_papp_welcome_page_settings: string;
6239
+ str_papp_welcome_page_setting: string;
6240
+ str_papp_welcome_page_title: string;
6241
+ str_papp_welcome_page_untitled: string;
6242
+ str_papp_welcome_page_explain: string;
6243
+ str_papp_welcome_page_welcome: string;
6244
+ str_papp_welcome_page_media_preview: string;
6245
+ str_1807: string;
6246
+ str_1808: string;
6247
+ str_1809: string;
6248
+ str_1810: string;
6249
+ str_1811: string;
6250
+ str_err_1812: string;
6251
+ str_1813: string;
6252
+ str_err_1814: string;
6253
+ str_err_1815: string;
6254
+ str_1816: string;
6255
+ str_1817: string;
6256
+ str_1818: string;
6257
+ str_1819: string;
6258
+ str_1820: string;
6259
+ str_fm_price_kr: string;
6260
+ str_1821: string;
6261
+ str_1822: string;
5812
6262
  };
5813
6263
  };
5814
6264
  readonly jp: {
@@ -7759,6 +8209,7 @@ declare const locale: {
7759
8209
  str_994: string;
7760
8210
  str_995: string;
7761
8211
  str_err_996: string;
8212
+ str_pay_method_credit: string;
7762
8213
  str_err_997: string;
7763
8214
  str_err_998: string;
7764
8215
  str_err_999: string;
@@ -7833,6 +8284,9 @@ declare const locale: {
7833
8284
  str_pg_title_vodp_label: string;
7834
8285
  str_pg_title_vodp_settings: string;
7835
8286
  str_1059: string;
8287
+ str_pay_actor_merchant: string;
8288
+ str_pay_actor_publpay: string;
8289
+ str_pay_actor_pg: string;
7836
8290
  str_view_percent: string;
7837
8291
  str_1060: string;
7838
8292
  str_1062: string;
@@ -8019,6 +8473,7 @@ declare const locale: {
8019
8473
  str_err_1233: string;
8020
8474
  str_err_1234: string;
8021
8475
  str_1235: string;
8476
+ str_err_1236: string;
8022
8477
  str_pam_ls: string;
8023
8478
  str_pam_ls_live_event_board: string;
8024
8479
  str_pam_ls_live_event: string;
@@ -8066,11 +8521,25 @@ declare const locale: {
8066
8521
  str_1259: string;
8067
8522
  str_1260: string;
8068
8523
  str_1261: string;
8524
+ str_1262: string;
8525
+ str_1263: string;
8526
+ str_1264: string;
8527
+ str_1265: string;
8528
+ str_1266: string;
8529
+ str_1267: string;
8530
+ str_1268: string;
8531
+ str_1269: string;
8532
+ str_1270: string;
8533
+ str_1271: string;
8534
+ str_1272: string;
8069
8535
  str_1273: string;
8536
+ str_1274: string;
8537
+ str_1275: string;
8070
8538
  str_papp_event_live_name: string;
8071
8539
  str_papp_event_live_id: string;
8072
8540
  str_err_1276: string;
8073
8541
  str_err_1277: string;
8542
+ str_1278: string;
8074
8543
  str_1279: string;
8075
8544
  str_err_1280: string;
8076
8545
  str_err_1281: string;
@@ -8082,6 +8551,11 @@ declare const locale: {
8082
8551
  str_err_1291: string;
8083
8552
  str_change: string;
8084
8553
  str_err_1292: string;
8554
+ str_1293: string;
8555
+ str_1294: string;
8556
+ str_1295: string;
8557
+ str_1296: string;
8558
+ str_1297: string;
8085
8559
  str_1298: string;
8086
8560
  str_1299: string;
8087
8561
  str_1300: string;
@@ -8110,6 +8584,10 @@ declare const locale: {
8110
8584
  str_1321: string;
8111
8585
  str_1322: string;
8112
8586
  str_1323: string;
8587
+ str_1324: string;
8588
+ str_1325: string;
8589
+ str_1326: string;
8590
+ str_1327: string;
8113
8591
  str_1328: string;
8114
8592
  str_vodp_section_mainslidebanner: string;
8115
8593
  str_vodp_section_serieslist: string;
@@ -8165,6 +8643,8 @@ declare const locale: {
8165
8643
  str_err_1375: string;
8166
8644
  str_err_1376: string;
8167
8645
  str_err_1377: string;
8646
+ str_1378: string;
8647
+ str_1379: string;
8168
8648
  str_1380: string;
8169
8649
  str_1381: string;
8170
8650
  str_channel_payment_info: string;
@@ -8248,6 +8728,9 @@ declare const locale: {
8248
8728
  str_pam_vods_cc_uk: string;
8249
8729
  str_pam_vods_cc_ur: string;
8250
8730
  str_pam_vods_cc_vi: string;
8731
+ str_1394: string;
8732
+ str_1395: string;
8733
+ str_1396: string;
8251
8734
  str_my_subscriptions: string;
8252
8735
  str_all_channel_subscriptions: string;
8253
8736
  str_1397: string;
@@ -8279,6 +8762,7 @@ declare const locale: {
8279
8762
  str_event_performer_system: string;
8280
8763
  str_event_performer_seller: string;
8281
8764
  str_event_performer_user: string;
8765
+ str_footer_info_uw: string;
8282
8766
  str_err_1404: string;
8283
8767
  str_1405: string;
8284
8768
  str_1406: string;
@@ -8387,6 +8871,7 @@ declare const locale: {
8387
8871
  str_pam_lpc_landing_post: string;
8388
8872
  str_pam_lpc_comment: string;
8389
8873
  str_pam_lpc_label: string;
8874
+ str_1457: string;
8390
8875
  str_1458: string;
8391
8876
  str_1459: string;
8392
8877
  str_1460: string;
@@ -8405,6 +8890,12 @@ declare const locale: {
8405
8890
  str_1474: string;
8406
8891
  str_1475: string;
8407
8892
  str_err_1476: string;
8893
+ str_1477: string;
8894
+ str_1478: string;
8895
+ str_1479: string;
8896
+ str_1480: string;
8897
+ str_1481: string;
8898
+ str_1482: string;
8408
8899
  str_err_1484: string;
8409
8900
  str_pay_merchant: string;
8410
8901
  str_dynamic_layout_editor: string;
@@ -8610,8 +9101,8 @@ declare const locale: {
8610
9101
  str_photobook_post: string;
8611
9102
  str_papp_photobook_like: string;
8612
9103
  str_papp_photobook_dislike: string;
8613
- str_pg_title_operator_manage: string;
8614
- str_pg_title_operator_list: string;
9104
+ str_pg_title_managers: string;
9105
+ str_pg_title_managers_list: string;
8615
9106
  str_1601: string;
8616
9107
  str_1602: string;
8617
9108
  str_1603: string;
@@ -8629,13 +9120,13 @@ declare const locale: {
8629
9120
  str_pg_title_photobook_comment_manage: string;
8630
9121
  str_pg_title_papp_photobook_post_update: string;
8631
9122
  str_pg_title_papp_photobook_post_detail: string;
8632
- str_create_operator_account: string;
8633
- str_create_operator_account_step_1: string;
8634
- str_create_operator_account_step_2: string;
8635
- str_create_operator_account_step_3: string;
8636
- str_create_operator_account_step_4: string;
9123
+ str_create_manager_account: string;
9124
+ str_create_manager_account_step_1: string;
9125
+ str_create_manager_account_step_2: string;
9126
+ str_create_manager_account_step_3: string;
9127
+ str_create_manager_account_step_4: string;
8637
9128
  str_1612: string;
8638
- str_operator_type: string;
9129
+ str_manager_type: string;
8639
9130
  str_1613: string;
8640
9131
  str_1614: string;
8641
9132
  str_1615: string;
@@ -8673,7 +9164,6 @@ declare const locale: {
8673
9164
  str_switched_counts: string;
8674
9165
  str_link_url: string;
8675
9166
  str_err_1637: string;
8676
- str_create_operator_account_step_5: string;
8677
9167
  str_1638: string;
8678
9168
  str_1639: string;
8679
9169
  str_1640: string;
@@ -8715,6 +9205,191 @@ declare const locale: {
8715
9205
  str_1670: string;
8716
9206
  str_1671: string;
8717
9207
  str_1672: string;
9208
+ str_1673: string;
9209
+ str_err_1674: string;
9210
+ str_1675: string;
9211
+ str_1676: string;
9212
+ str_1677: string;
9213
+ str_1678: string;
9214
+ str_papp_cate_g: string;
9215
+ str_1679: string;
9216
+ str_1680: string;
9217
+ str_1681: string;
9218
+ str_1682: string;
9219
+ str_1683: string;
9220
+ str_1684: string;
9221
+ str_1685: string;
9222
+ str_1686: string;
9223
+ str_1687: string;
9224
+ str_1688: string;
9225
+ str_1689: string;
9226
+ str_1690: string;
9227
+ str_1691: string;
9228
+ str_1692: string;
9229
+ str_1693: string;
9230
+ str_1694: string;
9231
+ str_1695: string;
9232
+ str_1696: string;
9233
+ str_1697: string;
9234
+ str_1698: string;
9235
+ str_1699: string;
9236
+ str_1700: string;
9237
+ str_1701: string;
9238
+ str_1702: string;
9239
+ str_1703: string;
9240
+ str_1704: string;
9241
+ str_1705: string;
9242
+ str_1706: string;
9243
+ str_1707: string;
9244
+ str_1708: string;
9245
+ str_1709: string;
9246
+ str_1710: string;
9247
+ str_1711: string;
9248
+ str_1712: string;
9249
+ str_1713: string;
9250
+ str_1714: string;
9251
+ str_1715: string;
9252
+ str_1716: string;
9253
+ str_1717: string;
9254
+ str_1718: string;
9255
+ str_1719: string;
9256
+ str_1720: string;
9257
+ str_1721: string;
9258
+ str_1722: string;
9259
+ str_1723: string;
9260
+ str_1724: string;
9261
+ str_1725: string;
9262
+ str_1726: string;
9263
+ str_1727: string;
9264
+ str_1728: string;
9265
+ str_1729: string;
9266
+ str_1730: string;
9267
+ str_1731: string;
9268
+ str_1732: string;
9269
+ str_1733: string;
9270
+ str_1734: string;
9271
+ str_1735: string;
9272
+ str_pg_title_sign_in_key_for_manager: string;
9273
+ str_1736: string;
9274
+ str_1737: string;
9275
+ str_go: string;
9276
+ str_1738: string;
9277
+ str_1739: string;
9278
+ str_1740: string;
9279
+ str_1741: string;
9280
+ str_papp_inquiry_board: string;
9281
+ str_papp_inquiry_board_name: string;
9282
+ str_papp_inquiry_board_id: string;
9283
+ str_1742: string;
9284
+ str_err_1743: string;
9285
+ str_err_1744: string;
9286
+ str_1745: string;
9287
+ str_1746: string;
9288
+ str_1747: string;
9289
+ str_1748: string;
9290
+ str_papp_inquiry_board_board: string;
9291
+ str_papp_inquiry_board_post: string;
9292
+ str_papp_inquiry_board_comment: string;
9293
+ str_papp_inquiry_board_like: string;
9294
+ str_papp_inquiry_board_dislike: string;
9295
+ str_err_1749: string;
9296
+ str_1750: string;
9297
+ str_1751: string;
9298
+ str_err_1752: string;
9299
+ str_err_1753: string;
9300
+ str_pg_title_invalid_access: string;
9301
+ str_1754: string;
9302
+ str_1755: string;
9303
+ str_1757: string;
9304
+ str_pg_title_channel_profile: string;
9305
+ str_1758: string;
9306
+ str_1759: string;
9307
+ str_1761: string;
9308
+ str_1762: string;
9309
+ str_1763: string;
9310
+ str_1764: string;
9311
+ str_erase: string;
9312
+ str_papp_promotion_page_board: string;
9313
+ str_papp_promotion_page_landing_post: string;
9314
+ str_papp_promotion_page_comment: string;
9315
+ str_papp_promotion_page_label: string;
9316
+ str_1766: string;
9317
+ str_vod_size_mb: string;
9318
+ str_1768: string;
9319
+ str_1769: string;
9320
+ str_1770: string;
9321
+ str_1771: string;
9322
+ str_1772: string;
9323
+ str_1773: string;
9324
+ str_err_1774: string;
9325
+ str_vod_size_gb: string;
9326
+ str_1778: string;
9327
+ str_1779: string;
9328
+ str_papp_welcome_page_id: string;
9329
+ str_papp_welcome_page_name: string;
9330
+ str_papp_welcome_page_board: string;
9331
+ str_papp_welcome_page_post: string;
9332
+ str_1780: string;
9333
+ str_1781: string;
9334
+ str_err_1782: string;
9335
+ str_1783: string;
9336
+ str_pg_title_inquiry_board_posts: string;
9337
+ str_pg_title_inquiry_board_post_settings: string;
9338
+ str_err_1784: string;
9339
+ str_pg_title_inquiry_board_post_detail_info: string;
9340
+ str_1785: string;
9341
+ str_1786: string;
9342
+ str_1787: string;
9343
+ str_1788: string;
9344
+ str_1789: string;
9345
+ str_pg_title_papp_inquiry_board_post_detail: string;
9346
+ str_pg_title_papp_inquiry_board_post_comment: string;
9347
+ str_request_history: string;
9348
+ str_1790: string;
9349
+ str_1791: string;
9350
+ str_status_waiting: string;
9351
+ str_status_in_progress: string;
9352
+ str_status_answered: string;
9353
+ str_pay_price_info: string;
9354
+ str_1792: string;
9355
+ str_1793: string;
9356
+ str_err_1794: string;
9357
+ str_1795: string;
9358
+ str_1796: string;
9359
+ str_1797: string;
9360
+ str_1798: string;
9361
+ str_1799: string;
9362
+ str_1800: string;
9363
+ str_1801: string;
9364
+ str_1802: string;
9365
+ str_err_1803: string;
9366
+ str_err_1804: string;
9367
+ str_err_1805: string;
9368
+ str_err_1806: string;
9369
+ str_papp_welcome_page_settings: string;
9370
+ str_papp_welcome_page_setting: string;
9371
+ str_papp_welcome_page_title: string;
9372
+ str_papp_welcome_page_untitled: string;
9373
+ str_papp_welcome_page_explain: string;
9374
+ str_papp_welcome_page_welcome: string;
9375
+ str_papp_welcome_page_media_preview: string;
9376
+ str_1807: string;
9377
+ str_1808: string;
9378
+ str_1809: string;
9379
+ str_1810: string;
9380
+ str_1811: string;
9381
+ str_err_1812: string;
9382
+ str_1813: string;
9383
+ str_err_1814: string;
9384
+ str_err_1815: string;
9385
+ str_1816: string;
9386
+ str_1817: string;
9387
+ str_1818: string;
9388
+ str_1819: string;
9389
+ str_1820: string;
9390
+ str_fm_price_kr: string;
9391
+ str_1821: string;
9392
+ str_1822: string;
8718
9393
  };
8719
9394
  };
8720
9395
  readonly es: {
@@ -10665,6 +11340,7 @@ declare const locale: {
10665
11340
  str_994: string;
10666
11341
  str_995: string;
10667
11342
  str_err_996: string;
11343
+ str_pay_method_credit: string;
10668
11344
  str_err_997: string;
10669
11345
  str_err_998: string;
10670
11346
  str_err_999: string;
@@ -10739,6 +11415,9 @@ declare const locale: {
10739
11415
  str_pg_title_vodp_label: string;
10740
11416
  str_pg_title_vodp_settings: string;
10741
11417
  str_1059: string;
11418
+ str_pay_actor_merchant: string;
11419
+ str_pay_actor_publpay: string;
11420
+ str_pay_actor_pg: string;
10742
11421
  str_view_percent: string;
10743
11422
  str_1060: string;
10744
11423
  str_1062: string;
@@ -10925,6 +11604,7 @@ declare const locale: {
10925
11604
  str_err_1233: string;
10926
11605
  str_err_1234: string;
10927
11606
  str_1235: string;
11607
+ str_err_1236: string;
10928
11608
  str_pam_ls: string;
10929
11609
  str_pam_ls_live_event_board: string;
10930
11610
  str_pam_ls_live_event: string;
@@ -10972,11 +11652,25 @@ declare const locale: {
10972
11652
  str_1259: string;
10973
11653
  str_1260: string;
10974
11654
  str_1261: string;
11655
+ str_1262: string;
11656
+ str_1263: string;
11657
+ str_1264: string;
11658
+ str_1265: string;
11659
+ str_1266: string;
11660
+ str_1267: string;
11661
+ str_1268: string;
11662
+ str_1269: string;
11663
+ str_1270: string;
11664
+ str_1271: string;
11665
+ str_1272: string;
10975
11666
  str_1273: string;
11667
+ str_1274: string;
11668
+ str_1275: string;
10976
11669
  str_papp_event_live_name: string;
10977
11670
  str_papp_event_live_id: string;
10978
11671
  str_err_1276: string;
10979
11672
  str_err_1277: string;
11673
+ str_1278: string;
10980
11674
  str_1279: string;
10981
11675
  str_err_1280: string;
10982
11676
  str_err_1281: string;
@@ -10988,6 +11682,11 @@ declare const locale: {
10988
11682
  str_err_1291: string;
10989
11683
  str_change: string;
10990
11684
  str_err_1292: string;
11685
+ str_1293: string;
11686
+ str_1294: string;
11687
+ str_1295: string;
11688
+ str_1296: string;
11689
+ str_1297: string;
10991
11690
  str_1298: string;
10992
11691
  str_1299: string;
10993
11692
  str_1300: string;
@@ -11016,6 +11715,10 @@ declare const locale: {
11016
11715
  str_1321: string;
11017
11716
  str_1322: string;
11018
11717
  str_1323: string;
11718
+ str_1324: string;
11719
+ str_1325: string;
11720
+ str_1326: string;
11721
+ str_1327: string;
11019
11722
  str_1328: string;
11020
11723
  str_vodp_section_mainslidebanner: string;
11021
11724
  str_vodp_section_serieslist: string;
@@ -11071,6 +11774,8 @@ declare const locale: {
11071
11774
  str_err_1375: string;
11072
11775
  str_err_1376: string;
11073
11776
  str_err_1377: string;
11777
+ str_1378: string;
11778
+ str_1379: string;
11074
11779
  str_1380: string;
11075
11780
  str_1381: string;
11076
11781
  str_channel_payment_info: string;
@@ -11154,6 +11859,9 @@ declare const locale: {
11154
11859
  str_pam_vods_cc_uk: string;
11155
11860
  str_pam_vods_cc_ur: string;
11156
11861
  str_pam_vods_cc_vi: string;
11862
+ str_1394: string;
11863
+ str_1395: string;
11864
+ str_1396: string;
11157
11865
  str_my_subscriptions: string;
11158
11866
  str_all_channel_subscriptions: string;
11159
11867
  str_1397: string;
@@ -11185,6 +11893,7 @@ declare const locale: {
11185
11893
  str_event_performer_system: string;
11186
11894
  str_event_performer_seller: string;
11187
11895
  str_event_performer_user: string;
11896
+ str_footer_info_uw: string;
11188
11897
  str_err_1404: string;
11189
11898
  str_1405: string;
11190
11899
  str_1406: string;
@@ -11293,6 +12002,7 @@ declare const locale: {
11293
12002
  str_pam_lpc_landing_post: string;
11294
12003
  str_pam_lpc_comment: string;
11295
12004
  str_pam_lpc_label: string;
12005
+ str_1457: string;
11296
12006
  str_1458: string;
11297
12007
  str_1459: string;
11298
12008
  str_1460: string;
@@ -11311,6 +12021,12 @@ declare const locale: {
11311
12021
  str_1474: string;
11312
12022
  str_1475: string;
11313
12023
  str_err_1476: string;
12024
+ str_1477: string;
12025
+ str_1478: string;
12026
+ str_1479: string;
12027
+ str_1480: string;
12028
+ str_1481: string;
12029
+ str_1482: string;
11314
12030
  str_err_1484: string;
11315
12031
  str_pay_merchant: string;
11316
12032
  str_dynamic_layout_editor: string;
@@ -11516,8 +12232,8 @@ declare const locale: {
11516
12232
  str_photobook_post: string;
11517
12233
  str_papp_photobook_like: string;
11518
12234
  str_papp_photobook_dislike: string;
11519
- str_pg_title_operator_manage: string;
11520
- str_pg_title_operator_list: string;
12235
+ str_pg_title_managers: string;
12236
+ str_pg_title_managers_list: string;
11521
12237
  str_1601: string;
11522
12238
  str_1602: string;
11523
12239
  str_1603: string;
@@ -11535,13 +12251,13 @@ declare const locale: {
11535
12251
  str_pg_title_photobook_comment_manage: string;
11536
12252
  str_pg_title_papp_photobook_post_update: string;
11537
12253
  str_pg_title_papp_photobook_post_detail: string;
11538
- str_create_operator_account: string;
11539
- str_create_operator_account_step_1: string;
11540
- str_create_operator_account_step_2: string;
11541
- str_create_operator_account_step_3: string;
11542
- str_create_operator_account_step_4: string;
12254
+ str_create_manager_account: string;
12255
+ str_create_manager_account_step_1: string;
12256
+ str_create_manager_account_step_2: string;
12257
+ str_create_manager_account_step_3: string;
12258
+ str_create_manager_account_step_4: string;
11543
12259
  str_1612: string;
11544
- str_operator_type: string;
12260
+ str_manager_type: string;
11545
12261
  str_1613: string;
11546
12262
  str_1614: string;
11547
12263
  str_1615: string;
@@ -11579,7 +12295,6 @@ declare const locale: {
11579
12295
  str_switched_counts: string;
11580
12296
  str_link_url: string;
11581
12297
  str_err_1637: string;
11582
- str_create_operator_account_step_5: string;
11583
12298
  str_1638: string;
11584
12299
  str_1639: string;
11585
12300
  str_1640: string;
@@ -11621,6 +12336,191 @@ declare const locale: {
11621
12336
  str_1670: string;
11622
12337
  str_1671: string;
11623
12338
  str_1672: string;
12339
+ str_1673: string;
12340
+ str_err_1674: string;
12341
+ str_1675: string;
12342
+ str_1676: string;
12343
+ str_1677: string;
12344
+ str_1678: string;
12345
+ str_papp_cate_g: string;
12346
+ str_1679: string;
12347
+ str_1680: string;
12348
+ str_1681: string;
12349
+ str_1682: string;
12350
+ str_1683: string;
12351
+ str_1684: string;
12352
+ str_1685: string;
12353
+ str_1686: string;
12354
+ str_1687: string;
12355
+ str_1688: string;
12356
+ str_1689: string;
12357
+ str_1690: string;
12358
+ str_1691: string;
12359
+ str_1692: string;
12360
+ str_1693: string;
12361
+ str_1694: string;
12362
+ str_1695: string;
12363
+ str_1696: string;
12364
+ str_1697: string;
12365
+ str_1698: string;
12366
+ str_1699: string;
12367
+ str_1700: string;
12368
+ str_1701: string;
12369
+ str_1702: string;
12370
+ str_1703: string;
12371
+ str_1704: string;
12372
+ str_1705: string;
12373
+ str_1706: string;
12374
+ str_1707: string;
12375
+ str_1708: string;
12376
+ str_1709: string;
12377
+ str_1710: string;
12378
+ str_1711: string;
12379
+ str_1712: string;
12380
+ str_1713: string;
12381
+ str_1714: string;
12382
+ str_1715: string;
12383
+ str_1716: string;
12384
+ str_1717: string;
12385
+ str_1718: string;
12386
+ str_1719: string;
12387
+ str_1720: string;
12388
+ str_1721: string;
12389
+ str_1722: string;
12390
+ str_1723: string;
12391
+ str_1724: string;
12392
+ str_1725: string;
12393
+ str_1726: string;
12394
+ str_1727: string;
12395
+ str_1728: string;
12396
+ str_1729: string;
12397
+ str_1730: string;
12398
+ str_1731: string;
12399
+ str_1732: string;
12400
+ str_1733: string;
12401
+ str_1734: string;
12402
+ str_1735: string;
12403
+ str_pg_title_sign_in_key_for_manager: string;
12404
+ str_1736: string;
12405
+ str_1737: string;
12406
+ str_go: string;
12407
+ str_1738: string;
12408
+ str_1739: string;
12409
+ str_1740: string;
12410
+ str_1741: string;
12411
+ str_papp_inquiry_board: string;
12412
+ str_papp_inquiry_board_name: string;
12413
+ str_papp_inquiry_board_id: string;
12414
+ str_1742: string;
12415
+ str_err_1743: string;
12416
+ str_err_1744: string;
12417
+ str_1745: string;
12418
+ str_1746: string;
12419
+ str_1747: string;
12420
+ str_1748: string;
12421
+ str_papp_inquiry_board_board: string;
12422
+ str_papp_inquiry_board_post: string;
12423
+ str_papp_inquiry_board_comment: string;
12424
+ str_papp_inquiry_board_like: string;
12425
+ str_papp_inquiry_board_dislike: string;
12426
+ str_err_1749: string;
12427
+ str_1750: string;
12428
+ str_1751: string;
12429
+ str_err_1752: string;
12430
+ str_err_1753: string;
12431
+ str_pg_title_invalid_access: string;
12432
+ str_1754: string;
12433
+ str_1755: string;
12434
+ str_1757: string;
12435
+ str_pg_title_channel_profile: string;
12436
+ str_1758: string;
12437
+ str_1759: string;
12438
+ str_1761: string;
12439
+ str_1762: string;
12440
+ str_1763: string;
12441
+ str_1764: string;
12442
+ str_erase: string;
12443
+ str_papp_promotion_page_board: string;
12444
+ str_papp_promotion_page_landing_post: string;
12445
+ str_papp_promotion_page_comment: string;
12446
+ str_papp_promotion_page_label: string;
12447
+ str_1766: string;
12448
+ str_vod_size_mb: string;
12449
+ str_1768: string;
12450
+ str_1769: string;
12451
+ str_1770: string;
12452
+ str_1771: string;
12453
+ str_1772: string;
12454
+ str_1773: string;
12455
+ str_err_1774: string;
12456
+ str_vod_size_gb: string;
12457
+ str_1778: string;
12458
+ str_1779: string;
12459
+ str_papp_welcome_page_id: string;
12460
+ str_papp_welcome_page_name: string;
12461
+ str_papp_welcome_page_board: string;
12462
+ str_papp_welcome_page_post: string;
12463
+ str_1780: string;
12464
+ str_1781: string;
12465
+ str_err_1782: string;
12466
+ str_1783: string;
12467
+ str_pg_title_inquiry_board_posts: string;
12468
+ str_pg_title_inquiry_board_post_settings: string;
12469
+ str_err_1784: string;
12470
+ str_pg_title_inquiry_board_post_detail_info: string;
12471
+ str_1785: string;
12472
+ str_1786: string;
12473
+ str_1787: string;
12474
+ str_1788: string;
12475
+ str_1789: string;
12476
+ str_pg_title_papp_inquiry_board_post_detail: string;
12477
+ str_pg_title_papp_inquiry_board_post_comment: string;
12478
+ str_request_history: string;
12479
+ str_1790: string;
12480
+ str_1791: string;
12481
+ str_status_waiting: string;
12482
+ str_status_in_progress: string;
12483
+ str_status_answered: string;
12484
+ str_pay_price_info: string;
12485
+ str_1792: string;
12486
+ str_1793: string;
12487
+ str_err_1794: string;
12488
+ str_1795: string;
12489
+ str_1796: string;
12490
+ str_1797: string;
12491
+ str_1798: string;
12492
+ str_1799: string;
12493
+ str_1800: string;
12494
+ str_1801: string;
12495
+ str_1802: string;
12496
+ str_err_1803: string;
12497
+ str_err_1804: string;
12498
+ str_err_1805: string;
12499
+ str_err_1806: string;
12500
+ str_papp_welcome_page_settings: string;
12501
+ str_papp_welcome_page_setting: string;
12502
+ str_papp_welcome_page_title: string;
12503
+ str_papp_welcome_page_untitled: string;
12504
+ str_papp_welcome_page_explain: string;
12505
+ str_papp_welcome_page_welcome: string;
12506
+ str_papp_welcome_page_media_preview: string;
12507
+ str_1807: string;
12508
+ str_1808: string;
12509
+ str_1809: string;
12510
+ str_1810: string;
12511
+ str_1811: string;
12512
+ str_err_1812: string;
12513
+ str_1813: string;
12514
+ str_err_1814: string;
12515
+ str_err_1815: string;
12516
+ str_1816: string;
12517
+ str_1817: string;
12518
+ str_1818: string;
12519
+ str_1819: string;
12520
+ str_1820: string;
12521
+ str_fm_price_kr: string;
12522
+ str_1821: string;
12523
+ str_1822: string;
11624
12524
  };
11625
12525
  };
11626
12526
  };