pds-dev-kit-web 0.3.50 → 0.5.0

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 (274) hide show
  1. package/.vscode/settings.json +49 -0
  2. package/README.md +2 -2
  3. package/dist/index.d.ts +9 -8
  4. package/dist/index.js +48 -2
  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 +2795 -2546
  28. package/dist/src/common/services/i18n/resources/es.json +311 -62
  29. package/dist/src/common/services/i18n/resources/index.d.ts +1032 -36
  30. package/dist/src/common/services/i18n/resources/jp.json +311 -62
  31. package/dist/src/common/services/i18n/resources/ko.json +308 -59
  32. package/dist/src/common/styles/colorSet/PaletteColor_Dark.json +11 -7
  33. package/dist/src/common/styles/colorSet/PaletteColor_light.json +5 -1
  34. package/dist/src/common/styles/colorSet/SemanticColor.json +2 -1
  35. package/dist/src/common/styles/colorSet/UIColor.json +10 -3
  36. package/dist/src/common/styles/colorSet/index.d.ts +19 -3
  37. package/dist/src/common/styles/colorSet/index.js +4 -4
  38. package/dist/src/common/styles/colorSet/ui-type.d.ts +8 -1
  39. package/dist/src/common/styles/index.d.ts +2 -0
  40. package/dist/src/common/styles/theme.d.ts +2 -0
  41. package/dist/src/common/styles/theme.js +4 -2
  42. package/dist/src/common/styles/ui-colors.js +1 -1
  43. package/dist/src/common/types/form.d.ts +3 -0
  44. package/dist/src/common/types/form.js +2 -0
  45. package/dist/src/common/types/icon.d.ts +4 -0
  46. package/dist/src/common/types/icon.js +2 -0
  47. package/dist/src/common/types/styled-components.d.ts +2 -0
  48. package/dist/src/common/types/uiColors.d.ts +2 -0
  49. package/dist/src/common/types/uiColors.js +2 -0
  50. package/dist/src/desktop/common/components/TextFieldBase/TextFieldBase.d.ts +45 -0
  51. package/dist/src/desktop/common/components/TextFieldBase/TextFieldBase.js +265 -0
  52. package/dist/src/desktop/common/components/TextFieldBase/index.d.ts +1 -0
  53. package/dist/src/desktop/common/components/TextFieldBase/index.js +8 -0
  54. package/dist/src/desktop/common/components/index.d.ts +2 -0
  55. package/dist/src/desktop/common/components/index.js +5 -0
  56. package/dist/src/desktop/components/Card/Card.d.ts +11 -0
  57. package/dist/src/desktop/components/Card/Card.js +50 -0
  58. package/dist/src/desktop/components/Card/index.d.ts +1 -0
  59. package/dist/src/desktop/components/Card/index.js +8 -0
  60. package/dist/src/desktop/components/CardList/CardList.d.ts +10 -0
  61. package/dist/src/desktop/components/CardList/CardList.js +30 -0
  62. package/dist/src/desktop/components/CardList/index.d.ts +1 -0
  63. package/dist/src/desktop/components/CardList/index.js +8 -0
  64. package/dist/src/desktop/components/Checkbox/Checkbox.d.ts +11 -0
  65. package/dist/src/desktop/components/Checkbox/Checkbox.js +65 -0
  66. package/dist/src/desktop/components/Checkbox/index.d.ts +1 -0
  67. package/dist/src/desktop/components/Checkbox/index.js +8 -0
  68. package/dist/src/desktop/components/Chip/Chip.d.ts +19 -0
  69. package/dist/src/desktop/components/Chip/Chip.js +131 -0
  70. package/dist/src/desktop/components/Chip/index.d.ts +1 -0
  71. package/dist/src/desktop/components/Chip/index.js +8 -0
  72. package/dist/src/desktop/components/ContextMenu/ContextMenu.d.ts +7 -0
  73. package/dist/src/desktop/components/ContextMenu/ContextMenu.js +33 -0
  74. package/dist/src/desktop/components/ContextMenu/index.d.ts +1 -0
  75. package/dist/src/desktop/components/ContextMenu/index.js +8 -0
  76. package/dist/src/desktop/components/ContextMenuItem/ContextMenuItem.d.ts +10 -0
  77. package/dist/src/desktop/components/ContextMenuItem/ContextMenuItem.js +65 -0
  78. package/dist/src/desktop/components/ContextMenuItem/index.d.ts +1 -0
  79. package/dist/src/desktop/components/ContextMenuItem/index.js +8 -0
  80. package/dist/src/desktop/components/DesktopHeaderBar/DesktopHeaderBar.d.ts +39 -0
  81. package/dist/src/desktop/components/DesktopHeaderBar/DesktopHeaderBar.js +81 -0
  82. package/dist/src/desktop/components/DesktopHeaderBar/index.d.ts +1 -0
  83. package/dist/src/desktop/components/DesktopHeaderBar/index.js +8 -0
  84. package/dist/src/desktop/components/DesktopTabBar/DesktopTabBar.d.ts +15 -0
  85. package/dist/src/desktop/components/DesktopTabBar/DesktopTabBar.js +125 -0
  86. package/dist/src/desktop/components/DesktopTabBar/index.d.ts +1 -0
  87. package/dist/src/desktop/components/DesktopTabBar/index.js +8 -0
  88. package/dist/src/desktop/components/EditApplyTextField/EditApplyTextField.d.ts +32 -0
  89. package/dist/src/desktop/components/EditApplyTextField/EditApplyTextField.js +238 -0
  90. package/dist/src/desktop/components/EditApplyTextField/index.d.ts +1 -0
  91. package/dist/src/desktop/components/EditApplyTextField/index.js +8 -0
  92. package/dist/src/desktop/components/FilterBar/FilterBar.d.ts +19 -0
  93. package/dist/src/desktop/components/FilterBar/FilterBar.js +53 -0
  94. package/dist/src/desktop/components/FilterBar/index.d.ts +1 -0
  95. package/dist/src/desktop/components/FilterBar/index.js +8 -0
  96. package/dist/src/desktop/components/FloatingActionButton/FloatingActionButton.d.ts +19 -0
  97. package/dist/src/desktop/components/FloatingActionButton/FloatingActionButton.js +96 -0
  98. package/dist/src/desktop/components/FloatingActionButton/index.d.ts +1 -0
  99. package/dist/src/desktop/components/FloatingActionButton/index.js +8 -0
  100. package/dist/src/{hybrid → desktop}/components/IconButton/IconButton.d.ts +1 -1
  101. package/dist/src/{hybrid → desktop}/components/IconButton/IconButton.js +5 -5
  102. package/dist/src/{hybrid → desktop}/components/IconButton/index.d.ts +0 -0
  103. package/dist/src/{hybrid → desktop}/components/IconButton/index.js +0 -0
  104. package/dist/src/desktop/components/ImageSlide/ImageSlide.d.ts +13 -0
  105. package/dist/src/desktop/components/ImageSlide/ImageSlide.js +97 -0
  106. package/dist/src/desktop/components/ImageSlide/index.d.ts +1 -0
  107. package/dist/src/desktop/components/ImageSlide/index.js +8 -0
  108. package/dist/src/desktop/components/MainButton/MainButton.d.ts +21 -0
  109. package/dist/src/desktop/components/MainButton/MainButton.js +190 -0
  110. package/dist/src/desktop/components/MainButton/index.d.ts +1 -0
  111. package/dist/src/desktop/components/MainButton/index.js +8 -0
  112. package/dist/src/desktop/components/Radio/Radio.d.ts +12 -0
  113. package/dist/src/desktop/components/Radio/Radio.js +45 -0
  114. package/dist/src/desktop/components/Radio/index.d.ts +1 -0
  115. package/dist/src/desktop/components/Radio/index.js +8 -0
  116. package/dist/src/desktop/components/ReactionButton/ReactionButton.d.ts +11 -0
  117. package/dist/src/desktop/components/ReactionButton/ReactionButton.js +108 -0
  118. package/dist/src/desktop/components/ReactionButton/index.d.ts +1 -0
  119. package/dist/src/desktop/components/ReactionButton/index.js +8 -0
  120. package/dist/src/desktop/components/Select/Select.d.ts +16 -0
  121. package/dist/src/desktop/components/Select/Select.js +136 -0
  122. package/dist/src/desktop/components/Select/index.d.ts +1 -0
  123. package/dist/src/desktop/components/Select/index.js +8 -0
  124. package/dist/src/desktop/components/StatusBlock/StatusBlock.js +1 -1
  125. package/dist/src/desktop/components/TextButton/TextButton.d.ts +11 -0
  126. package/dist/src/desktop/components/TextButton/TextButton.js +103 -0
  127. package/dist/src/desktop/components/TextButton/index.d.ts +1 -0
  128. package/dist/src/desktop/components/TextButton/index.js +8 -0
  129. package/dist/src/desktop/components/TextField/TextField.d.ts +42 -0
  130. package/dist/src/desktop/components/TextField/TextField.js +252 -0
  131. package/dist/src/desktop/components/TextField/index.d.ts +1 -0
  132. package/dist/src/desktop/components/TextField/index.js +8 -0
  133. package/dist/src/desktop/components/TextLabel/TextLabel.d.ts +3 -1
  134. package/dist/src/desktop/components/TextLabel/TextLabel.js +7 -4
  135. package/dist/src/desktop/components/UploadIconButton/UploadIconButton.d.ts +21 -0
  136. package/dist/src/desktop/components/UploadIconButton/UploadIconButton.js +149 -0
  137. package/dist/src/desktop/components/UploadIconButton/index.d.ts +1 -0
  138. package/dist/src/desktop/components/UploadIconButton/index.js +8 -0
  139. package/dist/src/desktop/components/UploadIconButton/types.d.ts +8 -0
  140. package/dist/src/desktop/components/UploadIconButton/types.js +11 -0
  141. package/dist/src/desktop/components/UploadMainButton/UploadMainButton.d.ts +18 -0
  142. package/dist/src/desktop/components/UploadMainButton/UploadMainButton.js +173 -0
  143. package/dist/src/desktop/components/UploadMainButton/index.d.ts +1 -0
  144. package/dist/src/desktop/components/UploadMainButton/index.js +8 -0
  145. package/dist/src/desktop/components/UploadMainButton/types.d.ts +25 -0
  146. package/dist/src/desktop/components/UploadMainButton/types.js +28 -0
  147. package/dist/src/desktop/components/UploadTextButton/UploadTextButton.d.ts +12 -0
  148. package/dist/src/desktop/components/UploadTextButton/UploadTextButton.js +83 -0
  149. package/dist/src/desktop/components/UploadTextButton/index.d.ts +1 -0
  150. package/dist/src/desktop/components/UploadTextButton/index.js +8 -0
  151. package/dist/src/desktop/components/UserDesktopNavBar/UserDesktopNavBar.d.ts +20 -0
  152. package/dist/src/desktop/components/UserDesktopNavBar/UserDesktopNavBar.js +104 -0
  153. package/dist/src/desktop/components/UserDesktopNavBar/index.d.ts +1 -0
  154. package/dist/src/desktop/components/UserDesktopNavBar/index.js +8 -0
  155. package/dist/src/desktop/components/UserDesktopTabBar/UserDesktopTabBar.d.ts +11 -0
  156. package/dist/src/desktop/components/UserDesktopTabBar/UserDesktopTabBar.js +74 -0
  157. package/dist/src/desktop/components/UserDesktopTabBar/index.d.ts +1 -0
  158. package/dist/src/desktop/components/UserDesktopTabBar/index.js +8 -0
  159. package/dist/src/desktop/components/index.d.ts +25 -1
  160. package/dist/src/desktop/components/index.js +49 -1
  161. package/dist/src/desktop/index.d.ts +2 -2
  162. package/dist/src/desktop/index.js +25 -1
  163. package/dist/src/desktop/layout/LayoutWS/Containers/ContentsContainer/variation/WSF.js +1 -1
  164. package/dist/src/hybrid/components/Icon/Icon.d.ts +2 -2
  165. package/dist/src/hybrid/components/Icon/Icon.js +1 -1
  166. package/dist/src/hybrid/components/ImageView/ImageView.d.ts +4 -2
  167. package/dist/src/hybrid/components/ImageView/ImageView.js +110 -28
  168. package/dist/src/hybrid/components/Switch/Switch.d.ts +9 -0
  169. package/dist/src/hybrid/components/Switch/Switch.js +75 -0
  170. package/dist/src/hybrid/components/Switch/index.d.ts +1 -0
  171. package/dist/src/hybrid/components/Switch/index.js +8 -0
  172. package/dist/src/hybrid/components/index.d.ts +2 -2
  173. package/dist/src/hybrid/components/index.js +3 -3
  174. package/dist/src/hybrid/index.d.ts +2 -2
  175. package/dist/src/hybrid/index.js +2 -2
  176. package/dist/src/mobile/common/components/TextFieldBase/TextFieldBase.d.ts +45 -0
  177. package/dist/src/mobile/common/components/TextFieldBase/TextFieldBase.js +265 -0
  178. package/dist/src/mobile/common/components/TextFieldBase/index.d.ts +1 -0
  179. package/dist/src/mobile/common/components/TextFieldBase/index.js +8 -0
  180. package/dist/src/mobile/common/components/index.d.ts +2 -0
  181. package/dist/src/mobile/common/components/index.js +5 -0
  182. package/dist/src/mobile/components/BlogTextField/BlogTextField.d.ts +29 -0
  183. package/dist/src/mobile/components/BlogTextField/BlogTextField.js +105 -0
  184. package/dist/src/mobile/components/BlogTextField/index.d.ts +1 -0
  185. package/dist/src/mobile/components/BlogTextField/index.js +8 -0
  186. package/dist/src/mobile/components/Card/Card.d.ts +11 -0
  187. package/dist/src/mobile/components/Card/Card.js +50 -0
  188. package/dist/src/mobile/components/Card/index.d.ts +1 -0
  189. package/dist/src/mobile/components/Card/index.js +8 -0
  190. package/dist/src/mobile/components/CardList/CardList.d.ts +10 -0
  191. package/dist/src/mobile/components/CardList/CardList.js +30 -0
  192. package/dist/src/mobile/components/CardList/index.d.ts +1 -0
  193. package/dist/src/mobile/components/CardList/index.js +8 -0
  194. package/dist/src/mobile/components/Checkbox/Checkbox.d.ts +11 -0
  195. package/dist/src/mobile/components/Checkbox/Checkbox.js +62 -0
  196. package/dist/src/mobile/components/Checkbox/index.d.ts +1 -0
  197. package/dist/src/mobile/components/Checkbox/index.js +8 -0
  198. package/dist/src/mobile/components/Chip/Chip.d.ts +19 -0
  199. package/dist/src/mobile/components/Chip/Chip.js +131 -0
  200. package/dist/src/mobile/components/Chip/index.d.ts +1 -0
  201. package/dist/src/mobile/components/Chip/index.js +8 -0
  202. package/dist/src/mobile/components/ContextMenu/ContextMenu.d.ts +7 -0
  203. package/dist/src/mobile/components/ContextMenu/ContextMenu.js +33 -0
  204. package/dist/src/mobile/components/ContextMenu/index.d.ts +1 -0
  205. package/dist/src/mobile/components/ContextMenu/index.js +8 -0
  206. package/dist/src/mobile/components/ContextMenuItem/ContextMenuItem.d.ts +10 -0
  207. package/dist/src/mobile/components/ContextMenuItem/ContextMenuItem.js +62 -0
  208. package/dist/src/mobile/components/ContextMenuItem/index.d.ts +1 -0
  209. package/dist/src/mobile/components/ContextMenuItem/index.js +8 -0
  210. package/dist/src/mobile/components/IconButton/IconButton.d.ts +21 -0
  211. package/dist/src/mobile/components/IconButton/IconButton.js +148 -0
  212. package/dist/src/mobile/components/IconButton/index.d.ts +1 -0
  213. package/dist/src/mobile/components/IconButton/index.js +8 -0
  214. package/dist/src/mobile/components/ImageSlide/ImageSlide.d.ts +13 -0
  215. package/dist/src/mobile/components/ImageSlide/ImageSlide.js +97 -0
  216. package/dist/src/mobile/components/ImageSlide/index.d.ts +1 -0
  217. package/dist/src/mobile/components/ImageSlide/index.js +8 -0
  218. package/dist/src/mobile/components/MainButton/MainButton.d.ts +21 -0
  219. package/dist/src/mobile/components/MainButton/MainButton.js +181 -0
  220. package/dist/src/mobile/components/MainButton/index.d.ts +1 -0
  221. package/dist/src/mobile/components/MainButton/index.js +8 -0
  222. package/dist/src/mobile/components/MobileHeaderBar/MobileHeaderBar.d.ts +19 -0
  223. package/dist/src/mobile/components/MobileHeaderBar/MobileHeaderBar.js +97 -0
  224. package/dist/src/mobile/components/MobileHeaderBar/index.d.ts +1 -0
  225. package/dist/src/mobile/components/MobileHeaderBar/index.js +8 -0
  226. package/dist/src/mobile/components/MobileTabBar/MobileTabBar.d.ts +10 -0
  227. package/dist/src/mobile/components/MobileTabBar/MobileTabBar.js +46 -0
  228. package/dist/src/mobile/components/MobileTabBar/index.d.ts +1 -0
  229. package/dist/src/mobile/components/MobileTabBar/index.js +8 -0
  230. package/dist/src/mobile/components/Radio/Radio.d.ts +12 -0
  231. package/dist/src/mobile/components/Radio/Radio.js +45 -0
  232. package/dist/src/mobile/components/Radio/index.d.ts +1 -0
  233. package/dist/src/mobile/components/Radio/index.js +8 -0
  234. package/dist/src/mobile/components/ReactionButton/ReactionButton.d.ts +11 -0
  235. package/dist/src/mobile/components/ReactionButton/ReactionButton.js +108 -0
  236. package/dist/src/mobile/components/ReactionButton/index.d.ts +1 -0
  237. package/dist/src/mobile/components/ReactionButton/index.js +8 -0
  238. package/dist/src/mobile/components/Select/Select.d.ts +16 -0
  239. package/dist/src/mobile/components/Select/Select.js +132 -0
  240. package/dist/src/mobile/components/Select/index.d.ts +1 -0
  241. package/dist/src/mobile/components/Select/index.js +8 -0
  242. package/dist/src/mobile/components/StatusBlock/StatusBlock.js +1 -1
  243. package/dist/src/mobile/components/TextButton/TextButton.d.ts +11 -0
  244. package/dist/src/mobile/components/TextButton/TextButton.js +100 -0
  245. package/dist/src/mobile/components/TextButton/index.d.ts +1 -0
  246. package/dist/src/mobile/components/TextButton/index.js +8 -0
  247. package/dist/src/mobile/components/TextField/TextField.d.ts +42 -0
  248. package/dist/src/mobile/components/TextField/TextField.js +252 -0
  249. package/dist/src/mobile/components/TextField/index.d.ts +1 -0
  250. package/dist/src/mobile/components/TextField/index.js +8 -0
  251. package/dist/src/mobile/components/TextLabel/TextLabel.d.ts +3 -1
  252. package/dist/src/mobile/components/TextLabel/TextLabel.js +7 -4
  253. package/dist/src/mobile/components/UploadIconButton/UploadIconButton.d.ts +21 -0
  254. package/dist/src/mobile/components/UploadIconButton/UploadIconButton.js +138 -0
  255. package/dist/src/mobile/components/UploadIconButton/index.d.ts +1 -0
  256. package/dist/src/mobile/components/UploadIconButton/index.js +8 -0
  257. package/dist/src/mobile/components/UploadIconButton/types.d.ts +8 -0
  258. package/dist/src/mobile/components/UploadIconButton/types.js +11 -0
  259. package/dist/src/mobile/components/UploadMainButton/UploadMainButton.d.ts +18 -0
  260. package/dist/src/mobile/components/UploadMainButton/UploadMainButton.js +161 -0
  261. package/dist/src/mobile/components/UploadMainButton/index.d.ts +1 -0
  262. package/dist/src/mobile/components/UploadMainButton/index.js +8 -0
  263. package/dist/src/mobile/components/UploadMainButton/types.d.ts +25 -0
  264. package/dist/src/mobile/components/UploadMainButton/types.js +28 -0
  265. package/dist/src/mobile/components/UploadTextButton/UploadTextButton.d.ts +12 -0
  266. package/dist/src/mobile/components/UploadTextButton/UploadTextButton.js +77 -0
  267. package/dist/src/mobile/components/UploadTextButton/index.d.ts +1 -0
  268. package/dist/src/mobile/components/UploadTextButton/index.js +8 -0
  269. package/dist/src/mobile/components/index.d.ts +21 -1
  270. package/dist/src/mobile/components/index.js +41 -1
  271. package/dist/src/mobile/index.d.ts +2 -2
  272. package/dist/src/mobile/index.js +21 -1
  273. package/dist/src/mobile/layout/LayoutMP/Containers/NavigationContainer/variation/Navigation.js +1 -1
  274. 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;
@@ -2879,6 +2919,215 @@ declare const locale: {
2879
2919
  str_papp_promotion_post_setting: string;
2880
2920
  str_1649: string;
2881
2921
  str_1650: string;
2922
+ str_err_1651: string;
2923
+ str_err_1652: string;
2924
+ str_1653: string;
2925
+ str_fm_price_usd: string;
2926
+ str_1654: string;
2927
+ str_manager: string;
2928
+ str_1655: string;
2929
+ str_1656: string;
2930
+ str_1657: string;
2931
+ str_1658: string;
2932
+ str_1659: string;
2933
+ str_1660: string;
2934
+ str_1661: string;
2935
+ str_1662: string;
2936
+ str_1663: string;
2937
+ str_1664: string;
2938
+ str_1665: string;
2939
+ str_1666: string;
2940
+ str_1667: string;
2941
+ str_1668: string;
2942
+ str_1669: string;
2943
+ str_1670: string;
2944
+ str_1671: string;
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;
2882
3131
  };
2883
3132
  };
2884
3133
  readonly en: {
@@ -4829,6 +5078,7 @@ declare const locale: {
4829
5078
  str_994: string;
4830
5079
  str_995: string;
4831
5080
  str_err_996: string;
5081
+ str_pay_method_credit: string;
4832
5082
  str_err_997: string;
4833
5083
  str_err_998: string;
4834
5084
  str_err_999: string;
@@ -4903,6 +5153,9 @@ declare const locale: {
4903
5153
  str_pg_title_vodp_label: string;
4904
5154
  str_pg_title_vodp_settings: string;
4905
5155
  str_1059: string;
5156
+ str_pay_actor_merchant: string;
5157
+ str_pay_actor_publpay: string;
5158
+ str_pay_actor_pg: string;
4906
5159
  str_view_percent: string;
4907
5160
  str_1060: string;
4908
5161
  str_1062: string;
@@ -5089,6 +5342,7 @@ declare const locale: {
5089
5342
  str_err_1233: string;
5090
5343
  str_err_1234: string;
5091
5344
  str_1235: string;
5345
+ str_err_1236: string;
5092
5346
  str_pam_ls: string;
5093
5347
  str_pam_ls_live_event_board: string;
5094
5348
  str_pam_ls_live_event: string;
@@ -5136,11 +5390,25 @@ declare const locale: {
5136
5390
  str_1259: string;
5137
5391
  str_1260: string;
5138
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;
5139
5404
  str_1273: string;
5405
+ str_1274: string;
5406
+ str_1275: string;
5140
5407
  str_papp_event_live_name: string;
5141
5408
  str_papp_event_live_id: string;
5142
5409
  str_err_1276: string;
5143
5410
  str_err_1277: string;
5411
+ str_1278: string;
5144
5412
  str_1279: string;
5145
5413
  str_err_1280: string;
5146
5414
  str_err_1281: string;
@@ -5152,6 +5420,11 @@ declare const locale: {
5152
5420
  str_err_1291: string;
5153
5421
  str_change: string;
5154
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;
5155
5428
  str_1298: string;
5156
5429
  str_1299: string;
5157
5430
  str_1300: string;
@@ -5180,6 +5453,10 @@ declare const locale: {
5180
5453
  str_1321: string;
5181
5454
  str_1322: string;
5182
5455
  str_1323: string;
5456
+ str_1324: string;
5457
+ str_1325: string;
5458
+ str_1326: string;
5459
+ str_1327: string;
5183
5460
  str_1328: string;
5184
5461
  str_vodp_section_mainslidebanner: string;
5185
5462
  str_vodp_section_serieslist: string;
@@ -5235,6 +5512,8 @@ declare const locale: {
5235
5512
  str_err_1375: string;
5236
5513
  str_err_1376: string;
5237
5514
  str_err_1377: string;
5515
+ str_1378: string;
5516
+ str_1379: string;
5238
5517
  str_1380: string;
5239
5518
  str_1381: string;
5240
5519
  str_channel_payment_info: string;
@@ -5318,6 +5597,9 @@ declare const locale: {
5318
5597
  str_pam_vods_cc_uk: string;
5319
5598
  str_pam_vods_cc_ur: string;
5320
5599
  str_pam_vods_cc_vi: string;
5600
+ str_1394: string;
5601
+ str_1395: string;
5602
+ str_1396: string;
5321
5603
  str_my_subscriptions: string;
5322
5604
  str_all_channel_subscriptions: string;
5323
5605
  str_1397: string;
@@ -5349,6 +5631,7 @@ declare const locale: {
5349
5631
  str_event_performer_system: string;
5350
5632
  str_event_performer_seller: string;
5351
5633
  str_event_performer_user: string;
5634
+ str_footer_info_uw: string;
5352
5635
  str_err_1404: string;
5353
5636
  str_1405: string;
5354
5637
  str_1406: string;
@@ -5457,6 +5740,7 @@ declare const locale: {
5457
5740
  str_pam_lpc_landing_post: string;
5458
5741
  str_pam_lpc_comment: string;
5459
5742
  str_pam_lpc_label: string;
5743
+ str_1457: string;
5460
5744
  str_1458: string;
5461
5745
  str_1459: string;
5462
5746
  str_1460: string;
@@ -5475,6 +5759,12 @@ declare const locale: {
5475
5759
  str_1474: string;
5476
5760
  str_1475: string;
5477
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;
5478
5768
  str_err_1484: string;
5479
5769
  str_pay_merchant: string;
5480
5770
  str_dynamic_layout_editor: string;
@@ -5680,8 +5970,8 @@ declare const locale: {
5680
5970
  str_photobook_post: string;
5681
5971
  str_papp_photobook_like: string;
5682
5972
  str_papp_photobook_dislike: string;
5683
- str_pg_title_operator_manage: string;
5684
- str_pg_title_operator_list: string;
5973
+ str_pg_title_managers: string;
5974
+ str_pg_title_managers_list: string;
5685
5975
  str_1601: string;
5686
5976
  str_1602: string;
5687
5977
  str_1603: string;
@@ -5699,13 +5989,13 @@ declare const locale: {
5699
5989
  str_pg_title_photobook_comment_manage: string;
5700
5990
  str_pg_title_papp_photobook_post_update: string;
5701
5991
  str_pg_title_papp_photobook_post_detail: string;
5702
- str_create_operator_account: string;
5703
- str_create_operator_account_step_1: string;
5704
- str_create_operator_account_step_2: string;
5705
- str_create_operator_account_step_3: string;
5706
- 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;
5707
5997
  str_1612: string;
5708
- str_operator_type: string;
5998
+ str_manager_type: string;
5709
5999
  str_1613: string;
5710
6000
  str_1614: string;
5711
6001
  str_1615: string;
@@ -5743,7 +6033,6 @@ declare const locale: {
5743
6033
  str_switched_counts: string;
5744
6034
  str_link_url: string;
5745
6035
  str_err_1637: string;
5746
- str_create_operator_account_step_5: string;
5747
6036
  str_1638: string;
5748
6037
  str_1639: string;
5749
6038
  str_1640: string;
@@ -5761,6 +6050,215 @@ declare const locale: {
5761
6050
  str_papp_promotion_post_setting: string;
5762
6051
  str_1649: string;
5763
6052
  str_1650: string;
6053
+ str_err_1651: string;
6054
+ str_err_1652: string;
6055
+ str_1653: string;
6056
+ str_fm_price_usd: string;
6057
+ str_1654: string;
6058
+ str_manager: string;
6059
+ str_1655: string;
6060
+ str_1656: string;
6061
+ str_1657: string;
6062
+ str_1658: string;
6063
+ str_1659: string;
6064
+ str_1660: string;
6065
+ str_1661: string;
6066
+ str_1662: string;
6067
+ str_1663: string;
6068
+ str_1664: string;
6069
+ str_1665: string;
6070
+ str_1666: string;
6071
+ str_1667: string;
6072
+ str_1668: string;
6073
+ str_1669: string;
6074
+ str_1670: string;
6075
+ str_1671: string;
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;
5764
6262
  };
5765
6263
  };
5766
6264
  readonly jp: {
@@ -7711,6 +8209,7 @@ declare const locale: {
7711
8209
  str_994: string;
7712
8210
  str_995: string;
7713
8211
  str_err_996: string;
8212
+ str_pay_method_credit: string;
7714
8213
  str_err_997: string;
7715
8214
  str_err_998: string;
7716
8215
  str_err_999: string;
@@ -7785,6 +8284,9 @@ declare const locale: {
7785
8284
  str_pg_title_vodp_label: string;
7786
8285
  str_pg_title_vodp_settings: string;
7787
8286
  str_1059: string;
8287
+ str_pay_actor_merchant: string;
8288
+ str_pay_actor_publpay: string;
8289
+ str_pay_actor_pg: string;
7788
8290
  str_view_percent: string;
7789
8291
  str_1060: string;
7790
8292
  str_1062: string;
@@ -7971,6 +8473,7 @@ declare const locale: {
7971
8473
  str_err_1233: string;
7972
8474
  str_err_1234: string;
7973
8475
  str_1235: string;
8476
+ str_err_1236: string;
7974
8477
  str_pam_ls: string;
7975
8478
  str_pam_ls_live_event_board: string;
7976
8479
  str_pam_ls_live_event: string;
@@ -8018,11 +8521,25 @@ declare const locale: {
8018
8521
  str_1259: string;
8019
8522
  str_1260: string;
8020
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;
8021
8535
  str_1273: string;
8536
+ str_1274: string;
8537
+ str_1275: string;
8022
8538
  str_papp_event_live_name: string;
8023
8539
  str_papp_event_live_id: string;
8024
8540
  str_err_1276: string;
8025
8541
  str_err_1277: string;
8542
+ str_1278: string;
8026
8543
  str_1279: string;
8027
8544
  str_err_1280: string;
8028
8545
  str_err_1281: string;
@@ -8034,6 +8551,11 @@ declare const locale: {
8034
8551
  str_err_1291: string;
8035
8552
  str_change: string;
8036
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;
8037
8559
  str_1298: string;
8038
8560
  str_1299: string;
8039
8561
  str_1300: string;
@@ -8062,6 +8584,10 @@ declare const locale: {
8062
8584
  str_1321: string;
8063
8585
  str_1322: string;
8064
8586
  str_1323: string;
8587
+ str_1324: string;
8588
+ str_1325: string;
8589
+ str_1326: string;
8590
+ str_1327: string;
8065
8591
  str_1328: string;
8066
8592
  str_vodp_section_mainslidebanner: string;
8067
8593
  str_vodp_section_serieslist: string;
@@ -8117,6 +8643,8 @@ declare const locale: {
8117
8643
  str_err_1375: string;
8118
8644
  str_err_1376: string;
8119
8645
  str_err_1377: string;
8646
+ str_1378: string;
8647
+ str_1379: string;
8120
8648
  str_1380: string;
8121
8649
  str_1381: string;
8122
8650
  str_channel_payment_info: string;
@@ -8200,6 +8728,9 @@ declare const locale: {
8200
8728
  str_pam_vods_cc_uk: string;
8201
8729
  str_pam_vods_cc_ur: string;
8202
8730
  str_pam_vods_cc_vi: string;
8731
+ str_1394: string;
8732
+ str_1395: string;
8733
+ str_1396: string;
8203
8734
  str_my_subscriptions: string;
8204
8735
  str_all_channel_subscriptions: string;
8205
8736
  str_1397: string;
@@ -8231,6 +8762,7 @@ declare const locale: {
8231
8762
  str_event_performer_system: string;
8232
8763
  str_event_performer_seller: string;
8233
8764
  str_event_performer_user: string;
8765
+ str_footer_info_uw: string;
8234
8766
  str_err_1404: string;
8235
8767
  str_1405: string;
8236
8768
  str_1406: string;
@@ -8339,6 +8871,7 @@ declare const locale: {
8339
8871
  str_pam_lpc_landing_post: string;
8340
8872
  str_pam_lpc_comment: string;
8341
8873
  str_pam_lpc_label: string;
8874
+ str_1457: string;
8342
8875
  str_1458: string;
8343
8876
  str_1459: string;
8344
8877
  str_1460: string;
@@ -8357,6 +8890,12 @@ declare const locale: {
8357
8890
  str_1474: string;
8358
8891
  str_1475: string;
8359
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;
8360
8899
  str_err_1484: string;
8361
8900
  str_pay_merchant: string;
8362
8901
  str_dynamic_layout_editor: string;
@@ -8562,8 +9101,8 @@ declare const locale: {
8562
9101
  str_photobook_post: string;
8563
9102
  str_papp_photobook_like: string;
8564
9103
  str_papp_photobook_dislike: string;
8565
- str_pg_title_operator_manage: string;
8566
- str_pg_title_operator_list: string;
9104
+ str_pg_title_managers: string;
9105
+ str_pg_title_managers_list: string;
8567
9106
  str_1601: string;
8568
9107
  str_1602: string;
8569
9108
  str_1603: string;
@@ -8581,13 +9120,13 @@ declare const locale: {
8581
9120
  str_pg_title_photobook_comment_manage: string;
8582
9121
  str_pg_title_papp_photobook_post_update: string;
8583
9122
  str_pg_title_papp_photobook_post_detail: string;
8584
- str_create_operator_account: string;
8585
- str_create_operator_account_step_1: string;
8586
- str_create_operator_account_step_2: string;
8587
- str_create_operator_account_step_3: string;
8588
- 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;
8589
9128
  str_1612: string;
8590
- str_operator_type: string;
9129
+ str_manager_type: string;
8591
9130
  str_1613: string;
8592
9131
  str_1614: string;
8593
9132
  str_1615: string;
@@ -8625,7 +9164,6 @@ declare const locale: {
8625
9164
  str_switched_counts: string;
8626
9165
  str_link_url: string;
8627
9166
  str_err_1637: string;
8628
- str_create_operator_account_step_5: string;
8629
9167
  str_1638: string;
8630
9168
  str_1639: string;
8631
9169
  str_1640: string;
@@ -8643,6 +9181,215 @@ declare const locale: {
8643
9181
  str_papp_promotion_post_setting: string;
8644
9182
  str_1649: string;
8645
9183
  str_1650: string;
9184
+ str_err_1651: string;
9185
+ str_err_1652: string;
9186
+ str_1653: string;
9187
+ str_fm_price_usd: string;
9188
+ str_1654: string;
9189
+ str_manager: string;
9190
+ str_1655: string;
9191
+ str_1656: string;
9192
+ str_1657: string;
9193
+ str_1658: string;
9194
+ str_1659: string;
9195
+ str_1660: string;
9196
+ str_1661: string;
9197
+ str_1662: string;
9198
+ str_1663: string;
9199
+ str_1664: string;
9200
+ str_1665: string;
9201
+ str_1666: string;
9202
+ str_1667: string;
9203
+ str_1668: string;
9204
+ str_1669: string;
9205
+ str_1670: string;
9206
+ str_1671: string;
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;
8646
9393
  };
8647
9394
  };
8648
9395
  readonly es: {
@@ -10593,6 +11340,7 @@ declare const locale: {
10593
11340
  str_994: string;
10594
11341
  str_995: string;
10595
11342
  str_err_996: string;
11343
+ str_pay_method_credit: string;
10596
11344
  str_err_997: string;
10597
11345
  str_err_998: string;
10598
11346
  str_err_999: string;
@@ -10667,6 +11415,9 @@ declare const locale: {
10667
11415
  str_pg_title_vodp_label: string;
10668
11416
  str_pg_title_vodp_settings: string;
10669
11417
  str_1059: string;
11418
+ str_pay_actor_merchant: string;
11419
+ str_pay_actor_publpay: string;
11420
+ str_pay_actor_pg: string;
10670
11421
  str_view_percent: string;
10671
11422
  str_1060: string;
10672
11423
  str_1062: string;
@@ -10853,6 +11604,7 @@ declare const locale: {
10853
11604
  str_err_1233: string;
10854
11605
  str_err_1234: string;
10855
11606
  str_1235: string;
11607
+ str_err_1236: string;
10856
11608
  str_pam_ls: string;
10857
11609
  str_pam_ls_live_event_board: string;
10858
11610
  str_pam_ls_live_event: string;
@@ -10900,11 +11652,25 @@ declare const locale: {
10900
11652
  str_1259: string;
10901
11653
  str_1260: string;
10902
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;
10903
11666
  str_1273: string;
11667
+ str_1274: string;
11668
+ str_1275: string;
10904
11669
  str_papp_event_live_name: string;
10905
11670
  str_papp_event_live_id: string;
10906
11671
  str_err_1276: string;
10907
11672
  str_err_1277: string;
11673
+ str_1278: string;
10908
11674
  str_1279: string;
10909
11675
  str_err_1280: string;
10910
11676
  str_err_1281: string;
@@ -10916,6 +11682,11 @@ declare const locale: {
10916
11682
  str_err_1291: string;
10917
11683
  str_change: string;
10918
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;
10919
11690
  str_1298: string;
10920
11691
  str_1299: string;
10921
11692
  str_1300: string;
@@ -10944,6 +11715,10 @@ declare const locale: {
10944
11715
  str_1321: string;
10945
11716
  str_1322: string;
10946
11717
  str_1323: string;
11718
+ str_1324: string;
11719
+ str_1325: string;
11720
+ str_1326: string;
11721
+ str_1327: string;
10947
11722
  str_1328: string;
10948
11723
  str_vodp_section_mainslidebanner: string;
10949
11724
  str_vodp_section_serieslist: string;
@@ -10999,6 +11774,8 @@ declare const locale: {
10999
11774
  str_err_1375: string;
11000
11775
  str_err_1376: string;
11001
11776
  str_err_1377: string;
11777
+ str_1378: string;
11778
+ str_1379: string;
11002
11779
  str_1380: string;
11003
11780
  str_1381: string;
11004
11781
  str_channel_payment_info: string;
@@ -11082,6 +11859,9 @@ declare const locale: {
11082
11859
  str_pam_vods_cc_uk: string;
11083
11860
  str_pam_vods_cc_ur: string;
11084
11861
  str_pam_vods_cc_vi: string;
11862
+ str_1394: string;
11863
+ str_1395: string;
11864
+ str_1396: string;
11085
11865
  str_my_subscriptions: string;
11086
11866
  str_all_channel_subscriptions: string;
11087
11867
  str_1397: string;
@@ -11113,6 +11893,7 @@ declare const locale: {
11113
11893
  str_event_performer_system: string;
11114
11894
  str_event_performer_seller: string;
11115
11895
  str_event_performer_user: string;
11896
+ str_footer_info_uw: string;
11116
11897
  str_err_1404: string;
11117
11898
  str_1405: string;
11118
11899
  str_1406: string;
@@ -11221,6 +12002,7 @@ declare const locale: {
11221
12002
  str_pam_lpc_landing_post: string;
11222
12003
  str_pam_lpc_comment: string;
11223
12004
  str_pam_lpc_label: string;
12005
+ str_1457: string;
11224
12006
  str_1458: string;
11225
12007
  str_1459: string;
11226
12008
  str_1460: string;
@@ -11239,6 +12021,12 @@ declare const locale: {
11239
12021
  str_1474: string;
11240
12022
  str_1475: string;
11241
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;
11242
12030
  str_err_1484: string;
11243
12031
  str_pay_merchant: string;
11244
12032
  str_dynamic_layout_editor: string;
@@ -11444,8 +12232,8 @@ declare const locale: {
11444
12232
  str_photobook_post: string;
11445
12233
  str_papp_photobook_like: string;
11446
12234
  str_papp_photobook_dislike: string;
11447
- str_pg_title_operator_manage: string;
11448
- str_pg_title_operator_list: string;
12235
+ str_pg_title_managers: string;
12236
+ str_pg_title_managers_list: string;
11449
12237
  str_1601: string;
11450
12238
  str_1602: string;
11451
12239
  str_1603: string;
@@ -11463,13 +12251,13 @@ declare const locale: {
11463
12251
  str_pg_title_photobook_comment_manage: string;
11464
12252
  str_pg_title_papp_photobook_post_update: string;
11465
12253
  str_pg_title_papp_photobook_post_detail: string;
11466
- str_create_operator_account: string;
11467
- str_create_operator_account_step_1: string;
11468
- str_create_operator_account_step_2: string;
11469
- str_create_operator_account_step_3: string;
11470
- 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;
11471
12259
  str_1612: string;
11472
- str_operator_type: string;
12260
+ str_manager_type: string;
11473
12261
  str_1613: string;
11474
12262
  str_1614: string;
11475
12263
  str_1615: string;
@@ -11507,7 +12295,6 @@ declare const locale: {
11507
12295
  str_switched_counts: string;
11508
12296
  str_link_url: string;
11509
12297
  str_err_1637: string;
11510
- str_create_operator_account_step_5: string;
11511
12298
  str_1638: string;
11512
12299
  str_1639: string;
11513
12300
  str_1640: string;
@@ -11525,6 +12312,215 @@ declare const locale: {
11525
12312
  str_papp_promotion_post_setting: string;
11526
12313
  str_1649: string;
11527
12314
  str_1650: string;
12315
+ str_err_1651: string;
12316
+ str_err_1652: string;
12317
+ str_1653: string;
12318
+ str_fm_price_usd: string;
12319
+ str_1654: string;
12320
+ str_manager: string;
12321
+ str_1655: string;
12322
+ str_1656: string;
12323
+ str_1657: string;
12324
+ str_1658: string;
12325
+ str_1659: string;
12326
+ str_1660: string;
12327
+ str_1661: string;
12328
+ str_1662: string;
12329
+ str_1663: string;
12330
+ str_1664: string;
12331
+ str_1665: string;
12332
+ str_1666: string;
12333
+ str_1667: string;
12334
+ str_1668: string;
12335
+ str_1669: string;
12336
+ str_1670: string;
12337
+ str_1671: string;
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;
11528
12524
  };
11529
12525
  };
11530
12526
  };