assets.js 29 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565
  1. module.exports = {
  2. dialog: {
  3. confirm: 'Confirm',
  4. cancel: 'Cancel',
  5. warn: 'Warn',
  6. },
  7. inspector: {
  8. cloneToEdit: 'Clone it. Use and go into edit.',
  9. cloneToDirectoryIllegal: 'Please limit the saved path to the current project assets path',
  10. preview: {
  11. header: 'Preview',
  12. resetCameraView: 'Reset camera view',
  13. viewToggle: 'Toggle the 2D/3D view',
  14. },
  15. spine: {
  16. skin: 'Skin',
  17. animation: 'Animation',
  18. loop: 'Loop',
  19. timeScale: 'Rate',
  20. enable: 'Enable',
  21. premultipliedAlpha: 'Premultiplied Alpha',
  22. useTint: 'Use Tint',
  23. debug: 'Debug',
  24. debugSlots: 'Slots',
  25. debugBones: 'Bones',
  26. debugMesh: 'Mesh',
  27. },
  28. },
  29. assets: {
  30. reset: 'Reset',
  31. save: 'Save',
  32. locate_asset: 'Locate in Assets Panel',
  33. newFolder: 'Folder',
  34. newJavaScript: 'JavaScript',
  35. newTypeScript: 'TypeScript',
  36. newCubeMap: 'CubeMap',
  37. newRenderTexture: 'Render Texture',
  38. newScene: 'Scene',
  39. newPrefab: 'Node Prefab',
  40. newMaterial: 'Material',
  41. newPhysicsMaterial: 'Physics Material',
  42. newEffect: 'Legacy Unlit Shader (Effect)',
  43. newSurfaceEffect: 'Surface Shader (Effect)',
  44. newChunk: 'Shader Header (Chunk)',
  45. newAnimation: 'Animation Clip',
  46. newAnimationGraph: 'Animation Graph',
  47. newAnimationGraphVariant: 'Animation Graph Variant',
  48. newAnimationMask: 'Animation Mask',
  49. newAnimationGraphTS: 'Animation Graph Script',
  50. renderPipeline: 'Render Pipeline',
  51. renderPipelineAsset: 'Render Pipeline Asset',
  52. forwardPipelineAsset: 'Forward Pipeline Asset',
  53. renderPipelineTS: 'Render Pipeline Script',
  54. RenderFlowTS: 'Render Flow Script',
  55. RenderStageTS: 'Render Stage Script',
  56. newPac: 'Auto Atlas',
  57. newLabelAtlas: 'Label Atlas',
  58. newTerrain: 'Terrain',
  59. autoGenerateMaterial: 'Auto Generate Material',
  60. 'label-atlas': {
  61. SpriteFrameTip: 'Sprite Frame',
  62. ItemWidthTip: 'Item Width',
  63. ItemHeightTip: 'Item Height',
  64. StartCharTip: 'Start Char',
  65. FontSizeTip: 'Font Size',
  66. SpriteFrame: 'Sprite Frame',
  67. ItemWidth: 'Item Width',
  68. ItemHeight: 'Item Height',
  69. StartChar: 'Start Char',
  70. FontSize: 'Font Size',
  71. },
  72. particle: {
  73. spriteFrame: 'Sprite Frame',
  74. spriteFrameTip: 'Sprite Frame',
  75. },
  76. erpTextureCube: {
  77. anisotropy: 'Anisotropy',
  78. filterMode: 'Filter Mode',
  79. minFilter: 'Min Filter',
  80. magFilter: 'Mag Filter',
  81. generateMipmaps: 'Generate Mipmaps',
  82. mipFilter: 'Mip Filter',
  83. wrapMode: 'Wrap Mode',
  84. wrapModeS: 'Wrap Mode S',
  85. wrapModeT: 'Wrap Mode T',
  86. anisotropyTip: 'Maximum threshold for applying anisotropic filtering algorithms',
  87. filterModeTip: 'Choose how Texture is filtered when apply 3d transformation',
  88. minFilterTip: 'Minification filtering method',
  89. magFilterTip: 'Magnification filtering method',
  90. generateMipmapsTip:
  91. 'Turn on this option to enable Mipmaps generation.Mipmaps are smaller versions of the original texture that are used to enhance performance and reduce rendering artifacts when objects are small in screen space',
  92. mipFilterTip: 'Mip map filtering method',
  93. wrapModeTip: 'Choose how Texture behaves when tiled. The default option is repeat',
  94. wrapModeSTip: 'Texture addressing mode in S(U) direction',
  95. wrapModeTTip: 'Texture addressing mode in T(V) direction',
  96. bakeReflectionConvolution: 'Bake Reflection Convolution',
  97. faceSize: {
  98. name: 'Face Size',
  99. title: 'Size of each cube face. If not specified, or specified as 0, the default size, which is the nearest power of two to (image.width)/4, is used.',
  100. },
  101. },
  102. javascript: {
  103. plugin: 'Import As Plugin',
  104. dependencies: 'Dependencies',
  105. executionScope: 'Execution Scope',
  106. global: 'Global',
  107. enclosed: 'Enclosed',
  108. loadPluginInWeb: 'Load In Web',
  109. loadPluginInEditor: 'Load In Editor',
  110. loadPluginInNative: 'Load In Native',
  111. loadPluginInMiniGame: 'Load In MiniGame',
  112. globalThisAlias: 'GlobalThis Alias',
  113. pluginTip: 'Plugin scripts are usually used to introduce third-party libraries.',
  114. loadPluginInWebTip: 'Specify whether to include this script in the Web Runtime Environment after building and previewing in the browser.',
  115. loadPluginInEditorTip: 'Manually enable this option if other project scripts in the editor rely on the current script during the loading process.',
  116. loadPluginInNativeTip: 'Indicate whether this script should be included in the emulator preview environment and after building for the native platform.',
  117. loadPluginInMiniGameTips: 'Specify whether this script needs inclusion in the mini-game platform build package.',
  118. globalThisAliasTip: 'Once filled in, the Creator will encapsulate the code necessary to add a global variable of this name to better accommodate third-party libraries that provide their interfaces as global variables',
  119. },
  120. scene: {
  121. asyncLoadAssets: 'Async Load Assets',
  122. },
  123. effect: {
  124. shader: 'Shaders',
  125. shaderTip: 'Shaders',
  126. combinations: 'Precompile Combinations',
  127. combinationsTip: 'Precompile Combinations',
  128. choose: 'Choose all possible branches.',
  129. glsl3: 'GLSL 300 ES Output',
  130. glsl1: 'GLSL 100 Output',
  131. vert: 'Vertex Shader',
  132. frag: 'Fragment Shader',
  133. propertyTips: {
  134. // macros
  135. USE_DITHERED_ALPHA_TEST: 'Make transparency using opaque dithered alpha clip with TAA.',
  136. USE_TWOSIDE: 'Two sided lighting for single-face objects, normal get inverse on back-face automatically. Cull mode should set to None.',
  137. IS_ANISOTROPY: 'Anisotropic materials, such as hair, disc, metal with micro-wires.',
  138. USE_VERTEX_COLOR: 'Use vertex color, will become darker if mesh does not contain vertex color data.',
  139. FIX_ANISOTROPIC_ROTATION_MAP: 'Fix the anomalous seam at the black-white joint of the anisotropic rotation map, turn it on if you encounter this problem.',
  140. // uniforms
  141. tilingOffset: 'Tiling and offset for textures, which can be used as uv animation speed in Surface functions.',
  142. alphaThreshold: 'Alpha threshold for Mask materials, the larger the value the more pixels will be cropped.',
  143. occlusion: 'Ambient occlusion intensity, the higher the value, the greater the effect of ambient occlusion map.',
  144. roughness: 'Roughness, for controlling the area of highlight dispersion.',
  145. metallic: 'Metallic,for controlling the ratio of diffuse and specular.',
  146. specularIntensity: 'Multiplication of the base reflectance F0, valid only for non-metals.',
  147. pbrMap: 'r: Ambient Occlusion(AO) g: Roughness b: Metallic a: Specular Intensity.',
  148. normalMap: 'g channel should be adapted to GL coordinate system, try to turn on trilinear filtering, otherwise there will be noise with lighting.',
  149. normalStrength: 'Normal map intensity, high value may cause noise with lighting.',
  150. anisotropyIntensity: 'Anisotropic intensity, for controlling the shape of anisotropic highlights.',
  151. anisotropyRotation: 'for controlling the orientation of the strip highlights.',
  152. anisotropyMap: 'r: Anisotropy Intensity; g: Anisotropy Rotation.',
  153. anisotropyMapNearestFilter: 'Duplicate the Anisotropy Map and select the Nearest filter.',
  154. anisotropyMapResolutionHeight: 'The height of Anisotropy Map texture resolution.',
  155. ior: 'Relative refractive index, which can affect the refraction angle and Fresnel effect. Water is 1.33',
  156. transmitThicknessWithShadowMap: 'Object thickness (world space unit), setting a too small value will cause the scattered light to disappear',
  157. transmitExtinctionWithShadowMap: 'Scatter extinction coefficient for back-transmitted light (such as ears and nose), larger value cause transmitted light to become weaker, and smaller value makes bright area bigger and average lighting. caution! the larger model size needs smaller extinction value to maintain the same lighting result, or give a distance scale to TransmitDiffuseParam from model size',
  158. transmitExtinction: 'Thin object scatter extinction coefficient for back-transmitted light (such as leaves), larger value cause transmitted light to become weaker, and smaller value makes bright area bigger and average lighting. Need specified thickness',
  159. },
  160. },
  161. image: {
  162. label: 'Image',
  163. type: 'Type',
  164. typeTip: 'Type',
  165. // bakeOfflineMipmaps: 'Bake Offline Mipmaps',
  166. // bakeOfflineMipmapsTip: 'Bake Offline Mipmaps',
  167. flipVertical: 'Flip Vertical',
  168. flipVerticalTip: 'Flip Vertical',
  169. fixAlphaTransparencyArtifacts: 'Fix Alpha Transparency Artifacts',
  170. fixAlphaTransparencyArtifactsTip:
  171. 'Fill transparent pixels with color of neareast solid pixel. These filled pixels would fix the dark halos at transparent borders of textures. Please turn on this option when you use the Alpha transparency channel in textures.',
  172. isRGBE: 'Is RGBE',
  173. isRGBETip: 'Is RGBE',
  174. flipGreenChannel: 'Flip Green Channel',
  175. },
  176. spriteFrame: {
  177. packable: 'Packable',
  178. packableTip: 'Whether to participate in dynamic atlas or automatic atlas in build processes.',
  179. rotated: 'Rotated',
  180. rotatedTip: 'Whether the sprite frame in TexturePacker is rotated',
  181. offsetX: 'Offset X',
  182. offsetXTip: 'The x-axis offset of the sprite frame in TexturePacker',
  183. offsetY: 'Offset Y',
  184. offsetYTip: 'The y-axis offset of the sprite frame in TexturePacker',
  185. trimType: 'Trim Type',
  186. trimTypeTip: 'The type of trimming',
  187. trimThreshold: 'Trim Threshold',
  188. trimThresholdTip: 'Transparency threshold for trimming',
  189. trimX: 'Trim X',
  190. trimXTip: 'The x coord of the top left corner of the trim rect',
  191. trimY: 'Trim Y',
  192. trimYTip: 'The y coord of the top left corner of the trim rect',
  193. width: 'Trim Width',
  194. widthTip: 'The width of the trim rect',
  195. height: 'Trim Height',
  196. heightTip: 'The height of the trim rect',
  197. borderTop: 'Border Top',
  198. borderTopTip: 'The top margin of the 9-slicing',
  199. borderBottom: 'Border Bottom',
  200. borderBottomTip: 'The bottom margin of 9-slicing',
  201. borderLeft: 'Border Left',
  202. borderLeftTip: 'The left margin of 9-slicing',
  203. borderRight: 'Border Right',
  204. borderRightTip: 'The right margin of 9-slicing',
  205. edit: 'Edit',
  206. editTip: 'Edit',
  207. meshType: 'Mesh Type',
  208. meshTypeTip: 'Type of the mesh generated for the sprite frame',
  209. pixelsToUnit: 'Pixels To Unit',
  210. pixelsToUnitTip: 'How many pixels in the sprite frame correspond to one unit in the world space',
  211. pivotX: 'Pivot X',
  212. pivotXTip: 'The origin`s X-axis position of sprite frame in the local coordinate system',
  213. pivotY: 'Pivot Y',
  214. pivotYTip: 'The origin`s Y-axis position of sprite frame in the local coordinate system',
  215. },
  216. texture: {
  217. anisotropy: 'Anisotropy',
  218. anisotropyTip: 'Maximum threshold for applying anisotropic filtering algorithms',
  219. filterMode: 'Filter Mode',
  220. filterModeTip: 'Choose how Texture is filtered when apply 3d transformation',
  221. minfilter: 'Min Filter',
  222. minfilterTip: 'Minification filtering method',
  223. magfilter: 'Mag Filter',
  224. magfilterTip: 'Magnification filtering method',
  225. generateMipmaps: 'Generate Mipmaps',
  226. generateMipmapsTip:
  227. 'Turn on this option to enable Mipmaps generation.Mipmaps are smaller versions of the original texture that are used to enhance performance and reduce rendering artifacts when objects are small in screen space',
  228. mipfilter: 'Mip Filter',
  229. mipfilterTip: 'Mip map filtering method',
  230. wrapMode: 'Wrap Mode',
  231. wrapModeTip: 'Choose how Texture behaves when tiled. The default option is repeat',
  232. wrapModeS: 'Wrap Mode S',
  233. wrapModeSTip: 'Texture addressing mode in S(U) direction',
  234. wrapModeT: 'Wrap Mode T',
  235. wrapModeTTip: 'Texture addressing mode in T(V) direction',
  236. modeWarn:
  237. "Warning: WebGL 1.0 platform doesn't support 'Repeat' filter for non-power-of-two textures(runtime fallback to 'Clamp'), effectively disabling features like the 'tilingOffset' property in many materials.",
  238. filterDiffenent: 'Filter settings do not match the configuration in {atlasFile} and may not take effect.',
  239. },
  240. fbx: {
  241. browse: 'Change Target',
  242. model: 'Model',
  243. animation: 'Animation',
  244. modelPreview: 'Model preview',
  245. material: 'Material',
  246. no_model_tips: 'No model is available for preview',
  247. drag_model_tips: 'Drag a model here for preview',
  248. fbx: 'FBX',
  249. GlTFUserData: {
  250. normals: {
  251. name: 'Normals',
  252. title: 'Normals import setting.',
  253. optional: {
  254. name: 'Optional',
  255. title: 'Import normals only if the model file contains normals.',
  256. },
  257. exclude: {
  258. name: 'Exclude',
  259. title: 'Do not import normals.',
  260. },
  261. require: {
  262. name: 'Required',
  263. title: 'Import normals that are contained in the model file, or calculated if not contained.',
  264. },
  265. recalculate: {
  266. name: 'Recalculate',
  267. title: 'Recalculate normals and import, ingoring whether if the model file contain normals.',
  268. },
  269. },
  270. tangents: {
  271. name: 'Tangents',
  272. title: 'Tangents import setting.',
  273. optional: {
  274. name: 'Optional',
  275. title: 'Import tangents only if the model file contains tangents.',
  276. },
  277. exclude: {
  278. name: 'Exclude',
  279. title: 'Do not import tangents.',
  280. },
  281. require: {
  282. name: 'Required',
  283. title: 'Import tangents that are contained in the model file, or calculated if not contained and texture coordinates exist.',
  284. },
  285. recalculate: {
  286. name: 'Recalculate',
  287. title: 'Recalculate tangents and import, ingoring whether if the model file contain tangents.',
  288. },
  289. },
  290. morphNormals: {
  291. name: 'Morph normals',
  292. title: 'Morph normals import setting.',
  293. optional: {
  294. name: 'Optional',
  295. title: 'Import morph normals only if the model file contains morph normals.',
  296. },
  297. exclude: {
  298. name: 'Exclude',
  299. title: 'Do not import morph normals.',
  300. },
  301. require: {
  302. name: 'Required',
  303. title: 'Import morph normals that are contained in the model file, or calculated if not contained.',
  304. },
  305. recalculate: {
  306. name: 'Recalculate',
  307. title: 'Recalculate morph normals and import, ingoring whether if the model file contain morph normals.',
  308. },
  309. },
  310. dumpMaterials: {
  311. name: 'Dump Materials',
  312. title: 'Whether to extract material assets out of embedded (sub)assets, so that the assets become editable.',
  313. },
  314. materialDumpDir: {
  315. name: 'Material Dump Directory',
  316. title: 'The directory to dump the materials.<br>Default to a direct sub-folder named `Materials_${model-file-base-name}` under current path.',
  317. },
  318. useVertexColors: {
  319. name: 'Use Vertex Colors',
  320. title: 'Whether to use vertex colors. ',
  321. },
  322. depthWriteInAlphaModeBlend: {
  323. name: 'Depth-Write If Blending',
  324. title: 'Enable depth-write if the alpha mode is set to "BLEND". ',
  325. },
  326. skipValidation: {
  327. name: 'Skip Validation',
  328. title: 'Skip validation of the model file.',
  329. },
  330. mountAllAnimationsOnPrefab: {
  331. name: 'Mount All Animations Onto Prefab',
  332. },
  333. },
  334. addEvent: {
  335. shouldSave: 'The newly created clip needs to be submitted for modification before adding/editing events',
  336. ok: 'OK',
  337. },
  338. ImageRemap: {
  339. remapAs: 'Remap As',
  340. original: 'Original',
  341. },
  342. limitMaterialDumpDir: 'The extracted path needs to be scoped to the project path.',
  343. legacyOptions: 'Legacy Options',
  344. legacyFbxImporter: {
  345. name: 'Compatible with v1.*',
  346. title: 'Whether this importer should be compatible with its behaviour prior to Cocos Creator version 1.* .',
  347. warn: 'Warning: Changing this property may break imported assets that have been using or referencing. ',
  348. },
  349. disableMeshSplit: {
  350. name: 'Disable Mesh Split',
  351. title:
  352. 'Currently there is a joint-counting-based mesh splitting process during the <br>' +
  353. 'import pipeline to workaround the max uniform vector limit problem for real-time <br>' +
  354. 'calculated skeletal animation system on many platforms. This process has a performance <br>' +
  355. 'impact on other runtime systems too. So if it can be pre-determined that the real-time <br>' +
  356. 'calculated skeletal animations (when useBakedAnimations is unchecked on SkeletalAnimation <br>' +
  357. 'component) will not be used, this option can be checked to improve performance. But note that <br> ' +
  358. 'toggling this would update the corresponding prefab, so all the references in the scene should be <br>' +
  359. 'updated as well to accompany that. To be removed in further refactors.',
  360. },
  361. allowMeshDataAccess: {
  362. name: 'Allow Data Access',
  363. title:
  364. 'Indicate whether the mesh data in this model could be read or write.<br>' +
  365. 'If it is unchecked, the mesh data will be released after it is uploaded to GPU',
  366. },
  367. addVertexColor: {
  368. name: 'Add Vertex Color',
  369. title: 'Fill vertex color with white if the model file does not contain vertex color attribute.',
  370. },
  371. meshOptimize: {
  372. name: 'Mesh Optimize',
  373. title: 'Whether to optimize the mesh data.',
  374. vertexCache: {
  375. name: 'Vertex Cache',
  376. title: 'Optimize the vertex buffer to improve vertex cache hit rate. <br>It is recommended to enable this option for models with high vertex count.',
  377. },
  378. vertexFetch: {
  379. name: 'Vertex Fetch',
  380. title: 'Optimize the vertex buffer to improve vertex fetch efficiency. <br>It is recommended to enable this option for models with high vertex count.',
  381. },
  382. overdraw: {
  383. name: 'Overdraw',
  384. title: 'Optimize the vertex buffer to reduce overdraw. <br>It is recommended to enable this option for models with high vertex count.',
  385. },
  386. },
  387. meshSimplify: {
  388. name: 'Mesh Simplify',
  389. title: 'Whether to simplify the mesh data.',
  390. targetRatio: {
  391. name: 'Target Ratio',
  392. title: 'The target ratio of the simplified mesh data. <br>It is recommended to set this value to 0.5.',
  393. },
  394. autoErrorRate: {
  395. name: 'Auto Error Rate',
  396. title: 'Whether to automatically calculate the error rate of the simplified mesh data.',
  397. },
  398. errorRate: {
  399. name: 'Error Rate',
  400. title: 'The max error rate of the simplified mesh data. <br>This value also alters the result size. <br>It is recommended to tune until you get a good result.',
  401. },
  402. lockBoundary: {
  403. name: 'Lock Boundary',
  404. title: 'Whether to lock the boundary of the simplified mesh data.',
  405. },
  406. },
  407. meshCluster: {
  408. name: 'Mesh Cluster',
  409. title: 'Whether to cluster the mesh data.',
  410. generateBounding: {
  411. name: 'Generate Bounding',
  412. title: 'Whether to generate bounding sphere and normal cone for the clustered mesh data.',
  413. },
  414. },
  415. meshCompress:{
  416. name: 'Mesh Compress',
  417. title: 'Whether to compress the mesh data.',
  418. encode: {
  419. name: 'Encode',
  420. title: 'Encode the mesh data to reduce data size.',
  421. },
  422. compress: {
  423. name: 'Compress',
  424. title: 'Compress the mesh data to reduce data size.',
  425. },
  426. quantize: {
  427. name: 'Quantize',
  428. title: 'Quantize the mesh data to reduce data size.',
  429. },
  430. },
  431. animationBakeRate: {
  432. name: 'Animation Bake Sample Rate',
  433. title: 'Specify the animation bake sample rate in frames per second (fps).',
  434. auto: 'Auto',
  435. },
  436. promoteSingleRootNode: {
  437. name: 'Promote Single Root Node',
  438. title:
  439. 'If enabled and there is only one root node in model scene, <br>' +
  440. "the single node becomes prefab's root after importing. <br>" +
  441. "Otherwise, each root node of the scene becomes prefab's child node.",
  442. },
  443. generateLightmapUVNode: {
  444. name: 'Generate Lightmap UV',
  445. title:
  446. 'If enabled ,create a lightmap uv in the second UV channel, <br>' +
  447. 'If the second uv already exists , the set will be override . <br>' +
  448. "Otherwise, use default uvs.",
  449. },
  450. preferLocalTimeSpan: {
  451. name: 'Prefer Local Time Span',
  452. title:
  453. 'When exporting FBX animations, whether prefer to use the time range recorded in FBX file.<br>' +
  454. 'If one is not preferred, or one is invalid for use, the time range is robustly calculated.<br>' +
  455. 'Some FBX generators may not export this information.',
  456. },
  457. smartMaterialEnabled: {
  458. name: 'Smart Material Conversion',
  459. title: 'Convert DCC materials to engine builtin materials which match the internal lighting model.',
  460. warn: 'The model feature "Smart Material Conversion" in the project settings is turned off, please enable this feature to modify model level settings.',
  461. },
  462. animationSetting: {
  463. additive: {
  464. header: 'Additive Animation Import Setting',
  465. enabled: {
  466. label: 'Import As Additive',
  467. tooltip: 'if checked, import this animation as additive animation.',
  468. },
  469. refClip: {
  470. label: 'Reference Clip',
  471. tooltip: 'If set, computation of the additive animation with reference pose at first frame of specified clip. ' +
  472. 'Otherwise, reference the pose at first frame of original clip.',
  473. },
  474. },
  475. },
  476. },
  477. textureCube: {
  478. anisotropy: 'Anisotropy',
  479. anisotropyTip: 'Anisotropy',
  480. minFilter: 'Min Filter',
  481. minFilterTip: 'Min Filter',
  482. magFilter: 'Mag Filter',
  483. magFilterTip: 'Mag Filter',
  484. mipFilter: 'Mip Filter',
  485. mipFilterTip: 'Mip Filter',
  486. wrapModeS: 'Wrap Mode S',
  487. wrapModeSTip: 'Wrap Mode S',
  488. wrapModeT: 'Wrap Mode T',
  489. wrapModeTTip: 'Wrap Mode T',
  490. modeWarn:
  491. "Warning: WebGL 1.0 platform doesn't support 'repeat' filter for non-power-of-two textures(runtime fallback to 'clamp-to-edge'), effectively disabling features like the 'tilingOffset' property in many materials.",
  492. },
  493. material: {
  494. 'fail-to-load-custom-inspector': 'material: fail to load custom inspector of {effect}',
  495. 'illegal-inspector-url': "Inspector's URL is not valid",
  496. },
  497. animationGraph: {
  498. edit: 'Edit',
  499. },
  500. animationMask: {
  501. importSkeleton: 'Import Skeleton',
  502. clearAllNodes: 'Clear',
  503. clearAllNodesWarn: 'Are you sure to clear all data of this Animation Mask?',
  504. nodeEnableTip: 'Whether to enable this joint and its descendants.;<br>Alt + Click only toggle the state of itself.',
  505. },
  506. multipleWarning: 'Multi-select editing of this type of asset is not supported.',
  507. check_is_saved: {
  508. message: 'The modified data has not been saved. Do you want to save it?',
  509. assetMessage: "${assetName} is modified, it's data has not been saved. Do you want to save it?",
  510. save: 'Save',
  511. abort: 'Discard',
  512. },
  513. spine_data: {
  514. atlas: 'Atlas',
  515. atlas_warn: 'Failed to set up the atlas and requires a text file with the .atlas suffix',
  516. },
  517. },
  518. menu: {
  519. node: 'Node Menu',
  520. component: 'Component Menu',
  521. copy_property_path: 'Copy Property Path',
  522. copy_property_value: 'Copy Property Value',
  523. paste_property_value: 'Paste Property Value',
  524. remove_component: 'Remove',
  525. reset_component: 'Reset',
  526. move_up_component: 'Move Up',
  527. move_down_component: 'Move Down',
  528. reset_node: 'Reset',
  529. reset_node_position: 'Reset Position',
  530. reset_node_rotation: 'Reset Rotation',
  531. reset_node_scale: 'Reset Scale',
  532. reset_node_mobility: 'Reset Mobility',
  533. copy_node_value: 'Copy Node Values',
  534. paste_node_value: 'Paste Node Values',
  535. copy_node_world_transform: 'Copy Node World Transform',
  536. paste_node_world_transform: 'Paste Node World Transform',
  537. copy_component: 'Copy Component',
  538. paste_component: 'Paste Component As New',
  539. paste_component_values: 'Paste Component Values',
  540. help_url: 'Help Document',
  541. custom_script: 'Custom Script',
  542. },
  543. prefab: {
  544. edit: 'Edit prefab asset',
  545. local: 'Location',
  546. reset: 'Reset from prefab',
  547. save: 'Update prefab asset',
  548. link: 'Connect it to another prefab',
  549. unlink_tip: 'Remove Prefab Connection',
  550. unlink: 'Remove Selected',
  551. unlink_recursively: 'Remove All',
  552. lost: 'Prefab asset is not exist.',
  553. exist: 'Prefab Asset',
  554. },
  555. };