diff --git a/.eslintignore b/.eslintignore index b908d4d3..c09eb00d 100644 --- a/.eslintignore +++ b/.eslintignore @@ -1,5 +1,9 @@ -test/unit/coverage/** -test/unit/*.js -test/e2e/*.js -dist/ -src/**/*.js \ No newline at end of file +test/unit/coverage/** +test/unit/*.js +test/e2e/*.js +dist/ +src/**/*.js +node_modules +dist +vue.config.js +babel.config.js diff --git a/.eslintrc.js b/.eslintrc.js index 1e529a69..d37a3983 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -10,7 +10,8 @@ module.exports = { extends: [ 'plugin:vue/vue3-recommended', '@vue/standard', - '@vue/typescript' + '@vue/typescript/recommended', + '@vue/eslint-config-prettier' ], plugins: ['@typescript-eslint'], rules: { @@ -20,8 +21,24 @@ module.exports = { 'no-async-promise-executor': 'off', 'no-unused-vars': 'off', '@typescript-eslint/no-unused-vars': 'error', - '@typescript-eslint/indent': ['error', 2], - 'vue/no-v-html': 'off' + '@typescript-eslint/indent': 'off', + '@typescript-eslint/no-explicit-any': 'off', + '@typescript-eslint/no-var-requires': 'off', + '@typescript-eslint/ban-ts-comment': [ + 'error', + { + 'ts-expect-error': 'allow-with-description', + 'ts-nocheck': 'allow-with-description' + } + ], + 'vue/no-v-html': 'off', + 'prettier/prettier': [ + 'error', + {}, + { + usePrettierrc: true + } + ] }, parserOptions: { parser: '@typescript-eslint/parser' diff --git a/.prettierrc b/.prettierrc new file mode 100644 index 00000000..feac0f72 --- /dev/null +++ b/.prettierrc @@ -0,0 +1,18 @@ +{ + "arrowParens": "avoid", + "bracketSpacing": true, + "htmlWhitespaceSensitivity": "css", + "insertPragma": false, + "jsxBracketSameLine": false, + "jsxSingleQuote": true, + "printWidth": 120, + "proseWrap": "always", + "quoteProps": "as-needed", + "requirePragma": false, + "semi": false, + "singleQuote": true, + "tabWidth": 2, + "trailingComma": "none", + "useTabs": false, + "endOfLine": "lf" +} diff --git a/.vscode/launch.json b/.vscode/launch.json index de810e08..4401f2e6 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -1,36 +1,35 @@ -{ - "version": "0.2.0", - "configurations": [ - { - "name": "Electron: Main", - "type": "node", - "request": "launch", - "protocol": "inspector", - "runtimeExecutable": "${workspaceRoot}/node_modules/.bin/electron", - "windows": { - "runtimeExecutable": "${workspaceRoot}/node_modules/.bin/electron.cmd" - }, - "preLaunchTask": "electron-debug", - "args": ["--remote-debugging-port=9223", "./dist_electron"], - "outFiles": ["${workspaceFolder}/dist_electron/**/*.js"] - }, - { - "name": "Electron: Renderer", - "type": "chrome", - "request": "attach", - "port": 9223, - "urlFilter": "http://localhost:*", - "timeout": 30000, - "webRoot": "${workspaceFolder}/src", - "sourceMapPathOverrides": { - "webpack:///./src/*": "${webRoot}/*" - } - } - ], - "compounds": [ - { - "name": "Electron: All", - "configurations": ["Electron: Main", "Electron: Renderer"] - } - ] +{ + "version": "0.2.0", + "configurations": [ + { + "name": "Electron: Main", + "type": "node", + "request": "launch", + "runtimeExecutable": "${workspaceRoot}/node_modules/.bin/electron", + "windows": { + "runtimeExecutable": "${workspaceRoot}/node_modules/.bin/electron.cmd" + }, + "preLaunchTask": "electron-debug", + "args": ["--remote-debugging-port=9223", "./dist_electron"], + "outFiles": ["${workspaceFolder}/dist_electron/**/*.js"] + }, + { + "name": "Electron: Renderer", + "type": "chrome", + "request": "attach", + "port": 9223, + "urlFilter": "http://localhost:*", + "timeout": 30000, + "webRoot": "${workspaceFolder}/src", + "sourceMapPathOverrides": { + "webpack:///./src/*": "${webRoot}/*" + } + } + ], + "compounds": [ + { + "name": "Electron: All", + "configurations": ["Electron: Main", "Electron: Renderer"] + } + ] } \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index ee78f65f..36461f16 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,1967 +1,1993 @@ -# :tada: 2.9.0 (2024-06-14) - - -### :sparkles: Features - -* **custom:** add tray tooltip ([8a565c1](https://github.com/Kuingsmile/piclist/commit/8a565c1)) -* **custom:** optimize get config speed ([106290f](https://github.com/Kuingsmile/piclist/commit/106290f)) -* **custom:** refactor all main ipc event ([5ddc182](https://github.com/Kuingsmile/piclist/commit/5ddc182)) -* **custom:** smms delete for repeat file ([07e7a26](https://github.com/Kuingsmile/piclist/commit/07e7a26)) -* **custom:** support create bucket for s3 ([226f170](https://github.com/Kuingsmile/piclist/commit/226f170)) -* **custom:** update i18n force update ([e9c386d](https://github.com/Kuingsmile/piclist/commit/e9c386d)) -* **custom:** use new ssh2 and node-ssh ([2290e4e](https://github.com/Kuingsmile/piclist/commit/2290e4e)) - - -### :bug: Bug Fixes - -* **custom:** change manage file name ([d7028fc](https://github.com/Kuingsmile/piclist/commit/d7028fc)) -* **custom:** fix bug while using webp plugin ([30341d4](https://github.com/Kuingsmile/piclist/commit/30341d4)), closes [#205](https://github.com/Kuingsmile/piclist/issues/205) -* **custom:** fix css error ([0c241bc](https://github.com/Kuingsmile/piclist/commit/0c241bc)) -* **custom:** fix url copy error for dirs ([f1a7a13](https://github.com/Kuingsmile/piclist/commit/f1a7a13)) - - -### :pencil: Documentation - -* **custom:** v2.9.0 changelog ([7226cc8](https://github.com/Kuingsmile/piclist/commit/7226cc8)) - - - -## :tada: 2.8.6 (2024-05-26) - - -### :sparkles: Features - -* **custom:** add ipc event handlers for mini window icon and set on top ([892a147](https://github.com/Kuingsmile/piclist/commit/892a147)) -* **custom:** improve speed of download config files ([e16737e](https://github.com/Kuingsmile/piclist/commit/e16737e)) -* **custom:** update manual source URL based on language configuration ([3587bc5](https://github.com/Kuingsmile/piclist/commit/3587bc5)) -* **custom:** update manual url for en language ([e6ee325](https://github.com/Kuingsmile/piclist/commit/e6ee325)) -* **custom:** write delete msg to log file ([16d6a19](https://github.com/Kuingsmile/piclist/commit/16d6a19)) - - -### :bug: Bug Fixes - -* **custom:** fix el-select option display problem ([4f95014](https://github.com/Kuingsmile/piclist/commit/4f95014)) -* **custom:** remove listener before unmount ([8b21e84](https://github.com/Kuingsmile/piclist/commit/8b21e84)) - - -### :pencil: Documentation - -* **custom:** prepare for 2.8.6 ([4887090](https://github.com/Kuingsmile/piclist/commit/4887090)) - - -### :zap: Performance Improvements - -* **custom:** improve the performance of clipboard watching ([4a0a882](https://github.com/Kuingsmile/piclist/commit/4a0a882)) - - -### :package: Chore - -* **custom:** update to macos-12 for action ([5eb3c9d](https://github.com/Kuingsmile/piclist/commit/5eb3c9d)) - - - -## :tada: 2.8.5 (2024-05-13) - - -### :sparkles: Features - -* **custom:** add support for oss-cn-wuhan ([0153991](https://github.com/Kuingsmile/piclist/commit/0153991)) -* **custom:** optimize aws s3 and buildin rename ([9ca0e4b](https://github.com/Kuingsmile/piclist/commit/9ca0e4b)) -* **custom:** optimize upload api ([e4c4a6f](https://github.com/Kuingsmile/piclist/commit/e4c4a6f)) - - -### :pencil: Documentation - -* **custom:** prepare for v2.8.5 ([3d3b80f](https://github.com/Kuingsmile/piclist/commit/3d3b80f)) - - - -## :tada: 2.8.4 (2024-04-28) - - -### :sparkles: Features - -* **custom:** add feedback entry ([2087d9a](https://github.com/Kuingsmile/piclist/commit/2087d9a)) -* **custom:** auto refresh after change custom url ([939c907](https://github.com/Kuingsmile/piclist/commit/939c907)), closes [#191](https://github.com/Kuingsmile/piclist/issues/191) -* **custom:** change timestamp to milliseconds ([25648ea](https://github.com/Kuingsmile/piclist/commit/25648ea)), closes [#194](https://github.com/Kuingsmile/piclist/issues/194) - - -### :bug: Bug Fixes - -* **custom:** fix aws s3 urlprefix bug ([3681681](https://github.com/Kuingsmile/piclist/commit/3681681)) - - -### :pencil: Documentation - -* **custom:** prepare for 2.8.4 ([bcb4760](https://github.com/Kuingsmile/piclist/commit/bcb4760)) - - - -## :tada: 2.8.3 (2024-04-11) - - -### :sparkles: Features - -* **custom:** exclude gif from format convert ([0b0b2ad](https://github.com/Kuingsmile/piclist/commit/0b0b2ad)) - - - -## :tada: 2.8.2 (2024-04-11) - - -### :bug: Bug Fixes - -* **custom:** exclude gif from format convert ([715f662](https://github.com/Kuingsmile/piclist/commit/715f662)) -* **custom:** fix rename window bug ([45fae30](https://github.com/Kuingsmile/piclist/commit/45fae30)), closes [#186](https://github.com/Kuingsmile/piclist/issues/186) [#117](https://github.com/Kuingsmile/piclist/issues/117) -* **custom:** fix rename window position bug ([1798220](https://github.com/Kuingsmile/piclist/commit/1798220)) -* **custom:** fix watermark bug ([a6e3542](https://github.com/Kuingsmile/piclist/commit/a6e3542)), closes [#188](https://github.com/Kuingsmile/piclist/issues/188) - - -### :pencil: Documentation - -* **custom:** prepare for 2.8.2 ([ef9d34c](https://github.com/Kuingsmile/piclist/commit/ef9d34c)) - - - -## :tada: 2.8.1 (2024-04-09) - - -### :sparkles: Features - -* **custom:** add api doc for 36677 port ([872a1a7](https://github.com/Kuingsmile/piclist/commit/872a1a7)) -* **custom:** add buildin web server ([ab8b62e](https://github.com/Kuingsmile/piclist/commit/ab8b62e)), closes [#180](https://github.com/Kuingsmile/piclist/issues/180) -* **custom:** add log for image processing ([e4c1c7f](https://github.com/Kuingsmile/piclist/commit/e4c1c7f)) -* **custom:** add u flag for gallery regexp match ([aa9e535](https://github.com/Kuingsmile/piclist/commit/aa9e535)) -* **custom:** change buildin rename md5 calculate ([bf8d7b4](https://github.com/Kuingsmile/piclist/commit/bf8d7b4)), closes [#178](https://github.com/Kuingsmile/piclist/issues/178) -* **custom:** exclude svg from watermarker ([75b0c7f](https://github.com/Kuingsmile/piclist/commit/75b0c7f)), closes [#182](https://github.com/Kuingsmile/piclist/issues/182) -* **custom:** optimize the processing of upload path and custom url ([ae40a16](https://github.com/Kuingsmile/piclist/commit/ae40a16)) -* **custom:** optimize webServer ([e6e9472](https://github.com/Kuingsmile/piclist/commit/e6e9472)) -* **custom:** refactor upload and delete api ([475b85e](https://github.com/Kuingsmile/piclist/commit/475b85e)) -* **custom:** update api doc ([922f04f](https://github.com/Kuingsmile/piclist/commit/922f04f)) - - -### :bug: Bug Fixes - -* **custom:** fix compatiblity with typora ([762913c](https://github.com/Kuingsmile/piclist/commit/762913c)) -* **custom:** fix error handling in server startup ([cf0450f](https://github.com/Kuingsmile/piclist/commit/cf0450f)) -* **custom:** fix image watermark bug ([8e5e6d4](https://github.com/Kuingsmile/piclist/commit/8e5e6d4)) - - -### :pencil: Documentation - -* **custom:** add tg group qr code ([5cd34a6](https://github.com/Kuingsmile/piclist/commit/5cd34a6)) -* **custom:** prepare for 2.8.1 ([f73badd](https://github.com/Kuingsmile/piclist/commit/f73badd)) -* **custom:** prepare for 2.81 ([0476346](https://github.com/Kuingsmile/piclist/commit/0476346)) -* **custom:** update tg group link ([20f6acc](https://github.com/Kuingsmile/piclist/commit/20f6acc)) - - - -# :tada: 2.8.0 (2024-03-14) - - -### :sparkles: Features - -* **custom:** add c1n token setting ([1fdc8fc](https://github.com/Kuingsmile/piclist/commit/1fdc8fc)) -* **custom:** add support for cf worker short url service ([9c6504c](https://github.com/Kuingsmile/piclist/commit/9c6504c)), closes [#170](https://github.com/Kuingsmile/piclist/issues/170) -* **custom:** optimize aliyun upload ([2373c64](https://github.com/Kuingsmile/piclist/commit/2373c64)) -* **custom:** support force refresh gallery page ([cafb4d5](https://github.com/Kuingsmile/piclist/commit/cafb4d5)) - - -### :pencil: Documentation - -* **custom:** prepare for v2.8.0 ([ac2cb0d](https://github.com/Kuingsmile/piclist/commit/ac2cb0d)) -* **custom:** update docs ([8d46c9c](https://github.com/Kuingsmile/piclist/commit/8d46c9c)) -* **custom:** update FAQ ([3e17647](https://github.com/Kuingsmile/piclist/commit/3e17647)) -* **custom:** update wechat ([2c1f40a](https://github.com/Kuingsmile/piclist/commit/2c1f40a)) -* **custom:** update wechat group ([dcf5121](https://github.com/Kuingsmile/piclist/commit/dcf5121)) - - - -## :tada: 2.7.4 (2024-02-25) - - -### :sparkles: Features - -* **custom:** add new set item to open config file path ([4be82e0](https://github.com/Kuingsmile/piclist/commit/4be82e0)) - - -### :bug: Bug Fixes - -* **custom:** fix buildin s3 config item bug ([914ec15](https://github.com/Kuingsmile/piclist/commit/914ec15)) -* **custom:** fix config import name error ([4c70946](https://github.com/Kuingsmile/piclist/commit/4c70946)) -* **custom:** fix typo ([d3fdfca](https://github.com/Kuingsmile/piclist/commit/d3fdfca)) -* **custom:** optimize github remote delete ([0767fbc](https://github.com/Kuingsmile/piclist/commit/0767fbc)), closes [#158](https://github.com/Kuingsmile/piclist/issues/158) - - -### :pencil: Documentation - -* **custom:** update chagelog ([3fc3f92](https://github.com/Kuingsmile/piclist/commit/3fc3f92)) -* **custom:** update docs for docker usage ([21cc115](https://github.com/Kuingsmile/piclist/commit/21cc115)) -* **custom:** update wechat group info ([faeeed7](https://github.com/Kuingsmile/piclist/commit/faeeed7)) - - - -## :tada: 2.7.3 (2024-01-30) - - -### :sparkles: Features - -* **custom:** support picbed name click to config page ([48cfaab](https://github.com/Kuingsmile/piclist/commit/48cfaab)) - - -### :bug: Bug Fixes - -* **custom:** fix format convert bug ([ea82600](https://github.com/Kuingsmile/piclist/commit/ea82600)) - - -### :pencil: Documentation - -* **custom:** add wechat group ([d87a014](https://github.com/Kuingsmile/piclist/commit/d87a014)) -* **custom:** update changelog ([3c9f13a](https://github.com/Kuingsmile/piclist/commit/3c9f13a)) - - - -## :tada: 2.7.2 (2024-01-23) - - -### :sparkles: Features - -* **custom:** add build-in aws s3 support, add endpoint for upyun ([efc6a16](https://github.com/Kuingsmile/piclist/commit/efc6a16)), closes [#143](https://github.com/Kuingsmile/piclist/issues/143) [#134](https://github.com/Kuingsmile/piclist/issues/134) -* **custom:** add new area support for qiniu cloud ([89fc032](https://github.com/Kuingsmile/piclist/commit/89fc032)) -* **custom:** manage page auto import support build-in s3 ([48ec494](https://github.com/Kuingsmile/piclist/commit/48ec494)) -* **custom:** support build-in s3 remote delete ([d1e2792](https://github.com/Kuingsmile/piclist/commit/d1e2792)) - - -### :bug: Bug Fixes - -* **custom:** fix gallery copy bug of aws-s3 ([0e81ccd](https://github.com/Kuingsmile/piclist/commit/0e81ccd)) -* **custom:** fix s3 remote delete bug when url is modified locally ([58248bc](https://github.com/Kuingsmile/piclist/commit/58248bc)) -* **custom:** update formatConvertObj to use JSON.stringify ([719e74f](https://github.com/Kuingsmile/piclist/commit/719e74f)) - - -### :pencil: Documentation - -* **custom:** update FAQ ([c6dc1ea](https://github.com/Kuingsmile/piclist/commit/c6dc1ea)) -* **custom:** update version changelog ([9e69702](https://github.com/Kuingsmile/piclist/commit/9e69702)) - - - -## :tada: 2.7.1 (2024-01-15) - - -### :sparkles: Features - -* **custom:** add manual page open setting ([e4f957d](https://github.com/Kuingsmile/piclist/commit/e4f957d)) -* **custom:** add new option to open download page when new version available ([bbbfbda](https://github.com/Kuingsmile/piclist/commit/bbbfbda)), closes [#128](https://github.com/Kuingsmile/piclist/issues/128) -* **custom:** add options setting for webdav ([2dde06d](https://github.com/Kuingsmile/piclist/commit/2dde06d)), closes [#131](https://github.com/Kuingsmile/piclist/issues/131) -* **custom:** add support for lskypro uploader ([531b387](https://github.com/Kuingsmile/piclist/commit/531b387)) -* **custom:** enable mozJPEG encoder by default ([98abeaa](https://github.com/Kuingsmile/piclist/commit/98abeaa)) -* **custom:** manual url will be based on lanaguage setting ([9338fc6](https://github.com/Kuingsmile/piclist/commit/9338fc6)) -* **custom:** support build-in lsky sync delete ([4c03260](https://github.com/Kuingsmile/piclist/commit/4c03260)) -* **custom:** support specific format option for image conversion ([9083a1c](https://github.com/Kuingsmile/piclist/commit/9083a1c)), closes [#124](https://github.com/Kuingsmile/piclist/issues/124) - - -### :bug: Bug Fixes - -* **custom:** fix i18n error ([2a8c435](https://github.com/Kuingsmile/piclist/commit/2a8c435)) -* **custom:** fix sftp upload error when file name is the same ([269a7bf](https://github.com/Kuingsmile/piclist/commit/269a7bf)), closes [#129](https://github.com/Kuingsmile/piclist/issues/129) - - -### :pencil: Documentation - -* **custom:** update docs ([7055f5b](https://github.com/Kuingsmile/piclist/commit/7055f5b)) -* **custom:** update FAQ ([fc0ac6c](https://github.com/Kuingsmile/piclist/commit/fc0ac6c)) -* **custom:** update new version changelog ([3e09dc4](https://github.com/Kuingsmile/piclist/commit/3e09dc4)) - - - -# :tada: 2.7.0 (2023-12-28) - - -### :sparkles: Features - -* **custom:** add delete configuration confirm check ([5fb756c](https://github.com/Kuingsmile/piclist/commit/5fb756c)) -* **custom:** add more log file quick open item ([1884dba](https://github.com/Kuingsmile/piclist/commit/1884dba)) -* **custom:** add preview support for more types of text file ([2c46dca](https://github.com/Kuingsmile/piclist/commit/2c46dca)) -* **custom:** optimize display of manage page ([8306013](https://github.com/Kuingsmile/piclist/commit/8306013)) -* **custom:** remove sponsor from menu ([28e6f47](https://github.com/Kuingsmile/piclist/commit/28e6f47)) - - -### :bug: Bug Fixes - -* **custom:** exclude svg file from remove exif step ([f1084e5](https://github.com/Kuingsmile/piclist/commit/f1084e5)), closes [#123](https://github.com/Kuingsmile/piclist/issues/123) -* **custom:** fix chinease char encode error ([1fbd7a7](https://github.com/Kuingsmile/piclist/commit/1fbd7a7)) -* **custom:** fix tooltip disabled state in login.vue ([99ab80f](https://github.com/Kuingsmile/piclist/commit/99ab80f)) -* **custom:** hide rename button if not supported ([e99f789](https://github.com/Kuingsmile/piclist/commit/e99f789)), closes [#122](https://github.com/Kuingsmile/piclist/issues/122) - - -### :pencil: Documentation - -* **custom:** update docs ([c060261](https://github.com/Kuingsmile/piclist/commit/c060261)) -* **custom:** update docs ([d0df3ec](https://github.com/Kuingsmile/piclist/commit/d0df3ec)) -* **custom:** update version log ([157d0ff](https://github.com/Kuingsmile/piclist/commit/157d0ff)) - - -### :package: Chore - -* **custom:** remove usused files ([a7b7d94](https://github.com/Kuingsmile/piclist/commit/a7b7d94)) - - - -## :tada: 2.6.8 (2023-12-08) - - -### :bug: Bug Fixes - -* **custom:** fix gallery page url copy bug ([3063612](https://github.com/Kuingsmile/piclist/commit/3063612)) -* **custom:** fix log record of uploader ([f901811](https://github.com/Kuingsmile/piclist/commit/f901811)) - - -### :pencil: Documentation - -* **custom:** add support for docker ([2de1a1f](https://github.com/Kuingsmile/piclist/commit/2de1a1f)), closes [#118](https://github.com/Kuingsmile/piclist/issues/118) -* **custom:** update change log ([29dc103](https://github.com/Kuingsmile/piclist/commit/29dc103)) - - -### :package: Chore - -* **custom:** update issue template ([1bd7df3](https://github.com/Kuingsmile/piclist/commit/1bd7df3)) -* **custom:** update workflow file ([c29d40b](https://github.com/Kuingsmile/piclist/commit/c29d40b)) - - - -## :tada: 2.6.7 (2023-11-17) - - -### :sparkles: Features - -* **custom:** add new config field temp dir path ([e968a65](https://github.com/Kuingsmile/piclist/commit/e968a65)), closes [#112](https://github.com/Kuingsmile/piclist/issues/112) - - -### :bug: Bug Fixes - -* **custom:** fix delete event error in server api ([5658ce6](https://github.com/Kuingsmile/piclist/commit/5658ce6)) - - -### :pencil: Documentation - -* **custom:** add docs for upload service using piclist due to a potential typora bug ([02dc71b](https://github.com/Kuingsmile/piclist/commit/02dc71b)) -* **custom:** update docs ([c897c23](https://github.com/Kuingsmile/piclist/commit/c897c23)) - - - -## :tada: 2.6.6 (2023-10-31) - - -### :sparkles: Features - -* **custom:** image format convert will be skipped according to raw format ([9ad13d4](https://github.com/Kuingsmile/piclist/commit/9ad13d4)), closes [#109](https://github.com/Kuingsmile/piclist/issues/109) -* **custom:** optimize detele function for aws s3 ([b7b86b2](https://github.com/Kuingsmile/piclist/commit/b7b86b2)) -* **custom:** support gitea for setting file sync ([95f1035](https://github.com/Kuingsmile/piclist/commit/95f1035)) - - -### :bug: Bug Fixes - -* **custom:** fix sandbox error under dev mode ([2dc96f6](https://github.com/Kuingsmile/piclist/commit/2dc96f6)) - - -### :pencil: Documentation - -* **custom:** update docs ([f0f696a](https://github.com/Kuingsmile/piclist/commit/f0f696a)) - - - -## :tada: 2.6.5 (2023-10-18) - - -### :sparkles: Features - -* **custom:** remove sensitive info in reponse field ([d9f25ac](https://github.com/Kuingsmile/piclist/commit/d9f25ac)) -* **custom:** upload api now return encrypted full result ([0189715](https://github.com/Kuingsmile/piclist/commit/0189715)) - - -### :bug: Bug Fixes - -* **custom:** fix an issue working with watt toolkit of github picbed ([10ec712](https://github.com/Kuingsmile/piclist/commit/10ec712)), closes [#106](https://github.com/Kuingsmile/piclist/issues/106) -* **custom:** fix upload error when filename contains nested path of webdav sftp and local ([92284ac](https://github.com/Kuingsmile/piclist/commit/92284ac)) - - -### :pencil: Documentation - -* **custom:** update docs ([65cfe6e](https://github.com/Kuingsmile/piclist/commit/65cfe6e)) - - - -## :tada: 2.6.4 (2023-10-14) - - -### :sparkles: Features - -* add piclist itself as a picbed ([9f49fc0](https://github.com/Kuingsmile/piclist/commit/9f49fc0)) -* **custom:** add tk analytic ([e8ea905](https://github.com/Kuingsmile/piclist/commit/e8ea905)) - - -### :bug: Bug Fixes - -* **custom:** fix bump version error ([6f8e4e1](https://github.com/Kuingsmile/piclist/commit/6f8e4e1)) -* fix font file download logic ([32de515](https://github.com/Kuingsmile/piclist/commit/32de515)) -* fix macos right click menu file bug ([75601e7](https://github.com/Kuingsmile/piclist/commit/75601e7)) -* fix manage config file sync bug ([47b61e6](https://github.com/Kuingsmile/piclist/commit/47b61e6)) - - -### :pencil: Documentation - -* **custom:** update docs ([d1780f2](https://github.com/Kuingsmile/piclist/commit/d1780f2)) - - -### :package: Chore - -* **custom:** migrate to node-bump-version ([567af45](https://github.com/Kuingsmile/piclist/commit/567af45)) - - - -## :tada: 2.6.3 (2023-10-10) - - -### :sparkles: Features - -* add authoration key for built-in server ([06c518d](https://github.com/Kuingsmile/piclist/commit/06c518d)) -* build-in server support formdata now ([615cbc5](https://github.com/Kuingsmile/piclist/commit/615cbc5)), closes [#103](https://github.com/Kuingsmile/piclist/issues/103) -* built-in server will listen to 0.0.0.0 other than 127.0.0.1 ([54d289c](https://github.com/Kuingsmile/piclist/commit/54d289c)) - - -### :bug: Bug Fixes - -* fix an issue of watermark ([64952e1](https://github.com/Kuingsmile/piclist/commit/64952e1)), closes [#102](https://github.com/Kuingsmile/piclist/issues/102) -* fix local path picbed upload error ([392e178](https://github.com/Kuingsmile/piclist/commit/392e178)) -* fix upload api copy error after changing to 0.0.0.0 ([7e40808](https://github.com/Kuingsmile/piclist/commit/7e40808)) - - -### :pencil: Documentation - -* update docs ([573265c](https://github.com/Kuingsmile/piclist/commit/573265c)) - - - -## :tada: 2.6.2 (2023-09-30) - - -### :sparkles: Features - -* optimize filename display in gallery page ([0abfeff](https://github.com/Kuingsmile/piclist/commit/0abfeff)) -* update dialog will show change log now ([ef1812a](https://github.com/Kuingsmile/piclist/commit/ef1812a)) - - -### :bug: Bug Fixes - -* fix sftp delete error when the user don't have ssh permission ([819dfbb](https://github.com/Kuingsmile/piclist/commit/819dfbb)), closes [#100](https://github.com/Kuingsmile/piclist/issues/100) -* fix type error caused by fast-xml-parser ([0f100e5](https://github.com/Kuingsmile/piclist/commit/0f100e5)) - - -### :pencil: Documentation - -* update changelog ([d3ac2c5](https://github.com/Kuingsmile/piclist/commit/d3ac2c5)) - - - -## :tada: 2.6.1 (2023-09-13) - - -### :sparkles: Features - -* gif will be converted to animated webp now ([09a636f](https://github.com/Kuingsmile/PicList/commit/09a636f)) -* manual page now open in a new window ([b197b32](https://github.com/Kuingsmile/PicList/commit/b197b32)) -* webdav picbed now support digest auth ([2e655a4](https://github.com/Kuingsmile/PicList/commit/2e655a4)) - - -### :bug: Bug Fixes - -* fix an issue of check box in manage page ([d776600](https://github.com/Kuingsmile/PicList/commit/d776600)) - - - -# :tada: 2.6.0 (2023-09-11) - - -### :sparkles: Features - -* batch rename in gallery will not modify un-matched files ([079b034](https://github.com/Kuingsmile/PicList/commit/079b034)) -* optimize memory use and loading and searching speed of manage page for 30 fold ([fb070e7](https://github.com/Kuingsmile/PicList/commit/fb070e7)) -* optimize title text jump action of upload page ([dfb6f76](https://github.com/Kuingsmile/PicList/commit/dfb6f76)) - - -### :zap: Performance Improvements - -* fix memory leak of main page ([5392d9e](https://github.com/Kuingsmile/PicList/commit/5392d9e)) -* fix memory leak of uoload and setting page ([219cbbb](https://github.com/Kuingsmile/PicList/commit/219cbbb)) - - - -## :tada: 2.5.3 (2023-09-07) - - -### :sparkles: Features - -* add telegra.ph picbed support ([dd6bfe6](https://github.com/Kuingsmile/PicList/commit/dd6bfe6)) -* add vertically and horizontally flip treat options for image processing ([cb76a34](https://github.com/Kuingsmile/PicList/commit/cb76a34)) -* optimize api copy ([08b45bc](https://github.com/Kuingsmile/PicList/commit/08b45bc)) -* upload api now support url query picbed and configname ([2fcec70](https://github.com/Kuingsmile/PicList/commit/2fcec70)), closes [#93](https://github.com/Kuingsmile/PicList/issues/93) - - -### :pencil: Documentation - -* update readme ([f9a3f24](https://github.com/Kuingsmile/PicList/commit/f9a3f24)) - - - -## :tada: 2.5.2 (2023-09-04) - - -### :sparkles: Features - -* add antileechtoken and expiretime for upyun manage ([ea61614](https://github.com/Kuingsmile/PicList/commit/ea61614)) -* add vs-piclist, a vscode plugin works with piclist ([373dfa2](https://github.com/Kuingsmile/PicList/commit/373dfa2)) -* update piclist core ([0eb7bac](https://github.com/Kuingsmile/PicList/commit/0eb7bac)) - - -### :bug: Bug Fixes - -* fix upload failed error of aliyun upyun and github ([320ac73](https://github.com/Kuingsmile/PicList/commit/320ac73)) -* remove circular dependency ([9ef5136](https://github.com/Kuingsmile/PicList/commit/9ef5136)) - - -### :package: Chore - -* update readme ([0a02b96](https://github.com/Kuingsmile/PicList/commit/0a02b96)) - - - -## :tada: 2.5.1 (2023-08-29) - - -### :sparkles: Features - -* add anti leech token for upyun ([4894f09](https://github.com/Kuingsmile/PicList/commit/4894f09)) -* add ts support for upyun ([95faa5b](https://github.com/Kuingsmile/PicList/commit/95faa5b)) -* update manage config page reflink ([636596a](https://github.com/Kuingsmile/PicList/commit/636596a)) -* using webview to show manual website ([bc7a446](https://github.com/Kuingsmile/PicList/commit/bc7a446)) - - -### :bug: Bug Fixes - -* fix an issue where files uploaded to minio using s3 plugin can't be deleted remotely ([80db40b](https://github.com/Kuingsmile/PicList/commit/80db40b)) -* fix custom domain error of minio ([0c8ea83](https://github.com/Kuingsmile/PicList/commit/0c8ea83)) -* fix ImgurApi.baseUrl is undefined ([7ada948](https://github.com/Kuingsmile/PicList/commit/7ada948)) - - -### :pencil: Documentation - -* add download counts for docs ([3085385](https://github.com/Kuingsmile/PicList/commit/3085385)) - - - -# :tada: 2.5.0 (2023-08-23) - - -### :sparkles: Features - -* add cloud delete support for alist v3 plugin ([16bc8ec](https://github.com/Kuingsmile/PicList/commit/16bc8ec)) -* add error handling for webdav image preview component ([c36a5b8](https://github.com/Kuingsmile/PicList/commit/c36a5b8)) -* add imagelocal component ([9d63799](https://github.com/Kuingsmile/PicList/commit/9d63799)) -* add notification for single rename of manage page ([19f2b18](https://github.com/Kuingsmile/PicList/commit/19f2b18)) -* add remote delete support for huawei obs and doge cloud ([746360b](https://github.com/Kuingsmile/PicList/commit/746360b)) -* add support for dogeCloud manage ([3040f4b](https://github.com/Kuingsmile/PicList/commit/3040f4b)), closes [#73](https://github.com/Kuingsmile/PicList/issues/73) -* add update all plugins ([3e32cbb](https://github.com/Kuingsmile/PicList/commit/3e32cbb)) -* add update progress bar and some optimization ([5173488](https://github.com/Kuingsmile/PicList/commit/5173488)), closes [#83](https://github.com/Kuingsmile/PicList/issues/83) -* add webPath for webdav picBed manage ([33b36d6](https://github.com/Kuingsmile/PicList/commit/33b36d6)) -* finish the implemention of sftp manage ([c7e81eb](https://github.com/Kuingsmile/PicList/commit/c7e81eb)) -* migrate from aws-sdk v2 to v3 ([13852a5](https://github.com/Kuingsmile/PicList/commit/13852a5)) -* optimize filename display ([2336483](https://github.com/Kuingsmile/PicList/commit/2336483)) -* optimize manage page UI, add new version check for plugin page ([e8189b0](https://github.com/Kuingsmile/PicList/commit/e8189b0)) - - -### :bug: Bug Fixes - -* add local path picbed into delete api of http server ([f585bb4](https://github.com/Kuingsmile/PicList/commit/f585bb4)) -* file sort order will not changed after force refresh now ([52f0fce](https://github.com/Kuingsmile/PicList/commit/52f0fce)) -* fix a bug of webdav image preview component ([f6c9a78](https://github.com/Kuingsmile/PicList/commit/f6c9a78)) -* fix an issue related with layout style ([083917e](https://github.com/Kuingsmile/PicList/commit/083917e)) -* fix s3 upload task function ([78be49d](https://github.com/Kuingsmile/PicList/commit/78be49d)) -* fix some bugs of manage page ([6f40c09](https://github.com/Kuingsmile/PicList/commit/6f40c09)) - - -### :pencil: Documentation - -* update documents ([1dcf54f](https://github.com/Kuingsmile/PicList/commit/1dcf54f)) -* update FAQ ([562f3c2](https://github.com/Kuingsmile/PicList/commit/562f3c2)) - - -### :package: Chore - -* chore work ([837027e](https://github.com/Kuingsmile/PicList/commit/837027e)) - - -### :zap: Performance Improvements - -* optimize the performance of main page ([4093a49](https://github.com/Kuingsmile/PicList/commit/4093a49)) - - - -## :tada: 1.9.9 (2023-08-01) - - -### :sparkles: Features - -* add new config item to skip resizing small pictures ([e6b80e8](https://github.com/Kuingsmile/PicList/commit/e6b80e8)), closes [#81](https://github.com/Kuingsmile/PicList/issues/81) -* optimize gallery page UI ([3bf4683](https://github.com/Kuingsmile/PicList/commit/3bf4683)) -* option sslenabled of webdav is not required now ([530e30c](https://github.com/Kuingsmile/PicList/commit/530e30c)) -* support scale images by fixed width or fixed height ([3cc118e](https://github.com/Kuingsmile/PicList/commit/3cc118e)), closes [#81](https://github.com/Kuingsmile/PicList/issues/81) - - -### :bug: Bug Fixes - -* exclude gif picture from image process pipline ([40efb5d](https://github.com/Kuingsmile/PicList/commit/40efb5d)), closes [#76](https://github.com/Kuingsmile/PicList/issues/76) -* fix an issue of url upload and wechat urls ([baf358d](https://github.com/Kuingsmile/PicList/commit/baf358d)), closes [#80](https://github.com/Kuingsmile/PicList/issues/80) -* fix an issue of webdav and file rename ([3e76ba1](https://github.com/Kuingsmile/PicList/commit/3e76ba1)), closes [#79](https://github.com/Kuingsmile/PicList/issues/79) -* modify gallery page UI ([bce6303](https://github.com/Kuingsmile/PicList/commit/bce6303)), closes [#77](https://github.com/Kuingsmile/PicList/issues/77) - - - -## :tada: 1.9.8 (2023-07-20) - - -### :sparkles: Features - -* add a new config item to close upload result notification ([c1698e8](https://github.com/Kuingsmile/PicList/commit/c1698e8)), closes [#74](https://github.com/Kuingsmile/PicList/issues/74) -* add two new config items to control mini window and main window ([2eff772](https://github.com/Kuingsmile/PicList/commit/2eff772)) -* pictures uploaded using webdav and local path can be previewed in gallery now ([6a94503](https://github.com/Kuingsmile/PicList/commit/6a94503)), closes [#64](https://github.com/Kuingsmile/PicList/issues/64) - - -### :bug: Bug Fixes - -* fix a bug of file server when the request path is url encoded ([48b13b2](https://github.com/Kuingsmile/PicList/commit/48b13b2)) -* fix an issue related with yourls ([58486a3](https://github.com/Kuingsmile/PicList/commit/58486a3)), closes [#72](https://github.com/Kuingsmile/PicList/issues/72) - - - -## :tada: 1.9.7 (2023-07-12) - - -### :sparkles: Features - -* add a new buildin picbed - local pc ([5018ce7](https://github.com/Kuingsmile/PicList/commit/5018ce7)) -* add custom short url server ([d4a22f9](https://github.com/Kuingsmile/PicList/commit/d4a22f9)), closes [#69](https://github.com/Kuingsmile/PicList/issues/69) [#69](https://github.com/Kuingsmile/PicList/issues/69) - - -### :bug: Bug Fixes - -* fix gallery page display bugs ([b6f5d9f](https://github.com/Kuingsmile/PicList/commit/b6f5d9f)) -* fix url bug of qiniu ([3b3c70a](https://github.com/Kuingsmile/PicList/commit/3b3c70a)), closes [#70](https://github.com/Kuingsmile/PicList/issues/70) - - -### :pencil: Documentation - -* reopen wechat group ([57bf45f](https://github.com/Kuingsmile/PicList/commit/57bf45f)) - - - -## :tada: 1.9.6 (2023-06-30) - - -### :bug: Bug Fixes - -* fix an issue which cause upload failed ([db5a2af](https://github.com/Kuingsmile/PicList/commit/db5a2af)), closes [#66](https://github.com/Kuingsmile/PicList/issues/66) - - - -## :tada: 1.9.5 (2023-06-29) - - -### :sparkles: Features - -* optimize image convert for imgur ([38d03fc](https://github.com/Kuingsmile/PicList/commit/38d03fc)) - - -### :bug: Bug Fixes - -* remove gif from extension list which can be converted ([b72cdf4](https://github.com/Kuingsmile/PicList/commit/b72cdf4)), closes [#60](https://github.com/Kuingsmile/PicList/issues/60) - - -### :package: Chore - -* add team id ([f6b4806](https://github.com/Kuingsmile/PicList/commit/f6b4806)) -* add team id for notarizing app ([749c66e](https://github.com/Kuingsmile/PicList/commit/749c66e)) -* add XCODE_TEAM_ID ([0660218](https://github.com/Kuingsmile/PicList/commit/0660218)) -* using notarytool instead of altool which will be disabled on 2023.11.01 ([37ea225](https://github.com/Kuingsmile/PicList/commit/37ea225)) - - - -## :tada: 1.9.4 (2023-06-11) - - -### :sparkles: Features - -* mini page will not be closed when main page is opened ([8a19ca2](https://github.com/Kuingsmile/PicList/commit/8a19ca2)) - - -### :bug: Bug Fixes - -* fix an issue that clipboard listening is not working in windows ([0800456](https://github.com/Kuingsmile/PicList/commit/0800456)) -* fix i18n bug ([0c56de5](https://github.com/Kuingsmile/PicList/commit/0c56de5)) - - -### :package: Chore - -* add new action script ([917e69a](https://github.com/Kuingsmile/PicList/commit/917e69a)) -* fix send email action ([fe0d779](https://github.com/Kuingsmile/PicList/commit/fe0d779)) - - -### :pencil: Documentation - -* chage wechat group ([25b845e](https://github.com/Kuingsmile/PicList/commit/25b845e)) -* fix wechat id error ([b971f05](https://github.com/Kuingsmile/PicList/commit/b971f05)) - - - -## :tada: 1.9.3 (2023-05-23) - - -### :sparkles: Features - -* add addvanced rename feature ([c4b0235](https://github.com/Kuingsmile/PicList/commit/c4b0235)) -* add always on top icon on main page ([8f512fe](https://github.com/Kuingsmile/PicList/commit/8f512fe)) -* auto close timestamp rename when advanced rename is enabled ([0c6e8d1](https://github.com/Kuingsmile/PicList/commit/0c6e8d1)) -* rewrite the layout of the settings page ([5ccb899](https://github.com/Kuingsmile/PicList/commit/5ccb899)) - - -### :bug: Bug Fixes - -* fix batch delete bug of gallery page ([86505c1](https://github.com/Kuingsmile/PicList/commit/86505c1)), closes [#54](https://github.com/Kuingsmile/PicList/issues/54) - - - -## :tada: 1.9.2 (2023-05-21) - - -### :sparkles: Features - -* beautify UI ([e733f6c](https://github.com/Kuingsmile/PicList/commit/e733f6c)) -* optimize gallery page and plugin page UI ([0c7f49b](https://github.com/Kuingsmile/PicList/commit/0c7f49b)) - - -### :bug: Bug Fixes - -* fix config dialog bug of plugin page ([bd9e33c](https://github.com/Kuingsmile/PicList/commit/bd9e33c)) -* fixed the issue where bulk copying links was not functioning properly ([f8a886c](https://github.com/Kuingsmile/PicList/commit/f8a886c)) - - -### :zap: Performance Improvements - -* remove talkingdata ([d9d2a84](https://github.com/Kuingsmile/PicList/commit/d9d2a84)) - - - -## :tada: 1.9.1 (2023-05-11) - - -### :sparkles: Features - -* add webpath for webdav, fix urlEncode bug ([5628901](https://github.com/Kuingsmile/PicList/commit/5628901)) - - -### :pencil: Documentation - -* update docs ([80057c8](https://github.com/Kuingsmile/PicList/commit/80057c8)) - - - -# :tada: 1.9.0 (2023-05-07) - - -### :sparkles: Features - -* optimize url encode and filename encode ([8d1b817](https://github.com/Kuingsmile/PicList/commit/8d1b817)) - - -### :bug: Bug Fixes - -* fix several bugs of manage page and minipage ([5dbac83](https://github.com/Kuingsmile/PicList/commit/5dbac83)) - - - -## :tada: 1.8.4 (2023-05-06) - - -### :sparkles: Features - -* support heic convert now ([b23dfd4](https://github.com/Kuingsmile/PicList/commit/b23dfd4)) - - - -## :tada: 1.8.3 (2023-05-06) - - -### :sparkles: Features - -* remember last time choosed sort type ([efd9d54](https://github.com/Kuingsmile/PicList/commit/efd9d54)) - - -### :bug: Bug Fixes - -* fix config file sync bug ([344088f](https://github.com/Kuingsmile/PicList/commit/344088f)) - - -### :pencil: Documentation - -* modify readme ([d8eea9c](https://github.com/Kuingsmile/PicList/commit/d8eea9c)) - - - -## :tada: 1.8.2 (2023-05-05) - - -### :sparkles: Features - -* auto import of manage page can be closed now ([ebcfbdf](https://github.com/Kuingsmile/PicList/commit/ebcfbdf)) -* sync with picgo 2.4.0 beta 1 ([e8d54fa](https://github.com/Kuingsmile/PicList/commit/e8d54fa)) - - -### :bug: Bug Fixes - -* fix configure files sync bug ([a1981ab](https://github.com/Kuingsmile/PicList/commit/a1981ab)) - - - -## :tada: 1.8.1 (2023-05-02) - - -### :sparkles: Features - -* url encode in manage page ([9fa989e](https://github.com/Kuingsmile/PicList/commit/9fa989e)) - - -### :pencil: Documentation - -* update Features ([b97f79b](https://github.com/Kuingsmile/PicList/commit/b97f79b)) - - - -# :tada: 1.8.0 (2023-05-02) - - -### :sparkles: Features - -* add config sync module ([ab4e31f](https://github.com/Kuingsmile/PicList/commit/ab4e31f)) -* add interval for sync setting ([7150bf3](https://github.com/Kuingsmile/PicList/commit/7150bf3)) - - - -## :tada: 1.7.1 (2023-04-18) - - -### :sparkles: Features - -* add delete local file after uploading, fix compatibility with auto-delete ([6b49198](https://github.com/Kuingsmile/PicList/commit/6b49198)), closes [#40](https://github.com/Kuingsmile/PicList/issues/40) -* support imgur auth upload and delete ([d5f7121](https://github.com/Kuingsmile/PicList/commit/d5f7121)) -* support short url now ([d554581](https://github.com/Kuingsmile/PicList/commit/d554581)) - - -### :bug: Bug Fixes - -* fix copy link bug ([72c9374](https://github.com/Kuingsmile/PicList/commit/72c9374)) -* fix tray image after drag ([22f8aa8](https://github.com/Kuingsmile/PicList/commit/22f8aa8)) -* sync with picgo, suppress epiep error ([dc1458f](https://github.com/Kuingsmile/PicList/commit/dc1458f)) - - -### :package: Chore - -* fix markdown format err ([19e341a](https://github.com/Kuingsmile/PicList/commit/19e341a)) - - -### :pencil: Documentation - -* update docs ([15d34ac](https://github.com/Kuingsmile/PicList/commit/15d34ac)) -* update typora 1.6.0-dev support ([34997f5](https://github.com/Kuingsmile/PicList/commit/34997f5)) - - -### :zap: Performance Improvements - -* optimize imgur album list speed ([6c5fdf1](https://github.com/Kuingsmile/PicList/commit/6c5fdf1)) -* remove duplicate check of new version, refactor getLatestVersion func ([ef917ce](https://github.com/Kuingsmile/PicList/commit/ef917ce)) - - - -# :tada: 1.7.0 (2023-04-12) - - -### :sparkles: Features - -* add clipbord listening menu for mini page ([04d6705](https://github.com/Kuingsmile/PicList/commit/04d6705)) - - -### :bug: Bug Fixes - -* fix macos traypage bug ([b20c6d7](https://github.com/Kuingsmile/PicList/commit/b20c6d7)) -* mac shortcut bug ([9305293](https://github.com/Kuingsmile/PicList/commit/9305293)) - - -### :package: Chore - -* add sha256 calculate script for macos build ([0bf9e91](https://github.com/Kuingsmile/PicList/commit/0bf9e91)) -* add sha256 command ([ccafb2d](https://github.com/Kuingsmile/PicList/commit/ccafb2d)) - - - -## :tada: 1.6.2 (2023-04-11) - - -### :sparkles: Features - -* add check to avoid hide dock and tray at the same time ([8421925](https://github.com/Kuingsmile/PicList/commit/8421925)) -* add config import for picbed setting ([1b15ccb](https://github.com/Kuingsmile/PicList/commit/1b15ccb)) -* add config item to hide dock, only for macos ([0466fa7](https://github.com/Kuingsmile/PicList/commit/0466fa7)) -* add url encode setting ([8c7c3b2](https://github.com/Kuingsmile/PicList/commit/8c7c3b2)) -* automatically upload when clipboard changes ([3c3e7cd](https://github.com/Kuingsmile/PicList/commit/3c3e7cd)), closes [#35](https://github.com/Kuingsmile/PicList/issues/35) -* on macos, tray icon can be hidden now ([4043dbf](https://github.com/Kuingsmile/PicList/commit/4043dbf)) - - -### :bug: Bug Fixes - -* fix repeated upload bug when listening clipboard ([6c18bcb](https://github.com/Kuingsmile/PicList/commit/6c18bcb)) -* fix some bugs ([7e0991d](https://github.com/Kuingsmile/PicList/commit/7e0991d)) -* hide dock setting for non-darwin os ([fe8112b](https://github.com/Kuingsmile/PicList/commit/fe8112b)) - - -### :package: Chore - -* modify link generate script ([9915526](https://github.com/Kuingsmile/PicList/commit/9915526)) -* remove unusable console.log ([dce26ff](https://github.com/Kuingsmile/PicList/commit/dce26ff)) - - -### :zap: Performance Improvements - -* stop clipboard listening when app quit ([993d2ac](https://github.com/Kuingsmile/PicList/commit/993d2ac)) - - -### :pencil: Documentation - -* add homebrew install describe ([350e6a3](https://github.com/Kuingsmile/PicList/commit/350e6a3)) - - - -## :tada: 1.6.1 (2023-04-08) - - -### :bug: Bug Fixes - -* fix bug that traypage copy link func not work ([acf6609](https://github.com/Kuingsmile/PicList/commit/acf6609)), closes [#32](https://github.com/Kuingsmile/PicList/issues/32) -* fix tcyun delete bug ([37dfe49](https://github.com/Kuingsmile/PicList/commit/37dfe49)) - - -### :pencil: Documentation - -* update FAQ ([d259a01](https://github.com/Kuingsmile/PicList/commit/d259a01)) -* update README ([4770fcd](https://github.com/Kuingsmile/PicList/commit/4770fcd)) - - - -# :tada: 1.6.0 (2023-04-06) - - -### :sparkles: Features - -* add batch rename , sort and more search options for gallery ([38e48df](https://github.com/Kuingsmile/PicList/commit/38e48df)) -* add dock menu and appbar menu ([19e1191](https://github.com/Kuingsmile/PicList/commit/19e1191)) -* support auto update now ([e39cac9](https://github.com/Kuingsmile/PicList/commit/e39cac9)) -* users can set start mode now, mini window position will be remembered ([76c0cfb](https://github.com/Kuingsmile/PicList/commit/76c0cfb)) - - -### :bug: Bug Fixes - -* fix linux build bug caused by sharp ([1dc70e6](https://github.com/Kuingsmile/PicList/commit/1dc70e6)), closes [#29](https://github.com/Kuingsmile/PicList/issues/29) - - -### :package: Chore - -* change macos icon files ([107e8ae](https://github.com/Kuingsmile/PicList/commit/107e8ae)) -* modify icon size ([ca950db](https://github.com/Kuingsmile/PicList/commit/ca950db)) - - -### :pencil: Documentation - -* update FAQ ([a05fbf6](https://github.com/Kuingsmile/PicList/commit/a05fbf6)) - - - -## :tada: 1.5.3 (2023-03-29) - - -### :bug: Bug Fixes - -* fix aliyun upload bug ([ef018ff](https://github.com/Kuingsmile/PicList/commit/ef018ff)) - - -### :pencil: Documentation - -* remove from mac app store, and add describe for refund ([1aa133f](https://github.com/Kuingsmile/PicList/commit/1aa133f)) - - - -## :tada: 1.5.2 (2023-03-28) - - -### :sparkles: Features - -* add /delete route for build in http server ([9e8ae93](https://github.com/Kuingsmile/PicList/commit/9e8ae93)) - - -### :bug: Bug Fixes - -* fix url encode bug when filename contains special chars ([a736190](https://github.com/Kuingsmile/PicList/commit/a736190)) - - - -## :tada: 1.5.1 (2023-03-24) - - -### :sparkles: Features - -* optimize UI, rewrite some css settings ([f47d273](https://github.com/Kuingsmile/PicList/commit/f47d273)) -* picbeds config can be reseted to empty now ([086b287](https://github.com/Kuingsmile/PicList/commit/086b287)) - - -### :bug: Bug Fixes - -* fix backgroud color mismatch problem on MacOS ([f0daf97](https://github.com/Kuingsmile/PicList/commit/f0daf97)) - - - -# :tada: 1.5.0 (2023-03-20) - - -### :sparkles: Features - -* click picbed name can link to login page now, add some i18n key ([d725e71](https://github.com/Kuingsmile/PicList/commit/d725e71)) -* click the picbed name at upload page will route to config page now ([016075e](https://github.com/Kuingsmile/PicList/commit/016075e)) -* complete i18n support for manage func ([a473e25](https://github.com/Kuingsmile/PicList/commit/a473e25)) -* i18n of new bucket config ([67fe85e](https://github.com/Kuingsmile/PicList/commit/67fe85e)) -* users can customize mini window icon now ([8feb30a](https://github.com/Kuingsmile/PicList/commit/8feb30a)) - - - -## :tada: 1.4.3 (2023-03-14) - - -### :bug: Bug Fixes - -* downgrade element-plus , fix picbed setting bug ([d2b048f](https://github.com/Kuingsmile/PicList/commit/d2b048f)) -* fix webdav path error when setting to root dir ([1371e95](https://github.com/Kuingsmile/PicList/commit/1371e95)) - - -### :pencil: Documentation - -* picList is available at Mac App Store ! ([4613aa3](https://github.com/Kuingsmile/PicList/commit/4613aa3)) - - - -## :tada: 1.4.2 (2023-03-09) - - -### :sparkles: Features - -* update piclist-core, reduce package size ([c88dd1d](https://github.com/Kuingsmile/PicList/commit/c88dd1d)) - - -### :bug: Bug Fixes - -* fix aliasArray bug ([b027a73](https://github.com/Kuingsmile/PicList/commit/b027a73)) -* fix config name validate rule ([f715233](https://github.com/Kuingsmile/PicList/commit/f715233)) -* fix sharp build error on MacOS M1 chip ([1240afa](https://github.com/Kuingsmile/PicList/commit/1240afa)) - - -### :package: Chore - -* add mas.yml ([198157d](https://github.com/Kuingsmile/PicList/commit/198157d)) -* fix main.yml syntax error ([27b92d8](https://github.com/Kuingsmile/PicList/commit/27b92d8)) - - - -## :tada: 1.4.1 (2023-03-07) - - -### :bug: Bug Fixes - -* fix config ([040ad5f](https://github.com/Kuingsmile/PicList/commit/040ad5f)) -* fix picbed config page scroll bug ([d515cc5](https://github.com/Kuingsmile/PicList/commit/d515cc5)) -* mac.yml ([def9502](https://github.com/Kuingsmile/PicList/commit/def9502)) - - -### :package: Chore - -* add app sign and for mac, add win ([ab48363](https://github.com/Kuingsmile/PicList/commit/ab48363)) -* fix mac.yml ([4a9d646](https://github.com/Kuingsmile/PicList/commit/4a9d646)) -* mac auto build test ([ed74764](https://github.com/Kuingsmile/PicList/commit/ed74764)) -* mac build test ([bc2749e](https://github.com/Kuingsmile/PicList/commit/bc2749e)) -* macos code signing test ([4915290](https://github.com/Kuingsmile/PicList/commit/4915290)) -* update mac autoflow ([f4d313f](https://github.com/Kuingsmile/PicList/commit/f4d313f)) -* update mac.yml ([b3d8e4d](https://github.com/Kuingsmile/PicList/commit/b3d8e4d)) - - -### :pencil: Documentation - -* update README.md ([a2ffd4f](https://github.com/Kuingsmile/PicList/commit/a2ffd4f)) - - - -# :tada: 1.4.0 (2023-03-04) - - -### :sparkles: Features - -* add buildin watermark process and image resize/compress/rotate/convert feature ([da42bb4](https://github.com/Kuingsmile/PicList/commit/da42bb4)) - - - -## :tada: 1.3.1 (2023-03-02) - - -### :sparkles: Features - -* add {atuo} for rename placholders, represent for auto increment number ([d6df9bc](https://github.com/Kuingsmile/PicList/commit/d6df9bc)), closes [#14](https://github.com/Kuingsmile/PicList/issues/14) -* add file batch rename, and support placeholder now ([327a7ac](https://github.com/Kuingsmile/PicList/commit/327a7ac)), closes [#14](https://github.com/Kuingsmile/PicList/issues/14) -* now prompts if there are duplicate file names ([8ba46d9](https://github.com/Kuingsmile/PicList/commit/8ba46d9)) - - - -# :tada: 1.3.0 (2023-02-27) - - -### :sparkles: Features - -* downloaded file or folder can keey folder structure now ([1e9c87d](https://github.com/Kuingsmile/PicList/commit/1e9c87d)) -* folder structure can be keeped when uploading folders ([750ea58](https://github.com/Kuingsmile/PicList/commit/750ea58)) - - -### :bug: Bug Fixes - -* optimized software UI ([d6ce555](https://github.com/Kuingsmile/PicList/commit/d6ce555)), closes [#12](https://github.com/Kuingsmile/PicList/issues/12) - - - -## :tada: 1.2.2 (2023-02-24) - - -### :sparkles: Features - -* add grid view for file explorer ([69e1b48](https://github.com/Kuingsmile/PicList/commit/69e1b48)) - - - -## :tada: 1.2.1 (2023-02-23) - - -### :sparkles: Features - -* add picbed config name in upload page ([0a31143](https://github.com/Kuingsmile/PicList/commit/0a31143)) -* configs of picBeds can be auto imported to manage config now ([be68f0f](https://github.com/Kuingsmile/PicList/commit/be68f0f)) -* picture upload support webdav now ([1dacd3c](https://github.com/Kuingsmile/PicList/commit/1dacd3c)) - - - -# :tada: 1.2.0 (2023-02-22) - - -### :sparkles: Features - -* add concurrency limit for download ([8440b75](https://github.com/Kuingsmile/PicList/commit/8440b75)) -* add video,text file and markdown file preview ([b3ce9b9](https://github.com/Kuingsmile/PicList/commit/b3ce9b9)) - - - -## :tada: 1.1.1 (2023-02-21) - - -### :bug: Bug Fixes - -* fix auto link copy funtion failure bug when using custom format ([9c96870](https://github.com/Kuingsmile/PicList/commit/9c96870)) - - - -# :tada: 1.1.0 (2023-02-20) - - -### :sparkles: Features - -* s3-compatible storage is supported now ([176bdac](https://github.com/Kuingsmile/PicList/commit/176bdac)) - - -### :bug: Bug Fixes - -* fix S3 deletion endpoint parse bug ([7f7f400](https://github.com/Kuingsmile/PicList/commit/7f7f400)) - - -### :pencil: Documentation - -* update README.md ([0263351](https://github.com/Kuingsmile/PicList/commit/0263351)) - - - -## :tada: 1.0.2 (2023-02-17) - - -### :sparkles: Features - -* album remote deletion now Support picgo-plugin-s3 ([21e870d](https://github.com/Kuingsmile/PicList/commit/21e870d)) - - -### :bug: Bug Fixes - -* fix qiniu file modified time error ([681da4a](https://github.com/Kuingsmile/PicList/commit/681da4a)) - - -### :pencil: Documentation - -* update README.md ([23652d9](https://github.com/Kuingsmile/PicList/commit/23652d9)) -* update README.md ([0488ad3](https://github.com/Kuingsmile/PicList/commit/0488ad3)) - - - -## :tada: 1.0.1 (2023-02-17) - - -### :bug: Bug Fixes - -* fix proxy setting bug ([22bee0b](https://github.com/Kuingsmile/PicList/commit/22bee0b)), closes [#1](https://github.com/Kuingsmile/PicList/issues/1) - - - -# :tada: 1.0.0 (2023-02-15) - - -### :sparkles: Features - -* first version of PicList ([efeadb8](https://github.com/Kuingsmile/PicList/commit/efeadb8)) - - -### :bug: Bug Fixes - -* add new tray icon for macOS dark-mode ([c5adf3b](https://github.com/Kuingsmile/PicList/commit/c5adf3b)), closes [#267](https://github.com/Kuingsmile/PicList/issues/267) -* add plugin install failed notice ([b05139f](https://github.com/Kuingsmile/PicList/commit/b05139f)) -* auto-copy option && copy style ([b6e3adb](https://github.com/Kuingsmile/PicList/commit/b6e3adb)) -* beforeOpen handler in windows ([cd30a6c](https://github.com/Kuingsmile/PicList/commit/cd30a6c)) -* beta version update bug ([18ad542](https://github.com/Kuingsmile/PicList/commit/18ad542)) -* bug of gallery db for plugin ([96a63ea](https://github.com/Kuingsmile/PicList/commit/96a63ea)) -* build error ([1db84a2](https://github.com/Kuingsmile/PicList/commit/1db84a2)) -* busApi event register first && emit later ([e1a0cbb](https://github.com/Kuingsmile/PicList/commit/e1a0cbb)) -* change decodeURI -> decodeURIComponent & encode also ([7677f1e](https://github.com/Kuingsmile/PicList/commit/7677f1e)) -* choose default picBed failure ([21d3942](https://github.com/Kuingsmile/PicList/commit/21d3942)), closes [#537](https://github.com/Kuingsmile/PicList/issues/537) -* confused port number auto increasing when opening a new PicGo app ([cd70a1a](https://github.com/Kuingsmile/PicList/commit/cd70a1a)) -* correct inputbox value && remove listener ([32334e9](https://github.com/Kuingsmile/PicList/commit/32334e9)) -* **db:** fix some db bugs ([d3bb5ca](https://github.com/Kuingsmile/PicList/commit/d3bb5ca)), closes [#873](https://github.com/Kuingsmile/PicList/issues/873) [#806](https://github.com/Kuingsmile/PicList/issues/806) -* decrease title-bar z-index when config-form dialog shows ([f2750e1](https://github.com/Kuingsmile/PicList/commit/f2750e1)) -* default github placeholder ([51d80a6](https://github.com/Kuingsmile/PicList/commit/51d80a6)) -* default picBed using picBed.uploader instead of picBed.current ([0a986c8](https://github.com/Kuingsmile/PicList/commit/0a986c8)) -* dev error with install vue-devtools ([a657c51](https://github.com/Kuingsmile/PicList/commit/a657c51)), closes [#653](https://github.com/Kuingsmile/PicList/issues/653) [#658](https://github.com/Kuingsmile/PicList/issues/658) -* disable plugin need reload app ([a1b70b4](https://github.com/Kuingsmile/PicList/commit/a1b70b4)) -* disabled plugin won't be shown in plugin page ([33fdb16](https://github.com/Kuingsmile/PicList/commit/33fdb16)) -* electron builder actions bug ([5dd6e72](https://github.com/Kuingsmile/PicList/commit/5dd6e72)) -* enable plugin should reload ([49e5f34](https://github.com/Kuingsmile/PicList/commit/49e5f34)), closes [#659](https://github.com/Kuingsmile/PicList/issues/659) -* encoding the result of picgo-server ([db71139](https://github.com/Kuingsmile/PicList/commit/db71139)) -* enum type error ([4e3fa28](https://github.com/Kuingsmile/PicList/commit/4e3fa28)) -* fix analytics value ([06d40ef](https://github.com/Kuingsmile/PicList/commit/06d40ef)) -* fix mini-page can't upload image from dragging browser image ([6bcd019](https://github.com/Kuingsmile/PicList/commit/6bcd019)), closes [#822](https://github.com/Kuingsmile/PicList/issues/822) -* gallery db bug ([f1eb7f4](https://github.com/Kuingsmile/PicList/commit/f1eb7f4)) -* **gallery:** can't copy gallery pics link ([8d861be](https://github.com/Kuingsmile/PicList/commit/8d861be)), closes [#901](https://github.com/Kuingsmile/PicList/issues/901) -* give a hint when node.js is not installed ([7e86618](https://github.com/Kuingsmile/PicList/commit/7e86618)) -* handle empty request-body ([81e6acb](https://github.com/Kuingsmile/PicList/commit/81e6acb)) -* handleUploaderConfig should be placed in main/utils ([fc897ce](https://github.com/Kuingsmile/PicList/commit/fc897ce)) -* i18n bug ([911e34e](https://github.com/Kuingsmile/PicList/commit/911e34e)) -* initialize db bugs ([5f87018](https://github.com/Kuingsmile/PicList/commit/5f87018)) -* launch error in new structrue ([bc8e641](https://github.com/Kuingsmile/PicList/commit/bc8e641)) -* linux github actions workflow bug ([5cb8151](https://github.com/Kuingsmile/PicList/commit/5cb8151)) -* log-level filter bug ([4e02244](https://github.com/Kuingsmile/PicList/commit/4e02244)), closes [#237](https://github.com/Kuingsmile/PicList/issues/237) -* log-level's reset value from 'all' -> ['all'] ([3c6b329](https://github.com/Kuingsmile/PicList/commit/3c6b329)), closes [#240](https://github.com/Kuingsmile/PicList/issues/240) [#237](https://github.com/Kuingsmile/PicList/issues/237) -* macos clipboard image can't show on tray page ([20e38f4](https://github.com/Kuingsmile/PicList/commit/20e38f4)), closes [#961](https://github.com/Kuingsmile/PicList/issues/961) -* macOS tray icon background color bug ([9791ff2](https://github.com/Kuingsmile/PicList/commit/9791ff2)), closes [#970](https://github.com/Kuingsmile/PicList/issues/970) -* mini window drag bug ([34b3656](https://github.com/Kuingsmile/PicList/commit/34b3656)) -* mini window hidden bug in linux ([466dbec](https://github.com/Kuingsmile/PicList/commit/466dbec)), closes [#239](https://github.com/Kuingsmile/PicList/issues/239) -* mini window not always on top after reopen ([c79a286](https://github.com/Kuingsmile/PicList/commit/c79a286)) -* miniWindow minimize bug ([5f2b7c7](https://github.com/Kuingsmile/PicList/commit/5f2b7c7)) -* multiple uploading in the same time will cause output conflict ([06b67e5](https://github.com/Kuingsmile/PicList/commit/06b67e5)), closes [#666](https://github.com/Kuingsmile/PicList/issues/666) -* multiple uploading in the same time will cause rename failed ([12cecc2](https://github.com/Kuingsmile/PicList/commit/12cecc2)) -* notification freeze the main-process after uploading with clipboard ([3a50315](https://github.com/Kuingsmile/PicList/commit/3a50315)), closes [#824](https://github.com/Kuingsmile/PicList/issues/824) -* nsis script ([44f5fbb](https://github.com/Kuingsmile/PicList/commit/44f5fbb)), closes [#1019](https://github.com/Kuingsmile/PicList/issues/1019) -* paste url encoding bug ([59d3eba](https://github.com/Kuingsmile/PicList/commit/59d3eba)), closes [#454](https://github.com/Kuingsmile/PicList/issues/454) -* picgo-server upload clipboard file's result bug ([4ebd76f](https://github.com/Kuingsmile/PicList/commit/4ebd76f)) -* picgo.log path error ([6b6ae27](https://github.com/Kuingsmile/PicList/commit/6b6ae27)), closes [#819](https://github.com/Kuingsmile/PicList/issues/819) -* plugin config can't save ([09e4e82](https://github.com/Kuingsmile/PicList/commit/09e4e82)), closes [#943](https://github.com/Kuingsmile/PicList/issues/943) -* plugin config-form && default plugin logo ([514fc40](https://github.com/Kuingsmile/PicList/commit/514fc40)) -* qiniu area option from select group -> input ([c64959a](https://github.com/Kuingsmile/PicList/commit/c64959a)), closes [#230](https://github.com/Kuingsmile/PicList/issues/230) -* release script ([b4f10c6](https://github.com/Kuingsmile/PicList/commit/b4f10c6)) -* releaseUrl may can't get latest version ([ee46ab1](https://github.com/Kuingsmile/PicList/commit/ee46ab1)) -* removeById handler error ([c4f0a30](https://github.com/Kuingsmile/PicList/commit/c4f0a30)), closes [#382](https://github.com/Kuingsmile/PicList/issues/382) -* rename page not work ([29a55ed](https://github.com/Kuingsmile/PicList/commit/29a55ed)) -* right-click menu upload fails with PicGo open ([96cdfea](https://github.com/Kuingsmile/PicList/commit/96cdfea)), closes [#415](https://github.com/Kuingsmile/PicList/issues/415) -* save debug mode && PICGO_ENV into config file ([c6ead5b](https://github.com/Kuingsmile/PicList/commit/c6ead5b)) -* server may never start ([73870a5](https://github.com/Kuingsmile/PicList/commit/73870a5)) -* settingPage && miniPage style in windows ([3fd9572](https://github.com/Kuingsmile/PicList/commit/3fd9572)) -* settings bug ([20d3cf9](https://github.com/Kuingsmile/PicList/commit/20d3cf9)), closes [#710](https://github.com/Kuingsmile/PicList/issues/710) -* shift key function in gallery page ([5895889](https://github.com/Kuingsmile/PicList/commit/5895889)) -* shortkey disabled failure ([4f0809e](https://github.com/Kuingsmile/PicList/commit/4f0809e)), closes [#534](https://github.com/Kuingsmile/PicList/issues/534) -* shortKeyConfig maybe undefined ([7b5e5ef](https://github.com/Kuingsmile/PicList/commit/7b5e5ef)), closes [#557](https://github.com/Kuingsmile/PicList/issues/557) -* showFileExplorer result bug ([b6b2eea](https://github.com/Kuingsmile/PicList/commit/b6b2eea)) -* some bugs ([a676c08](https://github.com/Kuingsmile/PicList/commit/a676c08)), closes [#722](https://github.com/Kuingsmile/PicList/issues/722) -* some bugs will case picgo-gui-local.log too large ([012a01d](https://github.com/Kuingsmile/PicList/commit/012a01d)), closes [#995](https://github.com/Kuingsmile/PicList/issues/995) -* some case will cause picgo-gui-local.log too large ([3c01861](https://github.com/Kuingsmile/PicList/commit/3c01861)) -* some texts in zh-TW ([#978](https://github.com/Kuingsmile/PicList/issues/978)) ([531bc13](https://github.com/Kuingsmile/PicList/commit/531bc13)) -* some win10 upload clipboard image crash ([cc182b0](https://github.com/Kuingsmile/PicList/commit/cc182b0)) -* travis-ci bug ([b357dfb](https://github.com/Kuingsmile/PicList/commit/b357dfb)) -* upload clipboard images via http should return list ([ae69263](https://github.com/Kuingsmile/PicList/commit/ae69263)), closes [#721](https://github.com/Kuingsmile/PicList/issues/721) -* upload-area can't upload images ([4000cea](https://github.com/Kuingsmile/PicList/commit/4000cea)) -* uploader error in linux ([ab762ef](https://github.com/Kuingsmile/PicList/commit/ab762ef)), closes [#627](https://github.com/Kuingsmile/PicList/issues/627) -* upyun options is not required ([167e424](https://github.com/Kuingsmile/PicList/commit/167e424)), closes [#1002](https://github.com/Kuingsmile/PicList/issues/1002) -* url encode before uploading by url ([ce2b5cd](https://github.com/Kuingsmile/PicList/commit/ce2b5cd)), closes [#581](https://github.com/Kuingsmile/PicList/issues/581) -* url encode bug && copy-paste url encode bug ([4de7a1d](https://github.com/Kuingsmile/PicList/commit/4de7a1d)), closes [#996](https://github.com/Kuingsmile/PicList/issues/996) -* url uploader bug ([96544f5](https://github.com/Kuingsmile/PicList/commit/96544f5)) -* urlEncode bug when copy ([6c6f847](https://github.com/Kuingsmile/PicList/commit/6c6f847)), closes [#731](https://github.com/Kuingsmile/PicList/issues/731) -* use uploader first ([92022a6](https://github.com/Kuingsmile/PicList/commit/92022a6)) -* **website:** website pictures error ([a5b6526](https://github.com/Kuingsmile/PicList/commit/a5b6526)) -* windows cli uploading bug ([321e339](https://github.com/Kuingsmile/PicList/commit/321e339)), closes [#657](https://github.com/Kuingsmile/PicList/issues/657) -* windows ia32 && x64 build options ([bdf523a](https://github.com/Kuingsmile/PicList/commit/bdf523a)) -* windows upload clipboard file with builtin-clipboard not work ([7b50ba7](https://github.com/Kuingsmile/PicList/commit/7b50ba7)) - - -### :pencil: Documentation - -* add brew cask source ([6122e17](https://github.com/Kuingsmile/PicList/commit/6122e17)) -* add flutter-picgo ([92ff282](https://github.com/Kuingsmile/PicList/commit/92ff282)) -* add gitads ([2d42381](https://github.com/Kuingsmile/PicList/commit/2d42381)) -* add note for windows electron mirror ([46a49ed](https://github.com/Kuingsmile/PicList/commit/46a49ed)) -* add PicHoro ([a355bc0](https://github.com/Kuingsmile/PicList/commit/a355bc0)) -* fix electron_mirror link error ([5d06469](https://github.com/Kuingsmile/PicList/commit/5d06469)), closes [#849](https://github.com/Kuingsmile/PicList/issues/849) -* remove weibo picbed ([e81b8f4](https://github.com/Kuingsmile/PicList/commit/e81b8f4)) -* rm gitads ([bb90e17](https://github.com/Kuingsmile/PicList/commit/bb90e17)) -* update choco install picgo ([f357557](https://github.com/Kuingsmile/PicList/commit/f357557)) -* update cos links ([3102d7b](https://github.com/Kuingsmile/PicList/commit/3102d7b)) -* update discussions in doc ([e793599](https://github.com/Kuingsmile/PicList/commit/e793599)) -* update docs ([fd7673e](https://github.com/Kuingsmile/PicList/commit/fd7673e)) -* update FAQ ([a79efbf](https://github.com/Kuingsmile/PicList/commit/a79efbf)) -* update FAQ ([58420c8](https://github.com/Kuingsmile/PicList/commit/58420c8)) -* update FAQ && ISSUE_TEMPLATE ([2c57a27](https://github.com/Kuingsmile/PicList/commit/2c57a27)) -* update FAQ.md ([#1011](https://github.com/Kuingsmile/PicList/issues/1011)) ([05998bb](https://github.com/Kuingsmile/PicList/commit/05998bb)) -* update install command by Homebrew ([#599](https://github.com/Kuingsmile/PicList/issues/599)) ([bd2311b](https://github.com/Kuingsmile/PicList/commit/bd2311b)) -* update installation by scoop ([91b397d](https://github.com/Kuingsmile/PicList/commit/91b397d)), closes [#295](https://github.com/Kuingsmile/PicList/issues/295) -* update readme ([6bcda9b](https://github.com/Kuingsmile/PicList/commit/6bcda9b)), closes [#849](https://github.com/Kuingsmile/PicList/issues/849) [#850](https://github.com/Kuingsmile/PicList/issues/850) -* update readme ([1c5880a](https://github.com/Kuingsmile/PicList/commit/1c5880a)) -* update readme ([2adff1e](https://github.com/Kuingsmile/PicList/commit/2adff1e)) -* update readme ([fb014dd](https://github.com/Kuingsmile/PicList/commit/fb014dd)) -* update readme ([1b3522e](https://github.com/Kuingsmile/PicList/commit/1b3522e)) -* update README ([f491209](https://github.com/Kuingsmile/PicList/commit/f491209)) -* update readme & FAQ ([d438f82](https://github.com/Kuingsmile/PicList/commit/d438f82)) -* update readme & FAQ ([746635e](https://github.com/Kuingsmile/PicList/commit/746635e)) -* update README.md ([f14c584](https://github.com/Kuingsmile/PicList/commit/f14c584)) -* update README.md ([#555](https://github.com/Kuingsmile/PicList/issues/555)) ([2151857](https://github.com/Kuingsmile/PicList/commit/2151857)) -* update site ([fe9e19a](https://github.com/Kuingsmile/PicList/commit/fe9e19a)) - - -### :package: Chore - -* add issue template ([db6c5b8](https://github.com/Kuingsmile/PicList/commit/db6c5b8)) -* add mac-arm64 build support ([f2a4197](https://github.com/Kuingsmile/PicList/commit/f2a4197)) -* add main process hot reload ([3fd6e4e](https://github.com/Kuingsmile/PicList/commit/3fd6e4e)) -* add picgo bump-version ([37f1d34](https://github.com/Kuingsmile/PicList/commit/37f1d34)) -* change travis-ci -> GitHub Actions ([064f37d](https://github.com/Kuingsmile/PicList/commit/064f37d)) -* fix eslint error notice in indent ([69e1dc8](https://github.com/Kuingsmile/PicList/commit/69e1dc8)) -* fix github action build scripts ([e6b9d88](https://github.com/Kuingsmile/PicList/commit/e6b9d88)) -* fix version error ([0a9e169](https://github.com/Kuingsmile/PicList/commit/0a9e169)) -* types change ([43d2a8e](https://github.com/Kuingsmile/PicList/commit/43d2a8e)) -* up issue template ([5f1fb08](https://github.com/Kuingsmile/PicList/commit/5f1fb08)) -* update ci build scripts ([56e814a](https://github.com/Kuingsmile/PicList/commit/56e814a)) -* update cos upload url ([86012c0](https://github.com/Kuingsmile/PicList/commit/86012c0)) -* update electron from v6 -> v16 ([ea20d3b](https://github.com/Kuingsmile/PicList/commit/ea20d3b)) -* update fix-path ([bcaf255](https://github.com/Kuingsmile/PicList/commit/bcaf255)), closes [#774](https://github.com/Kuingsmile/PicList/issues/774) -* update funding url ([024d9cf](https://github.com/Kuingsmile/PicList/commit/024d9cf)) -* update macOS tray icon ([87161b3](https://github.com/Kuingsmile/PicList/commit/87161b3)) -* update manually action ([351fbda](https://github.com/Kuingsmile/PicList/commit/351fbda)) - - - -# :tada: 2.4.0-beta.0 (2023-01-05) - - -### :sparkles: Features - -* add file-name in gallery & add unknown-file-type placholder image ([f0787d3](https://github.com/Molunerfinn/PicGo/commit/f0787d3)), closes [#1050](https://github.com/Molunerfinn/PicGo/issues/1050) -* add file-name in tray-page ([c011654](https://github.com/Molunerfinn/PicGo/commit/c011654)), closes [#1054](https://github.com/Molunerfinn/PicGo/issues/1054) -* support multiple config ([#1016](https://github.com/Molunerfinn/PicGo/issues/1016)) ([9555649](https://github.com/Molunerfinn/PicGo/commit/9555649)) - - -### :bug: Bug Fixes - -* handleUploaderConfig should be placed in main/utils ([fc897ce](https://github.com/Molunerfinn/PicGo/commit/fc897ce)) -* nsis script ([44f5fbb](https://github.com/Molunerfinn/PicGo/commit/44f5fbb)), closes [#1019](https://github.com/Molunerfinn/PicGo/issues/1019) - - -### :pencil: Documentation - -* update FAQ.md ([#1011](https://github.com/Molunerfinn/PicGo/issues/1011)) ([05998bb](https://github.com/Molunerfinn/PicGo/commit/05998bb)) - - - -## :tada: 2.3.1 (2022-11-13) - - -### :sparkles: Features - -* add $extName for paste template ([64e54d0](https://github.com/Molunerfinn/PicGo/commit/64e54d0)), closes [#1000](https://github.com/Molunerfinn/PicGo/issues/1000) - - -### :bug: Bug Fixes - -* upyun options is not required ([167e424](https://github.com/Molunerfinn/PicGo/commit/167e424)), closes [#1002](https://github.com/Molunerfinn/PicGo/issues/1002) - - - -## :tada: 2.3.1-beta.8 (2022-10-30) - - -### :sparkles: Features - -* add remoteNotice ([9317871](https://github.com/Molunerfinn/PicGo/commit/9317871)) -* macOS tray icon more clearer ([ecd462f](https://github.com/Molunerfinn/PicGo/commit/ecd462f)) - - -### :bug: Bug Fixes - -* url encode bug && copy-paste url encode bug ([4de7a1d](https://github.com/Molunerfinn/PicGo/commit/4de7a1d)), closes [#996](https://github.com/Molunerfinn/PicGo/issues/996) - - -### :pencil: Documentation - -* add PicHoro ([a355bc0](https://github.com/Molunerfinn/PicGo/commit/a355bc0)) - - - -## :tada: 2.3.1-beta.7 (2022-10-23) - - -### :sparkles: Features - -* add zh-TW.yml ([#976](https://github.com/Molunerfinn/PicGo/issues/976)) ([72371de](https://github.com/Molunerfinn/PicGo/commit/72371de)) - - -### :bug: Bug Fixes - -* change decodeURI -> decodeURIComponent & encode also ([7677f1e](https://github.com/Molunerfinn/PicGo/commit/7677f1e)) -* macOS tray icon background color bug ([9791ff2](https://github.com/Molunerfinn/PicGo/commit/9791ff2)), closes [#970](https://github.com/Molunerfinn/PicGo/issues/970) -* some bugs will case picgo-gui-local.log too large ([012a01d](https://github.com/Molunerfinn/PicGo/commit/012a01d)), closes [#995](https://github.com/Molunerfinn/PicGo/issues/995) -* some case will cause picgo-gui-local.log too large ([3c01861](https://github.com/Molunerfinn/PicGo/commit/3c01861)) -* some texts in zh-TW ([#978](https://github.com/Molunerfinn/PicGo/issues/978)) ([531bc13](https://github.com/Molunerfinn/PicGo/commit/531bc13)) - - -### :pencil: Documentation - -* update readme & FAQ ([d438f82](https://github.com/Molunerfinn/PicGo/commit/d438f82)) - - - -## :tada: 2.3.1-beta.6 (2022-09-04) - - -### :sparkles: Features - -* cli support uploading image with url ([e848918](https://github.com/Molunerfinn/PicGo/commit/e848918)) -* finish i18n system ([428ffc7](https://github.com/Molunerfinn/PicGo/commit/428ffc7)) - - -### :bug: Bug Fixes - -* macos clipboard image can't show on tray page ([20e38f4](https://github.com/Molunerfinn/PicGo/commit/20e38f4)), closes [#961](https://github.com/Molunerfinn/PicGo/issues/961) -* showFileExplorer result bug ([b6b2eea](https://github.com/Molunerfinn/PicGo/commit/b6b2eea)) -* windows upload clipboard file with builtin-clipboard not work ([7b50ba7](https://github.com/Molunerfinn/PicGo/commit/7b50ba7)) - - -### :package: Chore - -* up issue template ([5f1fb08](https://github.com/Molunerfinn/PicGo/commit/5f1fb08)) -* update cos upload url ([86012c0](https://github.com/Molunerfinn/PicGo/commit/86012c0)) - - - -## :tada: 2.3.1-beta.5 (2022-08-14) - - -### :sparkles: Features - -* add dist upload to cos & update checkupdate logic ([c926414](https://github.com/Molunerfinn/PicGo/commit/c926414)) -* add logFileSizeLimit for log file ([219b367](https://github.com/Molunerfinn/PicGo/commit/219b367)), closes [#935](https://github.com/Molunerfinn/PicGo/issues/935) [#945](https://github.com/Molunerfinn/PicGo/issues/945) -* add server response headers for CORS ([#939](https://github.com/Molunerfinn/PicGo/issues/939)) ([fb69bad](https://github.com/Molunerfinn/PicGo/commit/fb69bad)) -* tray-window add open-setting-window button ([83ab3c6](https://github.com/Molunerfinn/PicGo/commit/83ab3c6)) -* update tray icon in macOS 11 or 12 ([4ebdc72](https://github.com/Molunerfinn/PicGo/commit/4ebdc72)), closes [#776](https://github.com/Molunerfinn/PicGo/issues/776) - - -### :bug: Bug Fixes - -* build error ([1db84a2](https://github.com/Molunerfinn/PicGo/commit/1db84a2)) -* plugin config can't save ([09e4e82](https://github.com/Molunerfinn/PicGo/commit/09e4e82)), closes [#943](https://github.com/Molunerfinn/PicGo/issues/943) - - -### :package: Chore - -* fix github action build scripts ([e6b9d88](https://github.com/Molunerfinn/PicGo/commit/e6b9d88)) -* fix version error ([0a9e169](https://github.com/Molunerfinn/PicGo/commit/0a9e169)) -* update macOS tray icon ([87161b3](https://github.com/Molunerfinn/PicGo/commit/87161b3)) -* update manually action ([351fbda](https://github.com/Molunerfinn/PicGo/commit/351fbda)) - - -### :pencil: Documentation - -* update cos links ([3102d7b](https://github.com/Molunerfinn/PicGo/commit/3102d7b)) - - - -## :tada: 2.3.1-beta.4 (2022-06-12) - - -### :bug: Bug Fixes - -* **db:** fix some db bugs ([d3bb5ca](https://github.com/Molunerfinn/PicGo/commit/d3bb5ca)), closes [#873](https://github.com/Molunerfinn/PicGo/issues/873) [#806](https://github.com/Molunerfinn/PicGo/issues/806) -* **gallery:** can't copy gallery pics link ([8d861be](https://github.com/Molunerfinn/PicGo/commit/8d861be)), closes [#901](https://github.com/Molunerfinn/PicGo/issues/901) - - -### :pencil: Documentation - -* fix electron_mirror link error ([5d06469](https://github.com/Molunerfinn/PicGo/commit/5d06469)), closes [#849](https://github.com/Molunerfinn/PicGo/issues/849) -* update FAQ ([a79efbf](https://github.com/Molunerfinn/PicGo/commit/a79efbf)) -* update readme & FAQ ([746635e](https://github.com/Molunerfinn/PicGo/commit/746635e)) - - -### :package: Chore - -* add issue template ([db6c5b8](https://github.com/Molunerfinn/PicGo/commit/db6c5b8)) - - - -## :tada: 2.3.1-beta.3 (2022-04-04) - - -### :sparkles: Features - -* add i18n for en ([1936ccf](https://github.com/Molunerfinn/PicGo/commit/1936ccf)) -* add tencent-cos options for url ([af291e4](https://github.com/Molunerfinn/PicGo/commit/af291e4)), closes [#862](https://github.com/Molunerfinn/PicGo/issues/862) [#863](https://github.com/Molunerfinn/PicGo/issues/863) [#865](https://github.com/Molunerfinn/PicGo/issues/865) [#524](https://github.com/Molunerfinn/PicGo/issues/524) [#845](https://github.com/Molunerfinn/PicGo/issues/845) [#732](https://github.com/Molunerfinn/PicGo/issues/732) -* add upload-clipboard-image from electron' clipboard ([27628da](https://github.com/Molunerfinn/PicGo/commit/27628da)), closes [#822](https://github.com/Molunerfinn/PicGo/issues/822) -* add wayland support for linux ([f1c8507](https://github.com/Molunerfinn/PicGo/commit/f1c8507)) -* click cancel in rename-window will use origin filename now ([04701d4](https://github.com/Molunerfinn/PicGo/commit/04701d4)), closes [#791](https://github.com/Molunerfinn/PicGo/issues/791) - - -### :bug: Bug Fixes - -* fix mini-page can't upload image from dragging browser image ([6bcd019](https://github.com/Molunerfinn/PicGo/commit/6bcd019)), closes [#822](https://github.com/Molunerfinn/PicGo/issues/822) -* mini window not always on top after reopen ([c79a286](https://github.com/Molunerfinn/PicGo/commit/c79a286)) -* notification freeze the main-process after uploading with clipboard ([3a50315](https://github.com/Molunerfinn/PicGo/commit/3a50315)), closes [#824](https://github.com/Molunerfinn/PicGo/issues/824) -* picgo.log path error ([6b6ae27](https://github.com/Molunerfinn/PicGo/commit/6b6ae27)), closes [#819](https://github.com/Molunerfinn/PicGo/issues/819) - - -### :pencil: Documentation - -* update readme ([6bcda9b](https://github.com/Molunerfinn/PicGo/commit/6bcda9b)), closes [#849](https://github.com/Molunerfinn/PicGo/issues/849) [#850](https://github.com/Molunerfinn/PicGo/issues/850) - - -### :package: Chore - -* types change ([43d2a8e](https://github.com/Molunerfinn/PicGo/commit/43d2a8e)) -* update fix-path ([bcaf255](https://github.com/Molunerfinn/PicGo/commit/bcaf255)), closes [#774](https://github.com/Molunerfinn/PicGo/issues/774) - - - -## :tada: 2.3.1-beta.2 (2022-01-06) - - -### :bug: Bug Fixes - -* electron builder actions bug ([5dd6e72](https://github.com/Molunerfinn/PicGo/commit/5dd6e72)) -* linux github actions workflow bug ([5cb8151](https://github.com/Molunerfinn/PicGo/commit/5cb8151)) - - - -## :tada: 2.3.1-beta.1 (2022-01-05) - - -### :package: Chore - -* update ci build scripts ([56e814a](https://github.com/Molunerfinn/PicGo/commit/56e814a)) - - - -## :tada: 2.3.1-beta.0 (2022-01-05) - - -### :bug: Bug Fixes - -* mini window drag bug ([34b3656](https://github.com/Molunerfinn/PicGo/commit/34b3656)) - - -### :package: Chore - -* add mac-arm64 build support ([f2a4197](https://github.com/Molunerfinn/PicGo/commit/f2a4197)) -* update electron from v6 -> v16 ([ea20d3b](https://github.com/Molunerfinn/PicGo/commit/ea20d3b)) - - - -# :tada: 2.3.0 (2021-09-11) - - -### :sparkles: Features - -* add open devtool option ([75e3edc](https://github.com/Molunerfinn/PicGo/commit/75e3edc)) - - -### :bug: Bug Fixes - -* shift key function in gallery page ([5895889](https://github.com/Molunerfinn/PicGo/commit/5895889)) -* some bugs ([a676c08](https://github.com/Molunerfinn/PicGo/commit/a676c08)), closes [#722](https://github.com/Molunerfinn/PicGo/issues/722) -* urlEncode bug when copy ([6c6f847](https://github.com/Molunerfinn/PicGo/commit/6c6f847)), closes [#731](https://github.com/Molunerfinn/PicGo/issues/731) - - -### :pencil: Documentation - -* update FAQ ([58420c8](https://github.com/Molunerfinn/PicGo/commit/58420c8)) - - - -# :tada: 2.3.0-beta.8 (2021-08-13) - - -### :bug: Bug Fixes - -* settings bug ([20d3cf9](https://github.com/Molunerfinn/PicGo/commit/20d3cf9)), closes [#710](https://github.com/Molunerfinn/PicGo/issues/710) -* upload clipboard images via http should return list ([ae69263](https://github.com/Molunerfinn/PicGo/commit/ae69263)), closes [#721](https://github.com/Molunerfinn/PicGo/issues/721) - - - -# :tada: 2.3.0-beta.7 (2021-08-01) - - -### :sparkles: Features - -* add gallery db ([6ddd660](https://github.com/Molunerfinn/PicGo/commit/6ddd660)) -* add win32 support ([1657542](https://github.com/Molunerfinn/PicGo/commit/1657542)), closes [#632](https://github.com/Molunerfinn/PicGo/issues/632) -* finish custom config path ([7030f7a](https://github.com/Molunerfinn/PicGo/commit/7030f7a)), closes [#255](https://github.com/Molunerfinn/PicGo/issues/255) - - -### :bug: Bug Fixes - -* bug of gallery db for plugin ([96a63ea](https://github.com/Molunerfinn/PicGo/commit/96a63ea)) -* enable plugin should reload ([49e5f34](https://github.com/Molunerfinn/PicGo/commit/49e5f34)), closes [#659](https://github.com/Molunerfinn/PicGo/issues/659) -* gallery db bug ([f1eb7f4](https://github.com/Molunerfinn/PicGo/commit/f1eb7f4)) -* multiple uploading in the same time will cause output conflict ([06b67e5](https://github.com/Molunerfinn/PicGo/commit/06b67e5)), closes [#666](https://github.com/Molunerfinn/PicGo/issues/666) -* multiple uploading in the same time will cause rename failed ([12cecc2](https://github.com/Molunerfinn/PicGo/commit/12cecc2)) -* uploader error in linux ([ab762ef](https://github.com/Molunerfinn/PicGo/commit/ab762ef)), closes [#627](https://github.com/Molunerfinn/PicGo/issues/627) -* use uploader first ([92022a6](https://github.com/Molunerfinn/PicGo/commit/92022a6)) -* windows ia32 && x64 build options ([bdf523a](https://github.com/Molunerfinn/PicGo/commit/bdf523a)) - - - -# :tada: 2.3.0-beta.6 (2021-04-24) - - -### :sparkles: Features - -* add baidu tongji for analytics ([f536391](https://github.com/Molunerfinn/PicGo/commit/f536391)) -* add logs for picgo-server ([2d9e9c0](https://github.com/Molunerfinn/PicGo/commit/2d9e9c0)), closes [#627](https://github.com/Molunerfinn/PicGo/issues/627) -* add privacy policy ([992ff35](https://github.com/Molunerfinn/PicGo/commit/992ff35)) - - -### :bug: Bug Fixes - -* add plugin install failed notice ([b05139f](https://github.com/Molunerfinn/PicGo/commit/b05139f)) -* default picBed using picBed.uploader instead of picBed.current ([0a986c8](https://github.com/Molunerfinn/PicGo/commit/0a986c8)) -* dev error with install vue-devtools ([a657c51](https://github.com/Molunerfinn/PicGo/commit/a657c51)), closes [#653](https://github.com/Molunerfinn/PicGo/issues/653) [#658](https://github.com/Molunerfinn/PicGo/issues/658) -* disable plugin need reload app ([a1b70b4](https://github.com/Molunerfinn/PicGo/commit/a1b70b4)) -* fix analytics value ([06d40ef](https://github.com/Molunerfinn/PicGo/commit/06d40ef)) -* windows cli uploading bug ([321e339](https://github.com/Molunerfinn/PicGo/commit/321e339)), closes [#657](https://github.com/Molunerfinn/PicGo/issues/657) - - -### :package: Chore - -* add main process hot reload ([3fd6e4e](https://github.com/Molunerfinn/PicGo/commit/3fd6e4e)) -* fix eslint error notice in indent ([69e1dc8](https://github.com/Molunerfinn/PicGo/commit/69e1dc8)) - - - -# :tada: 2.3.0-beta.5 (2021-04-04) - - -### :sparkles: Features - -* add local plugin support && npm registry/proxy support ([f0e1fa1](https://github.com/Molunerfinn/PicGo/commit/f0e1fa1)) -* 为Linux系统适配桌面图标栏(Tray) ([#603](https://github.com/Molunerfinn/PicGo/issues/603)) ([0fe3ade](https://github.com/Molunerfinn/PicGo/commit/0fe3ade)) - - -### :bug: Bug Fixes - -* default github placeholder ([51d80a6](https://github.com/Molunerfinn/PicGo/commit/51d80a6)) - - -### :package: Chore - -* change travis-ci -> GitHub Actions ([064f37d](https://github.com/Molunerfinn/PicGo/commit/064f37d)) - - - -# :tada: 2.3.0-beta.4 (2020-12-19) - - -### :sparkles: Features - -* add global value for PicGo get GUI_VERSION & CORE_VERSION ([eab014d](https://github.com/Molunerfinn/PicGo/commit/eab014d)) -* **config:** auto configuration backup & fallback to avoid main process crash ([32b8b97](https://github.com/Molunerfinn/PicGo/commit/32b8b97)), closes [#568](https://github.com/Molunerfinn/PicGo/issues/568) - - -### :bug: Bug Fixes - -* disabled plugin won't be shown in plugin page ([33fdb16](https://github.com/Molunerfinn/PicGo/commit/33fdb16)) -* shortKeyConfig maybe undefined ([7b5e5ef](https://github.com/Molunerfinn/PicGo/commit/7b5e5ef)), closes [#557](https://github.com/Molunerfinn/PicGo/issues/557) -* url encode before uploading by url ([ce2b5cd](https://github.com/Molunerfinn/PicGo/commit/ce2b5cd)), closes [#581](https://github.com/Molunerfinn/PicGo/issues/581) - - -### :pencil: Documentation - -* add flutter-picgo ([92ff282](https://github.com/Molunerfinn/PicGo/commit/92ff282)) -* add gitads ([2d42381](https://github.com/Molunerfinn/PicGo/commit/2d42381)) -* rm gitads ([bb90e17](https://github.com/Molunerfinn/PicGo/commit/bb90e17)) -* update discussions in doc ([e793599](https://github.com/Molunerfinn/PicGo/commit/e793599)) -* update install command by Homebrew ([#599](https://github.com/Molunerfinn/PicGo/issues/599)) ([bd2311b](https://github.com/Molunerfinn/PicGo/commit/bd2311b)) -* update README.md ([#555](https://github.com/Molunerfinn/PicGo/issues/555)) ([2151857](https://github.com/Molunerfinn/PicGo/commit/2151857)) - - - -# :tada: 2.3.0-beta.3 (2020-07-12) - - -### :bug: Bug Fixes - -* choose default picBed failure ([21d3942](https://github.com/Molunerfinn/PicGo/commit/21d3942)), closes [#537](https://github.com/Molunerfinn/PicGo/issues/537) -* shortkey disabled failure ([4f0809e](https://github.com/Molunerfinn/PicGo/commit/4f0809e)), closes [#534](https://github.com/Molunerfinn/PicGo/issues/534) - - - -# :tada: 2.3.0-beta.2 (2020-07-12) - - -### :sparkles: Features - -* add qrcode for picbeds' config ([7fabc47](https://github.com/Molunerfinn/PicGo/commit/7fabc47)) - - -### :bug: Bug Fixes - -* encoding the result of picgo-server ([db71139](https://github.com/Molunerfinn/PicGo/commit/db71139)) -* initialize db bugs ([5f87018](https://github.com/Molunerfinn/PicGo/commit/5f87018)) - - -### :pencil: Documentation - -* update readme ([1c5880a](https://github.com/Molunerfinn/PicGo/commit/1c5880a)) - - - -# :tada: 2.3.0-beta.1 (2020-06-28) - - -### :bug: Bug Fixes - -* auto-copy option && copy style ([b6e3adb](https://github.com/Molunerfinn/PicGo/commit/b6e3adb)) -* beta version update bug ([18ad542](https://github.com/Molunerfinn/PicGo/commit/18ad542)) -* paste url encoding bug ([59d3eba](https://github.com/Molunerfinn/PicGo/commit/59d3eba)), closes [#454](https://github.com/Molunerfinn/PicGo/issues/454) - - -### :pencil: Documentation - -* update FAQ && ISSUE_TEMPLATE ([2c57a27](https://github.com/Molunerfinn/PicGo/commit/2c57a27)) -* update readme ([2adff1e](https://github.com/Molunerfinn/PicGo/commit/2adff1e)) - - - -# :tada: 2.3.0-beta.0 (2020-04-30) - - -### :sparkles: Features - -* add autoCopy option for users to use or not ([67e526f](https://github.com/Molunerfinn/PicGo/commit/67e526f)) -* add beta-version update support ([ad6acd8](https://github.com/Molunerfinn/PicGo/commit/ad6acd8)) -* add smms-v2 support ([3f3ea69](https://github.com/Molunerfinn/PicGo/commit/3f3ea69)) -* add uploading image from URL support ([a28c678](https://github.com/Molunerfinn/PicGo/commit/a28c678)) -* finish all-select && shift multi-select ([2aeca50](https://github.com/Molunerfinn/PicGo/commit/2aeca50)), closes [#342](https://github.com/Molunerfinn/PicGo/issues/342) - - -### :bug: Bug Fixes - -* confused port number auto increasing when opening a new PicGo app ([cd70a1a](https://github.com/Molunerfinn/PicGo/commit/cd70a1a)) -* correct inputbox value && remove listener ([32334e9](https://github.com/Molunerfinn/PicGo/commit/32334e9)) -* give a hint when node.js is not installed ([7e86618](https://github.com/Molunerfinn/PicGo/commit/7e86618)) -* right-click menu upload fails with PicGo open ([96cdfea](https://github.com/Molunerfinn/PicGo/commit/96cdfea)), closes [#415](https://github.com/Molunerfinn/PicGo/issues/415) -* some win10 upload clipboard image crash ([cc182b0](https://github.com/Molunerfinn/PicGo/commit/cc182b0)) -* travis-ci bug ([b357dfb](https://github.com/Molunerfinn/PicGo/commit/b357dfb)) -* url uploader bug ([96544f5](https://github.com/Molunerfinn/PicGo/commit/96544f5)) - - -### :pencil: Documentation - -* update choco install picgo ([f357557](https://github.com/Molunerfinn/PicGo/commit/f357557)) -* update docs ([fd7673e](https://github.com/Molunerfinn/PicGo/commit/fd7673e)) -* update readme ([fb014dd](https://github.com/Molunerfinn/PicGo/commit/fb014dd)) - - -### :package: Chore - -* update funding url ([024d9cf](https://github.com/Molunerfinn/PicGo/commit/024d9cf)) - - - -## :tada: 2.2.2 (2020-01-20) - - -### :bug: Bug Fixes - -* picgo-server upload clipboard file's result bug ([4ebd76f](https://github.com/Molunerfinn/PicGo/commit/4ebd76f)) -* releaseUrl may can't get latest version ([ee46ab1](https://github.com/Molunerfinn/PicGo/commit/ee46ab1)) - - - -## :tada: 2.2.1 (2020-01-09) - - -### :sparkles: Features - -* add alias for plugin config name ([5a06483](https://github.com/Molunerfinn/PicGo/commit/5a06483)) -* add aliyun oss options ([a33f1ad](https://github.com/Molunerfinn/PicGo/commit/a33f1ad)), closes [#347](https://github.com/Molunerfinn/PicGo/issues/347) -* **server:** add http server for uploading images by a http request ([c56d4ef](https://github.com/Molunerfinn/PicGo/commit/c56d4ef)) -* add server config settings ([6b57cf7](https://github.com/Molunerfinn/PicGo/commit/6b57cf7)) -* only shows visible pic-beds ([9d4d605](https://github.com/Molunerfinn/PicGo/commit/9d4d605)), closes [#310](https://github.com/Molunerfinn/PicGo/issues/310) - - -### :bug: Bug Fixes - -* decrease title-bar z-index when config-form dialog shows ([f2750e1](https://github.com/Molunerfinn/PicGo/commit/f2750e1)) -* **website:** website pictures error ([a5b6526](https://github.com/Molunerfinn/PicGo/commit/a5b6526)) -* add new tray icon for macOS dark-mode ([c5adf3b](https://github.com/Molunerfinn/PicGo/commit/c5adf3b)), closes [#267](https://github.com/Molunerfinn/PicGo/issues/267) -* beforeOpen handler in windows ([cd30a6c](https://github.com/Molunerfinn/PicGo/commit/cd30a6c)) -* busApi event register first && emit later ([e1a0cbb](https://github.com/Molunerfinn/PicGo/commit/e1a0cbb)) -* enum type error ([4e3fa28](https://github.com/Molunerfinn/PicGo/commit/4e3fa28)) -* handle empty request-body ([81e6acb](https://github.com/Molunerfinn/PicGo/commit/81e6acb)) -* launch error in new structrue ([bc8e641](https://github.com/Molunerfinn/PicGo/commit/bc8e641)) -* miniWindow minimize bug ([5f2b7c7](https://github.com/Molunerfinn/PicGo/commit/5f2b7c7)) -* plugin config-form && default plugin logo ([514fc40](https://github.com/Molunerfinn/PicGo/commit/514fc40)) -* release script ([b4f10c6](https://github.com/Molunerfinn/PicGo/commit/b4f10c6)) -* removeById handler error ([c4f0a30](https://github.com/Molunerfinn/PicGo/commit/c4f0a30)), closes [#382](https://github.com/Molunerfinn/PicGo/issues/382) -* rename page not work ([29a55ed](https://github.com/Molunerfinn/PicGo/commit/29a55ed)) -* save debug mode && PICGO_ENV into config file ([c6ead5b](https://github.com/Molunerfinn/PicGo/commit/c6ead5b)) -* server may never start ([73870a5](https://github.com/Molunerfinn/PicGo/commit/73870a5)) -* settingPage && miniPage style in windows ([3fd9572](https://github.com/Molunerfinn/PicGo/commit/3fd9572)) - - -### :pencil: Documentation - -* add note for windows electron mirror ([46a49ed](https://github.com/Molunerfinn/PicGo/commit/46a49ed)) -* remove weibo picbed ([e81b8f4](https://github.com/Molunerfinn/PicGo/commit/e81b8f4)) -* update installation by scoop ([91b397d](https://github.com/Molunerfinn/PicGo/commit/91b397d)), closes [#295](https://github.com/Molunerfinn/PicGo/issues/295) -* update readme ([1b3522e](https://github.com/Molunerfinn/PicGo/commit/1b3522e)) -* update README ([f491209](https://github.com/Molunerfinn/PicGo/commit/f491209)) -* update site ([fe9e19a](https://github.com/Molunerfinn/PicGo/commit/fe9e19a)) - - - -# :tada: 2.2.0 (2020-01-01) - - -### :sparkles: Features - -* add alias for plugin config name ([5a06483](https://github.com/Molunerfinn/PicGo/commit/5a06483)) -* add aliyun oss options ([a33f1ad](https://github.com/Molunerfinn/PicGo/commit/a33f1ad)), closes [#347](https://github.com/Molunerfinn/PicGo/issues/347) -* **server:** add http server for uploading images by a http request ([c56d4ef](https://github.com/Molunerfinn/PicGo/commit/c56d4ef)) -* add server config settings ([6b57cf7](https://github.com/Molunerfinn/PicGo/commit/6b57cf7)) -* only shows visible pic-beds ([9d4d605](https://github.com/Molunerfinn/PicGo/commit/9d4d605)), closes [#310](https://github.com/Molunerfinn/PicGo/issues/310) - - -### :bug: Bug Fixes - -* beforeOpen handler in windows ([cd30a6c](https://github.com/Molunerfinn/PicGo/commit/cd30a6c)) -* **website:** website pictures error ([a5b6526](https://github.com/Molunerfinn/PicGo/commit/a5b6526)) -* add new tray icon for macOS dark-mode ([c5adf3b](https://github.com/Molunerfinn/PicGo/commit/c5adf3b)), closes [#267](https://github.com/Molunerfinn/PicGo/issues/267) -* busApi event register first && emit later ([e1a0cbb](https://github.com/Molunerfinn/PicGo/commit/e1a0cbb)) -* decrease title-bar z-index when config-form dialog shows ([f2750e1](https://github.com/Molunerfinn/PicGo/commit/f2750e1)) -* enum type error ([4e3fa28](https://github.com/Molunerfinn/PicGo/commit/4e3fa28)) -* handle empty request-body ([81e6acb](https://github.com/Molunerfinn/PicGo/commit/81e6acb)) -* launch error in new structrue ([bc8e641](https://github.com/Molunerfinn/PicGo/commit/bc8e641)) -* plugin config-form && default plugin logo ([514fc40](https://github.com/Molunerfinn/PicGo/commit/514fc40)) -* release script ([b4f10c6](https://github.com/Molunerfinn/PicGo/commit/b4f10c6)) -* rename page not work ([29a55ed](https://github.com/Molunerfinn/PicGo/commit/29a55ed)) -* save debug mode && PICGO_ENV into config file ([c6ead5b](https://github.com/Molunerfinn/PicGo/commit/c6ead5b)) -* settingPage && miniPage style in windows ([3fd9572](https://github.com/Molunerfinn/PicGo/commit/3fd9572)) - - -### :pencil: Documentation - -* add note for windows electron mirror ([46a49ed](https://github.com/Molunerfinn/PicGo/commit/46a49ed)) -* remove weibo picbed ([e81b8f4](https://github.com/Molunerfinn/PicGo/commit/e81b8f4)) -* update installation by scoop ([91b397d](https://github.com/Molunerfinn/PicGo/commit/91b397d)), closes [#295](https://github.com/Molunerfinn/PicGo/issues/295) -* update readme ([1b3522e](https://github.com/Molunerfinn/PicGo/commit/1b3522e)) -* update README ([f491209](https://github.com/Molunerfinn/PicGo/commit/f491209)) -* update site ([fe9e19a](https://github.com/Molunerfinn/PicGo/commit/fe9e19a)) - - - -## :tada: 2.1.2 (2019-04-19) - - -### :sparkles: Features - -* add file-name for customurl ([c59e2bc](https://github.com/Molunerfinn/PicGo/commit/c59e2bc)), closes [#173](https://github.com/Molunerfinn/PicGo/issues/173) - - -### :bug: Bug Fixes - -* log-level filter bug ([4e02244](https://github.com/Molunerfinn/PicGo/commit/4e02244)), closes [#237](https://github.com/Molunerfinn/PicGo/issues/237) -* log-level's reset value from 'all' -> ['all'] ([3c6b329](https://github.com/Molunerfinn/PicGo/commit/3c6b329)), closes [#240](https://github.com/Molunerfinn/PicGo/issues/240) [#237](https://github.com/Molunerfinn/PicGo/issues/237) -* mini window hidden bug in linux ([466dbec](https://github.com/Molunerfinn/PicGo/commit/466dbec)), closes [#239](https://github.com/Molunerfinn/PicGo/issues/239) - - - -## :tada: 2.1.1 (2019-04-16) - - -### :bug: Bug Fixes - -* upload-area can't upload images ([4000cea](https://github.com/Molunerfinn/PicGo/commit/4000cea)) - - - -# :tada: 2.1.0 (2019-04-15) - - -### :sparkles: Features - -* add commandline argvs support for picgo app ([6db86ec](https://github.com/Molunerfinn/PicGo/commit/6db86ec)) -* add gui-api for remove event ([407b821](https://github.com/Molunerfinn/PicGo/commit/407b821)), closes [#201](https://github.com/Molunerfinn/PicGo/issues/201) -* add windows context menu ([e5fbe75](https://github.com/Molunerfinn/PicGo/commit/e5fbe75)) -* add workflow for mac ([7f17697](https://github.com/Molunerfinn/PicGo/commit/7f17697)) -* support commandline -> upload images in clipboard ([74c7016](https://github.com/Molunerfinn/PicGo/commit/74c7016)) - - -### :bug: Bug Fixes - -* qiniu area option from select group -> input ([c64959a](https://github.com/Molunerfinn/PicGo/commit/c64959a)), closes [#230](https://github.com/Molunerfinn/PicGo/issues/230) - - -### :pencil: Documentation - -* add brew cask source ([6122e17](https://github.com/Molunerfinn/PicGo/commit/6122e17)) - - -### :package: Chore - -* add picgo bump-version ([37f1d34](https://github.com/Molunerfinn/PicGo/commit/37f1d34)) - - - +## :tada: 2.9.1 (2024-07-07) + + +### :sparkles: Features + +* **custom:** add alist support ([bead8a2](https://github.com/Kuingsmile/piclist/commit/bead8a2)) +* **custom:** add build in alist support and fix gallery bug ([875d034](https://github.com/Kuingsmile/piclist/commit/875d034)), closes [#218](https://github.com/Kuingsmile/piclist/issues/218) +* **custom:** optimize upload progress ([0039399](https://github.com/Kuingsmile/piclist/commit/0039399)) +* **custom:** upgrade core ([6aa7311](https://github.com/Kuingsmile/piclist/commit/6aa7311)) + + +### :bug: Bug Fixes + +* **custom:** fix picbed config page css ([d7e0f56](https://github.com/Kuingsmile/piclist/commit/d7e0f56)), closes [#213](https://github.com/Kuingsmile/piclist/issues/213) +* **custom:** fix rename window bug ([0b670a8](https://github.com/Kuingsmile/piclist/commit/0b670a8)), closes [#58](https://github.com/Kuingsmile/piclist/issues/58) +* **custom:** fix s3 delete bug ([b30dc4d](https://github.com/Kuingsmile/piclist/commit/b30dc4d)), closes [#212](https://github.com/Kuingsmile/piclist/issues/212) + + +### :pencil: Documentation + +* **custom:** add scoop-lemon as install method ([09bf847](https://github.com/Kuingsmile/piclist/commit/09bf847)) +* **custom:** fix docs typo ([dc70648](https://github.com/Kuingsmile/piclist/commit/dc70648)) +* **custom:** update 2.9.1 changelog ([2bdb79f](https://github.com/Kuingsmile/piclist/commit/2bdb79f)) + + + +# :tada: 2.9.0 (2024-06-14) + + +### :sparkles: Features + +* **custom:** add tray tooltip ([8a565c1](https://github.com/Kuingsmile/piclist/commit/8a565c1)) +* **custom:** optimize get config speed ([106290f](https://github.com/Kuingsmile/piclist/commit/106290f)) +* **custom:** refactor all main ipc event ([5ddc182](https://github.com/Kuingsmile/piclist/commit/5ddc182)) +* **custom:** smms delete for repeat file ([07e7a26](https://github.com/Kuingsmile/piclist/commit/07e7a26)) +* **custom:** support create bucket for s3 ([226f170](https://github.com/Kuingsmile/piclist/commit/226f170)) +* **custom:** update i18n force update ([e9c386d](https://github.com/Kuingsmile/piclist/commit/e9c386d)) +* **custom:** use new ssh2 and node-ssh ([2290e4e](https://github.com/Kuingsmile/piclist/commit/2290e4e)) + + +### :bug: Bug Fixes + +* **custom:** change manage file name ([d7028fc](https://github.com/Kuingsmile/piclist/commit/d7028fc)) +* **custom:** fix bug while using webp plugin ([30341d4](https://github.com/Kuingsmile/piclist/commit/30341d4)), closes [#205](https://github.com/Kuingsmile/piclist/issues/205) +* **custom:** fix css error ([0c241bc](https://github.com/Kuingsmile/piclist/commit/0c241bc)) +* **custom:** fix url copy error for dirs ([f1a7a13](https://github.com/Kuingsmile/piclist/commit/f1a7a13)) + + +### :pencil: Documentation + +* **custom:** v2.9.0 changelog ([7226cc8](https://github.com/Kuingsmile/piclist/commit/7226cc8)) + + + +## :tada: 2.8.6 (2024-05-26) + + +### :sparkles: Features + +* **custom:** add ipc event handlers for mini window icon and set on top ([892a147](https://github.com/Kuingsmile/piclist/commit/892a147)) +* **custom:** improve speed of download config files ([e16737e](https://github.com/Kuingsmile/piclist/commit/e16737e)) +* **custom:** update manual source URL based on language configuration ([3587bc5](https://github.com/Kuingsmile/piclist/commit/3587bc5)) +* **custom:** update manual url for en language ([e6ee325](https://github.com/Kuingsmile/piclist/commit/e6ee325)) +* **custom:** write delete msg to log file ([16d6a19](https://github.com/Kuingsmile/piclist/commit/16d6a19)) + + +### :bug: Bug Fixes + +* **custom:** fix el-select option display problem ([4f95014](https://github.com/Kuingsmile/piclist/commit/4f95014)) +* **custom:** remove listener before unmount ([8b21e84](https://github.com/Kuingsmile/piclist/commit/8b21e84)) + + +### :pencil: Documentation + +* **custom:** prepare for 2.8.6 ([4887090](https://github.com/Kuingsmile/piclist/commit/4887090)) + + +### :zap: Performance Improvements + +* **custom:** improve the performance of clipboard watching ([4a0a882](https://github.com/Kuingsmile/piclist/commit/4a0a882)) + + +### :package: Chore + +* **custom:** update to macos-12 for action ([5eb3c9d](https://github.com/Kuingsmile/piclist/commit/5eb3c9d)) + + + +## :tada: 2.8.5 (2024-05-13) + + +### :sparkles: Features + +* **custom:** add support for oss-cn-wuhan ([0153991](https://github.com/Kuingsmile/piclist/commit/0153991)) +* **custom:** optimize aws s3 and buildin rename ([9ca0e4b](https://github.com/Kuingsmile/piclist/commit/9ca0e4b)) +* **custom:** optimize upload api ([e4c4a6f](https://github.com/Kuingsmile/piclist/commit/e4c4a6f)) + + +### :pencil: Documentation + +* **custom:** prepare for v2.8.5 ([3d3b80f](https://github.com/Kuingsmile/piclist/commit/3d3b80f)) + + + +## :tada: 2.8.4 (2024-04-28) + + +### :sparkles: Features + +* **custom:** add feedback entry ([2087d9a](https://github.com/Kuingsmile/piclist/commit/2087d9a)) +* **custom:** auto refresh after change custom url ([939c907](https://github.com/Kuingsmile/piclist/commit/939c907)), closes [#191](https://github.com/Kuingsmile/piclist/issues/191) +* **custom:** change timestamp to milliseconds ([25648ea](https://github.com/Kuingsmile/piclist/commit/25648ea)), closes [#194](https://github.com/Kuingsmile/piclist/issues/194) + + +### :bug: Bug Fixes + +* **custom:** fix aws s3 urlprefix bug ([3681681](https://github.com/Kuingsmile/piclist/commit/3681681)) + + +### :pencil: Documentation + +* **custom:** prepare for 2.8.4 ([bcb4760](https://github.com/Kuingsmile/piclist/commit/bcb4760)) + + + +## :tada: 2.8.3 (2024-04-11) + + +### :sparkles: Features + +* **custom:** exclude gif from format convert ([0b0b2ad](https://github.com/Kuingsmile/piclist/commit/0b0b2ad)) + + + +## :tada: 2.8.2 (2024-04-11) + + +### :bug: Bug Fixes + +* **custom:** exclude gif from format convert ([715f662](https://github.com/Kuingsmile/piclist/commit/715f662)) +* **custom:** fix rename window bug ([45fae30](https://github.com/Kuingsmile/piclist/commit/45fae30)), closes [#186](https://github.com/Kuingsmile/piclist/issues/186) [#117](https://github.com/Kuingsmile/piclist/issues/117) +* **custom:** fix rename window position bug ([1798220](https://github.com/Kuingsmile/piclist/commit/1798220)) +* **custom:** fix watermark bug ([a6e3542](https://github.com/Kuingsmile/piclist/commit/a6e3542)), closes [#188](https://github.com/Kuingsmile/piclist/issues/188) + + +### :pencil: Documentation + +* **custom:** prepare for 2.8.2 ([ef9d34c](https://github.com/Kuingsmile/piclist/commit/ef9d34c)) + + + +## :tada: 2.8.1 (2024-04-09) + + +### :sparkles: Features + +* **custom:** add api doc for 36677 port ([872a1a7](https://github.com/Kuingsmile/piclist/commit/872a1a7)) +* **custom:** add buildin web server ([ab8b62e](https://github.com/Kuingsmile/piclist/commit/ab8b62e)), closes [#180](https://github.com/Kuingsmile/piclist/issues/180) +* **custom:** add log for image processing ([e4c1c7f](https://github.com/Kuingsmile/piclist/commit/e4c1c7f)) +* **custom:** add u flag for gallery regexp match ([aa9e535](https://github.com/Kuingsmile/piclist/commit/aa9e535)) +* **custom:** change buildin rename md5 calculate ([bf8d7b4](https://github.com/Kuingsmile/piclist/commit/bf8d7b4)), closes [#178](https://github.com/Kuingsmile/piclist/issues/178) +* **custom:** exclude svg from watermarker ([75b0c7f](https://github.com/Kuingsmile/piclist/commit/75b0c7f)), closes [#182](https://github.com/Kuingsmile/piclist/issues/182) +* **custom:** optimize the processing of upload path and custom url ([ae40a16](https://github.com/Kuingsmile/piclist/commit/ae40a16)) +* **custom:** optimize webServer ([e6e9472](https://github.com/Kuingsmile/piclist/commit/e6e9472)) +* **custom:** refactor upload and delete api ([475b85e](https://github.com/Kuingsmile/piclist/commit/475b85e)) +* **custom:** update api doc ([922f04f](https://github.com/Kuingsmile/piclist/commit/922f04f)) + + +### :bug: Bug Fixes + +* **custom:** fix compatiblity with typora ([762913c](https://github.com/Kuingsmile/piclist/commit/762913c)) +* **custom:** fix error handling in server startup ([cf0450f](https://github.com/Kuingsmile/piclist/commit/cf0450f)) +* **custom:** fix image watermark bug ([8e5e6d4](https://github.com/Kuingsmile/piclist/commit/8e5e6d4)) + + +### :pencil: Documentation + +* **custom:** add tg group qr code ([5cd34a6](https://github.com/Kuingsmile/piclist/commit/5cd34a6)) +* **custom:** prepare for 2.8.1 ([f73badd](https://github.com/Kuingsmile/piclist/commit/f73badd)) +* **custom:** prepare for 2.81 ([0476346](https://github.com/Kuingsmile/piclist/commit/0476346)) +* **custom:** update tg group link ([20f6acc](https://github.com/Kuingsmile/piclist/commit/20f6acc)) + + + +# :tada: 2.8.0 (2024-03-14) + + +### :sparkles: Features + +* **custom:** add c1n token setting ([1fdc8fc](https://github.com/Kuingsmile/piclist/commit/1fdc8fc)) +* **custom:** add support for cf worker short url service ([9c6504c](https://github.com/Kuingsmile/piclist/commit/9c6504c)), closes [#170](https://github.com/Kuingsmile/piclist/issues/170) +* **custom:** optimize aliyun upload ([2373c64](https://github.com/Kuingsmile/piclist/commit/2373c64)) +* **custom:** support force refresh gallery page ([cafb4d5](https://github.com/Kuingsmile/piclist/commit/cafb4d5)) + + +### :pencil: Documentation + +* **custom:** prepare for v2.8.0 ([ac2cb0d](https://github.com/Kuingsmile/piclist/commit/ac2cb0d)) +* **custom:** update docs ([8d46c9c](https://github.com/Kuingsmile/piclist/commit/8d46c9c)) +* **custom:** update FAQ ([3e17647](https://github.com/Kuingsmile/piclist/commit/3e17647)) +* **custom:** update wechat ([2c1f40a](https://github.com/Kuingsmile/piclist/commit/2c1f40a)) +* **custom:** update wechat group ([dcf5121](https://github.com/Kuingsmile/piclist/commit/dcf5121)) + + + +## :tada: 2.7.4 (2024-02-25) + + +### :sparkles: Features + +* **custom:** add new set item to open config file path ([4be82e0](https://github.com/Kuingsmile/piclist/commit/4be82e0)) + + +### :bug: Bug Fixes + +* **custom:** fix buildin s3 config item bug ([914ec15](https://github.com/Kuingsmile/piclist/commit/914ec15)) +* **custom:** fix config import name error ([4c70946](https://github.com/Kuingsmile/piclist/commit/4c70946)) +* **custom:** fix typo ([d3fdfca](https://github.com/Kuingsmile/piclist/commit/d3fdfca)) +* **custom:** optimize github remote delete ([0767fbc](https://github.com/Kuingsmile/piclist/commit/0767fbc)), closes [#158](https://github.com/Kuingsmile/piclist/issues/158) + + +### :pencil: Documentation + +* **custom:** update chagelog ([3fc3f92](https://github.com/Kuingsmile/piclist/commit/3fc3f92)) +* **custom:** update docs for docker usage ([21cc115](https://github.com/Kuingsmile/piclist/commit/21cc115)) +* **custom:** update wechat group info ([faeeed7](https://github.com/Kuingsmile/piclist/commit/faeeed7)) + + + +## :tada: 2.7.3 (2024-01-30) + + +### :sparkles: Features + +* **custom:** support picbed name click to config page ([48cfaab](https://github.com/Kuingsmile/piclist/commit/48cfaab)) + + +### :bug: Bug Fixes + +* **custom:** fix format convert bug ([ea82600](https://github.com/Kuingsmile/piclist/commit/ea82600)) + + +### :pencil: Documentation + +* **custom:** add wechat group ([d87a014](https://github.com/Kuingsmile/piclist/commit/d87a014)) +* **custom:** update changelog ([3c9f13a](https://github.com/Kuingsmile/piclist/commit/3c9f13a)) + + + +## :tada: 2.7.2 (2024-01-23) + + +### :sparkles: Features + +* **custom:** add build-in aws s3 support, add endpoint for upyun ([efc6a16](https://github.com/Kuingsmile/piclist/commit/efc6a16)), closes [#143](https://github.com/Kuingsmile/piclist/issues/143) [#134](https://github.com/Kuingsmile/piclist/issues/134) +* **custom:** add new area support for qiniu cloud ([89fc032](https://github.com/Kuingsmile/piclist/commit/89fc032)) +* **custom:** manage page auto import support build-in s3 ([48ec494](https://github.com/Kuingsmile/piclist/commit/48ec494)) +* **custom:** support build-in s3 remote delete ([d1e2792](https://github.com/Kuingsmile/piclist/commit/d1e2792)) + + +### :bug: Bug Fixes + +* **custom:** fix gallery copy bug of aws-s3 ([0e81ccd](https://github.com/Kuingsmile/piclist/commit/0e81ccd)) +* **custom:** fix s3 remote delete bug when url is modified locally ([58248bc](https://github.com/Kuingsmile/piclist/commit/58248bc)) +* **custom:** update formatConvertObj to use JSON.stringify ([719e74f](https://github.com/Kuingsmile/piclist/commit/719e74f)) + + +### :pencil: Documentation + +* **custom:** update FAQ ([c6dc1ea](https://github.com/Kuingsmile/piclist/commit/c6dc1ea)) +* **custom:** update version changelog ([9e69702](https://github.com/Kuingsmile/piclist/commit/9e69702)) + + + +## :tada: 2.7.1 (2024-01-15) + + +### :sparkles: Features + +* **custom:** add manual page open setting ([e4f957d](https://github.com/Kuingsmile/piclist/commit/e4f957d)) +* **custom:** add new option to open download page when new version available ([bbbfbda](https://github.com/Kuingsmile/piclist/commit/bbbfbda)), closes [#128](https://github.com/Kuingsmile/piclist/issues/128) +* **custom:** add options setting for webdav ([2dde06d](https://github.com/Kuingsmile/piclist/commit/2dde06d)), closes [#131](https://github.com/Kuingsmile/piclist/issues/131) +* **custom:** add support for lskypro uploader ([531b387](https://github.com/Kuingsmile/piclist/commit/531b387)) +* **custom:** enable mozJPEG encoder by default ([98abeaa](https://github.com/Kuingsmile/piclist/commit/98abeaa)) +* **custom:** manual url will be based on lanaguage setting ([9338fc6](https://github.com/Kuingsmile/piclist/commit/9338fc6)) +* **custom:** support build-in lsky sync delete ([4c03260](https://github.com/Kuingsmile/piclist/commit/4c03260)) +* **custom:** support specific format option for image conversion ([9083a1c](https://github.com/Kuingsmile/piclist/commit/9083a1c)), closes [#124](https://github.com/Kuingsmile/piclist/issues/124) + + +### :bug: Bug Fixes + +* **custom:** fix i18n error ([2a8c435](https://github.com/Kuingsmile/piclist/commit/2a8c435)) +* **custom:** fix sftp upload error when file name is the same ([269a7bf](https://github.com/Kuingsmile/piclist/commit/269a7bf)), closes [#129](https://github.com/Kuingsmile/piclist/issues/129) + + +### :pencil: Documentation + +* **custom:** update docs ([7055f5b](https://github.com/Kuingsmile/piclist/commit/7055f5b)) +* **custom:** update FAQ ([fc0ac6c](https://github.com/Kuingsmile/piclist/commit/fc0ac6c)) +* **custom:** update new version changelog ([3e09dc4](https://github.com/Kuingsmile/piclist/commit/3e09dc4)) + + + +# :tada: 2.7.0 (2023-12-28) + + +### :sparkles: Features + +* **custom:** add delete configuration confirm check ([5fb756c](https://github.com/Kuingsmile/piclist/commit/5fb756c)) +* **custom:** add more log file quick open item ([1884dba](https://github.com/Kuingsmile/piclist/commit/1884dba)) +* **custom:** add preview support for more types of text file ([2c46dca](https://github.com/Kuingsmile/piclist/commit/2c46dca)) +* **custom:** optimize display of manage page ([8306013](https://github.com/Kuingsmile/piclist/commit/8306013)) +* **custom:** remove sponsor from menu ([28e6f47](https://github.com/Kuingsmile/piclist/commit/28e6f47)) + + +### :bug: Bug Fixes + +* **custom:** exclude svg file from remove exif step ([f1084e5](https://github.com/Kuingsmile/piclist/commit/f1084e5)), closes [#123](https://github.com/Kuingsmile/piclist/issues/123) +* **custom:** fix chinease char encode error ([1fbd7a7](https://github.com/Kuingsmile/piclist/commit/1fbd7a7)) +* **custom:** fix tooltip disabled state in login.vue ([99ab80f](https://github.com/Kuingsmile/piclist/commit/99ab80f)) +* **custom:** hide rename button if not supported ([e99f789](https://github.com/Kuingsmile/piclist/commit/e99f789)), closes [#122](https://github.com/Kuingsmile/piclist/issues/122) + + +### :pencil: Documentation + +* **custom:** update docs ([c060261](https://github.com/Kuingsmile/piclist/commit/c060261)) +* **custom:** update docs ([d0df3ec](https://github.com/Kuingsmile/piclist/commit/d0df3ec)) +* **custom:** update version log ([157d0ff](https://github.com/Kuingsmile/piclist/commit/157d0ff)) + + +### :package: Chore + +* **custom:** remove usused files ([a7b7d94](https://github.com/Kuingsmile/piclist/commit/a7b7d94)) + + + +## :tada: 2.6.8 (2023-12-08) + + +### :bug: Bug Fixes + +* **custom:** fix gallery page url copy bug ([3063612](https://github.com/Kuingsmile/piclist/commit/3063612)) +* **custom:** fix log record of uploader ([f901811](https://github.com/Kuingsmile/piclist/commit/f901811)) + + +### :pencil: Documentation + +* **custom:** add support for docker ([2de1a1f](https://github.com/Kuingsmile/piclist/commit/2de1a1f)), closes [#118](https://github.com/Kuingsmile/piclist/issues/118) +* **custom:** update change log ([29dc103](https://github.com/Kuingsmile/piclist/commit/29dc103)) + + +### :package: Chore + +* **custom:** update issue template ([1bd7df3](https://github.com/Kuingsmile/piclist/commit/1bd7df3)) +* **custom:** update workflow file ([c29d40b](https://github.com/Kuingsmile/piclist/commit/c29d40b)) + + + +## :tada: 2.6.7 (2023-11-17) + + +### :sparkles: Features + +* **custom:** add new config field temp dir path ([e968a65](https://github.com/Kuingsmile/piclist/commit/e968a65)), closes [#112](https://github.com/Kuingsmile/piclist/issues/112) + + +### :bug: Bug Fixes + +* **custom:** fix delete event error in server api ([5658ce6](https://github.com/Kuingsmile/piclist/commit/5658ce6)) + + +### :pencil: Documentation + +* **custom:** add docs for upload service using piclist due to a potential typora bug ([02dc71b](https://github.com/Kuingsmile/piclist/commit/02dc71b)) +* **custom:** update docs ([c897c23](https://github.com/Kuingsmile/piclist/commit/c897c23)) + + + +## :tada: 2.6.6 (2023-10-31) + + +### :sparkles: Features + +* **custom:** image format convert will be skipped according to raw format ([9ad13d4](https://github.com/Kuingsmile/piclist/commit/9ad13d4)), closes [#109](https://github.com/Kuingsmile/piclist/issues/109) +* **custom:** optimize detele function for aws s3 ([b7b86b2](https://github.com/Kuingsmile/piclist/commit/b7b86b2)) +* **custom:** support gitea for setting file sync ([95f1035](https://github.com/Kuingsmile/piclist/commit/95f1035)) + + +### :bug: Bug Fixes + +* **custom:** fix sandbox error under dev mode ([2dc96f6](https://github.com/Kuingsmile/piclist/commit/2dc96f6)) + + +### :pencil: Documentation + +* **custom:** update docs ([f0f696a](https://github.com/Kuingsmile/piclist/commit/f0f696a)) + + + +## :tada: 2.6.5 (2023-10-18) + + +### :sparkles: Features + +* **custom:** remove sensitive info in reponse field ([d9f25ac](https://github.com/Kuingsmile/piclist/commit/d9f25ac)) +* **custom:** upload api now return encrypted full result ([0189715](https://github.com/Kuingsmile/piclist/commit/0189715)) + + +### :bug: Bug Fixes + +* **custom:** fix an issue working with watt toolkit of github picbed ([10ec712](https://github.com/Kuingsmile/piclist/commit/10ec712)), closes [#106](https://github.com/Kuingsmile/piclist/issues/106) +* **custom:** fix upload error when filename contains nested path of webdav sftp and local ([92284ac](https://github.com/Kuingsmile/piclist/commit/92284ac)) + + +### :pencil: Documentation + +* **custom:** update docs ([65cfe6e](https://github.com/Kuingsmile/piclist/commit/65cfe6e)) + + + +## :tada: 2.6.4 (2023-10-14) + + +### :sparkles: Features + +* add piclist itself as a picbed ([9f49fc0](https://github.com/Kuingsmile/piclist/commit/9f49fc0)) +* **custom:** add tk analytic ([e8ea905](https://github.com/Kuingsmile/piclist/commit/e8ea905)) + + +### :bug: Bug Fixes + +* **custom:** fix bump version error ([6f8e4e1](https://github.com/Kuingsmile/piclist/commit/6f8e4e1)) +* fix font file download logic ([32de515](https://github.com/Kuingsmile/piclist/commit/32de515)) +* fix macos right click menu file bug ([75601e7](https://github.com/Kuingsmile/piclist/commit/75601e7)) +* fix manage config file sync bug ([47b61e6](https://github.com/Kuingsmile/piclist/commit/47b61e6)) + + +### :pencil: Documentation + +* **custom:** update docs ([d1780f2](https://github.com/Kuingsmile/piclist/commit/d1780f2)) + + +### :package: Chore + +* **custom:** migrate to node-bump-version ([567af45](https://github.com/Kuingsmile/piclist/commit/567af45)) + + + +## :tada: 2.6.3 (2023-10-10) + + +### :sparkles: Features + +* add authoration key for built-in server ([06c518d](https://github.com/Kuingsmile/piclist/commit/06c518d)) +* build-in server support formdata now ([615cbc5](https://github.com/Kuingsmile/piclist/commit/615cbc5)), closes [#103](https://github.com/Kuingsmile/piclist/issues/103) +* built-in server will listen to 0.0.0.0 other than 127.0.0.1 ([54d289c](https://github.com/Kuingsmile/piclist/commit/54d289c)) + + +### :bug: Bug Fixes + +* fix an issue of watermark ([64952e1](https://github.com/Kuingsmile/piclist/commit/64952e1)), closes [#102](https://github.com/Kuingsmile/piclist/issues/102) +* fix local path picbed upload error ([392e178](https://github.com/Kuingsmile/piclist/commit/392e178)) +* fix upload api copy error after changing to 0.0.0.0 ([7e40808](https://github.com/Kuingsmile/piclist/commit/7e40808)) + + +### :pencil: Documentation + +* update docs ([573265c](https://github.com/Kuingsmile/piclist/commit/573265c)) + + + +## :tada: 2.6.2 (2023-09-30) + + +### :sparkles: Features + +* optimize filename display in gallery page ([0abfeff](https://github.com/Kuingsmile/piclist/commit/0abfeff)) +* update dialog will show change log now ([ef1812a](https://github.com/Kuingsmile/piclist/commit/ef1812a)) + + +### :bug: Bug Fixes + +* fix sftp delete error when the user don't have ssh permission ([819dfbb](https://github.com/Kuingsmile/piclist/commit/819dfbb)), closes [#100](https://github.com/Kuingsmile/piclist/issues/100) +* fix type error caused by fast-xml-parser ([0f100e5](https://github.com/Kuingsmile/piclist/commit/0f100e5)) + + +### :pencil: Documentation + +* update changelog ([d3ac2c5](https://github.com/Kuingsmile/piclist/commit/d3ac2c5)) + + + +## :tada: 2.6.1 (2023-09-13) + + +### :sparkles: Features + +* gif will be converted to animated webp now ([09a636f](https://github.com/Kuingsmile/PicList/commit/09a636f)) +* manual page now open in a new window ([b197b32](https://github.com/Kuingsmile/PicList/commit/b197b32)) +* webdav picbed now support digest auth ([2e655a4](https://github.com/Kuingsmile/PicList/commit/2e655a4)) + + +### :bug: Bug Fixes + +* fix an issue of check box in manage page ([d776600](https://github.com/Kuingsmile/PicList/commit/d776600)) + + + +# :tada: 2.6.0 (2023-09-11) + + +### :sparkles: Features + +* batch rename in gallery will not modify un-matched files ([079b034](https://github.com/Kuingsmile/PicList/commit/079b034)) +* optimize memory use and loading and searching speed of manage page for 30 fold ([fb070e7](https://github.com/Kuingsmile/PicList/commit/fb070e7)) +* optimize title text jump action of upload page ([dfb6f76](https://github.com/Kuingsmile/PicList/commit/dfb6f76)) + + +### :zap: Performance Improvements + +* fix memory leak of main page ([5392d9e](https://github.com/Kuingsmile/PicList/commit/5392d9e)) +* fix memory leak of uoload and setting page ([219cbbb](https://github.com/Kuingsmile/PicList/commit/219cbbb)) + + + +## :tada: 2.5.3 (2023-09-07) + + +### :sparkles: Features + +* add telegra.ph picbed support ([dd6bfe6](https://github.com/Kuingsmile/PicList/commit/dd6bfe6)) +* add vertically and horizontally flip treat options for image processing ([cb76a34](https://github.com/Kuingsmile/PicList/commit/cb76a34)) +* optimize api copy ([08b45bc](https://github.com/Kuingsmile/PicList/commit/08b45bc)) +* upload api now support url query picbed and configname ([2fcec70](https://github.com/Kuingsmile/PicList/commit/2fcec70)), closes [#93](https://github.com/Kuingsmile/PicList/issues/93) + + +### :pencil: Documentation + +* update readme ([f9a3f24](https://github.com/Kuingsmile/PicList/commit/f9a3f24)) + + + +## :tada: 2.5.2 (2023-09-04) + + +### :sparkles: Features + +* add antileechtoken and expiretime for upyun manage ([ea61614](https://github.com/Kuingsmile/PicList/commit/ea61614)) +* add vs-piclist, a vscode plugin works with piclist ([373dfa2](https://github.com/Kuingsmile/PicList/commit/373dfa2)) +* update piclist core ([0eb7bac](https://github.com/Kuingsmile/PicList/commit/0eb7bac)) + + +### :bug: Bug Fixes + +* fix upload failed error of aliyun upyun and github ([320ac73](https://github.com/Kuingsmile/PicList/commit/320ac73)) +* remove circular dependency ([9ef5136](https://github.com/Kuingsmile/PicList/commit/9ef5136)) + + +### :package: Chore + +* update readme ([0a02b96](https://github.com/Kuingsmile/PicList/commit/0a02b96)) + + + +## :tada: 2.5.1 (2023-08-29) + + +### :sparkles: Features + +* add anti leech token for upyun ([4894f09](https://github.com/Kuingsmile/PicList/commit/4894f09)) +* add ts support for upyun ([95faa5b](https://github.com/Kuingsmile/PicList/commit/95faa5b)) +* update manage config page reflink ([636596a](https://github.com/Kuingsmile/PicList/commit/636596a)) +* using webview to show manual website ([bc7a446](https://github.com/Kuingsmile/PicList/commit/bc7a446)) + + +### :bug: Bug Fixes + +* fix an issue where files uploaded to minio using s3 plugin can't be deleted remotely ([80db40b](https://github.com/Kuingsmile/PicList/commit/80db40b)) +* fix custom domain error of minio ([0c8ea83](https://github.com/Kuingsmile/PicList/commit/0c8ea83)) +* fix ImgurApi.baseUrl is undefined ([7ada948](https://github.com/Kuingsmile/PicList/commit/7ada948)) + + +### :pencil: Documentation + +* add download counts for docs ([3085385](https://github.com/Kuingsmile/PicList/commit/3085385)) + + + +# :tada: 2.5.0 (2023-08-23) + + +### :sparkles: Features + +* add cloud delete support for alist v3 plugin ([16bc8ec](https://github.com/Kuingsmile/PicList/commit/16bc8ec)) +* add error handling for webdav image preview component ([c36a5b8](https://github.com/Kuingsmile/PicList/commit/c36a5b8)) +* add imagelocal component ([9d63799](https://github.com/Kuingsmile/PicList/commit/9d63799)) +* add notification for single rename of manage page ([19f2b18](https://github.com/Kuingsmile/PicList/commit/19f2b18)) +* add remote delete support for huawei obs and doge cloud ([746360b](https://github.com/Kuingsmile/PicList/commit/746360b)) +* add support for dogeCloud manage ([3040f4b](https://github.com/Kuingsmile/PicList/commit/3040f4b)), closes [#73](https://github.com/Kuingsmile/PicList/issues/73) +* add update all plugins ([3e32cbb](https://github.com/Kuingsmile/PicList/commit/3e32cbb)) +* add update progress bar and some optimization ([5173488](https://github.com/Kuingsmile/PicList/commit/5173488)), closes [#83](https://github.com/Kuingsmile/PicList/issues/83) +* add webPath for webdav picBed manage ([33b36d6](https://github.com/Kuingsmile/PicList/commit/33b36d6)) +* finish the implemention of sftp manage ([c7e81eb](https://github.com/Kuingsmile/PicList/commit/c7e81eb)) +* migrate from aws-sdk v2 to v3 ([13852a5](https://github.com/Kuingsmile/PicList/commit/13852a5)) +* optimize filename display ([2336483](https://github.com/Kuingsmile/PicList/commit/2336483)) +* optimize manage page UI, add new version check for plugin page ([e8189b0](https://github.com/Kuingsmile/PicList/commit/e8189b0)) + + +### :bug: Bug Fixes + +* add local path picbed into delete api of http server ([f585bb4](https://github.com/Kuingsmile/PicList/commit/f585bb4)) +* file sort order will not changed after force refresh now ([52f0fce](https://github.com/Kuingsmile/PicList/commit/52f0fce)) +* fix a bug of webdav image preview component ([f6c9a78](https://github.com/Kuingsmile/PicList/commit/f6c9a78)) +* fix an issue related with layout style ([083917e](https://github.com/Kuingsmile/PicList/commit/083917e)) +* fix s3 upload task function ([78be49d](https://github.com/Kuingsmile/PicList/commit/78be49d)) +* fix some bugs of manage page ([6f40c09](https://github.com/Kuingsmile/PicList/commit/6f40c09)) + + +### :pencil: Documentation + +* update documents ([1dcf54f](https://github.com/Kuingsmile/PicList/commit/1dcf54f)) +* update FAQ ([562f3c2](https://github.com/Kuingsmile/PicList/commit/562f3c2)) + + +### :package: Chore + +* chore work ([837027e](https://github.com/Kuingsmile/PicList/commit/837027e)) + + +### :zap: Performance Improvements + +* optimize the performance of main page ([4093a49](https://github.com/Kuingsmile/PicList/commit/4093a49)) + + + +## :tada: 1.9.9 (2023-08-01) + + +### :sparkles: Features + +* add new config item to skip resizing small pictures ([e6b80e8](https://github.com/Kuingsmile/PicList/commit/e6b80e8)), closes [#81](https://github.com/Kuingsmile/PicList/issues/81) +* optimize gallery page UI ([3bf4683](https://github.com/Kuingsmile/PicList/commit/3bf4683)) +* option sslenabled of webdav is not required now ([530e30c](https://github.com/Kuingsmile/PicList/commit/530e30c)) +* support scale images by fixed width or fixed height ([3cc118e](https://github.com/Kuingsmile/PicList/commit/3cc118e)), closes [#81](https://github.com/Kuingsmile/PicList/issues/81) + + +### :bug: Bug Fixes + +* exclude gif picture from image process pipline ([40efb5d](https://github.com/Kuingsmile/PicList/commit/40efb5d)), closes [#76](https://github.com/Kuingsmile/PicList/issues/76) +* fix an issue of url upload and wechat urls ([baf358d](https://github.com/Kuingsmile/PicList/commit/baf358d)), closes [#80](https://github.com/Kuingsmile/PicList/issues/80) +* fix an issue of webdav and file rename ([3e76ba1](https://github.com/Kuingsmile/PicList/commit/3e76ba1)), closes [#79](https://github.com/Kuingsmile/PicList/issues/79) +* modify gallery page UI ([bce6303](https://github.com/Kuingsmile/PicList/commit/bce6303)), closes [#77](https://github.com/Kuingsmile/PicList/issues/77) + + + +## :tada: 1.9.8 (2023-07-20) + + +### :sparkles: Features + +* add a new config item to close upload result notification ([c1698e8](https://github.com/Kuingsmile/PicList/commit/c1698e8)), closes [#74](https://github.com/Kuingsmile/PicList/issues/74) +* add two new config items to control mini window and main window ([2eff772](https://github.com/Kuingsmile/PicList/commit/2eff772)) +* pictures uploaded using webdav and local path can be previewed in gallery now ([6a94503](https://github.com/Kuingsmile/PicList/commit/6a94503)), closes [#64](https://github.com/Kuingsmile/PicList/issues/64) + + +### :bug: Bug Fixes + +* fix a bug of file server when the request path is url encoded ([48b13b2](https://github.com/Kuingsmile/PicList/commit/48b13b2)) +* fix an issue related with yourls ([58486a3](https://github.com/Kuingsmile/PicList/commit/58486a3)), closes [#72](https://github.com/Kuingsmile/PicList/issues/72) + + + +## :tada: 1.9.7 (2023-07-12) + + +### :sparkles: Features + +* add a new buildin picbed - local pc ([5018ce7](https://github.com/Kuingsmile/PicList/commit/5018ce7)) +* add custom short url server ([d4a22f9](https://github.com/Kuingsmile/PicList/commit/d4a22f9)), closes [#69](https://github.com/Kuingsmile/PicList/issues/69) [#69](https://github.com/Kuingsmile/PicList/issues/69) + + +### :bug: Bug Fixes + +* fix gallery page display bugs ([b6f5d9f](https://github.com/Kuingsmile/PicList/commit/b6f5d9f)) +* fix url bug of qiniu ([3b3c70a](https://github.com/Kuingsmile/PicList/commit/3b3c70a)), closes [#70](https://github.com/Kuingsmile/PicList/issues/70) + + +### :pencil: Documentation + +* reopen wechat group ([57bf45f](https://github.com/Kuingsmile/PicList/commit/57bf45f)) + + + +## :tada: 1.9.6 (2023-06-30) + + +### :bug: Bug Fixes + +* fix an issue which cause upload failed ([db5a2af](https://github.com/Kuingsmile/PicList/commit/db5a2af)), closes [#66](https://github.com/Kuingsmile/PicList/issues/66) + + + +## :tada: 1.9.5 (2023-06-29) + + +### :sparkles: Features + +* optimize image convert for imgur ([38d03fc](https://github.com/Kuingsmile/PicList/commit/38d03fc)) + + +### :bug: Bug Fixes + +* remove gif from extension list which can be converted ([b72cdf4](https://github.com/Kuingsmile/PicList/commit/b72cdf4)), closes [#60](https://github.com/Kuingsmile/PicList/issues/60) + + +### :package: Chore + +* add team id ([f6b4806](https://github.com/Kuingsmile/PicList/commit/f6b4806)) +* add team id for notarizing app ([749c66e](https://github.com/Kuingsmile/PicList/commit/749c66e)) +* add XCODE_TEAM_ID ([0660218](https://github.com/Kuingsmile/PicList/commit/0660218)) +* using notarytool instead of altool which will be disabled on 2023.11.01 ([37ea225](https://github.com/Kuingsmile/PicList/commit/37ea225)) + + + +## :tada: 1.9.4 (2023-06-11) + + +### :sparkles: Features + +* mini page will not be closed when main page is opened ([8a19ca2](https://github.com/Kuingsmile/PicList/commit/8a19ca2)) + + +### :bug: Bug Fixes + +* fix an issue that clipboard listening is not working in windows ([0800456](https://github.com/Kuingsmile/PicList/commit/0800456)) +* fix i18n bug ([0c56de5](https://github.com/Kuingsmile/PicList/commit/0c56de5)) + + +### :package: Chore + +* add new action script ([917e69a](https://github.com/Kuingsmile/PicList/commit/917e69a)) +* fix send email action ([fe0d779](https://github.com/Kuingsmile/PicList/commit/fe0d779)) + + +### :pencil: Documentation + +* chage wechat group ([25b845e](https://github.com/Kuingsmile/PicList/commit/25b845e)) +* fix wechat id error ([b971f05](https://github.com/Kuingsmile/PicList/commit/b971f05)) + + + +## :tada: 1.9.3 (2023-05-23) + + +### :sparkles: Features + +* add addvanced rename feature ([c4b0235](https://github.com/Kuingsmile/PicList/commit/c4b0235)) +* add always on top icon on main page ([8f512fe](https://github.com/Kuingsmile/PicList/commit/8f512fe)) +* auto close timestamp rename when advanced rename is enabled ([0c6e8d1](https://github.com/Kuingsmile/PicList/commit/0c6e8d1)) +* rewrite the layout of the settings page ([5ccb899](https://github.com/Kuingsmile/PicList/commit/5ccb899)) + + +### :bug: Bug Fixes + +* fix batch delete bug of gallery page ([86505c1](https://github.com/Kuingsmile/PicList/commit/86505c1)), closes [#54](https://github.com/Kuingsmile/PicList/issues/54) + + + +## :tada: 1.9.2 (2023-05-21) + + +### :sparkles: Features + +* beautify UI ([e733f6c](https://github.com/Kuingsmile/PicList/commit/e733f6c)) +* optimize gallery page and plugin page UI ([0c7f49b](https://github.com/Kuingsmile/PicList/commit/0c7f49b)) + + +### :bug: Bug Fixes + +* fix config dialog bug of plugin page ([bd9e33c](https://github.com/Kuingsmile/PicList/commit/bd9e33c)) +* fixed the issue where bulk copying links was not functioning properly ([f8a886c](https://github.com/Kuingsmile/PicList/commit/f8a886c)) + + +### :zap: Performance Improvements + +* remove talkingdata ([d9d2a84](https://github.com/Kuingsmile/PicList/commit/d9d2a84)) + + + +## :tada: 1.9.1 (2023-05-11) + + +### :sparkles: Features + +* add webpath for webdav, fix urlEncode bug ([5628901](https://github.com/Kuingsmile/PicList/commit/5628901)) + + +### :pencil: Documentation + +* update docs ([80057c8](https://github.com/Kuingsmile/PicList/commit/80057c8)) + + + +# :tada: 1.9.0 (2023-05-07) + + +### :sparkles: Features + +* optimize url encode and filename encode ([8d1b817](https://github.com/Kuingsmile/PicList/commit/8d1b817)) + + +### :bug: Bug Fixes + +* fix several bugs of manage page and minipage ([5dbac83](https://github.com/Kuingsmile/PicList/commit/5dbac83)) + + + +## :tada: 1.8.4 (2023-05-06) + + +### :sparkles: Features + +* support heic convert now ([b23dfd4](https://github.com/Kuingsmile/PicList/commit/b23dfd4)) + + + +## :tada: 1.8.3 (2023-05-06) + + +### :sparkles: Features + +* remember last time choosed sort type ([efd9d54](https://github.com/Kuingsmile/PicList/commit/efd9d54)) + + +### :bug: Bug Fixes + +* fix config file sync bug ([344088f](https://github.com/Kuingsmile/PicList/commit/344088f)) + + +### :pencil: Documentation + +* modify readme ([d8eea9c](https://github.com/Kuingsmile/PicList/commit/d8eea9c)) + + + +## :tada: 1.8.2 (2023-05-05) + + +### :sparkles: Features + +* auto import of manage page can be closed now ([ebcfbdf](https://github.com/Kuingsmile/PicList/commit/ebcfbdf)) +* sync with picgo 2.4.0 beta 1 ([e8d54fa](https://github.com/Kuingsmile/PicList/commit/e8d54fa)) + + +### :bug: Bug Fixes + +* fix configure files sync bug ([a1981ab](https://github.com/Kuingsmile/PicList/commit/a1981ab)) + + + +## :tada: 1.8.1 (2023-05-02) + + +### :sparkles: Features + +* url encode in manage page ([9fa989e](https://github.com/Kuingsmile/PicList/commit/9fa989e)) + + +### :pencil: Documentation + +* update Features ([b97f79b](https://github.com/Kuingsmile/PicList/commit/b97f79b)) + + + +# :tada: 1.8.0 (2023-05-02) + + +### :sparkles: Features + +* add config sync module ([ab4e31f](https://github.com/Kuingsmile/PicList/commit/ab4e31f)) +* add interval for sync setting ([7150bf3](https://github.com/Kuingsmile/PicList/commit/7150bf3)) + + + +## :tada: 1.7.1 (2023-04-18) + + +### :sparkles: Features + +* add delete local file after uploading, fix compatibility with auto-delete ([6b49198](https://github.com/Kuingsmile/PicList/commit/6b49198)), closes [#40](https://github.com/Kuingsmile/PicList/issues/40) +* support imgur auth upload and delete ([d5f7121](https://github.com/Kuingsmile/PicList/commit/d5f7121)) +* support short url now ([d554581](https://github.com/Kuingsmile/PicList/commit/d554581)) + + +### :bug: Bug Fixes + +* fix copy link bug ([72c9374](https://github.com/Kuingsmile/PicList/commit/72c9374)) +* fix tray image after drag ([22f8aa8](https://github.com/Kuingsmile/PicList/commit/22f8aa8)) +* sync with picgo, suppress epiep error ([dc1458f](https://github.com/Kuingsmile/PicList/commit/dc1458f)) + + +### :package: Chore + +* fix markdown format err ([19e341a](https://github.com/Kuingsmile/PicList/commit/19e341a)) + + +### :pencil: Documentation + +* update docs ([15d34ac](https://github.com/Kuingsmile/PicList/commit/15d34ac)) +* update typora 1.6.0-dev support ([34997f5](https://github.com/Kuingsmile/PicList/commit/34997f5)) + + +### :zap: Performance Improvements + +* optimize imgur album list speed ([6c5fdf1](https://github.com/Kuingsmile/PicList/commit/6c5fdf1)) +* remove duplicate check of new version, refactor getLatestVersion func ([ef917ce](https://github.com/Kuingsmile/PicList/commit/ef917ce)) + + + +# :tada: 1.7.0 (2023-04-12) + + +### :sparkles: Features + +* add clipbord listening menu for mini page ([04d6705](https://github.com/Kuingsmile/PicList/commit/04d6705)) + + +### :bug: Bug Fixes + +* fix macos traypage bug ([b20c6d7](https://github.com/Kuingsmile/PicList/commit/b20c6d7)) +* mac shortcut bug ([9305293](https://github.com/Kuingsmile/PicList/commit/9305293)) + + +### :package: Chore + +* add sha256 calculate script for macos build ([0bf9e91](https://github.com/Kuingsmile/PicList/commit/0bf9e91)) +* add sha256 command ([ccafb2d](https://github.com/Kuingsmile/PicList/commit/ccafb2d)) + + + +## :tada: 1.6.2 (2023-04-11) + + +### :sparkles: Features + +* add check to avoid hide dock and tray at the same time ([8421925](https://github.com/Kuingsmile/PicList/commit/8421925)) +* add config import for picbed setting ([1b15ccb](https://github.com/Kuingsmile/PicList/commit/1b15ccb)) +* add config item to hide dock, only for macos ([0466fa7](https://github.com/Kuingsmile/PicList/commit/0466fa7)) +* add url encode setting ([8c7c3b2](https://github.com/Kuingsmile/PicList/commit/8c7c3b2)) +* automatically upload when clipboard changes ([3c3e7cd](https://github.com/Kuingsmile/PicList/commit/3c3e7cd)), closes [#35](https://github.com/Kuingsmile/PicList/issues/35) +* on macos, tray icon can be hidden now ([4043dbf](https://github.com/Kuingsmile/PicList/commit/4043dbf)) + + +### :bug: Bug Fixes + +* fix repeated upload bug when listening clipboard ([6c18bcb](https://github.com/Kuingsmile/PicList/commit/6c18bcb)) +* fix some bugs ([7e0991d](https://github.com/Kuingsmile/PicList/commit/7e0991d)) +* hide dock setting for non-darwin os ([fe8112b](https://github.com/Kuingsmile/PicList/commit/fe8112b)) + + +### :package: Chore + +* modify link generate script ([9915526](https://github.com/Kuingsmile/PicList/commit/9915526)) +* remove unusable console.log ([dce26ff](https://github.com/Kuingsmile/PicList/commit/dce26ff)) + + +### :zap: Performance Improvements + +* stop clipboard listening when app quit ([993d2ac](https://github.com/Kuingsmile/PicList/commit/993d2ac)) + + +### :pencil: Documentation + +* add homebrew install describe ([350e6a3](https://github.com/Kuingsmile/PicList/commit/350e6a3)) + + + +## :tada: 1.6.1 (2023-04-08) + + +### :bug: Bug Fixes + +* fix bug that traypage copy link func not work ([acf6609](https://github.com/Kuingsmile/PicList/commit/acf6609)), closes [#32](https://github.com/Kuingsmile/PicList/issues/32) +* fix tcyun delete bug ([37dfe49](https://github.com/Kuingsmile/PicList/commit/37dfe49)) + + +### :pencil: Documentation + +* update FAQ ([d259a01](https://github.com/Kuingsmile/PicList/commit/d259a01)) +* update README ([4770fcd](https://github.com/Kuingsmile/PicList/commit/4770fcd)) + + + +# :tada: 1.6.0 (2023-04-06) + + +### :sparkles: Features + +* add batch rename , sort and more search options for gallery ([38e48df](https://github.com/Kuingsmile/PicList/commit/38e48df)) +* add dock menu and appbar menu ([19e1191](https://github.com/Kuingsmile/PicList/commit/19e1191)) +* support auto update now ([e39cac9](https://github.com/Kuingsmile/PicList/commit/e39cac9)) +* users can set start mode now, mini window position will be remembered ([76c0cfb](https://github.com/Kuingsmile/PicList/commit/76c0cfb)) + + +### :bug: Bug Fixes + +* fix linux build bug caused by sharp ([1dc70e6](https://github.com/Kuingsmile/PicList/commit/1dc70e6)), closes [#29](https://github.com/Kuingsmile/PicList/issues/29) + + +### :package: Chore + +* change macos icon files ([107e8ae](https://github.com/Kuingsmile/PicList/commit/107e8ae)) +* modify icon size ([ca950db](https://github.com/Kuingsmile/PicList/commit/ca950db)) + + +### :pencil: Documentation + +* update FAQ ([a05fbf6](https://github.com/Kuingsmile/PicList/commit/a05fbf6)) + + + +## :tada: 1.5.3 (2023-03-29) + + +### :bug: Bug Fixes + +* fix aliyun upload bug ([ef018ff](https://github.com/Kuingsmile/PicList/commit/ef018ff)) + + +### :pencil: Documentation + +* remove from mac app store, and add describe for refund ([1aa133f](https://github.com/Kuingsmile/PicList/commit/1aa133f)) + + + +## :tada: 1.5.2 (2023-03-28) + + +### :sparkles: Features + +* add /delete route for build in http server ([9e8ae93](https://github.com/Kuingsmile/PicList/commit/9e8ae93)) + + +### :bug: Bug Fixes + +* fix url encode bug when filename contains special chars ([a736190](https://github.com/Kuingsmile/PicList/commit/a736190)) + + + +## :tada: 1.5.1 (2023-03-24) + + +### :sparkles: Features + +* optimize UI, rewrite some css settings ([f47d273](https://github.com/Kuingsmile/PicList/commit/f47d273)) +* picbeds config can be reseted to empty now ([086b287](https://github.com/Kuingsmile/PicList/commit/086b287)) + + +### :bug: Bug Fixes + +* fix backgroud color mismatch problem on MacOS ([f0daf97](https://github.com/Kuingsmile/PicList/commit/f0daf97)) + + + +# :tada: 1.5.0 (2023-03-20) + + +### :sparkles: Features + +* click picbed name can link to login page now, add some i18n key ([d725e71](https://github.com/Kuingsmile/PicList/commit/d725e71)) +* click the picbed name at upload page will route to config page now ([016075e](https://github.com/Kuingsmile/PicList/commit/016075e)) +* complete i18n support for manage func ([a473e25](https://github.com/Kuingsmile/PicList/commit/a473e25)) +* i18n of new bucket config ([67fe85e](https://github.com/Kuingsmile/PicList/commit/67fe85e)) +* users can customize mini window icon now ([8feb30a](https://github.com/Kuingsmile/PicList/commit/8feb30a)) + + + +## :tada: 1.4.3 (2023-03-14) + + +### :bug: Bug Fixes + +* downgrade element-plus , fix picbed setting bug ([d2b048f](https://github.com/Kuingsmile/PicList/commit/d2b048f)) +* fix webdav path error when setting to root dir ([1371e95](https://github.com/Kuingsmile/PicList/commit/1371e95)) + + +### :pencil: Documentation + +* picList is available at Mac App Store ! ([4613aa3](https://github.com/Kuingsmile/PicList/commit/4613aa3)) + + + +## :tada: 1.4.2 (2023-03-09) + + +### :sparkles: Features + +* update piclist-core, reduce package size ([c88dd1d](https://github.com/Kuingsmile/PicList/commit/c88dd1d)) + + +### :bug: Bug Fixes + +* fix aliasArray bug ([b027a73](https://github.com/Kuingsmile/PicList/commit/b027a73)) +* fix config name validate rule ([f715233](https://github.com/Kuingsmile/PicList/commit/f715233)) +* fix sharp build error on MacOS M1 chip ([1240afa](https://github.com/Kuingsmile/PicList/commit/1240afa)) + + +### :package: Chore + +* add mas.yml ([198157d](https://github.com/Kuingsmile/PicList/commit/198157d)) +* fix main.yml syntax error ([27b92d8](https://github.com/Kuingsmile/PicList/commit/27b92d8)) + + + +## :tada: 1.4.1 (2023-03-07) + + +### :bug: Bug Fixes + +* fix config ([040ad5f](https://github.com/Kuingsmile/PicList/commit/040ad5f)) +* fix picbed config page scroll bug ([d515cc5](https://github.com/Kuingsmile/PicList/commit/d515cc5)) +* mac.yml ([def9502](https://github.com/Kuingsmile/PicList/commit/def9502)) + + +### :package: Chore + +* add app sign and for mac, add win ([ab48363](https://github.com/Kuingsmile/PicList/commit/ab48363)) +* fix mac.yml ([4a9d646](https://github.com/Kuingsmile/PicList/commit/4a9d646)) +* mac auto build test ([ed74764](https://github.com/Kuingsmile/PicList/commit/ed74764)) +* mac build test ([bc2749e](https://github.com/Kuingsmile/PicList/commit/bc2749e)) +* macos code signing test ([4915290](https://github.com/Kuingsmile/PicList/commit/4915290)) +* update mac autoflow ([f4d313f](https://github.com/Kuingsmile/PicList/commit/f4d313f)) +* update mac.yml ([b3d8e4d](https://github.com/Kuingsmile/PicList/commit/b3d8e4d)) + + +### :pencil: Documentation + +* update README.md ([a2ffd4f](https://github.com/Kuingsmile/PicList/commit/a2ffd4f)) + + + +# :tada: 1.4.0 (2023-03-04) + + +### :sparkles: Features + +* add buildin watermark process and image resize/compress/rotate/convert feature ([da42bb4](https://github.com/Kuingsmile/PicList/commit/da42bb4)) + + + +## :tada: 1.3.1 (2023-03-02) + + +### :sparkles: Features + +* add {atuo} for rename placholders, represent for auto increment number ([d6df9bc](https://github.com/Kuingsmile/PicList/commit/d6df9bc)), closes [#14](https://github.com/Kuingsmile/PicList/issues/14) +* add file batch rename, and support placeholder now ([327a7ac](https://github.com/Kuingsmile/PicList/commit/327a7ac)), closes [#14](https://github.com/Kuingsmile/PicList/issues/14) +* now prompts if there are duplicate file names ([8ba46d9](https://github.com/Kuingsmile/PicList/commit/8ba46d9)) + + + +# :tada: 1.3.0 (2023-02-27) + + +### :sparkles: Features + +* downloaded file or folder can keey folder structure now ([1e9c87d](https://github.com/Kuingsmile/PicList/commit/1e9c87d)) +* folder structure can be keeped when uploading folders ([750ea58](https://github.com/Kuingsmile/PicList/commit/750ea58)) + + +### :bug: Bug Fixes + +* optimized software UI ([d6ce555](https://github.com/Kuingsmile/PicList/commit/d6ce555)), closes [#12](https://github.com/Kuingsmile/PicList/issues/12) + + + +## :tada: 1.2.2 (2023-02-24) + + +### :sparkles: Features + +* add grid view for file explorer ([69e1b48](https://github.com/Kuingsmile/PicList/commit/69e1b48)) + + + +## :tada: 1.2.1 (2023-02-23) + + +### :sparkles: Features + +* add picbed config name in upload page ([0a31143](https://github.com/Kuingsmile/PicList/commit/0a31143)) +* configs of picBeds can be auto imported to manage config now ([be68f0f](https://github.com/Kuingsmile/PicList/commit/be68f0f)) +* picture upload support webdav now ([1dacd3c](https://github.com/Kuingsmile/PicList/commit/1dacd3c)) + + + +# :tada: 1.2.0 (2023-02-22) + + +### :sparkles: Features + +* add concurrency limit for download ([8440b75](https://github.com/Kuingsmile/PicList/commit/8440b75)) +* add video,text file and markdown file preview ([b3ce9b9](https://github.com/Kuingsmile/PicList/commit/b3ce9b9)) + + + +## :tada: 1.1.1 (2023-02-21) + + +### :bug: Bug Fixes + +* fix auto link copy funtion failure bug when using custom format ([9c96870](https://github.com/Kuingsmile/PicList/commit/9c96870)) + + + +# :tada: 1.1.0 (2023-02-20) + + +### :sparkles: Features + +* s3-compatible storage is supported now ([176bdac](https://github.com/Kuingsmile/PicList/commit/176bdac)) + + +### :bug: Bug Fixes + +* fix S3 deletion endpoint parse bug ([7f7f400](https://github.com/Kuingsmile/PicList/commit/7f7f400)) + + +### :pencil: Documentation + +* update README.md ([0263351](https://github.com/Kuingsmile/PicList/commit/0263351)) + + + +## :tada: 1.0.2 (2023-02-17) + + +### :sparkles: Features + +* album remote deletion now Support picgo-plugin-s3 ([21e870d](https://github.com/Kuingsmile/PicList/commit/21e870d)) + + +### :bug: Bug Fixes + +* fix qiniu file modified time error ([681da4a](https://github.com/Kuingsmile/PicList/commit/681da4a)) + + +### :pencil: Documentation + +* update README.md ([23652d9](https://github.com/Kuingsmile/PicList/commit/23652d9)) +* update README.md ([0488ad3](https://github.com/Kuingsmile/PicList/commit/0488ad3)) + + + +## :tada: 1.0.1 (2023-02-17) + + +### :bug: Bug Fixes + +* fix proxy setting bug ([22bee0b](https://github.com/Kuingsmile/PicList/commit/22bee0b)), closes [#1](https://github.com/Kuingsmile/PicList/issues/1) + + + +# :tada: 1.0.0 (2023-02-15) + + +### :sparkles: Features + +* first version of PicList ([efeadb8](https://github.com/Kuingsmile/PicList/commit/efeadb8)) + + +### :bug: Bug Fixes + +* add new tray icon for macOS dark-mode ([c5adf3b](https://github.com/Kuingsmile/PicList/commit/c5adf3b)), closes [#267](https://github.com/Kuingsmile/PicList/issues/267) +* add plugin install failed notice ([b05139f](https://github.com/Kuingsmile/PicList/commit/b05139f)) +* auto-copy option && copy style ([b6e3adb](https://github.com/Kuingsmile/PicList/commit/b6e3adb)) +* beforeOpen handler in windows ([cd30a6c](https://github.com/Kuingsmile/PicList/commit/cd30a6c)) +* beta version update bug ([18ad542](https://github.com/Kuingsmile/PicList/commit/18ad542)) +* bug of gallery db for plugin ([96a63ea](https://github.com/Kuingsmile/PicList/commit/96a63ea)) +* build error ([1db84a2](https://github.com/Kuingsmile/PicList/commit/1db84a2)) +* busApi event register first && emit later ([e1a0cbb](https://github.com/Kuingsmile/PicList/commit/e1a0cbb)) +* change decodeURI -> decodeURIComponent & encode also ([7677f1e](https://github.com/Kuingsmile/PicList/commit/7677f1e)) +* choose default picBed failure ([21d3942](https://github.com/Kuingsmile/PicList/commit/21d3942)), closes [#537](https://github.com/Kuingsmile/PicList/issues/537) +* confused port number auto increasing when opening a new PicGo app ([cd70a1a](https://github.com/Kuingsmile/PicList/commit/cd70a1a)) +* correct inputbox value && remove listener ([32334e9](https://github.com/Kuingsmile/PicList/commit/32334e9)) +* **db:** fix some db bugs ([d3bb5ca](https://github.com/Kuingsmile/PicList/commit/d3bb5ca)), closes [#873](https://github.com/Kuingsmile/PicList/issues/873) [#806](https://github.com/Kuingsmile/PicList/issues/806) +* decrease title-bar z-index when config-form dialog shows ([f2750e1](https://github.com/Kuingsmile/PicList/commit/f2750e1)) +* default github placeholder ([51d80a6](https://github.com/Kuingsmile/PicList/commit/51d80a6)) +* default picBed using picBed.uploader instead of picBed.current ([0a986c8](https://github.com/Kuingsmile/PicList/commit/0a986c8)) +* dev error with install vue-devtools ([a657c51](https://github.com/Kuingsmile/PicList/commit/a657c51)), closes [#653](https://github.com/Kuingsmile/PicList/issues/653) [#658](https://github.com/Kuingsmile/PicList/issues/658) +* disable plugin need reload app ([a1b70b4](https://github.com/Kuingsmile/PicList/commit/a1b70b4)) +* disabled plugin won't be shown in plugin page ([33fdb16](https://github.com/Kuingsmile/PicList/commit/33fdb16)) +* electron builder actions bug ([5dd6e72](https://github.com/Kuingsmile/PicList/commit/5dd6e72)) +* enable plugin should reload ([49e5f34](https://github.com/Kuingsmile/PicList/commit/49e5f34)), closes [#659](https://github.com/Kuingsmile/PicList/issues/659) +* encoding the result of picgo-server ([db71139](https://github.com/Kuingsmile/PicList/commit/db71139)) +* enum type error ([4e3fa28](https://github.com/Kuingsmile/PicList/commit/4e3fa28)) +* fix analytics value ([06d40ef](https://github.com/Kuingsmile/PicList/commit/06d40ef)) +* fix mini-page can't upload image from dragging browser image ([6bcd019](https://github.com/Kuingsmile/PicList/commit/6bcd019)), closes [#822](https://github.com/Kuingsmile/PicList/issues/822) +* gallery db bug ([f1eb7f4](https://github.com/Kuingsmile/PicList/commit/f1eb7f4)) +* **gallery:** can't copy gallery pics link ([8d861be](https://github.com/Kuingsmile/PicList/commit/8d861be)), closes [#901](https://github.com/Kuingsmile/PicList/issues/901) +* give a hint when node.js is not installed ([7e86618](https://github.com/Kuingsmile/PicList/commit/7e86618)) +* handle empty request-body ([81e6acb](https://github.com/Kuingsmile/PicList/commit/81e6acb)) +* handleUploaderConfig should be placed in main/utils ([fc897ce](https://github.com/Kuingsmile/PicList/commit/fc897ce)) +* i18n bug ([911e34e](https://github.com/Kuingsmile/PicList/commit/911e34e)) +* initialize db bugs ([5f87018](https://github.com/Kuingsmile/PicList/commit/5f87018)) +* launch error in new structrue ([bc8e641](https://github.com/Kuingsmile/PicList/commit/bc8e641)) +* linux github actions workflow bug ([5cb8151](https://github.com/Kuingsmile/PicList/commit/5cb8151)) +* log-level filter bug ([4e02244](https://github.com/Kuingsmile/PicList/commit/4e02244)), closes [#237](https://github.com/Kuingsmile/PicList/issues/237) +* log-level's reset value from 'all' -> ['all'] ([3c6b329](https://github.com/Kuingsmile/PicList/commit/3c6b329)), closes [#240](https://github.com/Kuingsmile/PicList/issues/240) [#237](https://github.com/Kuingsmile/PicList/issues/237) +* macos clipboard image can't show on tray page ([20e38f4](https://github.com/Kuingsmile/PicList/commit/20e38f4)), closes [#961](https://github.com/Kuingsmile/PicList/issues/961) +* macOS tray icon background color bug ([9791ff2](https://github.com/Kuingsmile/PicList/commit/9791ff2)), closes [#970](https://github.com/Kuingsmile/PicList/issues/970) +* mini window drag bug ([34b3656](https://github.com/Kuingsmile/PicList/commit/34b3656)) +* mini window hidden bug in linux ([466dbec](https://github.com/Kuingsmile/PicList/commit/466dbec)), closes [#239](https://github.com/Kuingsmile/PicList/issues/239) +* mini window not always on top after reopen ([c79a286](https://github.com/Kuingsmile/PicList/commit/c79a286)) +* miniWindow minimize bug ([5f2b7c7](https://github.com/Kuingsmile/PicList/commit/5f2b7c7)) +* multiple uploading in the same time will cause output conflict ([06b67e5](https://github.com/Kuingsmile/PicList/commit/06b67e5)), closes [#666](https://github.com/Kuingsmile/PicList/issues/666) +* multiple uploading in the same time will cause rename failed ([12cecc2](https://github.com/Kuingsmile/PicList/commit/12cecc2)) +* notification freeze the main-process after uploading with clipboard ([3a50315](https://github.com/Kuingsmile/PicList/commit/3a50315)), closes [#824](https://github.com/Kuingsmile/PicList/issues/824) +* nsis script ([44f5fbb](https://github.com/Kuingsmile/PicList/commit/44f5fbb)), closes [#1019](https://github.com/Kuingsmile/PicList/issues/1019) +* paste url encoding bug ([59d3eba](https://github.com/Kuingsmile/PicList/commit/59d3eba)), closes [#454](https://github.com/Kuingsmile/PicList/issues/454) +* picgo-server upload clipboard file's result bug ([4ebd76f](https://github.com/Kuingsmile/PicList/commit/4ebd76f)) +* picgo.log path error ([6b6ae27](https://github.com/Kuingsmile/PicList/commit/6b6ae27)), closes [#819](https://github.com/Kuingsmile/PicList/issues/819) +* plugin config can't save ([09e4e82](https://github.com/Kuingsmile/PicList/commit/09e4e82)), closes [#943](https://github.com/Kuingsmile/PicList/issues/943) +* plugin config-form && default plugin logo ([514fc40](https://github.com/Kuingsmile/PicList/commit/514fc40)) +* qiniu area option from select group -> input ([c64959a](https://github.com/Kuingsmile/PicList/commit/c64959a)), closes [#230](https://github.com/Kuingsmile/PicList/issues/230) +* release script ([b4f10c6](https://github.com/Kuingsmile/PicList/commit/b4f10c6)) +* releaseUrl may can't get latest version ([ee46ab1](https://github.com/Kuingsmile/PicList/commit/ee46ab1)) +* removeById handler error ([c4f0a30](https://github.com/Kuingsmile/PicList/commit/c4f0a30)), closes [#382](https://github.com/Kuingsmile/PicList/issues/382) +* rename page not work ([29a55ed](https://github.com/Kuingsmile/PicList/commit/29a55ed)) +* right-click menu upload fails with PicGo open ([96cdfea](https://github.com/Kuingsmile/PicList/commit/96cdfea)), closes [#415](https://github.com/Kuingsmile/PicList/issues/415) +* save debug mode && PICGO_ENV into config file ([c6ead5b](https://github.com/Kuingsmile/PicList/commit/c6ead5b)) +* server may never start ([73870a5](https://github.com/Kuingsmile/PicList/commit/73870a5)) +* settingPage && miniPage style in windows ([3fd9572](https://github.com/Kuingsmile/PicList/commit/3fd9572)) +* settings bug ([20d3cf9](https://github.com/Kuingsmile/PicList/commit/20d3cf9)), closes [#710](https://github.com/Kuingsmile/PicList/issues/710) +* shift key function in gallery page ([5895889](https://github.com/Kuingsmile/PicList/commit/5895889)) +* shortkey disabled failure ([4f0809e](https://github.com/Kuingsmile/PicList/commit/4f0809e)), closes [#534](https://github.com/Kuingsmile/PicList/issues/534) +* shortKeyConfig maybe undefined ([7b5e5ef](https://github.com/Kuingsmile/PicList/commit/7b5e5ef)), closes [#557](https://github.com/Kuingsmile/PicList/issues/557) +* showFileExplorer result bug ([b6b2eea](https://github.com/Kuingsmile/PicList/commit/b6b2eea)) +* some bugs ([a676c08](https://github.com/Kuingsmile/PicList/commit/a676c08)), closes [#722](https://github.com/Kuingsmile/PicList/issues/722) +* some bugs will case picgo-gui-local.log too large ([012a01d](https://github.com/Kuingsmile/PicList/commit/012a01d)), closes [#995](https://github.com/Kuingsmile/PicList/issues/995) +* some case will cause picgo-gui-local.log too large ([3c01861](https://github.com/Kuingsmile/PicList/commit/3c01861)) +* some texts in zh-TW ([#978](https://github.com/Kuingsmile/PicList/issues/978)) ([531bc13](https://github.com/Kuingsmile/PicList/commit/531bc13)) +* some win10 upload clipboard image crash ([cc182b0](https://github.com/Kuingsmile/PicList/commit/cc182b0)) +* travis-ci bug ([b357dfb](https://github.com/Kuingsmile/PicList/commit/b357dfb)) +* upload clipboard images via http should return list ([ae69263](https://github.com/Kuingsmile/PicList/commit/ae69263)), closes [#721](https://github.com/Kuingsmile/PicList/issues/721) +* upload-area can't upload images ([4000cea](https://github.com/Kuingsmile/PicList/commit/4000cea)) +* uploader error in linux ([ab762ef](https://github.com/Kuingsmile/PicList/commit/ab762ef)), closes [#627](https://github.com/Kuingsmile/PicList/issues/627) +* upyun options is not required ([167e424](https://github.com/Kuingsmile/PicList/commit/167e424)), closes [#1002](https://github.com/Kuingsmile/PicList/issues/1002) +* url encode before uploading by url ([ce2b5cd](https://github.com/Kuingsmile/PicList/commit/ce2b5cd)), closes [#581](https://github.com/Kuingsmile/PicList/issues/581) +* url encode bug && copy-paste url encode bug ([4de7a1d](https://github.com/Kuingsmile/PicList/commit/4de7a1d)), closes [#996](https://github.com/Kuingsmile/PicList/issues/996) +* url uploader bug ([96544f5](https://github.com/Kuingsmile/PicList/commit/96544f5)) +* urlEncode bug when copy ([6c6f847](https://github.com/Kuingsmile/PicList/commit/6c6f847)), closes [#731](https://github.com/Kuingsmile/PicList/issues/731) +* use uploader first ([92022a6](https://github.com/Kuingsmile/PicList/commit/92022a6)) +* **website:** website pictures error ([a5b6526](https://github.com/Kuingsmile/PicList/commit/a5b6526)) +* windows cli uploading bug ([321e339](https://github.com/Kuingsmile/PicList/commit/321e339)), closes [#657](https://github.com/Kuingsmile/PicList/issues/657) +* windows ia32 && x64 build options ([bdf523a](https://github.com/Kuingsmile/PicList/commit/bdf523a)) +* windows upload clipboard file with builtin-clipboard not work ([7b50ba7](https://github.com/Kuingsmile/PicList/commit/7b50ba7)) + + +### :pencil: Documentation + +* add brew cask source ([6122e17](https://github.com/Kuingsmile/PicList/commit/6122e17)) +* add flutter-picgo ([92ff282](https://github.com/Kuingsmile/PicList/commit/92ff282)) +* add gitads ([2d42381](https://github.com/Kuingsmile/PicList/commit/2d42381)) +* add note for windows electron mirror ([46a49ed](https://github.com/Kuingsmile/PicList/commit/46a49ed)) +* add PicHoro ([a355bc0](https://github.com/Kuingsmile/PicList/commit/a355bc0)) +* fix electron_mirror link error ([5d06469](https://github.com/Kuingsmile/PicList/commit/5d06469)), closes [#849](https://github.com/Kuingsmile/PicList/issues/849) +* remove weibo picbed ([e81b8f4](https://github.com/Kuingsmile/PicList/commit/e81b8f4)) +* rm gitads ([bb90e17](https://github.com/Kuingsmile/PicList/commit/bb90e17)) +* update choco install picgo ([f357557](https://github.com/Kuingsmile/PicList/commit/f357557)) +* update cos links ([3102d7b](https://github.com/Kuingsmile/PicList/commit/3102d7b)) +* update discussions in doc ([e793599](https://github.com/Kuingsmile/PicList/commit/e793599)) +* update docs ([fd7673e](https://github.com/Kuingsmile/PicList/commit/fd7673e)) +* update FAQ ([a79efbf](https://github.com/Kuingsmile/PicList/commit/a79efbf)) +* update FAQ ([58420c8](https://github.com/Kuingsmile/PicList/commit/58420c8)) +* update FAQ && ISSUE_TEMPLATE ([2c57a27](https://github.com/Kuingsmile/PicList/commit/2c57a27)) +* update FAQ.md ([#1011](https://github.com/Kuingsmile/PicList/issues/1011)) ([05998bb](https://github.com/Kuingsmile/PicList/commit/05998bb)) +* update install command by Homebrew ([#599](https://github.com/Kuingsmile/PicList/issues/599)) ([bd2311b](https://github.com/Kuingsmile/PicList/commit/bd2311b)) +* update installation by scoop ([91b397d](https://github.com/Kuingsmile/PicList/commit/91b397d)), closes [#295](https://github.com/Kuingsmile/PicList/issues/295) +* update readme ([6bcda9b](https://github.com/Kuingsmile/PicList/commit/6bcda9b)), closes [#849](https://github.com/Kuingsmile/PicList/issues/849) [#850](https://github.com/Kuingsmile/PicList/issues/850) +* update readme ([1c5880a](https://github.com/Kuingsmile/PicList/commit/1c5880a)) +* update readme ([2adff1e](https://github.com/Kuingsmile/PicList/commit/2adff1e)) +* update readme ([fb014dd](https://github.com/Kuingsmile/PicList/commit/fb014dd)) +* update readme ([1b3522e](https://github.com/Kuingsmile/PicList/commit/1b3522e)) +* update README ([f491209](https://github.com/Kuingsmile/PicList/commit/f491209)) +* update readme & FAQ ([d438f82](https://github.com/Kuingsmile/PicList/commit/d438f82)) +* update readme & FAQ ([746635e](https://github.com/Kuingsmile/PicList/commit/746635e)) +* update README.md ([f14c584](https://github.com/Kuingsmile/PicList/commit/f14c584)) +* update README.md ([#555](https://github.com/Kuingsmile/PicList/issues/555)) ([2151857](https://github.com/Kuingsmile/PicList/commit/2151857)) +* update site ([fe9e19a](https://github.com/Kuingsmile/PicList/commit/fe9e19a)) + + +### :package: Chore + +* add issue template ([db6c5b8](https://github.com/Kuingsmile/PicList/commit/db6c5b8)) +* add mac-arm64 build support ([f2a4197](https://github.com/Kuingsmile/PicList/commit/f2a4197)) +* add main process hot reload ([3fd6e4e](https://github.com/Kuingsmile/PicList/commit/3fd6e4e)) +* add picgo bump-version ([37f1d34](https://github.com/Kuingsmile/PicList/commit/37f1d34)) +* change travis-ci -> GitHub Actions ([064f37d](https://github.com/Kuingsmile/PicList/commit/064f37d)) +* fix eslint error notice in indent ([69e1dc8](https://github.com/Kuingsmile/PicList/commit/69e1dc8)) +* fix github action build scripts ([e6b9d88](https://github.com/Kuingsmile/PicList/commit/e6b9d88)) +* fix version error ([0a9e169](https://github.com/Kuingsmile/PicList/commit/0a9e169)) +* types change ([43d2a8e](https://github.com/Kuingsmile/PicList/commit/43d2a8e)) +* up issue template ([5f1fb08](https://github.com/Kuingsmile/PicList/commit/5f1fb08)) +* update ci build scripts ([56e814a](https://github.com/Kuingsmile/PicList/commit/56e814a)) +* update cos upload url ([86012c0](https://github.com/Kuingsmile/PicList/commit/86012c0)) +* update electron from v6 -> v16 ([ea20d3b](https://github.com/Kuingsmile/PicList/commit/ea20d3b)) +* update fix-path ([bcaf255](https://github.com/Kuingsmile/PicList/commit/bcaf255)), closes [#774](https://github.com/Kuingsmile/PicList/issues/774) +* update funding url ([024d9cf](https://github.com/Kuingsmile/PicList/commit/024d9cf)) +* update macOS tray icon ([87161b3](https://github.com/Kuingsmile/PicList/commit/87161b3)) +* update manually action ([351fbda](https://github.com/Kuingsmile/PicList/commit/351fbda)) + + + +# :tada: 2.4.0-beta.0 (2023-01-05) + + +### :sparkles: Features + +* add file-name in gallery & add unknown-file-type placholder image ([f0787d3](https://github.com/Molunerfinn/PicGo/commit/f0787d3)), closes [#1050](https://github.com/Molunerfinn/PicGo/issues/1050) +* add file-name in tray-page ([c011654](https://github.com/Molunerfinn/PicGo/commit/c011654)), closes [#1054](https://github.com/Molunerfinn/PicGo/issues/1054) +* support multiple config ([#1016](https://github.com/Molunerfinn/PicGo/issues/1016)) ([9555649](https://github.com/Molunerfinn/PicGo/commit/9555649)) + + +### :bug: Bug Fixes + +* handleUploaderConfig should be placed in main/utils ([fc897ce](https://github.com/Molunerfinn/PicGo/commit/fc897ce)) +* nsis script ([44f5fbb](https://github.com/Molunerfinn/PicGo/commit/44f5fbb)), closes [#1019](https://github.com/Molunerfinn/PicGo/issues/1019) + + +### :pencil: Documentation + +* update FAQ.md ([#1011](https://github.com/Molunerfinn/PicGo/issues/1011)) ([05998bb](https://github.com/Molunerfinn/PicGo/commit/05998bb)) + + + +## :tada: 2.3.1 (2022-11-13) + + +### :sparkles: Features + +* add $extName for paste template ([64e54d0](https://github.com/Molunerfinn/PicGo/commit/64e54d0)), closes [#1000](https://github.com/Molunerfinn/PicGo/issues/1000) + + +### :bug: Bug Fixes + +* upyun options is not required ([167e424](https://github.com/Molunerfinn/PicGo/commit/167e424)), closes [#1002](https://github.com/Molunerfinn/PicGo/issues/1002) + + + +## :tada: 2.3.1-beta.8 (2022-10-30) + + +### :sparkles: Features + +* add remoteNotice ([9317871](https://github.com/Molunerfinn/PicGo/commit/9317871)) +* macOS tray icon more clearer ([ecd462f](https://github.com/Molunerfinn/PicGo/commit/ecd462f)) + + +### :bug: Bug Fixes + +* url encode bug && copy-paste url encode bug ([4de7a1d](https://github.com/Molunerfinn/PicGo/commit/4de7a1d)), closes [#996](https://github.com/Molunerfinn/PicGo/issues/996) + + +### :pencil: Documentation + +* add PicHoro ([a355bc0](https://github.com/Molunerfinn/PicGo/commit/a355bc0)) + + + +## :tada: 2.3.1-beta.7 (2022-10-23) + + +### :sparkles: Features + +* add zh-TW.yml ([#976](https://github.com/Molunerfinn/PicGo/issues/976)) ([72371de](https://github.com/Molunerfinn/PicGo/commit/72371de)) + + +### :bug: Bug Fixes + +* change decodeURI -> decodeURIComponent & encode also ([7677f1e](https://github.com/Molunerfinn/PicGo/commit/7677f1e)) +* macOS tray icon background color bug ([9791ff2](https://github.com/Molunerfinn/PicGo/commit/9791ff2)), closes [#970](https://github.com/Molunerfinn/PicGo/issues/970) +* some bugs will case picgo-gui-local.log too large ([012a01d](https://github.com/Molunerfinn/PicGo/commit/012a01d)), closes [#995](https://github.com/Molunerfinn/PicGo/issues/995) +* some case will cause picgo-gui-local.log too large ([3c01861](https://github.com/Molunerfinn/PicGo/commit/3c01861)) +* some texts in zh-TW ([#978](https://github.com/Molunerfinn/PicGo/issues/978)) ([531bc13](https://github.com/Molunerfinn/PicGo/commit/531bc13)) + + +### :pencil: Documentation + +* update readme & FAQ ([d438f82](https://github.com/Molunerfinn/PicGo/commit/d438f82)) + + + +## :tada: 2.3.1-beta.6 (2022-09-04) + + +### :sparkles: Features + +* cli support uploading image with url ([e848918](https://github.com/Molunerfinn/PicGo/commit/e848918)) +* finish i18n system ([428ffc7](https://github.com/Molunerfinn/PicGo/commit/428ffc7)) + + +### :bug: Bug Fixes + +* macos clipboard image can't show on tray page ([20e38f4](https://github.com/Molunerfinn/PicGo/commit/20e38f4)), closes [#961](https://github.com/Molunerfinn/PicGo/issues/961) +* showFileExplorer result bug ([b6b2eea](https://github.com/Molunerfinn/PicGo/commit/b6b2eea)) +* windows upload clipboard file with builtin-clipboard not work ([7b50ba7](https://github.com/Molunerfinn/PicGo/commit/7b50ba7)) + + +### :package: Chore + +* up issue template ([5f1fb08](https://github.com/Molunerfinn/PicGo/commit/5f1fb08)) +* update cos upload url ([86012c0](https://github.com/Molunerfinn/PicGo/commit/86012c0)) + + + +## :tada: 2.3.1-beta.5 (2022-08-14) + + +### :sparkles: Features + +* add dist upload to cos & update checkupdate logic ([c926414](https://github.com/Molunerfinn/PicGo/commit/c926414)) +* add logFileSizeLimit for log file ([219b367](https://github.com/Molunerfinn/PicGo/commit/219b367)), closes [#935](https://github.com/Molunerfinn/PicGo/issues/935) [#945](https://github.com/Molunerfinn/PicGo/issues/945) +* add server response headers for CORS ([#939](https://github.com/Molunerfinn/PicGo/issues/939)) ([fb69bad](https://github.com/Molunerfinn/PicGo/commit/fb69bad)) +* tray-window add open-setting-window button ([83ab3c6](https://github.com/Molunerfinn/PicGo/commit/83ab3c6)) +* update tray icon in macOS 11 or 12 ([4ebdc72](https://github.com/Molunerfinn/PicGo/commit/4ebdc72)), closes [#776](https://github.com/Molunerfinn/PicGo/issues/776) + + +### :bug: Bug Fixes + +* build error ([1db84a2](https://github.com/Molunerfinn/PicGo/commit/1db84a2)) +* plugin config can't save ([09e4e82](https://github.com/Molunerfinn/PicGo/commit/09e4e82)), closes [#943](https://github.com/Molunerfinn/PicGo/issues/943) + + +### :package: Chore + +* fix github action build scripts ([e6b9d88](https://github.com/Molunerfinn/PicGo/commit/e6b9d88)) +* fix version error ([0a9e169](https://github.com/Molunerfinn/PicGo/commit/0a9e169)) +* update macOS tray icon ([87161b3](https://github.com/Molunerfinn/PicGo/commit/87161b3)) +* update manually action ([351fbda](https://github.com/Molunerfinn/PicGo/commit/351fbda)) + + +### :pencil: Documentation + +* update cos links ([3102d7b](https://github.com/Molunerfinn/PicGo/commit/3102d7b)) + + + +## :tada: 2.3.1-beta.4 (2022-06-12) + + +### :bug: Bug Fixes + +* **db:** fix some db bugs ([d3bb5ca](https://github.com/Molunerfinn/PicGo/commit/d3bb5ca)), closes [#873](https://github.com/Molunerfinn/PicGo/issues/873) [#806](https://github.com/Molunerfinn/PicGo/issues/806) +* **gallery:** can't copy gallery pics link ([8d861be](https://github.com/Molunerfinn/PicGo/commit/8d861be)), closes [#901](https://github.com/Molunerfinn/PicGo/issues/901) + + +### :pencil: Documentation + +* fix electron_mirror link error ([5d06469](https://github.com/Molunerfinn/PicGo/commit/5d06469)), closes [#849](https://github.com/Molunerfinn/PicGo/issues/849) +* update FAQ ([a79efbf](https://github.com/Molunerfinn/PicGo/commit/a79efbf)) +* update readme & FAQ ([746635e](https://github.com/Molunerfinn/PicGo/commit/746635e)) + + +### :package: Chore + +* add issue template ([db6c5b8](https://github.com/Molunerfinn/PicGo/commit/db6c5b8)) + + + +## :tada: 2.3.1-beta.3 (2022-04-04) + + +### :sparkles: Features + +* add i18n for en ([1936ccf](https://github.com/Molunerfinn/PicGo/commit/1936ccf)) +* add tencent-cos options for url ([af291e4](https://github.com/Molunerfinn/PicGo/commit/af291e4)), closes [#862](https://github.com/Molunerfinn/PicGo/issues/862) [#863](https://github.com/Molunerfinn/PicGo/issues/863) [#865](https://github.com/Molunerfinn/PicGo/issues/865) [#524](https://github.com/Molunerfinn/PicGo/issues/524) [#845](https://github.com/Molunerfinn/PicGo/issues/845) [#732](https://github.com/Molunerfinn/PicGo/issues/732) +* add upload-clipboard-image from electron' clipboard ([27628da](https://github.com/Molunerfinn/PicGo/commit/27628da)), closes [#822](https://github.com/Molunerfinn/PicGo/issues/822) +* add wayland support for linux ([f1c8507](https://github.com/Molunerfinn/PicGo/commit/f1c8507)) +* click cancel in rename-window will use origin filename now ([04701d4](https://github.com/Molunerfinn/PicGo/commit/04701d4)), closes [#791](https://github.com/Molunerfinn/PicGo/issues/791) + + +### :bug: Bug Fixes + +* fix mini-page can't upload image from dragging browser image ([6bcd019](https://github.com/Molunerfinn/PicGo/commit/6bcd019)), closes [#822](https://github.com/Molunerfinn/PicGo/issues/822) +* mini window not always on top after reopen ([c79a286](https://github.com/Molunerfinn/PicGo/commit/c79a286)) +* notification freeze the main-process after uploading with clipboard ([3a50315](https://github.com/Molunerfinn/PicGo/commit/3a50315)), closes [#824](https://github.com/Molunerfinn/PicGo/issues/824) +* picgo.log path error ([6b6ae27](https://github.com/Molunerfinn/PicGo/commit/6b6ae27)), closes [#819](https://github.com/Molunerfinn/PicGo/issues/819) + + +### :pencil: Documentation + +* update readme ([6bcda9b](https://github.com/Molunerfinn/PicGo/commit/6bcda9b)), closes [#849](https://github.com/Molunerfinn/PicGo/issues/849) [#850](https://github.com/Molunerfinn/PicGo/issues/850) + + +### :package: Chore + +* types change ([43d2a8e](https://github.com/Molunerfinn/PicGo/commit/43d2a8e)) +* update fix-path ([bcaf255](https://github.com/Molunerfinn/PicGo/commit/bcaf255)), closes [#774](https://github.com/Molunerfinn/PicGo/issues/774) + + + +## :tada: 2.3.1-beta.2 (2022-01-06) + + +### :bug: Bug Fixes + +* electron builder actions bug ([5dd6e72](https://github.com/Molunerfinn/PicGo/commit/5dd6e72)) +* linux github actions workflow bug ([5cb8151](https://github.com/Molunerfinn/PicGo/commit/5cb8151)) + + + +## :tada: 2.3.1-beta.1 (2022-01-05) + + +### :package: Chore + +* update ci build scripts ([56e814a](https://github.com/Molunerfinn/PicGo/commit/56e814a)) + + + +## :tada: 2.3.1-beta.0 (2022-01-05) + + +### :bug: Bug Fixes + +* mini window drag bug ([34b3656](https://github.com/Molunerfinn/PicGo/commit/34b3656)) + + +### :package: Chore + +* add mac-arm64 build support ([f2a4197](https://github.com/Molunerfinn/PicGo/commit/f2a4197)) +* update electron from v6 -> v16 ([ea20d3b](https://github.com/Molunerfinn/PicGo/commit/ea20d3b)) + + + +# :tada: 2.3.0 (2021-09-11) + + +### :sparkles: Features + +* add open devtool option ([75e3edc](https://github.com/Molunerfinn/PicGo/commit/75e3edc)) + + +### :bug: Bug Fixes + +* shift key function in gallery page ([5895889](https://github.com/Molunerfinn/PicGo/commit/5895889)) +* some bugs ([a676c08](https://github.com/Molunerfinn/PicGo/commit/a676c08)), closes [#722](https://github.com/Molunerfinn/PicGo/issues/722) +* urlEncode bug when copy ([6c6f847](https://github.com/Molunerfinn/PicGo/commit/6c6f847)), closes [#731](https://github.com/Molunerfinn/PicGo/issues/731) + + +### :pencil: Documentation + +* update FAQ ([58420c8](https://github.com/Molunerfinn/PicGo/commit/58420c8)) + + + +# :tada: 2.3.0-beta.8 (2021-08-13) + + +### :bug: Bug Fixes + +* settings bug ([20d3cf9](https://github.com/Molunerfinn/PicGo/commit/20d3cf9)), closes [#710](https://github.com/Molunerfinn/PicGo/issues/710) +* upload clipboard images via http should return list ([ae69263](https://github.com/Molunerfinn/PicGo/commit/ae69263)), closes [#721](https://github.com/Molunerfinn/PicGo/issues/721) + + + +# :tada: 2.3.0-beta.7 (2021-08-01) + + +### :sparkles: Features + +* add gallery db ([6ddd660](https://github.com/Molunerfinn/PicGo/commit/6ddd660)) +* add win32 support ([1657542](https://github.com/Molunerfinn/PicGo/commit/1657542)), closes [#632](https://github.com/Molunerfinn/PicGo/issues/632) +* finish custom config path ([7030f7a](https://github.com/Molunerfinn/PicGo/commit/7030f7a)), closes [#255](https://github.com/Molunerfinn/PicGo/issues/255) + + +### :bug: Bug Fixes + +* bug of gallery db for plugin ([96a63ea](https://github.com/Molunerfinn/PicGo/commit/96a63ea)) +* enable plugin should reload ([49e5f34](https://github.com/Molunerfinn/PicGo/commit/49e5f34)), closes [#659](https://github.com/Molunerfinn/PicGo/issues/659) +* gallery db bug ([f1eb7f4](https://github.com/Molunerfinn/PicGo/commit/f1eb7f4)) +* multiple uploading in the same time will cause output conflict ([06b67e5](https://github.com/Molunerfinn/PicGo/commit/06b67e5)), closes [#666](https://github.com/Molunerfinn/PicGo/issues/666) +* multiple uploading in the same time will cause rename failed ([12cecc2](https://github.com/Molunerfinn/PicGo/commit/12cecc2)) +* uploader error in linux ([ab762ef](https://github.com/Molunerfinn/PicGo/commit/ab762ef)), closes [#627](https://github.com/Molunerfinn/PicGo/issues/627) +* use uploader first ([92022a6](https://github.com/Molunerfinn/PicGo/commit/92022a6)) +* windows ia32 && x64 build options ([bdf523a](https://github.com/Molunerfinn/PicGo/commit/bdf523a)) + + + +# :tada: 2.3.0-beta.6 (2021-04-24) + + +### :sparkles: Features + +* add baidu tongji for analytics ([f536391](https://github.com/Molunerfinn/PicGo/commit/f536391)) +* add logs for picgo-server ([2d9e9c0](https://github.com/Molunerfinn/PicGo/commit/2d9e9c0)), closes [#627](https://github.com/Molunerfinn/PicGo/issues/627) +* add privacy policy ([992ff35](https://github.com/Molunerfinn/PicGo/commit/992ff35)) + + +### :bug: Bug Fixes + +* add plugin install failed notice ([b05139f](https://github.com/Molunerfinn/PicGo/commit/b05139f)) +* default picBed using picBed.uploader instead of picBed.current ([0a986c8](https://github.com/Molunerfinn/PicGo/commit/0a986c8)) +* dev error with install vue-devtools ([a657c51](https://github.com/Molunerfinn/PicGo/commit/a657c51)), closes [#653](https://github.com/Molunerfinn/PicGo/issues/653) [#658](https://github.com/Molunerfinn/PicGo/issues/658) +* disable plugin need reload app ([a1b70b4](https://github.com/Molunerfinn/PicGo/commit/a1b70b4)) +* fix analytics value ([06d40ef](https://github.com/Molunerfinn/PicGo/commit/06d40ef)) +* windows cli uploading bug ([321e339](https://github.com/Molunerfinn/PicGo/commit/321e339)), closes [#657](https://github.com/Molunerfinn/PicGo/issues/657) + + +### :package: Chore + +* add main process hot reload ([3fd6e4e](https://github.com/Molunerfinn/PicGo/commit/3fd6e4e)) +* fix eslint error notice in indent ([69e1dc8](https://github.com/Molunerfinn/PicGo/commit/69e1dc8)) + + + +# :tada: 2.3.0-beta.5 (2021-04-04) + + +### :sparkles: Features + +* add local plugin support && npm registry/proxy support ([f0e1fa1](https://github.com/Molunerfinn/PicGo/commit/f0e1fa1)) +* 为Linux系统适配桌面图标栏(Tray) ([#603](https://github.com/Molunerfinn/PicGo/issues/603)) ([0fe3ade](https://github.com/Molunerfinn/PicGo/commit/0fe3ade)) + + +### :bug: Bug Fixes + +* default github placeholder ([51d80a6](https://github.com/Molunerfinn/PicGo/commit/51d80a6)) + + +### :package: Chore + +* change travis-ci -> GitHub Actions ([064f37d](https://github.com/Molunerfinn/PicGo/commit/064f37d)) + + + +# :tada: 2.3.0-beta.4 (2020-12-19) + + +### :sparkles: Features + +* add global value for PicGo get GUI_VERSION & CORE_VERSION ([eab014d](https://github.com/Molunerfinn/PicGo/commit/eab014d)) +* **config:** auto configuration backup & fallback to avoid main process crash ([32b8b97](https://github.com/Molunerfinn/PicGo/commit/32b8b97)), closes [#568](https://github.com/Molunerfinn/PicGo/issues/568) + + +### :bug: Bug Fixes + +* disabled plugin won't be shown in plugin page ([33fdb16](https://github.com/Molunerfinn/PicGo/commit/33fdb16)) +* shortKeyConfig maybe undefined ([7b5e5ef](https://github.com/Molunerfinn/PicGo/commit/7b5e5ef)), closes [#557](https://github.com/Molunerfinn/PicGo/issues/557) +* url encode before uploading by url ([ce2b5cd](https://github.com/Molunerfinn/PicGo/commit/ce2b5cd)), closes [#581](https://github.com/Molunerfinn/PicGo/issues/581) + + +### :pencil: Documentation + +* add flutter-picgo ([92ff282](https://github.com/Molunerfinn/PicGo/commit/92ff282)) +* add gitads ([2d42381](https://github.com/Molunerfinn/PicGo/commit/2d42381)) +* rm gitads ([bb90e17](https://github.com/Molunerfinn/PicGo/commit/bb90e17)) +* update discussions in doc ([e793599](https://github.com/Molunerfinn/PicGo/commit/e793599)) +* update install command by Homebrew ([#599](https://github.com/Molunerfinn/PicGo/issues/599)) ([bd2311b](https://github.com/Molunerfinn/PicGo/commit/bd2311b)) +* update README.md ([#555](https://github.com/Molunerfinn/PicGo/issues/555)) ([2151857](https://github.com/Molunerfinn/PicGo/commit/2151857)) + + + +# :tada: 2.3.0-beta.3 (2020-07-12) + + +### :bug: Bug Fixes + +* choose default picBed failure ([21d3942](https://github.com/Molunerfinn/PicGo/commit/21d3942)), closes [#537](https://github.com/Molunerfinn/PicGo/issues/537) +* shortkey disabled failure ([4f0809e](https://github.com/Molunerfinn/PicGo/commit/4f0809e)), closes [#534](https://github.com/Molunerfinn/PicGo/issues/534) + + + +# :tada: 2.3.0-beta.2 (2020-07-12) + + +### :sparkles: Features + +* add qrcode for picbeds' config ([7fabc47](https://github.com/Molunerfinn/PicGo/commit/7fabc47)) + + +### :bug: Bug Fixes + +* encoding the result of picgo-server ([db71139](https://github.com/Molunerfinn/PicGo/commit/db71139)) +* initialize db bugs ([5f87018](https://github.com/Molunerfinn/PicGo/commit/5f87018)) + + +### :pencil: Documentation + +* update readme ([1c5880a](https://github.com/Molunerfinn/PicGo/commit/1c5880a)) + + + +# :tada: 2.3.0-beta.1 (2020-06-28) + + +### :bug: Bug Fixes + +* auto-copy option && copy style ([b6e3adb](https://github.com/Molunerfinn/PicGo/commit/b6e3adb)) +* beta version update bug ([18ad542](https://github.com/Molunerfinn/PicGo/commit/18ad542)) +* paste url encoding bug ([59d3eba](https://github.com/Molunerfinn/PicGo/commit/59d3eba)), closes [#454](https://github.com/Molunerfinn/PicGo/issues/454) + + +### :pencil: Documentation + +* update FAQ && ISSUE_TEMPLATE ([2c57a27](https://github.com/Molunerfinn/PicGo/commit/2c57a27)) +* update readme ([2adff1e](https://github.com/Molunerfinn/PicGo/commit/2adff1e)) + + + +# :tada: 2.3.0-beta.0 (2020-04-30) + + +### :sparkles: Features + +* add autoCopy option for users to use or not ([67e526f](https://github.com/Molunerfinn/PicGo/commit/67e526f)) +* add beta-version update support ([ad6acd8](https://github.com/Molunerfinn/PicGo/commit/ad6acd8)) +* add smms-v2 support ([3f3ea69](https://github.com/Molunerfinn/PicGo/commit/3f3ea69)) +* add uploading image from URL support ([a28c678](https://github.com/Molunerfinn/PicGo/commit/a28c678)) +* finish all-select && shift multi-select ([2aeca50](https://github.com/Molunerfinn/PicGo/commit/2aeca50)), closes [#342](https://github.com/Molunerfinn/PicGo/issues/342) + + +### :bug: Bug Fixes + +* confused port number auto increasing when opening a new PicGo app ([cd70a1a](https://github.com/Molunerfinn/PicGo/commit/cd70a1a)) +* correct inputbox value && remove listener ([32334e9](https://github.com/Molunerfinn/PicGo/commit/32334e9)) +* give a hint when node.js is not installed ([7e86618](https://github.com/Molunerfinn/PicGo/commit/7e86618)) +* right-click menu upload fails with PicGo open ([96cdfea](https://github.com/Molunerfinn/PicGo/commit/96cdfea)), closes [#415](https://github.com/Molunerfinn/PicGo/issues/415) +* some win10 upload clipboard image crash ([cc182b0](https://github.com/Molunerfinn/PicGo/commit/cc182b0)) +* travis-ci bug ([b357dfb](https://github.com/Molunerfinn/PicGo/commit/b357dfb)) +* url uploader bug ([96544f5](https://github.com/Molunerfinn/PicGo/commit/96544f5)) + + +### :pencil: Documentation + +* update choco install picgo ([f357557](https://github.com/Molunerfinn/PicGo/commit/f357557)) +* update docs ([fd7673e](https://github.com/Molunerfinn/PicGo/commit/fd7673e)) +* update readme ([fb014dd](https://github.com/Molunerfinn/PicGo/commit/fb014dd)) + + +### :package: Chore + +* update funding url ([024d9cf](https://github.com/Molunerfinn/PicGo/commit/024d9cf)) + + + +## :tada: 2.2.2 (2020-01-20) + + +### :bug: Bug Fixes + +* picgo-server upload clipboard file's result bug ([4ebd76f](https://github.com/Molunerfinn/PicGo/commit/4ebd76f)) +* releaseUrl may can't get latest version ([ee46ab1](https://github.com/Molunerfinn/PicGo/commit/ee46ab1)) + + + +## :tada: 2.2.1 (2020-01-09) + + +### :sparkles: Features + +* add alias for plugin config name ([5a06483](https://github.com/Molunerfinn/PicGo/commit/5a06483)) +* add aliyun oss options ([a33f1ad](https://github.com/Molunerfinn/PicGo/commit/a33f1ad)), closes [#347](https://github.com/Molunerfinn/PicGo/issues/347) +* **server:** add http server for uploading images by a http request ([c56d4ef](https://github.com/Molunerfinn/PicGo/commit/c56d4ef)) +* add server config settings ([6b57cf7](https://github.com/Molunerfinn/PicGo/commit/6b57cf7)) +* only shows visible pic-beds ([9d4d605](https://github.com/Molunerfinn/PicGo/commit/9d4d605)), closes [#310](https://github.com/Molunerfinn/PicGo/issues/310) + + +### :bug: Bug Fixes + +* decrease title-bar z-index when config-form dialog shows ([f2750e1](https://github.com/Molunerfinn/PicGo/commit/f2750e1)) +* **website:** website pictures error ([a5b6526](https://github.com/Molunerfinn/PicGo/commit/a5b6526)) +* add new tray icon for macOS dark-mode ([c5adf3b](https://github.com/Molunerfinn/PicGo/commit/c5adf3b)), closes [#267](https://github.com/Molunerfinn/PicGo/issues/267) +* beforeOpen handler in windows ([cd30a6c](https://github.com/Molunerfinn/PicGo/commit/cd30a6c)) +* busApi event register first && emit later ([e1a0cbb](https://github.com/Molunerfinn/PicGo/commit/e1a0cbb)) +* enum type error ([4e3fa28](https://github.com/Molunerfinn/PicGo/commit/4e3fa28)) +* handle empty request-body ([81e6acb](https://github.com/Molunerfinn/PicGo/commit/81e6acb)) +* launch error in new structrue ([bc8e641](https://github.com/Molunerfinn/PicGo/commit/bc8e641)) +* miniWindow minimize bug ([5f2b7c7](https://github.com/Molunerfinn/PicGo/commit/5f2b7c7)) +* plugin config-form && default plugin logo ([514fc40](https://github.com/Molunerfinn/PicGo/commit/514fc40)) +* release script ([b4f10c6](https://github.com/Molunerfinn/PicGo/commit/b4f10c6)) +* removeById handler error ([c4f0a30](https://github.com/Molunerfinn/PicGo/commit/c4f0a30)), closes [#382](https://github.com/Molunerfinn/PicGo/issues/382) +* rename page not work ([29a55ed](https://github.com/Molunerfinn/PicGo/commit/29a55ed)) +* save debug mode && PICGO_ENV into config file ([c6ead5b](https://github.com/Molunerfinn/PicGo/commit/c6ead5b)) +* server may never start ([73870a5](https://github.com/Molunerfinn/PicGo/commit/73870a5)) +* settingPage && miniPage style in windows ([3fd9572](https://github.com/Molunerfinn/PicGo/commit/3fd9572)) + + +### :pencil: Documentation + +* add note for windows electron mirror ([46a49ed](https://github.com/Molunerfinn/PicGo/commit/46a49ed)) +* remove weibo picbed ([e81b8f4](https://github.com/Molunerfinn/PicGo/commit/e81b8f4)) +* update installation by scoop ([91b397d](https://github.com/Molunerfinn/PicGo/commit/91b397d)), closes [#295](https://github.com/Molunerfinn/PicGo/issues/295) +* update readme ([1b3522e](https://github.com/Molunerfinn/PicGo/commit/1b3522e)) +* update README ([f491209](https://github.com/Molunerfinn/PicGo/commit/f491209)) +* update site ([fe9e19a](https://github.com/Molunerfinn/PicGo/commit/fe9e19a)) + + + +# :tada: 2.2.0 (2020-01-01) + + +### :sparkles: Features + +* add alias for plugin config name ([5a06483](https://github.com/Molunerfinn/PicGo/commit/5a06483)) +* add aliyun oss options ([a33f1ad](https://github.com/Molunerfinn/PicGo/commit/a33f1ad)), closes [#347](https://github.com/Molunerfinn/PicGo/issues/347) +* **server:** add http server for uploading images by a http request ([c56d4ef](https://github.com/Molunerfinn/PicGo/commit/c56d4ef)) +* add server config settings ([6b57cf7](https://github.com/Molunerfinn/PicGo/commit/6b57cf7)) +* only shows visible pic-beds ([9d4d605](https://github.com/Molunerfinn/PicGo/commit/9d4d605)), closes [#310](https://github.com/Molunerfinn/PicGo/issues/310) + + +### :bug: Bug Fixes + +* beforeOpen handler in windows ([cd30a6c](https://github.com/Molunerfinn/PicGo/commit/cd30a6c)) +* **website:** website pictures error ([a5b6526](https://github.com/Molunerfinn/PicGo/commit/a5b6526)) +* add new tray icon for macOS dark-mode ([c5adf3b](https://github.com/Molunerfinn/PicGo/commit/c5adf3b)), closes [#267](https://github.com/Molunerfinn/PicGo/issues/267) +* busApi event register first && emit later ([e1a0cbb](https://github.com/Molunerfinn/PicGo/commit/e1a0cbb)) +* decrease title-bar z-index when config-form dialog shows ([f2750e1](https://github.com/Molunerfinn/PicGo/commit/f2750e1)) +* enum type error ([4e3fa28](https://github.com/Molunerfinn/PicGo/commit/4e3fa28)) +* handle empty request-body ([81e6acb](https://github.com/Molunerfinn/PicGo/commit/81e6acb)) +* launch error in new structrue ([bc8e641](https://github.com/Molunerfinn/PicGo/commit/bc8e641)) +* plugin config-form && default plugin logo ([514fc40](https://github.com/Molunerfinn/PicGo/commit/514fc40)) +* release script ([b4f10c6](https://github.com/Molunerfinn/PicGo/commit/b4f10c6)) +* rename page not work ([29a55ed](https://github.com/Molunerfinn/PicGo/commit/29a55ed)) +* save debug mode && PICGO_ENV into config file ([c6ead5b](https://github.com/Molunerfinn/PicGo/commit/c6ead5b)) +* settingPage && miniPage style in windows ([3fd9572](https://github.com/Molunerfinn/PicGo/commit/3fd9572)) + + +### :pencil: Documentation + +* add note for windows electron mirror ([46a49ed](https://github.com/Molunerfinn/PicGo/commit/46a49ed)) +* remove weibo picbed ([e81b8f4](https://github.com/Molunerfinn/PicGo/commit/e81b8f4)) +* update installation by scoop ([91b397d](https://github.com/Molunerfinn/PicGo/commit/91b397d)), closes [#295](https://github.com/Molunerfinn/PicGo/issues/295) +* update readme ([1b3522e](https://github.com/Molunerfinn/PicGo/commit/1b3522e)) +* update README ([f491209](https://github.com/Molunerfinn/PicGo/commit/f491209)) +* update site ([fe9e19a](https://github.com/Molunerfinn/PicGo/commit/fe9e19a)) + + + +## :tada: 2.1.2 (2019-04-19) + + +### :sparkles: Features + +* add file-name for customurl ([c59e2bc](https://github.com/Molunerfinn/PicGo/commit/c59e2bc)), closes [#173](https://github.com/Molunerfinn/PicGo/issues/173) + + +### :bug: Bug Fixes + +* log-level filter bug ([4e02244](https://github.com/Molunerfinn/PicGo/commit/4e02244)), closes [#237](https://github.com/Molunerfinn/PicGo/issues/237) +* log-level's reset value from 'all' -> ['all'] ([3c6b329](https://github.com/Molunerfinn/PicGo/commit/3c6b329)), closes [#240](https://github.com/Molunerfinn/PicGo/issues/240) [#237](https://github.com/Molunerfinn/PicGo/issues/237) +* mini window hidden bug in linux ([466dbec](https://github.com/Molunerfinn/PicGo/commit/466dbec)), closes [#239](https://github.com/Molunerfinn/PicGo/issues/239) + + + +## :tada: 2.1.1 (2019-04-16) + + +### :bug: Bug Fixes + +* upload-area can't upload images ([4000cea](https://github.com/Molunerfinn/PicGo/commit/4000cea)) + + + +# :tada: 2.1.0 (2019-04-15) + + +### :sparkles: Features + +* add commandline argvs support for picgo app ([6db86ec](https://github.com/Molunerfinn/PicGo/commit/6db86ec)) +* add gui-api for remove event ([407b821](https://github.com/Molunerfinn/PicGo/commit/407b821)), closes [#201](https://github.com/Molunerfinn/PicGo/issues/201) +* add windows context menu ([e5fbe75](https://github.com/Molunerfinn/PicGo/commit/e5fbe75)) +* add workflow for mac ([7f17697](https://github.com/Molunerfinn/PicGo/commit/7f17697)) +* support commandline -> upload images in clipboard ([74c7016](https://github.com/Molunerfinn/PicGo/commit/74c7016)) + + +### :bug: Bug Fixes + +* qiniu area option from select group -> input ([c64959a](https://github.com/Molunerfinn/PicGo/commit/c64959a)), closes [#230](https://github.com/Molunerfinn/PicGo/issues/230) + + +### :pencil: Documentation + +* add brew cask source ([6122e17](https://github.com/Molunerfinn/PicGo/commit/6122e17)) + + +### :package: Chore + +* add picgo bump-version ([37f1d34](https://github.com/Molunerfinn/PicGo/commit/37f1d34)) + + + diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 6fef5f47..f7be5994 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -1,33 +1,33 @@ -# 贡献指南 - -## 安装与启动 - -1. 使用 [yarn](https://yarnpkg.com/) 安装依赖 - -```bash -yarn install -``` - -然后通过 - -```bash -yarn dev -``` - -启动项目。 - -2. 只跟 Electron 主进程相关的代码请在 `src/main` 目录下添加。只跟渲染进程相关的代码请在 `src/renderer` 目录下添加。两个进程都能使用的代码请在 `src/universal` 目录下添加。 **注意**:渲染进程没有 `Node.js` 能力,所有渲染进程需要用到 `Node.js` 模块相关的代码请在 `src/main/events/picgoCoreIPC.ts` 下添加事件进行处理。 -3. 所有的跨进程事件名请在 `src/universal/events/constants.ts` 里添加。 -4. 所有的全局类型定义请在 `src/universal/types/` 里添加,如果是 `enum`,请在 `src/universal/types/enum.ts` 里添加。 -5. 与图床管理功能相关的代码请在 `src/main/manage`和 `src/renderer/manage`目录下添加。 - -## i18n - -1. 在 `public/i18n/` 下面创建一种语言的 `yml` 文件,例如 `zh-Hans.yml`。然后参考 `zh-CN.yml` 或者 `en.yml` 编写语言文件。并注意,PicList 会通过语言文件中的 `LANG_DISPLAY_LABEL` 向用户展示该语言的名称。 -2. 在 `src/universal/i18n/index.ts` 里添加一种默认语言。其中 `label` 就是语言文件中 `LANG_DISPLAY_LABEL` 的值,`value` 是语言文件名。 -3. 如果是对已有语言文件进行更新,请在更新完,务必运行一遍 `yarn gen-i18n`,确保能生成正确的语言定义文件。 - -## 提交代码 - -1. 请检查代码没有多余的注释、`console.log` 等调试代码。 -2. 提交代码前,请执行命令 `git add . && yarn cz`,唤起 [代码提交规范工具](https://github.com/PicGo/bump-version)。通过该工具提交代码。 +# 贡献指南 + +## 安装与启动 + +1. 使用 [yarn](https://yarnpkg.com/) 安装依赖 + +```bash +yarn +``` + +然后通过 + +```bash +yarn dev +``` + +启动项目。 + +1. 只跟 Electron 主进程相关的代码请在 `src/main` 目录下添加。只跟渲染进程相关的代码请在 `src/renderer` 目录下添加。两个进程都能使用的代码请在 `src/universal` 目录下添加。 +2. 所有的跨进程事件名请在 `src/universal/events/constants.ts` 里添加。 +3. 所有的全局类型定义请在 `src/universal/types/` 里添加,如果是 `enum`,请在 `src/universal/types/enum.ts` 里添加。 +4. 与图床管理功能相关的代码请在 `src/main/manage`和 `src/renderer/manage`目录下添加。 + +## i18n + +1. 在 `public/i18n/` 下面创建一种语言的 `yml` 文件,例如 `zh-Hans.yml`。然后参考 `zh-CN.yml` 或者 `en.yml` 编写语言文件。并注意,PicList 会通过语言文件中的 `LANG_DISPLAY_LABEL` 向用户展示该语言的名称。 +2. 在 `src/universal/i18n/index.ts` 里添加一种默认语言。其中 `label` 就是语言文件中 `LANG_DISPLAY_LABEL` 的值,`value` 是语言文件名。 +3. 如果是对已有语言文件进行更新,请在更新完,务必运行一遍 `yarn i18n`,确保能生成正确的语言定义文件。 + +## 提交代码 + +1. 请检查代码没有多余的注释、`console.log` 等调试代码。 +2. 提交代码前,请执行命令 `git add . && yarn cz`,唤起 [代码提交规范工具](https://github.com/Kuingsmile/node-bump-version)。通过该工具提交代码。 diff --git a/CONTRIBUTING_EN.md b/CONTRIBUTING_EN.md index d860d41b..26bae6c9 100644 --- a/CONTRIBUTING_EN.md +++ b/CONTRIBUTING_EN.md @@ -1,33 +1,33 @@ -# Contribution Guidelines - -## Installation and startup - -1. Use [yarn](https://yarnpkg.com/) to install dependencies - -```bash -yarn install -``` - -then pass - -```bash -yarn dev -``` - -Startup project. - -2. Please add code only related to the main process of Electron in the `src/main` directory. Code only related to the rendering process should be added in the `src/renderer` directory. Add code that can be used by both processes in the `src/universal` directory. **Note**: The rendering process does not have the `Node.js` capability. All rendering processes need to use `Node.js modules` related code, please add events under `src/main/events/picgoCoreIPC.ts` for processing. -3. Please add all cross-process event names in `src/universal/events/constants.ts`. -4. Please add all global type definitions in `src/universal/types/`, if it is `enum`, please add it in `src/universal/types/enum.ts`. -5. Code related to the management function of the picture bed should be added in the `src/main/manage` and `src/renderer/manage` directory. - -## i18n - -1. Create a language `yml` file under `public/i18n/`, for example `zh-Hans.yml`. Then refer to `zh-CN.yml` or `en.yml` to write language files. Also note that PicList will display the name of the language to the user via `LANG_DISPLAY_LABEL` in the language file. -2. Add a default language to `src/universal/i18n/index.ts`. where `label` is the value of `LANG_DISPLAY_LABEL` in the language file, and `value` is the name of the language file. -3. If you are updating an existing language file, be sure to run `yarn gen-i18n` after the update to ensure that the correct language definition file can be generated. - -## Submit code - -1. Please check that the code has no extra comments, `console.log` and other debugging code. -2. Before submitting the code, please execute the command `git add . && yarn cz` to invoke [Code Submission Specification Tool](https://github.com/PicGo/bump-version). Submit code through this tool. +# Contribution Guidelines + +## Installation and startup + +1. Use [yarn](https://yarnpkg.com/) to install dependencies + +```bash +yarn +``` + +then pass + +```bash +yarn dev +``` + +Startup project. + +1. Please add code only related to the main process of Electron in the `src/main` directory. Code only related to the rendering process should be added in the `src/renderer` directory. Add code that can be used by both processes in the `src/universal` directory. +2. Please add all cross-process event names in `src/universal/events/constants.ts`. +3. Please add all global type definitions in `src/universal/types/`, if it is `enum`, please add it in `src/universal/types/enum.ts`. +4. Code related to the management function of the picture bed should be added in the `src/main/manage` and `src/renderer/manage` directory. + +## i18n + +1. Create a language `yml` file under `public/i18n/`, for example `zh-Hans.yml`. Then refer to `zh-CN.yml` or `en.yml` to write language files. Also note that PicList will display the name of the language to the user via `LANG_DISPLAY_LABEL` in the language file. +2. Add a default language to `src/universal/i18n/index.ts`. where `label` is the value of `LANG_DISPLAY_LABEL` in the language file, and `value` is the name of the language file. +3. If you are updating an existing language file, be sure to run `yarn i18n` after the update to ensure that the correct language definition file can be generated. + +## Submit code + +1. Please check that the code has no extra comments, `console.log` and other debugging code. +2. Before submitting the code, please execute the command `git add . && yarn cz` to invoke [Code Submission Specification Tool](https://github.com/Kuingsmile/node-bump-version). Submit code through this tool. diff --git a/FAQ_EN.md b/FAQ_EN.md index 49c5491a..e5185e4c 100644 --- a/FAQ_EN.md +++ b/FAQ_EN.md @@ -1,174 +1,167 @@ -# FAQ - -This FAQ has been modified from PicGo's FAQ, and thanks to the author Molunerfinn for PicGo. - -## Common Questions - -> Please refer to [user manual](https://piclist.cn/en) for general configuration issues. - -## 1. What is the relationship between PicList and PicGo? - -PicList is forked from the PicGo project and is based on PicGo for secondary development. At the same time, the core function kernel PicGo-Core has been developed for the second time and renamed as [PicList-Core](https://github.com/Kuingsmile/PicList-Core). - -The addition of all new features to PicList has not affected PicGo's existing functions, so you can use all PicGo plugins in PicList. At the same time, it can still be used in conjunction with software such as Typora and Obsidian. - -## 2. When using the image hosting management function, errors such as "unable to retrieve directory" occur - -Please check the log file `manage.log`. In addition, the API calls of various platforms have a limit on the number of calls per hour. If an error occurs, please try again later. - -## 3. Which remote image hosting deletion is supported? - -Currently, the supported image hosting platforms are: - -- Aliyun OSS -- Tencent Cloud COS -- Qiniu Cloud Kodo -- Upyun -- SM.MS -- Imgur -- GitHub -- Webdav -- Aws S3 -- Local path -- Built-in SFTP -- Doge Cloud -- Huawei Cloud OBS -- Alist -- Lsky Pro - -## 4. Is it possible to upload video files? - -Yes. With the newly added image hosting management function, you can upload files of any format, including video files. At the same time, when uploading in the management interface, using methods such as chunked uploading and streaming uploading is faster and more stable compared to the base64 conversion method built into PicGo. - -## 5. Does PicList support a certain image hosting platform? - -PicList itself supports the following image hosting platforms: - -- Qiniu Cloud -- AWS S3 compatible platform -- Tencent Cloud COS -- Upyun -- GitHub -- SM.MS -- Aliyun OSS -- Imgur -- Webdav -- Local path -- SFTP -- Telegra.ph -- Lsky Pro -- PicList (nested) - -PicList plans to integrate and optimize existing plugins and embed more commonly used image hosting platforms. - -In addition, PicList is compatible with PicGo's plugin system. If you need support for other image hosting platforms, you can refer to the [PicGo third-party plugins](https://github.com/PicGo/Awesome-PicGo). If you still cannot find the image hosting platform you need, please develop a plugin for everyone to use. - -## 6. The GitHub image hosting platform sometimes uploads successfully and sometimes fails - -The problem with GitHub servers and China's Great Firewall may cause successful or failed uploads. There is no solution. - -If you want stability, please use paid cloud storage such as Aliyun and Tencent Cloud. The price is not expensive. - -## 7. The main window interface of PicList cannot be opened on Mac - -To open the main window, right-click or two-finger tap the PicList icon in the top bar and select "Open Main Window." - -Or right-click the PicList icon in the dock and select "Open Main Window." - -## 8. 上传失败,或者是服务器出错 - -1. PicList 自带的图床都经过测试,上传出错一般都不是 PicList 自身的原因。如果你用的是 GitHub 图床请参考上面的第 7 点。 -2. 检查 PicList 的日志(报错日志可以在 PicList 设置 -> 设置日志文件 -> 点击打开 后找到),看看 `[PicList Error]` 的报错信息里有什么关键信息 - - 1. 先自行搜索 error 里的报错信息,往往你能百度或者谷歌出问题原因,不必开 issue。 - 2. 如果有带有 `401` 、`403` 等 `40X` 状态码字样的,不用怀疑,就是你配置写错了,仔细检查配置,看看是否多了空格之类的。 - 3. 如果带有 `HttpError`、`RequestError` 、 `socket hang up` 等字样的说明这是网络问题,我无法帮你解决网络问题,请检查你自己的网络,是否有代理,DNS 设置是否正常等。 -3. 通常网络问题引起的上传失败都是因为代理设置不当导致的。如果开启了系统代理,建议同时也在 PicList 的代理设置中设置对应的HTTP代理。 -4. PicList's built-in image hosting platforms have been tested, and upload errors are generally not caused by PicList itself. If you are using the GitHub image hosting platform, please refer to the 7th point above. -5. Check PicList's log (the error log can be found by clicking "Open" in PicList Settings -> Set Log File ->), and see if there is any key information in the `[PicList Error]` error message - - 1. First search for the error message in the error message by yourself, and you can often Baidu or Google the cause of the problem, so you don't need to open an issue. - 2. If there are `401`, `403` and other `40X` status code words, don't doubt it, it means that your configuration is wrong, check the configuration carefully to see if there are extra spaces, etc. - 3. If there are words such as `HttpError`, `RequestError`, `socket hang up`, etc., it means that this is a network problem, and I cannot help you solve the network problem. Please check your own network, whether there is a proxy, whether the DNS setting is normal, etc. -6. Usually, upload failures caused by network problems are caused by improper proxy settings. If the system proxy is turned on, it is recommended to set the corresponding HTTP proxy in the proxy settings of PicList at the same time. - -## 10. After installing the macOS version, there is no main interface - -Please find the icon of PicList in the top bar, and then right-click (touchpad two-finger tap, or right-click the mouse) to find the menu of "Open Main Window". - -Or right-click on the icon of PicList in the Docker bar to find the menu of "Open Main Window". - -## 11. After installing PicList on macOS, it shows "The file is damaged" or there is no response after installing and opening - -Please upgrade PicList to version 1.4.1 or above. Starting from 1.4.1, PicList has been signed by Apple and will not have this problem again. - -## 12. Watermark is not added normally - -Before adding a watermark, PicList will check whether the font file exists. If it does not exist, it will automatically download the font file. However, due to network problems, the font file may fail to download, and the watermark will be skipped. - -Please check whether the font file under the corresponding path according to your system exists. If it does not exist, please download the font file manually and put it in the corresponding path. - -Windows: `%APPDATA%\piclist\assets\simhei.ttf` -Linux: `$XDG_CONFIG_HOME/piclist/assets/simhei.ttf` or `~/.config//assets/simhei.ttf` -MacOS: `~/Library/Application\ Support/picgo/assets/simhei.ttf` - -The font file download address: [https://release.piclist.cn/simhei.ttf](https://release.piclist.cn/simhei.ttf) - -## 13. Upload failed when using aws-s3 plugin to upload to cloudflare R2 - -R2's endpoint address will be blocked by GFW sni. After checking piclist.log, adding the corresponding IP address to the proxy list can solve the problem. - -## 14. Are all PicGo plugins compatible with PicList? - -PicList is compatible with most PicGo plugins. However, since PicList uses an updated version of electron, it is not compatible with the old version of the sharp library, so some plugins may not work. - -Known plugins that cannot be used are: - -- picgo-plugin-watermark (built-in) -- picgo-plugin-pic-migrater (this plugin will verify the version of PicGo and cannot be used, please use the pic-migrater-piclist plugin) -- picgo-plugin-auto-delete (built-in) - -Welcome everyone to test other plugins. If there are plugins that cannot be used, please open an issue for feedback. - -## 15. How to run PicList-core through Docker? - -### docker run - -Change the `./piclist` to your own path, and change the `piclist123456` to your own secret key. - -```bash -docker run -d \ - --name piclist \ - --restart always \ - -p 36677:36677 \ - -v "./piclist:/root/.piclist" \ - kuingsmile/piclist:latest \ - node /usr/local/bin/picgo-server -k piclist123456 -``` - -### docker-compose - -download `docker-compose.yml` from piclist-core repo, or copy the following content to `docker-compose.yml`: - -```yaml -version: '3.3' - -services: - node: - image: 'kuingsmile/piclist:latest' - container_name: piclist - restart: always - ports: - - 36677:36677 - volumes: - - './piclist:/root/.piclist' - command: node /usr/local/bin/picgo-server -k piclist123456 -``` - -You can change the `volumes` to your own path and change the `command` to your own secret key. - -Then run: - -```bash -docker-compose up -d -``` +# FAQ + +This FAQ has been modified from PicGo's FAQ, and thanks to the author Molunerfinn for PicGo. + +## Common Questions + +> Please refer to [user manual](https://piclist.cn/en) for general configuration issues. + +## 1. What is the relationship between PicList and PicGo? + +PicList is forked from the PicGo project and is based on PicGo for secondary development. At the same time, the core function kernel PicGo-Core has been developed for the second time and renamed as [PicList-Core](https://github.com/Kuingsmile/PicList-Core). + +The addition of all new features to PicList has not affected PicGo's existing functions, so you can use all PicGo plugins in PicList. At the same time, it can still be used in conjunction with software such as Typora and Obsidian. + +## 2. When using the image hosting management function, errors such as "unable to retrieve directory" occur + +Please check the log file `manage.log`. In addition, the API calls of various platforms have a limit on the number of calls per hour. If an error occurs, please try again later. + +## 3. Which remote image hosting deletion is supported? + +Currently, the supported image hosting platforms are: + +- Aliyun OSS +- Tencent Cloud COS +- Qiniu Cloud Kodo +- Upyun +- SM.MS +- Imgur +- GitHub +- Webdav +- Aws S3 +- Local path +- Built-in SFTP +- Doge Cloud +- Huawei Cloud OBS +- Alist +- Lsky Pro + +## 4. Is it possible to upload video files? + +Yes. With the newly added image hosting management function, you can upload files of any format, including video files. At the same time, when uploading in the management interface, using methods such as chunked uploading and streaming uploading is faster and more stable compared to the base64 conversion method built into PicGo. + +## 5. Does PicList support a certain image hosting platform? + +PicList itself supports the following image hosting platforms: + +- Qiniu Cloud +- AWS S3 compatible platform +- Tencent Cloud COS +- Upyun +- GitHub +- SM.MS +- Aliyun OSS +- Imgur +- Webdav +- Local path +- SFTP +- Telegra.ph +- Lsky Pro +- PicList (nested) + +PicList plans to integrate and optimize existing plugins and embed more commonly used image hosting platforms. + +In addition, PicList is compatible with PicGo's plugin system. If you need support for other image hosting platforms, you can refer to the [PicGo third-party plugins](https://github.com/PicGo/Awesome-PicGo). If you still cannot find the image hosting platform you need, please develop a plugin for everyone to use. + +## 6. The GitHub image hosting platform sometimes uploads successfully and sometimes fails + +The problem with GitHub servers and China's Great Firewall may cause successful or failed uploads. There is no solution. + +If you want stability, please use paid cloud storage such as Aliyun and Tencent Cloud. The price is not expensive. + +## 7. The main window interface of PicList cannot be opened on Mac + +To open the main window, right-click or two-finger tap the PicList icon in the top bar and select "Open Main Window." + +Or right-click the PicList icon in the dock and select "Open Main Window." + +## 8. Upload failed, or server error + +1. PicList's built-in image hosting platforms have been tested, and upload errors are generally not caused by PicList itself. If you are using the GitHub image hosting platform, please refer to the 7th point above. +2. Check PicList's log (the error log can be found by clicking "Open" in PicList Settings -> Set Log File ->), and see if there is any key information in the `[PicList Error]` error message + + 1. First search for the error message in the error message by yourself, and you can often Baidu or Google the cause of the problem, so you don't need to open an issue. + 2. If there are `401`, `403` and other `40X` status code words, don't doubt it, it means that your configuration is wrong, check the configuration carefully to see if there are extra spaces, etc. + 3. If there are words such as `HttpError`, `RequestError`, `socket hang up`, etc., it means that this is a network problem, and I cannot help you solve the network problem. Please check your own network, whether there is a proxy, whether the DNS setting is normal, etc. +3. Usually, upload failures caused by network problems are caused by improper proxy settings. If the system proxy is turned on, it is recommended to set the corresponding HTTP proxy in the proxy settings of PicList at the same time. + +## 10. After installing the macOS version, there is no main interface + +Please find the icon of PicList in the top bar, and then right-click (touchpad two-finger tap, or right-click the mouse) to find the menu of "Open Main Window". + +Or right-click on the icon of PicList in the Docker bar to find the menu of "Open Main Window". + +## 11. After installing PicList on macOS, it shows "The file is damaged" or there is no response after installing and opening + +Please upgrade PicList to version 1.4.1 or above. Starting from 1.4.1, PicList has been signed by Apple and will not have this problem again. + +## 12. Watermark is not added normally + +Before adding a watermark, PicList will check whether the font file exists. If it does not exist, it will automatically download the font file. However, due to network problems, the font file may fail to download, and the watermark will be skipped. + +Please check whether the font file under the corresponding path according to your system exists. If it does not exist, please download the font file manually and put it in the corresponding path. + +Windows: `%APPDATA%\piclist\assets\simhei.ttf` +Linux: `$XDG_CONFIG_HOME/piclist/assets/simhei.ttf` or `~/.config//assets/simhei.ttf` +MacOS: `~/Library/Application\ Support/picgo/assets/simhei.ttf` + +The font file download address: [https://release.piclist.cn/simhei.ttf](https://release.piclist.cn/simhei.ttf) + +## 13. Upload failed when using aws-s3 plugin to upload to cloudflare R2 + +R2's endpoint address will be blocked by GFW sni. After checking piclist.log, adding the corresponding IP address to the proxy list can solve the problem. + +## 14. Are all PicGo plugins compatible with PicList? + +PicList is compatible with most PicGo plugins. However, since PicList uses an updated version of electron, it is not compatible with the old version of the sharp library, so some plugins may not work. + +Known plugins that cannot be used are: + +- picgo-plugin-watermark (built-in) +- picgo-plugin-pic-migrater (this plugin will verify the version of PicGo and cannot be used, please use the pic-migrater-piclist plugin) +- picgo-plugin-auto-delete (built-in) + +Welcome everyone to test other plugins. If there are plugins that cannot be used, please open an issue for feedback. + +## 15. How to run PicList-core through Docker? + +### docker run + +Change the `./piclist` to your own path, and change the `piclist123456` to your own secret key. + +```bash +docker run -d \ + --name piclist \ + --restart always \ + -p 36677:36677 \ + -v "./piclist:/root/.piclist" \ + kuingsmile/piclist:latest \ + node /usr/local/bin/picgo-server -k piclist123456 +``` + +### docker-compose + +download `docker-compose.yml` from piclist-core repo, or copy the following content to `docker-compose.yml`: + +```yaml +version: '3.3' + +services: + node: + image: 'kuingsmile/piclist:latest' + container_name: piclist + restart: always + ports: + - 36677:36677 + volumes: + - './piclist:/root/.piclist' + command: node /usr/local/bin/picgo-server -k piclist123456 +``` + +You can change the `volumes` to your own path and change the `command` to your own secret key. + +Then run: + +```bash +docker-compose up -d +``` diff --git a/README.md b/README.md index 6d80d879..600cbeb7 100644 --- a/README.md +++ b/README.md @@ -1,254 +1,254 @@ -
- - - -[简体中文](https://github.com/Kuingsmile/PicList/blob/dev/README_cn.md) | English - -PicList is an efficient cloud storage and image hosting platform management tool. Building upon the foundation of PicGo, it has been deeply modified and enhanced. Not only does it retain all of PicGo's features, but it also adds many new ones. For instance, the album now supports synchronized deletion of files in the cloud. Built-in image hosting options have been expanded to include WebDav, local image hosting, and SFTP. Additionally, PicList introduces comprehensive cloud storage management functions, including cloud directory viewing, file search, batch uploading, downloading, and file deletion, copying links in various formats, and previews for images, markdown, text, and videos. Moreover, it boasts a more powerful album function and numerous other improvements and enhancements. - -## How to migrate from PicGo - -PicList `V1.5.0` and above versions provide the `one-click migration` function. Enter the `Settings` page, and then click the right button on the `Migrate from PicGo` option to migrate. Please restart the application to take effect after migration. - -## PicList-Core - -The core of PicList is based on the original PicGo-Core [PicList-core](https://github.com/Kuingsmile/PicList-Core), which is adapted for cloud deletion and other functions, and adds watermark addition and image compression / scaling / rotation / format conversion functions, which can be called through CLI command line, support starting the built-in upload server through `picgo-server`,as well as some other function changes. - -if you want to use PicList-core, please go to [https://github.com/Kuingsmile/PicList-Core](https://github.com/Kuingsmile/PicList-Core), or go to [npm official address](https://www.npmjs.com/package/piclist) to view the installation instructions. - -## Features - -- Retains all the features of PicGo and is compatible with the vast majority of existing PicGo plugins, including integrations with software like Typora and Obsidian. -- Added multiple built-in image hosting platforms, such as WebDav, Lsky Pro, local image hosting, SFTP and Telegra.ph. The original built-in imgur image host now also supports account login for uploading. -- Within the album, you can synchronize the deletion of cloud images. This is supported across all built-in image hosts and multiple plugins. -- The album now offers advanced search and sorting features, as well as batch URL modification. -- Built-in tools for adding watermarks, compressing images, scaling images, rotating images, and converting image formats are now available. Advanced renaming is also supported. -- Upload interface supports form upload files, can be shared by multiple computers -- Configuration can be synchronized to Github/Gitee/Gitea repositories. -- Manages over ten types of image hosting platforms, allowing online viewing of cloud directories, file searching, batch uploading, batch downloading, file deletion, and more. -- Support previewing multiple formats of files, including pictures, videos, plain text files and markdown files, etc. For the specific formats supported, please refer to [Supported file format list](https://github.com/Kuingsmile/PicList/blob/dev/supported_format.md) -- Supports the use of regular expressions for batch renaming of cloud files. -- For private storage buckets, pre-signed link copying for sharing is available. -- Software auto-updates are available, along with multiple startup modes, and many other feature details have been added and optimized. -- The PicGo interface has been enhanced, window size restrictions have been unlocked, and some interface layouts have been beautified. -- The installation package for the Mac platform is now signed, addressing the recurring issue on PicGo where the installation package was reported as damaged. - -## How to use - -### How to use in VScode - -Please install my matching plugin [VS-PicList](https://marketplace.visualstudio.com/items?itemName=Kuingsmile.vs-piclist), compared with the vs-picgo plugin, the plugin directly depends on the PicList desktop software, supports a variety of uploads and direct cloud deletion in Vscode and other functions. - -### How to use in Typora - -#### **Version 1.6.0-dev and above** - -**Typora 1.6.0-dev and above versions now support PicList natively** - -Now you need to set the upload service PicList and PicGo (app) to the installation path of PicList at the same time, it has been fixed in latest dev version. - -[download link](https://typora.io/releases/all) - -#### **Version < 1.6.0-dev** - -Windows: - -Enter the Typora settings page, select the image, set the upload service to `PicGo(app)`, and then fill in the installation path of PicList in `PicGo path`, as shown below: - - - -Or, you can also use the `npm install piclist` command to install PicList-core, and then set the upload service to `PicGo-Core(command line)`. - -MacOS: - -Enter the Typora settings page, select the image, set the upload service to `Custom Command`, and then fill in `/Applications/PicList.app/Contents/MacOS/PicList upload` in `Command`, as shown below: - - - -The verification of the upload option may have problems, you can ignore it, and use it directly. - -### How to use in Obsidian - -In the community plugins, search for and install the Image auto upload Plugin. Next, go to the plugin settings page and change the default uploader to PicGo(app). Set the PicGo server to `http://127.0.0.1:36677/upload` as shown in the image below. Additionally, this plugin also supports cloud-based deletion through PicList. To use this feature, enter `http://127.0.0.1:36677/delete` in the deletion interface. - - - -### How to use in docker - -#### docker run - -Change the `./piclist` to your own path, this is the path where you put your `config.json` file, and change the `piclist123456` to your own secret key. - -```bash -docker run -d \ - --name piclist \ - --restart always \ - -p 36677:36677 \ - -v "./piclist:/root/.piclist" \ - kuingsmile/piclist:latest \ - node /usr/local/bin/picgo-server -k piclist123456 -``` - -#### docker-compose - -download `docker-compose.yml` from piclist-core repo, or copy the following content to `docker-compose.yml`: - -```yaml -version: '3.3' - -services: - node: - image: 'kuingsmile/piclist:latest' - container_name: piclist - restart: always - ports: - - 36677:36677 - volumes: - - './piclist:/root/.piclist' - command: node /usr/local/bin/picgo-server -k piclist123456 -``` - -You can change the `./piclist` to your own path, this is the path where you put your `config.json` file, and change the `command` to your own secret key. - -Then run: - -```bash -docker-compose up -d -``` - -## Supported platforms - -| Platform | Album cloud deletion | Cloud storage management | -| :------------------------: | :------------------: | :----------------------: | -| SM.MS | ✔️ | ✔️ | -| Github | ✔️ | ✔️ | -| Imgur | ✔️ | ✔️ | -| Tencent COS V5 | ✔️ | ✔️ | -| Aliyun OSS | ✔️ | ✔️ | -| Upyun | ✔️ | ✔️ | -| Qiniu | ✔️ | ✔️ | -| S3 API compatible platform | ✔️ | ✔️ | -| WebDAV | ✔️ | ✔️ | -| Local | ✔️ | ✔️ | -| Built-in SFTP | ✔️ | ✔️ | -| Doge Cloud | ✔️ | ✔️ | -| PicList(Lasso-Doll) | ✔️ | ✔️ | -| Telegra.ph | ✔️ | × | -| Lsky Pro | ✔️ | ✔️ | - -| Plugin | Album cloud deletion | -| :----------------------------------------------------------------------------------------: | :------------------: | -| [picgo-plugin-s3](https://github.com/wayjam/picgo-plugin-s3) | ✔️ | -| [picgo-plugin-alist](https://github.com/jinzhi0123/picgo-plugin-alist) | ✔️ | -| [picgo-plugin-huawei-uploader](https://github.com/YunfengGao/picgo-plugin-huawei-uploader) | ✔️ | -| [picgo-plugin-dogecloud](https://github.com/w4j1e/picgo-plugin-dogecloud) | ✔️ | - -## Download and install - -[https://github.com/Kuingsmile/PicList/releases/latest](https://github.com/Kuingsmile/PicList/releases/latest) - -### Homebrew - -MacOS users can now use Homebrew to install PicList, just execute the following command: - -```bash -brew install piclist --cask -``` - -Uninstall: - -```bash -brew uninstall piclist -``` - -### Mac special instructions - -If the macOS system installs PicList and displays "file is damaged" or installs and opens without response, please upgrade to PicList V1.4.1 or above. - -After V1.4.1, all mac installation packages have been signed by my developer certificate, will not be recognized by the macOS system as "malicious software", will not appear "file is damaged" prompt. - -### Mac App Store - -Due to the sandbox mechanism of Mac App Store, many functions cannot be used normally, so the installation method of Mac App Store is no longer supported. - -If you have purchased PicList through Mac App Store, please add my WeChat `pku_sq_ma`, I will refund you. - -Thank you again for your support for PicList. - -**Of course, if you don't want to pay, you can also download the free installation package through Github to install.** - -## Application screenshot - - - - - - - - -## Development instructions - -1. You need to have Node, Git environment, and understand the related knowledge of npm. -2. git clone [https://github.com/Kuingsmile/PicList.git](https://github.com/Kuingsmile/PicList.git) and enter the project. - `yarn` download dependencies - Note that if you don't have `yarn`, please go to the official website to download and install it before using it. Using `npm install` will cause unknown errors! -3. Mac needs `Xcode` environment, Windows needs `VS` environment. -4. If you need to contribute code, you can refer to [contribution guide](https://github.com/Kuingsmile/PicList/blob/dev/CONTRIBUTING_EN.md) - -### Development mode - -Enter `yarn run dev` to enter development mode, which has hot reload feature. However, it should be noted that the development mode is unstable and there will be process crashes. At this time, you need to: - -`ctrl+c` # Exit development mode -`yarn run dev` # Re-enter development mode - -Note: After the development mode is running, the application icon of PicList will appear in the application area of the taskbar in the lower right corner of the bottom bar. - -### Production mode - -If you need to build it yourself, you can start building with `yarn run build`. After the build is successful, the corresponding installation file will appear in the `dist_electron` directory. - -## Other related - -- [PicList-Core](https://github.com/Kuingsmile/PicList-Core) : A core library based on PicGo-Core for CLI operations and project development -- [PicHoro](https://github.com/Kuingsmile/PicHoro): A mobile APP that works with PicList -- [VS-PicList](https://github.com/Kuingsmile/vs-PicList/): A VScode plugin that works with PicList - -## Communication group - -If you have any questions, you can join the TG group for communication. - -[PicList TG Group](https://t.me/+rq8y7wsj7Pg5ZTg1) - - - -## License - -This project is open source under the MIT license. Welcome everyone to use and contribute code. Thank you for the open source spirit of the original author Molunerfinn. - -[MIT](https://opensource.org/licenses/MIT) - -Copyright (c) 2017-present Molunerfinn - -Copyright (c) 2023-present Kuingsmile - -## Star Me - -- Star [](https://github.com/kuingsmile/PicList/stargazers) - -[](https://github.com/kuingsmile/PicList/stargazers) + + + + +[简体中文](https://github.com/Kuingsmile/PicList/blob/dev/README_cn.md) | English + +PicList is an efficient cloud storage and image hosting platform management tool. Building upon the foundation of PicGo, it has been deeply modified and enhanced. Not only does it retain all of PicGo's features, but it also adds many new ones. For instance, the album now supports synchronized deletion of files in the cloud. Built-in image hosting options have been expanded to include WebDav, local image hosting, and SFTP. Additionally, PicList introduces comprehensive cloud storage management functions, including cloud directory viewing, file search, batch uploading, downloading, and file deletion, copying links in various formats, and previews for images, markdown, text, and videos. Moreover, it boasts a more powerful album function and numerous other improvements and enhancements. + +## How to migrate from PicGo + +PicList `V1.5.0` and above versions provide the `one-click migration` function. Enter the `Settings` page, and then click the right button on the `Migrate from PicGo` option to migrate. Please restart the application to take effect after migration. + +## PicList-Core + +The core of PicList is based on the original PicGo-Core [PicList-core](https://github.com/Kuingsmile/PicList-Core), which is adapted for cloud deletion and other functions, and adds watermark addition and image compression / scaling / rotation / format conversion functions, which can be called through CLI command line, support starting the built-in upload server through `picgo-server`,as well as some other function changes. + +if you want to use PicList-core, please go to [https://github.com/Kuingsmile/PicList-Core](https://github.com/Kuingsmile/PicList-Core), or go to [npm official address](https://www.npmjs.com/package/piclist) to view the installation instructions. + +## Features + +- Retains all the features of PicGo and is compatible with the vast majority of existing PicGo plugins, including integrations with software like Typora and Obsidian. +- Added multiple built-in image hosting platforms, such as WebDav, Lsky Pro, local image hosting, SFTP and Telegra.ph. The original built-in imgur image host now also supports account login for uploading. +- Within the album, you can synchronize the deletion of cloud images. This is supported across all built-in image hosts and multiple plugins. +- The album now offers advanced search and sorting features, as well as batch URL modification. +- Built-in tools for adding watermarks, compressing images, scaling images, rotating images, and converting image formats are now available. Advanced renaming is also supported. +- Upload interface supports form upload files, can be shared by multiple computers +- Configuration can be synchronized to Github/Gitee/Gitea repositories. +- Manages over ten types of image hosting platforms, allowing online viewing of cloud directories, file searching, batch uploading, batch downloading, file deletion, and more. +- Support previewing multiple formats of files, including pictures, videos, plain text files and markdown files, etc. For the specific formats supported, please refer to [Supported file format list](https://github.com/Kuingsmile/PicList/blob/dev/supported_format.md) +- Supports the use of regular expressions for batch renaming of cloud files. +- For private storage buckets, pre-signed link copying for sharing is available. +- Software auto-updates are available, along with multiple startup modes, and many other feature details have been added and optimized. +- The PicGo interface has been enhanced, window size restrictions have been unlocked, and some interface layouts have been beautified. +- The installation package for the Mac platform is now signed, addressing the recurring issue on PicGo where the installation package was reported as damaged. + +## How to use + +### How to use in VScode + +Please install my matching plugin [VS-PicList](https://marketplace.visualstudio.com/items?itemName=Kuingsmile.vs-piclist), compared with the vs-picgo plugin, the plugin directly depends on the PicList desktop software, supports a variety of uploads and direct cloud deletion in Vscode and other functions. + +### How to use in Typora + +#### **Version 1.6.0-dev and above** + +**Typora 1.6.0-dev and above versions now support PicList natively** + +Now you need to set the upload service PicList and PicGo (app) to the installation path of PicList at the same time, it has been fixed in latest dev version. + +[download link](https://typora.io/releases/all) + +#### **Version < 1.6.0-dev** + +Windows: + +Enter the Typora settings page, select the image, set the upload service to `PicGo(app)`, and then fill in the installation path of PicList in `PicGo path`, as shown below: + + + +Or, you can also use the `npm install piclist` command to install PicList-core, and then set the upload service to `PicGo-Core(command line)`. + +MacOS: + +Enter the Typora settings page, select the image, set the upload service to `Custom Command`, and then fill in `/Applications/PicList.app/Contents/MacOS/PicList upload` in `Command`, as shown below: + + + +The verification of the upload option may have problems, you can ignore it, and use it directly. + +### How to use in Obsidian + +In the community plugins, search for and install the Image auto upload Plugin. Next, go to the plugin settings page and change the default uploader to PicGo(app). Set the PicGo server to `http://127.0.0.1:36677/upload` as shown in the image below. Additionally, this plugin also supports cloud-based deletion through PicList. To use this feature, enter `http://127.0.0.1:36677/delete` in the deletion interface. + + + +### How to use in docker + +#### docker run + +Change the `./piclist` to your own path, this is the path where you put your `config.json` file, and change the `piclist123456` to your own secret key. + +```bash +docker run -d \ + --name piclist \ + --restart always \ + -p 36677:36677 \ + -v "./piclist:/root/.piclist" \ + kuingsmile/piclist:latest \ + node /usr/local/bin/picgo-server -k piclist123456 +``` + +#### docker-compose + +download `docker-compose.yml` from piclist-core repo, or copy the following content to `docker-compose.yml`: + +```yaml +version: '3.3' + +services: + node: + image: 'kuingsmile/piclist:latest' + container_name: piclist + restart: always + ports: + - 36677:36677 + volumes: + - './piclist:/root/.piclist' + command: node /usr/local/bin/picgo-server -k piclist123456 +``` + +You can change the `./piclist` to your own path, this is the path where you put your `config.json` file, and change the `command` to your own secret key. + +Then run: + +```bash +docker-compose up -d +``` + +## Supported platforms + +| Platform | Album cloud deletion | Cloud storage management | +| :------------------------: | :------------------: | :----------------------: | +| Built-in AList | ✔️ | ✔️ | +| SM.MS | ✔️ | ✔️ | +| Github | ✔️ | ✔️ | +| Imgur | ✔️ | ✔️ | +| Tencent COS V5 | ✔️ | ✔️ | +| Aliyun OSS | ✔️ | ✔️ | +| Upyun | ✔️ | ✔️ | +| Qiniu | ✔️ | ✔️ | +| S3 API compatible platform | ✔️ | ✔️ | +| WebDAV | ✔️ | ✔️ | +| Local | ✔️ | ✔️ | +| Built-in SFTP | ✔️ | ✔️ | +| Doge Cloud | ✔️ | ✔️ | +| PicList(Lasso-Doll) | ✔️ | ✔️ | +| Telegra.ph | ✔️ | × | +| Lsky Pro | ✔️ | ✔️ | + +| Plugin | Album cloud deletion | +| :----------------------------------------------------------------------------------------: | :------------------: | +| [picgo-plugin-s3](https://github.com/wayjam/picgo-plugin-s3) | ✔️ | +| [picgo-plugin-alist](https://github.com/jinzhi0123/picgo-plugin-alist) | ✔️ | +| [picgo-plugin-huawei-uploader](https://github.com/YunfengGao/picgo-plugin-huawei-uploader) | ✔️ | +| [picgo-plugin-dogecloud](https://github.com/w4j1e/picgo-plugin-dogecloud) | ✔️ | + +## Download and install + +[https://github.com/Kuingsmile/PicList/releases/latest](https://github.com/Kuingsmile/PicList/releases/latest) + +### Scoop + +Thanks to [scoop-lemon](https://github.com/hoilc/scoop-lemon), you can use Scoop to install PicList, just execute the following command: + +```bash +scoop bucket add lemon https://github.com/hoilc/scoop-lemon +scoop install lemon/piclist +``` + +### Homebrew + +MacOS users can now use Homebrew to install PicList, just execute the following command: + +```bash +brew install piclist --cask +``` + +Uninstall: + +```bash +brew uninstall piclist +``` + +### Mac special instructions + +If the macOS system installs PicList and displays "file is damaged" or installs and opens without response, please upgrade to PicList V1.4.1 or above. + +After V1.4.1, all mac installation packages have been signed by my developer certificate, will not be recognized by the macOS system as "malicious software", will not appear "file is damaged" prompt. + +## Application screenshot + + + + + + + + +## Development instructions + +1. You need to have Node, Git environment, and understand the related knowledge of npm. +2. git clone [https://github.com/Kuingsmile/PicList.git](https://github.com/Kuingsmile/PicList.git) and enter the project. + `yarn` download dependencies + Note that if you don't have `yarn`, please go to the official website to download and install it before using it. Using `npm install` will cause unknown errors! +3. Mac needs `Xcode` environment, Windows needs `VS` environment. +4. If you need to contribute code, you can refer to [contribution guide](https://github.com/Kuingsmile/PicList/blob/dev/CONTRIBUTING_EN.md) + +### Development mode + +Enter `yarn run dev` to enter development mode, which has hot reload feature. However, it should be noted that the development mode is unstable and there will be process crashes. At this time, you need to: + +`ctrl+c` # Exit development mode +`yarn run dev` # Re-enter development mode + +Note: After the development mode is running, the application icon of PicList will appear in the application area of the taskbar in the lower right corner of the bottom bar. + +### Production mode + +If you need to build it yourself, you can start building with `yarn run build`. After the build is successful, the corresponding installation file will appear in the `dist_electron` directory. + +## Other related + +- [PicList-Core](https://github.com/Kuingsmile/PicList-Core) : A core library based on PicGo-Core for CLI operations and project development +- [PicHoro](https://github.com/Kuingsmile/PicHoro): A mobile APP that works with PicList +- [VS-PicList](https://github.com/Kuingsmile/vs-PicList/): A VScode plugin that works with PicList + +## Communication group + +If you have any questions, you can join the TG group for communication. + +[PicList TG Group](https://t.me/+rq8y7wsj7Pg5ZTg1) + + + +## License + +This project is open source under the MIT license. Welcome everyone to use and contribute code. Thank you for the open source spirit of the original author Molunerfinn. + +[MIT](https://opensource.org/licenses/MIT) + +Copyright (c) 2017-present Molunerfinn + +Copyright (c) 2023-present Kuingsmile + +## Star Me + +- Star [](https://github.com/kuingsmile/PicList/stargazers) + +[](https://github.com/kuingsmile/PicList/stargazers) diff --git a/README_cn.md b/README_cn.md index e7d174be..98fe63a8 100644 --- a/README_cn.md +++ b/README_cn.md @@ -1,244 +1,260 @@ - - - - -简体中文 | [English](https://github.com/Kuingsmile/PicList/blob/dev/README.md) - -PicList是一款高效的云存储和图床平台管理工具,在PicGo的基础上经过深度的二次开发,不仅完整保留了PicGo的所有功能,还增添了许多新的feature。例如相册支持同步云端删除文件,内置图床额外添加了WebDav、本地图床和SFTP等。PicList同时增加了完整的云存储管理功能,包括云端目录查看、文件搜索、批量上传下载和删除文件,复制多种格式文件链接和图片/markdown/文本/视频预览等,另外还有更加强大的相册和多项功能新增或优化。 - -## 如何从PicGo迁移 - -PicList `V1.5.0`以上版本提供 `一键迁移`功能,进入 `设置`页面,然后在 `从PicGo迁移`选项点击右侧按钮即可,迁移后请重启应用生效。 - -## PicList-Core - -PicList的内核使用的是原版PicGo-Core基础上修改的[PicList-core](https://github.com/Kuingsmile/PicList-Core),为云端删除等功能做了适配,同时,新增了水印添加和图片压缩/缩放/旋转/格式转换等功能,可以通过CLI命令行调用,支持通过`picgo-server`命令开启上传服务器,还有一些其他的功能改动。 - -如果您希望使用PicList-core,请前往[https://github.com/Kuingsmile/PicList-Core](https://github.com/Kuingsmile/PicList-Core),或者前往[npm官方地址](https://www.npmjs.com/package/piclist)查看安装说明。 - -## 特色功能 - -- 保留了PicGo的所有功能,兼容绝大部分已有的PicGo插件,包括和Typora、Obsidian等软件的搭配 -- 新增了多个内置图床,如WebDav、兰空图床、本地图床、SFTP和Telegra.ph等,原内置imgur图床额外支持登录账号上传 -- 相册中可同步删除云端图片,支持所有内置图床和多个插件 -- 相册新增了高级搜索和排序,批量修改URL等功能 -- 内置水印添加、图片压缩、图片缩放、图片旋转和图片格式转换等功能,同时支持高级重命名 -- 上传接口支持表单上传文件,可多电脑共用 -- 支持配置同步至Github/Gitee/Gitea仓库 -- 支持管理十余种图床,可以在线进行云端目录查看、文件搜索、批量上传、批量下载、删除文件等 -- 支持预览多种格式的文件,包括图片、视频、纯文本文件和markdown文件等,具体支持的格式请参考[支持的文件格式列表](https://github.com/Kuingsmile/PicList/blob/dev/supported_format.md) -- 支持启用正则表达式的批量云端文件重命名 -- 对于私有存储桶等支持复制预签名链接进行分享 -- 支持软件自动更新,支持多种启动模式,还有更多功能细节新增和优化 -- 优化了PicGo的界面,解锁了窗口大小限制,同时美化了部分界面布局 -- mac平台安装包已签名,从源头解决了PicGo上的安装包已损坏的日经问题 - -## 如何使用 - -### 如何在Vscode中使用 - -请安装我的配套插件 [VS-PicList](https://marketplace.visualstudio.com/items?itemName=Kuingsmile.vs-piclist),相比于vs-picgo插件,该插件直接依赖于PicList桌面端软件,支持多样上传和直接在Vscode中进行云端删除等功能。 - -### 如何在Typora中使用 - -#### **1.6.0版本及以上** - -**Typora 1.6.0-dev以及以上版本现在已经原生支持PicList了** - -目前Typora中需要同时设置上传服务PicList和PicGo(app)的路径为PicList的安装路径,已经在最新的Dev版本中修复。 - -[下载地址](https://typora.io/releases/all) - -#### 1.6.0版本以下 - -Windows: - -进入Typora设置界面,选择图像,将上传服务设置为 `PicGo(app)`,然后在 `PicGo路径`中填写PicList的安装路径,如下图所示: - - - -或者,您也可以使用 `npm install piclist`命令安装PicList-core,然后上传服务设置为 `PicGo-Core(command line)`。 - -MacOS: - -进入Typora设置界面,选择图像,将上传服务设置为 `Custom Command`,然后在 `Command`中填写 `/Applications/PicList.app/Contents/MacOS/PicList upload`,如下图所示: - - - -验证上传选项可能会出现问题,可以忽略,直接使用是正常的。 - -### 如何在Obsidian中使用 - -在社区插件中搜索安装 `Image auto upload Plugin`,然后进入插件设置页面,修改默认上传器为 `PicGo(app)`,设置 `PicGo server`为 `http://127.0.0.1:36677/upload`即可,如下图所示, 此外该插件还额外支持通过PicList进行云端删除,请在删除接口内填入 `http://127.0.0.1:36677/delete`: - - - -### 如何在Docker中使用 - -#### docker run - -修改`./piclist`为你自己的配置文件`config.json`所在的路径,修改`piclist123456`为你自己的密钥。 - -```bash -docker run -d \ - --name piclist \ - --restart always \ - -p 36677:36677 \ - -v "./piclist:/root/.piclist" \ - kuingsmile/piclist:latest \ - node /usr/local/bin/picgo-server -k piclist123456 -``` - -#### docker-compose - -从piclist-core仓库下载`docker-compose.yml`文件,或者复制以下内容到`docker-compose.yml`文件中: - -```yaml -version: '3.3' - -services: - node: - image: 'kuingsmile/piclist:latest' - container_name: piclist - restart: always - ports: - - 36677:36677 - volumes: - - './piclist:/root/.piclist' - command: node /usr/local/bin/picgo-server -k piclist123456 -``` - -你可以修改`./piclist`为你自己的配置文件`config.json`所在的路径,修改`command`为你自己的密钥。 - -然后运行 - -```bash -docker-compose up -d -``` - -## 已支持平台 - -| 平台 | 相册云删除 | 云存储管理 | -| :------------: | :--------: | :--------: | -| SM.MS | ✔️ | ✔️ | -| Github | ✔️ | ✔️ | -| Imgur | ✔️ | ✔️ | -| 腾讯COS V5 | ✔️ | ✔️ | -| 阿里云OSS | ✔️ | ✔️ | -| 又拍云 | ✔️ | ✔️ | -| 七牛云 | ✔️ | ✔️ | -| S3 API兼容平台 | ✔️ | ✔️ | -| WebDAV | ✔️ | ✔️ | -| 本地文件夹 | ✔️ | ✔️ | -| 内置SFTP | ✔️ | ✔️ | -| 多吉云 | ✔️ | ✔️ | -| PicList(套娃) | ✔️ | ✔️ | -| Telegra.ph | ✔️ | x | -| 兰空图床 | ✔️ | ✔️ | - -| 插件 | 相册云删除 | -| :----------------------------------------------------------------------------------------: | :--------: | -| [picgo-plugin-s3](https://github.com/wayjam/picgo-plugin-s3) | ✔️ | -| [picgo-plugin-alist](https://github.com/jinzhi0123/picgo-plugin-alist) | ✔️ | -| [picgo-plugin-huawei-uploader](https://github.com/YunfengGao/picgo-plugin-huawei-uploader) | ✔️ | -| [picgo-plugin-dogecloud](https://github.com/w4j1e/picgo-plugin-dogecloud) | ✔️ | - -## 下载安装 - -[https://github.com/Kuingsmile/PicList/releases/latest](https://github.com/Kuingsmile/PicList/releases/latest) - -### Homebrew - -MacOS用户现在可以使用Homebrew来安装PicList了,只需要执行以下命令即可: - -```bash -brew install piclist --cask -``` - -卸载命令: - -```bash -brew uninstall piclist -``` - -## 应用截图 - - - - - - - - -## 开发说明 - -1. 你需要有 Node、Git 环境,了解 npm 的相关知识。 -2. git clone [https://github.com/Kuingsmile/PicList.git](https://github.com/Kuingsmile/PicList.git) 并进入项目。 - `yarn` 下载依赖 - 注意如果你没有`yarn`,请去 官网 下载安装后再使用。 用 `npm install` 将导致未知错误! -3. Mac 需要有 `Xcode` 环境,Windows 需要有 `VS` 环境。 -4. 如果需要贡献代码,可以参考[贡献指南](https://github.com/Kuingsmile/PicList/blob/dev/CONTRIBUTING.md)。 - -### 开发模式 - -输入 `yarn run dev` 进入开发模式,开发模式具有热重载特性。不过需要注意的是,开发模式不稳定,会有进程崩溃的情况。此时需要: - -`ctrl+c` # 退出开发模式 -`yarn run dev` # 重新进入开发模式 - -注:Windows 开发模式运行之后会在底部任务栏的右下角应用区出现 PicList 的应用图标。 - -### 生产模式 - -如果你需要自行构建,可以 `yarn run build` 开始进行构建。构建成功后,会在 `dist_electron` 目录里出现构建成功的相应安装文件。 - -注意:如果你的网络环境不太好,可能会出现 `electron-builder` 下载 electron 二进制文件失败的情况。这个时候需要在 `npm run electron:build` 之前指定一下 electron 的源为国内源: - -`export ELECTRON_MIRROR="https://npmmirror.com/mirrors/electron/"` - -**在 Windows 上,则可以使用 `set ELECTRON_MIRROR=https://npmmirror.com/mirrors/electron/` (无需引号)** - -## 其它相关 - -- [PicList-Core](https://github.com/Kuingsmile/PicList-Core) : 基于 PicGo-Core 二次开发的核心库,用于 CLI 操作和项目开发 -- [PicHoro](https://github.com/Kuingsmile/PicHoro): 与 PicList 搭配使用的手机端 APP -- [VS-PicList](https://github.com/Kuingsmile/vs-PicList/): 与 PicList 搭配使用的VScode插件 - -## 交流群 - -如果有任何问题,可以加入TG群进行交流. - -[PicList交流群](https://t.me/+rq8y7wsj7Pg5ZTg1) - - - -## License - -本项目基于MIT协议开源,欢迎大家使用和贡献代码,感谢原作者Molunerfinn的开源精神。 - -[MIT](https://opensource.org/licenses/MIT) - -Copyright (c) 2017-present Molunerfinn - -Copyright (c) 2023-present Kuingsmile - -## Star Me - -- Star 趋势 [](https://github.com/kuingsmile/PicList/stargazers) - -[](https://github.com/kuingsmile/PicList/stargazers) + + + + +简体中文 | [English](https://github.com/Kuingsmile/PicList/blob/dev/README.md) + +PicList是一款高效的云存储和图床平台管理工具,在PicGo的基础上经过深度的二次开发,不仅完整保留了PicGo的所有功能,还增添了许多新的feature。例如相册支持同步云端删除文件,内置图床额外添加了WebDav、本地图床和SFTP等。PicList同时增加了完整的云存储管理功能,包括云端目录查看、文件搜索、批量上传下载和删除文件,复制多种格式文件链接和图片/markdown/文本/视频预览等,另外还有更加强大的相册和多项功能新增或优化。 + +## 如何从PicGo迁移 + +PicList `V1.5.0`以上版本提供 `一键迁移`功能,进入 `设置`页面,然后在 `从PicGo迁移`选项点击右侧按钮即可,迁移后请重启应用生效。 + +## PicList-Core + +PicList的内核使用的是原版PicGo-Core基础上修改的[PicList-core](https://github.com/Kuingsmile/PicList-Core),为云端删除等功能做了适配,同时,新增了水印添加和图片压缩/缩放/旋转/格式转换等功能,可以通过CLI命令行调用,支持通过`picgo-server`命令开启上传服务器,还有一些其他的功能改动。 + +如果您希望使用PicList-core,请前往[https://github.com/Kuingsmile/PicList-Core](https://github.com/Kuingsmile/PicList-Core),或者前往[npm官方地址](https://www.npmjs.com/package/piclist)查看安装说明。 + +## 特色功能 + +- 保留了PicGo的所有功能,兼容绝大部分已有的PicGo插件,包括和Typora、Obsidian等软件的搭配 +- 新增了多个内置图床,如WebDav、兰空图床、本地图床、SFTP和Telegra.ph等,原内置imgur图床额外支持登录账号上传 +- 相册中可同步删除云端图片,支持所有内置图床和多个插件 +- 相册新增了高级搜索和排序,批量修改URL等功能 +- 内置水印添加、图片压缩、图片缩放、图片旋转和图片格式转换等功能,同时支持高级重命名 +- 上传接口支持表单上传文件,可多电脑共用 +- 支持配置同步至Github/Gitee/Gitea仓库 +- 支持管理十余种图床,可以在线进行云端目录查看、文件搜索、批量上传、批量下载、删除文件等 +- 支持预览多种格式的文件,包括图片、视频、纯文本文件和markdown文件等,具体支持的格式请参考[支持的文件格式列表](https://github.com/Kuingsmile/PicList/blob/dev/supported_format.md) +- 支持启用正则表达式的批量云端文件重命名 +- 对于私有存储桶等支持复制预签名链接进行分享 +- 支持软件自动更新,支持多种启动模式,还有更多功能细节新增和优化 +- 优化了PicGo的界面,解锁了窗口大小限制,同时美化了部分界面布局 +- mac平台安装包已签名,从源头解决了PicGo上的安装包已损坏的日经问题 + +## 如何使用 + +### 如何在Vscode中使用 + +请安装我的配套插件 [VS-PicList](https://marketplace.visualstudio.com/items?itemName=Kuingsmile.vs-piclist),相比于vs-picgo插件,该插件直接依赖于PicList桌面端软件,支持多样上传和直接在Vscode中进行云端删除等功能。 + +### 如何在Typora中使用 + +#### **1.6.0版本及以上** + +**Typora 1.6.0-dev以及以上版本现在已经原生支持PicList了** + +目前Typora中需要同时设置上传服务PicList和PicGo(app)的路径为PicList的安装路径,已经在最新的Dev版本中修复。 + +[下载地址](https://typora.io/releases/all) + +#### 1.6.0版本以下 + +Windows: + +进入Typora设置界面,选择图像,将上传服务设置为 `PicGo(app)`,然后在 `PicGo路径`中填写PicList的安装路径,如下图所示: + + + +或者,您也可以使用 `npm install piclist`命令安装PicList-core,然后上传服务设置为 `PicGo-Core(command line)`。 + +MacOS: + +进入Typora设置界面,选择图像,将上传服务设置为 `Custom Command`,然后在 `Command`中填写 `/Applications/PicList.app/Contents/MacOS/PicList upload`,如下图所示: + + + +验证上传选项可能会出现问题,可以忽略,直接使用是正常的。 + +### 如何在Obsidian中使用 + +在社区插件中搜索安装 `Image auto upload Plugin`,然后进入插件设置页面,修改默认上传器为 `PicGo(app)`,设置 `PicGo server`为 `http://127.0.0.1:36677/upload`即可,如下图所示, 此外该插件还额外支持通过PicList进行云端删除,请在删除接口内填入 `http://127.0.0.1:36677/delete`: + + + +### 如何在Docker中使用 + +#### docker run + +修改`./piclist`为你自己的配置文件`config.json`所在的路径,修改`piclist123456`为你自己的密钥。 + +```bash +docker run -d \ + --name piclist \ + --restart always \ + -p 36677:36677 \ + -v "./piclist:/root/.piclist" \ + kuingsmile/piclist:latest \ + node /usr/local/bin/picgo-server -k piclist123456 +``` + +#### docker-compose + +从piclist-core仓库下载`docker-compose.yml`文件,或者复制以下内容到`docker-compose.yml`文件中: + +```yaml +version: '3.3' + +services: + node: + image: 'kuingsmile/piclist:latest' + container_name: piclist + restart: always + ports: + - 36677:36677 + volumes: + - './piclist:/root/.piclist' + command: node /usr/local/bin/picgo-server -k piclist123456 +``` + +你可以修改`./piclist`为你自己的配置文件`config.json`所在的路径,修改`command`为你自己的密钥。 + +然后运行 + +```bash +docker-compose up -d +``` + +## 已支持平台 + +| 平台 | 相册云删除 | 云存储管理 | +| :------------: | :--------: | :--------: | +| 内置AList | ✔️ | ✔️ | +| SM.MS | ✔️ | ✔️ | +| Github | ✔️ | ✔️ | +| Imgur | ✔️ | ✔️ | +| 腾讯COS V5 | ✔️ | ✔️ | +| 阿里云OSS | ✔️ | ✔️ | +| 又拍云 | ✔️ | ✔️ | +| 七牛云 | ✔️ | ✔️ | +| S3 API兼容平台 | ✔️ | ✔️ | +| WebDAV | ✔️ | ✔️ | +| 本地文件夹 | ✔️ | ✔️ | +| 内置SFTP | ✔️ | ✔️ | +| 多吉云 | ✔️ | ✔️ | +| PicList(套娃) | ✔️ | ✔️ | +| Telegra.ph | ✔️ | x | +| 兰空图床 | ✔️ | ✔️ | + +| 插件 | 相册云删除 | +| :----------------------------------------------------------------------------------------: | :--------: | +| [picgo-plugin-s3](https://github.com/wayjam/picgo-plugin-s3) | ✔️ | +| [picgo-plugin-alist](https://github.com/jinzhi0123/picgo-plugin-alist) | ✔️ | +| [picgo-plugin-huawei-uploader](https://github.com/YunfengGao/picgo-plugin-huawei-uploader) | ✔️ | +| [picgo-plugin-dogecloud](https://github.com/w4j1e/picgo-plugin-dogecloud) | ✔️ | + +## 下载安装 + +[https://github.com/Kuingsmile/PicList/releases/latest](https://github.com/Kuingsmile/PicList/releases/latest) + +### Scoop + +感谢[scoop-lemon](https://github.com/hoilc/scoop-lemon),你可以使用Scoop来安装PicList,只需要执行以下命令即可: + +```bash +scoop bucket add lemon https://github.com/hoilc/scoop-lemon +scoop install lemon/piclist +``` + +### Homebrew + +MacOS用户现在可以使用Homebrew来安装PicList了,只需要执行以下命令即可: + +```bash +brew install piclist --cask +``` + +卸载命令: + +```bash +brew uninstall piclist +``` + +### Mac特殊说明 + +如果macOS系统安装PicList后显示“文件已损坏”或者安装后打开无响应,请升级到PicList V1.4.1或以上版本。 + +V1.4.1之后,所有mac安装包都已经使用我的开发者证书签名,不会被macOS系统识别为“恶意软件”,不会出现“文件已损坏”提示。 + +## 应用截图 + + + + + + + + +## 开发说明 + +1. 你需要有 Node、Git 环境,了解 npm 的相关知识。 +2. git clone [https://github.com/Kuingsmile/PicList.git](https://github.com/Kuingsmile/PicList.git) 并进入项目。 + `yarn` 下载依赖 + 注意如果你没有`yarn`,请去 官网 下载安装后再使用。 用 `npm install` 将导致未知错误! +3. Mac 需要有 `Xcode` 环境,Windows 需要有 `VS` 环境。 +4. 如果需要贡献代码,可以参考[贡献指南](https://github.com/Kuingsmile/PicList/blob/dev/CONTRIBUTING.md)。 + +### 开发模式 + +输入 `yarn run dev` 进入开发模式,开发模式具有热重载特性。不过需要注意的是,开发模式不稳定,会有进程崩溃的情况。此时需要: + +`ctrl+c` # 退出开发模式 +`yarn run dev` # 重新进入开发模式 + +注:Windows 开发模式运行之后会在底部任务栏的右下角应用区出现 PicList 的应用图标。 + +### 生产模式 + +如果你需要自行构建,可以 `yarn run build` 开始进行构建。构建成功后,会在 `dist_electron` 目录里出现构建成功的相应安装文件。 + +注意:如果你的网络环境不太好,可能会出现 `electron-builder` 下载 electron 二进制文件失败的情况。这个时候需要在 `npm run electron:build` 之前指定一下 electron 的源为国内源: + +`export ELECTRON_MIRROR="https://npmmirror.com/mirrors/electron/"` + +**在 Windows 上,则可以使用 `set ELECTRON_MIRROR=https://npmmirror.com/mirrors/electron/` (无需引号)** + +## 其它相关 + +- [PicList-Core](https://github.com/Kuingsmile/PicList-Core) : 基于 PicGo-Core 二次开发的核心库,用于 CLI 操作和项目开发 +- [PicHoro](https://github.com/Kuingsmile/PicHoro): 与 PicList 搭配使用的手机端 APP +- [VS-PicList](https://github.com/Kuingsmile/vs-PicList/): 与 PicList 搭配使用的VScode插件 + +## 交流群 + +如果有任何问题,可以加入TG群进行交流. + +[PicList交流群](https://t.me/+rq8y7wsj7Pg5ZTg1) + + + +## License + +本项目基于MIT协议开源,欢迎大家使用和贡献代码,感谢原作者Molunerfinn的开源精神。 + +[MIT](https://opensource.org/licenses/MIT) + +Copyright (c) 2017-present Molunerfinn + +Copyright (c) 2023-present Kuingsmile + +## Star Me + +- Star 趋势 [](https://github.com/kuingsmile/PicList/stargazers) + +[](https://github.com/kuingsmile/PicList/stargazers) diff --git a/babel.config.js b/babel.config.js index 296f0e02..ee3bce59 100644 --- a/babel.config.js +++ b/babel.config.js @@ -1,6 +1,4 @@ module.exports = { - presets: [ - '@vue/cli-plugin-babel/preset' - ], - plugins: ['@babel/plugin-proposal-optional-chaining'] -} + presets: ["@vue/cli-plugin-babel/preset"], + plugins: ["@babel/plugin-proposal-optional-chaining"], +}; diff --git a/currentVersion.md b/currentVersion.md index 5924fe06..9ece1462 100644 --- a/currentVersion.md +++ b/currentVersion.md @@ -1,32 +1,14 @@ -### ✨ Features - -- 图床 - - 现在`sm.ms`图床上传重复图片时,后上传的图片也支持云端删除了 -- 管理 - - 现在s3图床支持新建存储通 - - 调整了管理页面的部分布局 - - 代码高亮样式调整为stackoverflow-light -- 界面 - - 现在托盘菜单会根据当前状态显示开启/关闭剪贴板监听,而不是始终显示全部菜单 - - 现在托盘菜单会根据当前状态显示开启/关闭mini窗口 - - 现在鼠标悬停于托盘图标时,会显示当前图床和配置名 - - 移除了设置页面部分不必要的全局通知 - - 优化了英文下的设置页面布局 -- 性能 - - 现在启动软件时会自动清空剪贴板图片缓存文件夹 - - 优化了读取配置的性能表现 - - 优化了多个页面的加载速度 - - 升级vue等依赖至最新版本 - -### 🐛 Bug Fixes - -- 修复了从obsidan发送删除请求时,会导致软件闪退的问题 -- 修复了使用`webp`插件时,上传剪贴板图片会导致软件闪退的问题 -- 修复了设置了图片处理操作后,上传URL会报错的问题 -- 修复了设置原始PicGo窗口大小后,重新打开设置界面时窗口大小数值没有更新的问题 -- 修复了主界面菜单加载和点击时反复触发获取图床配置导致的卡顿问题 -- 修复了切换语言时部分下拉框没有更新的问题 -- 修复了部分翻译错误 -- 管理页面 - - 修复了部分图床的文件夹复制链接错误的问题 - - 修复了文件浏览页面的css错误 +### ✨ Features + +- 新增内置AList上传支持 +- 优化了设置了图片处理操作时的上传进度通知 +- 优化了部分图床的i18n设置 +- 修改内置兰空图床显示名,由`lsky`修改为`兰空图床` +- core版本现在使用piclist桌面版配置文件时支持设置`configName`参数 + +### 🐛 Bug Fixes + +- 修复了s3图床文件名含有特殊字符时无法删除的问题 +- 修复了特定情况下开启手动重命名后会导致软件闪退的问题 +- 修复了图床设置页面按钮的样式问题 +- 优化了多个图床存在的重复记录错误日志的问题 \ No newline at end of file diff --git a/currentVersion_en.md b/currentVersion_en.md index f2560c40..4e4b68b0 100644 --- a/currentVersion_en.md +++ b/currentVersion_en.md @@ -1,32 +1,14 @@ -### ✨ Features - -- PicBed - - Now when uploading duplicate images to `sm.ms` image bed, the later uploaded image also supports cloud deletion -- Management - - Now s3 image bed supports creating new storage channels - - Adjusted some layouts of the management page - - The code highlighting style is adjusted to stackoverflow-light -- Interface - - Now the tray menu will display the open/close clipboard monitoring according to the current status, instead of always displaying all menus - - Now the tray menu will display the open/close mini window according to the current status - - Now when the mouse hovers over the tray icon, the current image bed and configuration name will be displayed - - Removed some unnecessary global notifications on the settings page - - Optimized the layout of the settings page in English -- Performance - - Now the software will automatically clear the clipboard image cache folder when starting - - Optimized the performance of reading configuration - - Optimized the loading speed of multiple pages - - Upgrade dependencies such as vue to the latest version - -### 🐛 Bug Fixes - -- Fix the problem that the software crashes when sending a delete request from obsidan -- Fix the problem that the software crashes when uploading clipboard images using the `webp` plugin -- Fix the problem that an error occurs when uploading a URL after setting image processing operations -- Fix the problem that the window size value is not updated when the original PicGo window size is set and the setting interface is reopened -- Fix the problem that the main interface menu repeatedly triggers the lag caused by repeatedly triggering the acquisition of the image bed configuration when loading and clicking -- Fix the problem that some drop-down boxes are not updated when switching languages -- Fix some translation errors -- Management page - - Fix the problem that the folder copy link of some image beds is incorrect - - Fix the css error of the file browsing page +### ✨ Features + +- Add built-in AList upload support +- Optimize the upload progress notification when image processing operations are set +- Optimize the i18n settings of some image beds +- Modify the display name of the built-in Lan Kong image bed from `lsky` to `Lan Kong image bed` +- The core version now supports setting the `configName` parameter when using the piclist desktop version configuration file + +### 🐛 Bug Fixes + +- Fix the problem that the s3 image bed cannot be deleted when the file name contains special characters +- Fix the problem that the software crashes under specific conditions after enabling manual renaming +- Fix the style problem of the button on the image bed setting page +- Optimize the problem of repeated recording error logs for multiple image beds diff --git a/package.json b/package.json index 9e424c6a..0d34c4ff 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "piclist", - "version": "2.9.0", + "version": "2.9.1", "author": { "name": "Kuingsmile", "email": "pkukuing@gmail.com" @@ -15,23 +15,23 @@ "private": true, "scripts": { "build": "vue-cli-service electron:build", - "lint": "vue-cli-service lint", "bump": "bump-version", "cz": "git-cz", "dev": "vue-cli-service electron:serve", "electron:build": "vue-cli-service electron:build", "electron:serve": "vue-cli-service electron:serve", "i18n": "node ./scripts/gen-i18n-types.js", + "link": "node ./scripts/link.js", + "lint": "vue-cli-service lint", + "lint:dpdm": "dpdm -T --tsconfig ./tsconfig.json --no-tree --no-warning --exit-code circular:1 src/background.ts", "lint:fix": "eslint --fix --ext .js,.jsx,.ts,.tsx,.vue src/", + "ncu": "node ./scripts/check-dep.js", "postinstall": "electron-builder install-app-deps", "postuninstall": "electron-builder install-app-deps", "release": "vue-cli-service electron:build --publish always", - "upload-dist": "node ./scripts/upload-dist-to-r2.js", - "upload-beta": "node ./scripts/upload-beta.js", - "link": "node ./scripts/link.js", "sha256": "node ./scripts/gen-sha256.js", - "ncu": "node ./scripts/check-dep.js", - "lint:dpdm": "dpdm -T --tsconfig ./tsconfig.json --no-tree --no-warning --exit-code circular:1 src/background.ts" + "upload-beta": "node ./scripts/upload-beta.js", + "upload-dist": "node ./scripts/upload-dist-to-r2.js" }, "dependencies": { "@aws-sdk/client-s3": "^3.421.0", @@ -52,7 +52,7 @@ "cos-nodejs-sdk-v5": "^2.12.5", "dexie": "^3.2.4", "electron-updater": "^6.1.4", - "element-plus": "2.7.4", + "element-plus": "2.7.6", "epipebomb": "^1.0.0", "fast-xml-parser": "^4.3.2", "form-data": "^4.0.0", @@ -67,7 +67,7 @@ "multer": "^1.4.5-lts.1", "node-ssh-no-cpu-features": "^2.0.0", "nodejs-file-downloader": "^4.12.1", - "piclist": "^1.8.10", + "piclist": "^1.9.0", "pinia": "^2.1.7", "pinia-plugin-persistedstate": "^3.2.1", "proxy-agent": "^5.0.0", @@ -79,15 +79,14 @@ "upyun": "^3.4.6", "uuid": "^9.0.1", "video.js": "^8.6.1", - "vue": "^3.4.27", - "vue-router": "^4.3.2", + "vue": "^3.4.30", + "vue-router": "^4.4.0", "vue3-lazyload": "^0.3.8", "vue3-photo-preview": "^0.3.0", "webdav": "^5.3.1", "write-file-atomic": "^4.0.1" }, "devDependencies": { - "@types/video.js": "^7.3.58", "@babel/plugin-proposal-optional-chaining": "^7.21.0", "@electron/notarize": "^2.1.0", "@types/ali-oss": "^6.16.11", @@ -103,32 +102,29 @@ "@types/tunnel": "^0.0.7", "@types/upyun": "^3.4.3", "@types/uuid": "^9.0.8", + "@types/video.js": "^7.3.58", "@types/write-file-atomic": "^4.0.3", - "@typescript-eslint/eslint-plugin": "^6.12.0", - "@typescript-eslint/parser": "^6.12.0", "@vue/cli-plugin-babel": "^5.0.8", "@vue/cli-plugin-eslint": "^5.0.8", "@vue/cli-plugin-router": "^5.0.8", "@vue/cli-plugin-typescript": "^5.0.8", "@vue/cli-service": "^5.0.8", + "@vue/eslint-config-prettier": "^9.0.0", "@vue/eslint-config-standard": "^8.0.1", "@vue/eslint-config-typescript": "^12.0.0", - "@vue/runtime-dom": "^3.4.27", + "@vue/runtime-dom": "^3.4.30", "conventional-changelog": "^5.1.0", "cz-customizable": "^7.0.0", "dotenv": "^16.3.1", "dpdm": "^3.14.0", "electron": "^22.3.27", - "eslint": "^8.54.0", - "eslint-config-standard": "^17.1.0", - "eslint-plugin-import": "^2.29.1", - "eslint-plugin-n": "^16.6.2", - "eslint-plugin-promise": "^6.2.0", + "eslint": "^8.57.0", "eslint-plugin-vue": "^9.26.0", "husky": "^3.1.0", "node-bump-version": "^1.0.2", "node-loader": "^2.0.0", "npm-check-updates": "^16.14.20", + "prettier": "^3.3.2", "stylus": "^0.59.0", "stylus-loader": "^7.1.3", "typescript": "^4.9.5", diff --git a/public/i18n/en.yml b/public/i18n/en.yml index e7ba04d2..38f9735c 100644 --- a/public/i18n/en.yml +++ b/public/i18n/en.yml @@ -1,997 +1,997 @@ -LANG_DISPLAY_LABEL: 'English' -ABOUT: About -OPEN_MAIN_WINDOW: Open Main Window -OPEN_MINI_WINDOW: Open Mini Window -HIDE_MINI_WINDOW: Hide Mini Window -CHOOSE_DEFAULT_PICBED: Choose Default Picbed -OPEN_UPDATE_HELPER: Open Update Helper -RELOAD_APP: Reload App -UPLOAD_FAILED: Upload Failed -UPLOAD_SUCCEED: Upload Succeed -UPLOAD_PROGRESS: Upload Progress -OPERATION_FAILED: Operation Failed -OPERATION_SUCCEED: Operation Succeed -UPLOADING: Uploading -QUICK_UPLOAD: Quick Upload -UPLOAD_BY_CLIPBOARD: Upload by Clipboard -HIDE_WINDOW: Hide Window -SHOW_PICBED_QRCODE: Show Picbed Qrcode -PICBED_QRCODE: Picbed Qrcode -ENABLE: Enable -DISABLE: Disable -CONFIG_THING: Config ${c} -FIND_NEW_VERSION: Find New Version -NO_MORE_NOTICE: No More Notice -SHOW_DEVTOOLS: Show Devtools -FEEDBACK: Feedback -CURRENT_PICBED: Current Picbed -START_WATCH_CLIPBOARD: Start Watch Clipboard -STOP_WATCH_CLIPBOARD: Stop Watch Clipboard -OPEN_TOOLBOX: Open Toolbox -TOOLBOX: Toolbox -TOOLBOX_TITLE: Troubleshoot PicList runtime issues -TOOLBOX_SUB_TITLE: Scan the following items immediately to fix usage issues -TOOLBOX_CHECK_CONFIG_FILE_BROKEN: Check if the configuration file is damaged -TOOLBOX_CHECK_GALLERY_FILE_BROKEN: Check if the album file is damaged -TOOLBOX_CHECK_PROBLEM_WITH_CLIPBOARD_PIC_UPLOAD: Check if there is a problem with clipboard picture upload -TOOLBOX_CHECK_PROBLEM_WITH_PROXY: Check if the proxy settings are normal -TOOLBOX_FIX_DONE_NEED_RELOAD: Repair completed, need to restart to take effect, restart or not -TOOLBOX_CANT_AUTO_FIX: Unable to automatically repair, please repair the following problems yourself -TOOLBOX_START_SCAN: Start scanning -TOOLBOX_RE_SCAN: Re scanning -TOOLBOX_START_FIX: Start fixing -TOOLBOX_SUCCESS_TIPS: Congratulations, no problems were found -TOOLBOX_CHECK_CONFIG_FILE_PATH_TIPS: "The configuration file path is: ${path}" -TOOLBOX_CHECK_CONFIG_FILE_BROKEN_TIPS: The configuration file is damaged -TOOLBOX_CHECK_GALLERY_FILE_PATH_TIPS: "The album file path is: ${path}" -TOOLBOX_CHECK_GALLERY_FILE_BROKEN_TIPS: The album file is damaged -TOOLBOX_CHECK_PROXY_SUCCESS_TIPS: Proxy settings normal -TOOLBOX_CHECK_PROXY_NO_PROXY_TIPS: No proxy settings -TOOLBOX_CHECK_PROXY_PROXY_IS_NOT_CORRECT: Proxy settings incorrect -TOOLBOX_CHECK_PROXY_PROXY_IS_NOT_WORKING: Proxy settings unavailable -TOOLBOX_CHECK_CLIPBOARD_FILE_PATH_TIPS: "The temporary folder path for clipboard pictures is: ${path}" -TOOLBOX_CHECK_CLIPBOARD_FILE_PATH_NOT_EXIST_TIPS: "The temporary folder for clipboard pictures does not exist: ${path}" -TOOLBOX_CHECK_CLIPBOARD_FILE_PATH_ERROR_TIPS: "Please create the folder yourself: ${path}" -MANUAL_PAGE_OPEN_TIP: Please select the way to open the manual -MANUAL_PAGE_OPEN_TIP_TITLE: Tips -MANUAL_PAGE_OPEN_BY_BROWSER: Browser -MANUAL_PAGE_OPEN_BY_BUILD_IN: Built-in Window -MANUAL_PAGE_OPEN_SETTING_TIP: Select the way to open the manual - -# ---renderer i18n begin--- - -CHOOSE_YOUR_DEFAULT_PICBED: 'Choose ${d} as your default picbed:' -UPLOAD_AREA: Upload -UPLOAD_VIEW_HINT: Click to open picbeds settings -MANAGE_PAGE: Manage -GALLERY: Gallery -REFRESH: Refresh -MANUAL: Manual -OPEN_MANUAL_LINK: Manual -OPEN_MANUAL_LINK_HINT: Will open the manual link in your browser, do you want to continue? -PICBEDS_SETTINGS: Picbeds -PICBEDS_MANAGE: Picbeds Manage -PICLIST_SETTINGS: Settings -PLUGIN_SETTINGS: Plugins -PICLIST_SPONSOR_TEXT: If you like it, please don't forget to buy me a cup of coffee. -CHOOSE_PICBED: Choose Picbed -COPY_PICBED_CONFIG: Copy Picbed Config -COPY_PICBED_CONFIG_SUCCEED: Copy Picbed Config Succeed -INPUT: Input -CANCEL: Cancel -CONFIRM: Confirm -RESET_PICBED_CONFIG: Reset -CHOOSE_SHOWED_PICBED: Choose Showed Picbed -CHOOSE_PASTE_FORMAT: Choose Paste Format -SEARCH: Search -COPY: Copy -DELETE: Delete -SELECT_ALL: Select All -CHANGE_IMAGE_URL: Change Image URL -CHANGE_IMAGE_URL_SUCCEED: Change Image URL Succeed -COPY_LINK_SUCCEED: Copy Link Succeed -BATCH_COPY_LINK_SUCCEED: Batch Copy Link Succeed -FILE_RENAME: File Rename -COPY_FILE_PATH: Copy file path -OPEN_FILE_PATH: Open file path -GALLERY_SYNC_DELETE: Cloud Sync Delete -GALLERY_SYNC_DELETE_NOTICE_TITLE: Notice -GALLERY_SYNC_DELETE_NOTICE_SUCCEED: Cloud Delete Succeed -GALLERY_SYNC_DELETE_NOTICE_FAILED: Cloud Delete Failed -GALLERY_CHANGE_URL: Rename -GALLERY_CHANGE_URL_TITLE: Batch Change Image URL -GALLERY_SEARCH_FILENAME: Search by Filename -GALLERY_SEARCH_URL: Search by URL -GALLERY_MATCHED: ' Matched: ' - -UPLOAD_PAGE_COPY_UPLOAD_API: Copy Upload API -UPLOAD_PAGE_IMAGE_PROCESS_NAME: Image Processing -UPLOAD_PAGE_IMAGE_PROCESS_DIALOG_TITLE: Image Processing Settings -UPLOAD_PAGE_IMAGE_PROCESS_ISADDWM: Add Watermark -UPLOAD_PAGE_IMAGE_PROCESS_WMTYPE: Watermark Type -UPLOAD_PAGE_IMAGE_PROCESS_WMTYPE_TEXT: Text -UPLOAD_PAGE_IMAGE_PROCESS_WMTYPE_IMAGE: Image -UPLOAD_PAGE_IMAGE_PROCESS_ISFULLSCREEN_WM: Full-Screen Watermark -UPLOAD_PAGE_IMAGE_PROCESS_WMDEGREE: Watermark Angle -UPLOAD_PAGE_IMAGE_PROCESS_WMTEXT: Watermark Text -UPLOAD_PAGE_IMAGE_PROCESS_WMTEXT_FONT_PATH: Watermark Font Path (download font file for the first time) -UPLOAD_PAGE_IMAGE_PROCESS_WMRATIO: Watermark Size Ratio -UPLOAD_PAGE_IMAGE_PROCESS_WMCOLOR: Watermark Color, Please select from the color picker -UPLOAD_PAGE_IMAGE_PROCESS_WMPATH: Watermark Image Path (leave blank to use default image) -UPLOAD_PAGE_IMAGE_PROCESS_WMPOSITION: Watermark Position -UPLOAD_PAGE_IMAGE_PROCESS_ISREMOVEEXIF: Remove EXIF Info -UPLOAD_PAGE_IMAGE_PROCESS_QUALITY: Compression Quality -UPLOAD_PAGE_IMAGE_PROCESS_ISCONVERT: Convert Format -UPLOAD_PAGE_IMAGE_PROCESS_CONVERTFORMAT: Destination Format -UPLOAD_PAGE_IMAGE_PROCESS_CONVERTFORMAT_SPECIFIC: 'Specific Format, Please enter in json format, e.g. {"png": "jpg"}' -UPLOAD_PAGE_IMAGE_PROCESS_ISFLIP: Whether to flip vertically -UPLOAD_PAGE_IMAGE_PROCESS_ISFLOP: Whether to flip horizontally -UPLOAD_PAGE_IMAGE_PROCESS_ISRESIZE: Resize to fixed size -UPLOAD_PAGE_IMAGE_PROCESS_RESIZEWIDTH: Width(Set to 0 to scale by height) -UPLOAD_PAGE_IMAGE_PROCESS_RESIZEHEIGHT: Height(Set to 0 to scale by width) -UPLOAD_PAGE_IMAGE_PROCESS_SKIPRESIZEOfSMALLIMG_HEIGHT: Skip resize when image height is smaller than target height -UPLOAD_PAGE_IMAGE_PROCESS_SKIPRESIZEOfSMALLIMG_WIDTH: Skip resize when image width is smaller than target width -UPLOAD_PAGE_IMAGE_PROCESS_ISRESIZEBYPERCENT: Resize by percentage (Higher priority) -UPLOAD_PAGE_IMAGE_PROCESS_RESIZEPERCENT: Resize Percentage, enter 50 for 50% -UPLOAD_PAGE_IMAGE_PROCESS_ISROTATE: Rotate -UPLOAD_PAGE_IMAGE_PROCESS_ROTATEDEGREE: Rotation Angle -UPLOAD_PAGE_IMAGE_PROCESS_CONFIRM: Save -UPLOAD_PAGE_IMAGE_PROCESS_CANCEL: Cancel -UPLOAD_PAGE_IMAGE_PROCESS_POSITION_TOP: top -UPLOAD_PAGE_IMAGE_PROCESS_POSITION_BOTTOM: bottom -UPLOAD_PAGE_IMAGE_PROCESS_POSITION_LEFT: left -UPLOAD_PAGE_IMAGE_PROCESS_POSITION_RIGHT: right -UPLOAD_PAGE_IMAGE_PROCESS_POSITION_TOP_LEFT: top left -UPLOAD_PAGE_IMAGE_PROCESS_POSITION_TOP_RIGHT: top right -UPLOAD_PAGE_IMAGE_PROCESS_POSITION_BOTTOM_LEFT: bottom left -UPLOAD_PAGE_IMAGE_PROCESS_POSITION_BOTTOM_RIGHT: bottom right -UPLOAD_PAGE_IMAGE_PROCESS_POSITION_CENTER: center -UPLOAD_SHORT_URL: Short -UPLOAD_NORMAL_URL: Long -# settings - -SETTINGS: Settings -SETTINGS_OPEN_CONFIG_FILE: Open Config File -SETTINGS_MIGRATE_FROM_PICGO: Migrate from PicGo -SETTINGS_MIGRATE_FROM_PICGO_TITLE: Notice -SETTINGS_MIGRATE_FROM_PICGO_CONTENT: Migrate from PicGo will overwrite your current settings and gallery, do you want to continue? -SETTINGS_MIGRATE_FROM_PICGO_SUCCESS: Import succeed, please restart PicList -SETTINGS_MIGRATE_FROM_PICGO_FAILED: Import failed -SETTINGS_START_MODE: Default Start Mode -SETTINGS_START_MODE_MINI: Mini Window -SETTINGS_START_MODE_MAIN: Main Window -SETTINGS_START_MODE_NO_TRAY: No Tray -SETTINGS_START_MODE_QUIET: Quiet Mode -SETTINGS_CLICK_TO_OPEN: Click to Open -SETTINGS_SET_LOG_FILE: Set Log File -SETTINGS_CLICK_TO_SET: Click to Set -SETTINGS_CLICK_TO_CHECK: Click to Check -SETTINGS_SET_SHORTCUT: Set Shortcut -SETTINGS_CUSTOM_LINK_FORMAT: Custom Link Format -SETTINGS_SET_PROXY_AND_MIRROR: Set Proxy and Mirror -SETTINGS_SET_SERVER: Set Server -SETTINGS_CHECK_UPDATE: Check Update -SETTINGS_OPEN_UPDATE_HELPER: Open Update Helper -SETTINGS_OPEN: Open -SETTINGS_CLOSE: Close -SETTINGS_CLOSE_MINI_WINDOW_SYNC: Close Mini Window When open Main Window -SETTINGS_CLOSE_MAIN_WINDOW_SYNC: Close Main Window When open Mini Window -SETTINGS_ACCEPT_BETA_UPDATE: Accept Beta Update -SETTINGS_LAUNCH_ON_BOOT: Launch On Boot -SETTINGS_RENAME_BEFORE_UPLOAD: Manual Rename -SETTINGS_TIMESTAMP_RENAME: Timestamp Rename -SETTINGS_ADVANCED_RENAME: Advanced Rename -SETTINGS_ADVANCED_RENAME_ENABLE: Enable Advanced Rename -SETTINGS_ADVANCED_RENAME_FORMAT: Advanced Rename Format -SETTINGS_OPEN_UPLOAD_TIPS: Open Upload Tips -SETTINGS_OPEN_UPLOAD_RESULT_TIPS: Open Upload Result Tips -SETTINGS_MINI_WINDOW_ON_TOP: Mini Window On Top -SETTINGS_AUTO_COPY_URL_AFTER_UPLOAD: Auto Copy URL After Upload -SETTINGS_TIPS_PLACEHOLDER_URL: Use $url to represent url position -SETTINGS_TIPS_PLACEHOLDER_FILENAME: Use $fileName to represent file name position -SETTINGS_TIPS_PLACEHOLDER_EXTNAME: Use $extName to represent file's ext position -SETTINGS_TIPS_SUCH_AS: 'Such as: $url/$fileName' -SETTINGS_UPLOAD_PROXY: Upload Proxy -SETTINGS_PLUGIN_INSTALL_PROXY: Proxy for Plugin Install -SETTINGS_PLUGIN_INSTALL_MIRROR: Mirror for Plugin Install -SETTINGS_CURRENT_VERSION: Current Version -SETTINGS_NEWEST_VERSION: Newest Version -SETTINGS_GETING: Getting... -SETTINGS_TIPS_HAS_NEW_VERSION: PicList has a new version, please click confirm to open download page -SETTINGS_LOG_FILE_PATH: Log File Path -SETTINGS_CONFIG_FILE_PATH: Config File Path -SETTINGS_LOG_FILE: Log File -SETTINGS_GUI_LOG_FILE: GUI Log File -SETTINGS_MANAGE_LOG_FILE: Manage Log File -SETTINGS_LOG_LEVEL: Log Level -SETTINGS_LOG_FILE_SIZE: Log File Size -SETTINGS_SET_PICGO_SERVER: Set PicGo Server -SETTINGS_TIPS_SERVER_NOTICE: If you don't know what is the server's function, please read the document, or don't modify the configuration. -SETTINGS_ENABLE_SERVER: Enable Server -SETTINGS_SET_SERVER_HOST: Set Server Host -SETTINGS_SET_SERVER_PORT: Set Server Port -SETTINGS_SET_SERVER_KEY: Set Auth Key -SETTINGS_SET_WEB_SERVER: Set Web Server -SETTINGS_TIPS_WEB_SERVER_NOTICE: If you don't know what is the web server's function, please read the document, or don't modify the configuration. -SETTINGS_SET_ENABLE_WEB_SERVER: Enable Web Server -SETTINGS_SET_WEB_SERVER_HOST: Set Web Server Host -SETTINGS_SET_WEB_SERVER_PORT: Set Web Server Port -SETTINGS_SET_WEB_SERVER_PATH: Set Web Server Path -SETTINGS_TIP_PLACEHOLDER_WEB_HOST: Default:127.0.0.1 -SETTINGS_TIP_PLACEHOLDER_WEB_PORT: Default:37777 -SETTINGS_TIP_PLACEHOLDER_HOST: Default:127.0.0.1 -SETTINGS_TIP_PLACEHOLDER_PORT: Default:36677 -SETTINGS_TIP_PLACEHOLDER_KEY: This key is used to avoid malicious requests, through urlParams '?key=xxx' to pass -SETTINGS_SET_SERVER_AES_KEY: Set AES Key for server response -SETTINGS_LOG_LEVEL_ALL: All -SETTINGS_LOG_LEVEL_SUCCESS: Success -SETTINGS_LOG_LEVEL_ERROR: Error -SETTINGS_LOG_LEVEL_INFO: Info -SETTINGS_LOG_LEVEL_WARN: Warn -SETTINGS_LOG_LEVEL_NONE: None -SETTINGS_RESULT: Result -SETTINGS_DEFAULT_PICBED: Default Picbed -SETTINGS_SET_DEFAULT_PICBED: Set Default Picbed -SETTINGS_NOT_CONFIG_OPTIONS: Not Config Options -SETTINGS_USE_BUILTIN_CLIPBOARD_UPLOAD: Use Builtin Clipboard to Upload -SETTINGS_CHOOSE_LANGUAGE: Choose Language -UPLOADER_CONFIG_NAME: Configuration Name -UPLOADER_CONFIG_PLACEHOLDER: Please Enter Configuration Name -SELECTED_SETTING_HINT: Selected -SETTINGS_MAIN_WINDOW_SIZE: Default Main Window Size -SETTINGS_MAIN_WINDOW_WIDTH: Default Main Window Width -SETTINGS_MAIN_WINDOW_WIDTH_HINT: 'Default: 1200' -SETTINGS_MAIN_WINDOW_WIDTH_RULE: Window Height must be greater than 100 -SETTINGS_MAIN_WINDOW_HEIGHT: Default Main Window Height -SETTINGS_MAIN_WINDOW_HEIGHT_HINT: 'Default: 800' -SETTINGS_MAIN_WINDOW_HEIGHT_RULE: Window Height must be greater than 100 -SETTINGS_RAW_PICGO_SIZE: Raw PicGo Size -SETTINGS_CUSTOM_MINI_ICON_PATH: Custom Mini Window Icon Path -SETTINGS_CUSTOM_MINI_ICON: Custom Mini Window Icon -SETTINGS_COMPRESS_AND_WATERMARK: Compress and Watermark -SETTINGS_SYNC_DELETE_CLOUD: Sync delete from cloud storage of gallery -SETTINGS_ISHIDEDOCK: Hide Dock Icon -SETTINGS_ISHIDEDOCK_TIPS: Not support hide dock and tray at the same time -SETTINGS_ENCODE_OUTPUT_URL: Encode Output(or Copyed) URL -SETTINGS_WATCH_CLIPBOARD: Watch clipboard when software start -SETTINGS_SHORT_URL: Use short url -SETTINGS_SHORT_URL_SERVER: Short url server -SETTINGS_SHORT_URL_C1N_TOKEN: C1N Token -SETTINGS_SHORT_URL_YOURLS_DOMAIN: YOURLS domain -SETTINGS_SHORT_URL_YOURLS_SIGNATURE: YOURLS signature -SETTINGS_SHORT_URL_CF_WORKER_HOST: Cloudflare Worker Host -SETTINGS_DELETE_LOCAL_FILE_AFTER_UPLOAD: Delete local file after upload -SETTINGS_SYNC_CONFIG: Settings Sync Configuration -SETTINGS_SYNC_CONFIG_TITLE: Sync Settings -SETTINGS_SYNC_CONFIG_NOTE: The files to be synchronized are configuration files. -SETTINGS_SYNC_CONFIG_SELECT_TYPE: Select sync method -SETTINGS_SYNC_CONFIG_SELECT_FILE: Select files to sync -SETTINGS_SYNC_CONFIG_SELECT_CONFIG: Configuration files only -SETTINGS_SYNC_CONFIG_SELECT_GALLERY: Gallery files only -SETTINGS_SYNC_CONFIG_SELECT_BOTH: Both configuration and gallery files -SETTINGS_SYNC_CONFIG_GITEA_HOST: Gitea Host -SETTINGS_SYNC_CONFIG_GITHUB_USERNAME: username -SETTINGS_SYNC_CONFIG_GITEA_USERNAME: username -SETTINGS_SYNC_CONFIG_GITEE_USERNAME: username -SETTINGS_SYNC_CONFIG_GITHUB_REPO: repository (private) -SETTINGS_SYNC_CONFIG_GITEA_REPO: repository -SETTINGS_SYNC_CONFIG_GITEE_REPO: repository path -SETTINGS_SYNC_CONFIG_GITHUB_BRANCH: branch -SETTINGS_SYNC_CONFIG_GITEA_BRANCH: branch -SETTINGS_SYNC_CONFIG_GITEE_BRANCH: branch -SETTINGS_SYNC_CONFIG_GITHUB_TOKEN: Token -SETTINGS_SYNC_CONFIG_GITEA_TOKEN: Token -SETTINGS_SYNC_CONFIG_GITEE_TOKEN: Token -SETTINGS_SYNC_CONFIG_PROXY: Proxy -SETTINGS_SYNC_CONFIG_INTERVAL: Interval(min) -SETTINGS_SYNC_CONFIG_GITHUB_USERNAME_PLACEHOLDER: Please enter GitHub username -SETTINGS_SYNC_CONFIG_GITEA_USERNAME_PLACEHOLDER: Please enter Gitea username -SETTINGS_SYNC_CONFIG_GITEE_USERNAME_PLACEHOLDER: Please enter Gitee username -SETTINGS_SYNC_CONFIG_GITHUB_REPO_PLACEHOLDER: Please enter GitHub repository name -SETTINGS_SYNC_CONFIG_GITEA_REPO_PLACEHOLDER: Please enter Gitea repository name -SETTINGS_SYNC_CONFIG_GITEE_REPO_PLACEHOLDER: Please enter Gitee repository name -SETTINGS_SYNC_CONFIG_GITHUB_BRANCH_PLACEHOLDER: Please enter GitHub branch name -SETTINGS_SYNC_CONFIG_GITEE_BRANCH_PLACEHOLDER: Please enter Gitee branch name -SETTINGS_SYNC_CONFIG_GITEA_BRANCH_PLACEHOLDER: Please enter Gitea branch name -SETTINGS_SYNC_CONFIG_GITHUB_TOKEN_PLACEHOLDER: Please enter GitHub Token -SETTINGS_SYNC_CONFIG_GITEA_TOKEN_PLACEHOLDER: Please enter Gitea Token -SETTINGS_SYNC_CONFIG_GITEE_TOKEN_PLACEHOLDER: Please enter Gitee Token -SETTINGS_SYNC_CONFIG_PROXY_PLACEHOLDER: Please enter proxy -SETTINGS_UP_DOWN_DESC: Upload and download configuration files -SETTINGS_UP_DOWN_TITLE: Please use this after filled the synchronization configuration -SETTINGS_SYNC_UPLOAD: Upload -SETTINGS_SYNC_DOWNLOAD: Download -SETTINGS_SYNC_UPLOAD_ALL: Upload all -SETTINGS_SYNC_DOWNLOAD_ALL: Download all -SETTINGS_SYNC_UPLOAD_SUCCESS: Successfully uploaded -SETTINGS_SYNC_UPLOAD_FAILED: Upload failed -SETTINGS_SYNC_DOWNLOAD_SUCCESS: Successfully downloaded -SETTINGS_SYNC_DOWNLOAD_FAILED: Download failed -SETTINGS_SYNC_COMMON_CONFIG: Common configuration -SETTINGS_SYNC_MANAGE_CONFIG: Manage configuration -SETTINGS_AUTO_IMPORT: Auto import config in manage page -SETTINGS_AUTO_IMPORT_SELECT_PICBED: Select picbed -SETTINGS_TAB_SYSTEM: System -SETTINGS_TAB_SYNC_CONFIG: Configuration -SETTINGS_TAB_UPLOAD: Upload -SETTINGS_TAB_ADVANCED: Advanced -SETTINGS_TAB_UPDATE: Update -# shortcut-page - -BUILTIN_CLIPBOARD_TIPS: Use builtin clipboard function to upload instead of using scripts -SHORTCUT_NAME: Shortcut Name -SHORTCUT_BIND: Shortcut Binding -SHORTCUT_STATUS: Status -SHORTCUT_ENABLED: Enabled -SHORTCUT_DISABLED: Disabled -SHORTCUT_SOURCE: Source -SHORTCUT_HANDLE: Handle -SHORTCUT_ENABLE: Enable -SHORTCUT_DISABLE: Disable -SHORTCUT_EDIT: Edit -SHORTCUT_CHANGE_UPLOAD: Change Upload Shortcut - -# tray-page - -WAIT_TO_UPLOAD: Wait to Upload -ALREADY_UPLOAD: Already Uploaded - -# upload-page - -PICTURE_UPLOAD: Picture Upload -DRAG_FILE_TO_HERE: Drag file to here, or -CLICK_TO_UPLOAD: click to upload -LINK_FORMAT: Link Format -CUSTOM: Custom -CLIPBOARD_PICTURE: Clipboard -TIPS_DRAG_VALID_PICTURE_OR_URL: Drag valid picture or url to here -TIPS_INPUT_URL: Input URL -TIPS_HTTP_PREFIX: http:// or https:// -TIPS_INPUT_VALID_URL: Input valid URL - -# plugins - -PLUGIN_SEARCH_PLACEHOLDER: Search picgo plugins on npm, or click the button to view the awesome plugins list -PLUGIN_INSTALL: Install -PLUGIN_INSTALLING: Installing... -PLUGIN_INSTALLED: Installed -PLUGIN_DOING_SOMETHING: Doing... -PLUGIN_LIST: Plugin List -PLUGIN_IMPORT_LOCAL: Import Local Plugins -PLUGIN_UPDATE_ALL: Update All Plugins - -# tips - -TIPS_REMOVE_LINK: This operation will remove the picture from the album, continue? -TIPS_WILL_REMOVE_CHOOSED_IMAGES: This operation will remove the picture from the album, continue? -TIPS_MUST_CONTAINS_URL: Must contains $url or $fileName or $extName -TIPS_NETWORK_ERROR: Network Error -TIPS_NEED_RELOAD: Need Reload App -TIPS_PLEASE_CHOOSE_LOG_LEVEL: Please choose log level -TIPS_SET_SUCCEED: Set successfully -TIPS_RESET_SUCCEED: Reset successfully -TIPS_PLUGIN_NOT_GUI_IMPLEMENT: This plugin is not optimized for the GUI, continue? -TIPS_CLICK_NOTIFICATION_TO_RELOAD: Click notification to reload app -TIPS_GET_PLUGIN_LIST_FAILED: Get plugin list failed - -# manage page - -# manageSetting - -MANAGE_SETTING_TITLE: Manage Setting -MANAGE_SETTING_ISAUTOREFRESH_TITLE: Auto refresh file list when entering new directory -MANAGE_SETTING_ISAUTOREFRESH_TIPS: Only applies to non-paginated mode, data is cached to indexdb to speed up loading speed -MANAGE_SETTING_CLEAR_CACHE_TITLE: 'Clear file list cache database, currently in use:' -MANAGE_SETTING_CLEAR_CACHE_FREE_TITLE: 'Available:' -MANAGE_SETTING_CLEAR_CACHE_TIPS: After clearing, the file list will be reloaded when entering a new directory next time -MANAGE_SETTING_CLEAR_CACHE_PROMPT: Are you sure you want to clear the file list cache database? -MANAGE_SETTING_CLEAR_CACHE_BUTTON: Clear -MANAGE_SETTING_ISSHOWTHUMBNAIL_TITLE: Display the original image instead of format icon (requires public access permissions) -MANAGE_SETTING_ISSHOWLIST_TITLE: Default display mode for the file list -MANAGE_SETTING_ISSHOWLIST_ON: List -MANAGE_SETTING_ISSHOWLIST_OFF: Card -MANAGE_SETTING_ISFORCECUSTOMURLHTTPS_TITLE: Force custom URL to use HTTPS -MANAGE_SETTING_ISFORCECUSTOMURLHTTPS_TIPS: After enabling, all operations will automatically add the https prefix to custom domains -MANAGE_SETTING_ISUPLOADKEEPDIRSTRUCTURE_TITLE: Preserve directory structure when uploading -MANAGE_SETTING_ISUPLOADKEEPDIRSTRUCTURE_TIPS: After disabling, all files will be expanded to the specified directory -MANAGE_SETTING_ISDOWNLOADFILEKEEPDIRSTRUCTURE_TITLE_A: Download -MANAGE_SETTING_ISDOWNLOADFILEKEEPDIRSTRUCTURE_TITLE_B: ' File ' -MANAGE_SETTING_ISDOWNLOADFILEKEEPDIRSTRUCTURE_TITLE_C: will preserve the directory structure -MANAGE_SETTING_ISDOWNLOADFOLDERKEEPDIRSTRUCTURE_TITLE_D: ' Folder ' -MANAGE_SETTING_ISDOWNLOADFILEKEEPDIRSTRUCTURE_TIPS: After enabling, the original directory structure will be preserved -MANAGE_SETTING_MAX_DOWNLOAD_FILE_SIZE_TITLE: Maximum number of files to download simultaneously (1-9999) -MANAGE_SETTING_MAX_DOWNLOAD_FILE_SIZE_TIPS: Not work on Tencent -MANAGE_SETTING_MAX_DOWNLOAD_FILE_SIZE_INPUT_TIPS: Please enter the maximum number of files to download simultaneously -MANAGE_SETTING_ISIGNORECASE_TITLE: Should file search be case-insensitive -MANAGE_SETTING_ISIGNORECASE_TIPS: After enabling, the search will be case-insensitive -MANAGE_SETTING_TIMESTAMPRENAME_TITLE: Rename uploaded files with timestamp - (highest priority) -MANAGE_SETTING_TIMESTAMPRENAME_TIPS: After enabling, the uploaded file will be renamed with the timestamp -MANAGE_SETTING_RANDOMSTRINGRENAME_TITLE: Rename uploaded files with random strings - (medium priority) -MANAGE_SETTING_RANDOMSTRINGRENAME_TIPS: Random string length is 20 -MANAGE_SETTING_CUSTOMRENAME_TITLE: Rename uploaded files with custom names - (lowest priority) -MANAGE_SETTING_CUSTOMRENAME_TIPS: After enabling, the uploaded file will be renamed with the custom pattern -MANAGE_SETTING_CUSTOM_PATTERN_TITLE: Custom rename format, placeholders can be freely combined, please refer to the table below -MANAGE_SETTING_CUSTOM_PATTERN_TIPS: Please enter the custom rename format -MANAGE_SETTING_CUSTOM_PATTERN_TABLE_TITLE: Placeholder -MANAGE_SETTING_CUSTOM_PATTERN_TABLE_TIPS: Description -MANAGE_SETTING_PRESIGNED_URL_EXPIRE_TITLE: Presigned URL expiration time (seconds) -MANAGE_SETTING_PRESIGNED_URL_EXPIRE_TIPS: Please enter the presigned URL expiration time -MANAGE_SETTING_CHOOSE_COPY_FORMAT_TITLE: Select default link format for copying -MANAGE_SETTING_CHOOSE_COPY_FORMAT_MARKDOWN: Markdown -MANAGE_SETTING_CHOOSE_COPY_FORMAT_MARKDOWN_WITH_LINK: Markdown with link -MANAGE_SETTING_CHOOSE_COPY_FORMAT_RAWURL: Raw URL -MANAGE_SETTING_CHOOSE_COPY_FORMAT_HTML: HTML -MANAGE_SETTING_CHOOSE_COPY_FORMAT_BBCODE: BBCode -MANAGE_SETTING_CHOOSE_COPY_FORMAT_CUSTOM: Custom -MANAGE_SETTING_CUSTOM_COPY_FORMAT_TITLE: Custom link format($url -> raw url, $fileName -> raw fileName) -MANAGE_SETTING_CUSTOM_COPY_FORMAT_TIPS: Please enter the custom link format -MANAGE_SETTING_CHOOSE_DOWNLOAD_FOLDER_TITLE: Choose default download folder -MANAGE_SETTING_CHOOSE_DOWNLOAD_FOLDER_TIPS: System default download directory -MANAGE_SETTING_CHOOSE_DOWNLOAD_FOLDER_BUTTON: Choose folder -MANAGE_SETTING_COPY_MESSAGE: Copied -MANAGE_SETTING_CLEAR_CACHE_SUCCESS: Cleared successfully -MANAGE_SETTING_CLEAR_CACHE_FAILED: Clear failed -MANAGE_SETTING_ISENCODEURL_TITLE: Encode URL when copy -MANAGE_SETTING_ISENCODEURL_TIPS: After enabling, the URL will be encoded when copying -# Empty -MANAGE_NO_DATA: No data - -# Main Page -MANAGE_MAIN_PAGE_NEW_BUCKET: New Bucket -MANAGE_MAIN_PAGE_BACK_TO_HOME: Home -MANAGE_MAIN_PAGE_SWITCH_PICBED: Switch -MANAGE_MAIN_PAGE_SETTING: Setting -MANAGE_MAIN_PAGE_SUBMIT: Submit -MANAGE_MAIN_PAGE_TIPS: Tips -MANAGE_MAIN_PAGE_TIPS_SUCCESS: Created successfully -MANAGE_MAIN_PAGE_TIPS_FAILED: Create failed -MANAGE_MAIN_PAGE_BUCKET: Bucket -MANAGE_MAIN_PAGE_GALLERY: Album -MANAGE_MAIN_PAGE_REPOSITORY: Repo - -# manage constant -MANAGE_CONSTANT_BASE_RULE: 'Please enter ' -MANAGE_CONSTANT_ITEMS_PAGE_RULE_MESSAGE_A: Please enter the number of items displayed per page. -MANAGE_CONSTANT_ITEMS_PAGE_RULE_MESSAGE_B: The number of items displayed per page must be a number. -MANAGE_CONSTANT_ITEMS_PAGE_RULE_MESSAGE_C: The number of items displayed per page must be between 20 and 1000. -MANAGE_CONSTANT_ALIAS_RULE_MESSAGE_A: Please enter the alias, which is the unique identifier for this configuration. -MANAGE_CONSTANT_ALIAS_RULE_MESSAGE_B: The alias can only contain Chinese, English, numbers, underscores, and hyphens. -MANAGE_CONSTANT_ALIAS_TOOLTIP: The alias can only contain Chinese, English, numbers, underscores, and hyphens. -MANAGE_CONSTANT_ITEMS_PAGE_TOOLTIP: The number of items displayed per page must be between 20 and 1000. -MANAGE_CONSTANT_PAGING_TOOLTIP: When paging is turned off, the directory list will use database caching to optimize performance. -MANAGE_CONSTANT_BUCKET_NAME_TOOLTIP: Separated by commas, e.g., bucket1,bucket2,bucket3, and corresponding to the starting directory order one by one. -MANAGE_CONSTANT_BASE_DIR_TOOLTIP: 'Separated by commas, e.g., /dir1,/dir2,/dir3, corresponding to the storage bucket order one by one.' -MANAGE_CONSTANT_IS_AUTO_CUSTOM_URL_TOOLTIP: When turned on, the domainbound to bucket will be automatically obtained. Else, it can be manually filled in. - -MANAGE_CONSTANT_SMMS_ALIAS_DESC: Alias - required -MANAGE_CONSTANT_SMMS_ALIAS_PLACEHOLDER: Unique identifier of this configuration -MANAGE_CONSTANT_SMMS_TOKEN_DESC: Token - required -MANAGE_CONSTANT_SMMS_TOKEN_PLACEHOLDER: Please fill in your token -MANAGE_CONSTANT_SMMS_PAGING_DESC: Whether to enable pagination -MANAGE_CONSTANT_SMMS_EXPLAIN: 'For users in mainland China, please visit the backup domain https://smms.app. Do not upload images in large quantities.' -MANAGE_CONSTANT_SMMS_REFER_TEXT: 'Refer to: ' - -MANAGE_CONSTANT_QINIU_NAME: Qiniu -MANAGE_CONSTANT_QINIU_ALIAS_DESC: Alias - Required -MANAGE_CONSTANT_QINIU_ALIAS_PLACEHOLDER: Unique identifier for this configuration -MANAGE_CONSTANT_QINIU_ACCESS_KEY_DESC: accessKey - Required -MANAGE_CONSTANT_QINIU_ACCESS_KEY_PLACEHOLDER: Please enter the accessKey -MANAGE_CONSTANT_QINIU_SECRET_KEY_DESC: secretKey - Required -MANAGE_CONSTANT_QINIU_SECRET_KEY_PLACEHOLDER: Please enter the secretKey -MANAGE_CONSTANT_QINIU_BUCKET_DESC: space name - Optional -MANAGE_CONSTANT_QINIU_BUCKET_PLACEHOLDER: 'English comma separated, for example: bucket1, bucket2' -MANAGE_CONSTANT_QINIU_BASE_DIR_DESC: Base directory - Optional -MANAGE_CONSTANT_QINIU_BASE_DIR_PLACEHOLDER: 'English comma separated, for example: /dir1, /dir2' -MANAGE_CONSTANT_QINIU_IS_AUTO_CUSTOM_URL_DESC: Automatically get the bound domain name -MANAGE_CONSTANT_QINIU_PAGING_DESC: Enable pagination -MANAGE_CONSTANT_QINIU_ITEMS_PAGE_DESC: Number of items displayed per page -MANAGE_CONSTANT_QINIU_EXPLAIN: When configuring space name and base directory, they can be set using English comma separation. The order must be consistent and missing or empty items will use the default value. -MANAGE_CONSTANT_QINIU_REFER_TEXT: 'Refer to: ' - -MANAGE_CONSTANT_GITHUB_ALIAS_DESC: Alias - Required -MANAGE_CONSTANT_GITHUB_ALIAS_PLACEHOLDER: Unique identifier for this configuration -MANAGE_CONSTANT_GITHUB_TOKEN_DESC: Token - Required -MANAGE_CONSTANT_GITHUB_TOKEN_PLACEHOLDER: Please enter the Token -MANAGE_CONSTANT_GITHUB_TOKEN_TIPS: 'Please provide a token with full repo permissions' -MANAGE_CONSTANT_GITHUB_USER_DESC: Username - Required -MANAGE_CONSTANT_GITHUB_USER_PLACEHOLDER: Please enter the Username -MANAGE_CONSTANT_GITHUB_USER_RULE_MESSAGE: Username -MANAGE_CONSTANT_GITHUB_PROXY_DESC: Proxy address - Optional -MANAGE_CONSTANT_GITHUB_PROXY_PLACEHOLDER: 'For example: http://127.0.0.1:1080' -MANAGE_CONSTANT_GITHUB_PROXY_TIPS: 'If the access speed is slow, you can try configuring a proxy' -MANAGE_CONSTANT_GITHUB_PAGING_DESC: Enable pagination -MANAGE_CONSTANT_GITHUB_CUSTOM_URL_DESC: CDN acceleration domain name - Optional -MANAGE_CONSTANT_GITHUB_CUSTOM_URL_PLACEHOLDER: 'Support using {username}, {repo}, {branch}, and {path} as replacement placeholders' -MANAGE_CONSTANT_GITHUB_CUSTOM_URL_TIPS: 'For example: https://cdn.staticaly.com/gh/{username}/{repo}@{branch}/{path}' -MANAGE_CONSTANT_GITHUB_CUSTOM_URL_RULE_MESSAGE_A: 'The acceleration domain name must start with http:// or https://' -MANAGE_CONSTANT_GITHUB_CUSTOM_URL_RULE_MESSAGE_B: The braces in the acceleration domain name must appear in pairs -MANAGE_CONSTANT_GITHUB_EXPLAIN: There is an hourly limit for API calls, and uploading files larger than 100M is not supported -MANAGE_CONSTANT_GITHUB_REFER_TEXT: 'Refer to:' - -MANAGE_CONSTANT_ALIYUN_NAME: Ali Cloud -MANAGE_CONSTANT_ALIYUN_ALIAS_DESC: Alias - required -MANAGE_CONSTANT_ALIYUN_ALIAS_PLACEHOLDER: The unique identifier of this configuration -MANAGE_CONSTANT_ALIYUN_ACCESS_KEY_ID_DESC: AccessKeyId - required -MANAGE_CONSTANT_ALIYUN_ACCESS_KEY_ID_PLACEHOLDER: Please fill in AccessKeyId -MANAGE_CONSTANT_ALIYUN_ACCESS_KEY_SECRET_DESC: AccessKeySecret - required -MANAGE_CONSTANT_ALIYUN_ACCESS_KEY_SECRET_PLACEHOLDER: Please fill in AccessKeySecret -MANAGE_CONSTANT_ALIYUN_BUCKET_DESC: Bucket name - optional -MANAGE_CONSTANT_ALIYUN_BUCKET_PLACEHOLDER: 'Separated by commas in English, for example: bucket1, bucket2' -MANAGE_CONSTANT_ALIYUN_BASE_DIR_DESC: Base directory - optional -MANAGE_CONSTANT_ALIYUN_BASE_DIR_PLACEHOLDER: 'Separated by commas in English, for example: /dir1, /dir2' -MANAGE_CONSTANT_ALIYUN_IS_AUTO_CUSTOM_URL_DESC: Automatically obtain bound domain name -MANAGE_CONSTANT_ALIYUN_PAGING_DESC: Whether to enable pagination -MANAGE_CONSTANT_ALIYUN_ITEMS_PAGE_DESC: Number of items displayed per page -MANAGE_CONSTANT_ALIYUN_EXPLAIN: When configuring bucket name and base directory, they can be set using English comma separation. The order must be consistent and missing or empty items will use the default value. -MANAGE_CONSTANT_ALIYUN_REFER_TEXT: 'Refer to: ' - -MANAGE_CONSTANT_TENCENT_NAME: Tencent -MANAGE_CONSTANT_TENCENT_ALIAS_DESC: Alias - Required -MANAGE_CONSTANT_TENCENT_ALIAS_PLACEHOLDER: Unique identifier for this configuration -MANAGE_CONSTANT_TENCENT_SECRET_ID_DESC: SecretID - Required -MANAGE_CONSTANT_TENCENT_SECRET_ID_PLACEHOLDER: Please fill in the SecretID -MANAGE_CONSTANT_TENCENT_SECRET_KEY_DESC: SecretKey - Required -MANAGE_CONSTANT_TENCENT_SECRET_KEY_PLACEHOLDER: Please fill in the SecretKey -MANAGE_CONSTANT_TENCENT_APPID_DESC: App ID - Required -MANAGE_CONSTANT_TENCENT_APPID_PLACEHOLDER: Please fill in the App ID -MANAGE_CONSTANT_TENCENT_APPID_TOOLTIP: 'For example: 1250000000' -MANAGE_CONSTANT_TENCENT_BUCKET_DESC: Bucket name - Optional (note the App ID must be included) -MANAGE_CONSTANT_TENCENT_BUCKET_PLACEHOLDER: 'Comma-separated list of bucket names, for example: bucket1-1250000000, bucket2-1250000000' -MANAGE_CONSTANT_TENCENT_BASE_DIR_DESC: Starting directory - Optional -MANAGE_CONSTANT_TENCENT_BASE_DIR_PLACEHOLDER: 'Comma-separated list of directories, for example: /dir1, /dir2' -MANAGE_CONSTANT_TENCENT_IS_AUTO_CUSTOM_URL_DESC: Automatically obtain binding domain name -MANAGE_CONSTANT_TENCENT_PAGING_DESC: Enable paging -MANAGE_CONSTANT_TENCENT_ITEMS_PAGE_DESC: Number of items to display per page -MANAGE_CONSTANT_TENCENT_EXPLAIN: When configuring bucket name and base directory, they can be set using English comma separation. The order must be consistent and missing or empty items will use the default value. -MANAGE_CONSTANT_TENCENT_REFER_TEXT: 'Refer to: ' - -MANAGE_CONSTANT_UPYUN_NAME: Upyun -MANAGE_CONSTANT_UPYUN_ALIAS_DESC: Alias - required -MANAGE_CONSTANT_UPYUN_ALIAS_PLACEHOLDER: Unique identifier of the configuration -MANAGE_CONSTANT_UPYUN_BUCKET_DESC: Service name - required -MANAGE_CONSTANT_UPYUN_BUCKET_PLACEHOLDER: Name of the storage bucket corresponding to other object storage -MANAGE_CONSTANT_UPYUN_OPERATOR_NAME_DESC: Operator name - required -MANAGE_CONSTANT_UPYUN_OPERATOR_NAME_PLACEHOLDER: It is recommended to use an operator with full read, write, and delete permissions -MANAGE_CONSTANT_UPYUN_OPERATOR_NAME_RULE: Operator -MANAGE_CONSTANT_UPYUN_OPERATOR_PWD_DESC: Operator password - required -MANAGE_CONSTANT_UPYUN_OPERATOR_PWD_PLACEHOLDER: Please enter the password -MANAGE_CONSTANT_UPYUN_OPERATOR_PWD_RULE: Operator password -MANAGE_CONSTANT_UPYUN_BASE_DIR_DESC: Base directory - optional -MANAGE_CONSTANT_UPYUN_BASE_DIR_PLACEHOLDER: Initial directory when reading files -MANAGE_CONSTANT_UPYUN_IS_AUTO_CUSTOM_URL_DESC: Acceleration domain name - required -MANAGE_CONSTANT_UPYUN_IS_AUTO_CUSTOM_URL_PLACEHOLDER: 'Please start with http:// or https://' -MANAGE_CONSTANT_UPYUN_IS_AUTO_CUSTOM_URL_RULE_MESSAGE_A: Acceleration domain name cannot be empty -MANAGE_CONSTANT_UPYUN_IS_AUTO_CUSTOM_URL_RULE_MESSAGE_B: 'Please start the custom domain name with http:// or https://' -MANAGE_CONSTANT_UPYUN_ANTI_LEECH_TOKEN_DESC: Anti-leech key - optional -MANAGE_CONSTANT_UPYUN_ANTI_LEECH_TOKEN_PLACEHOLDER: Please enter the anti-leech key -MANAGE_CONSTANT_UPYUN_ANTI_LEECH_TOKEN_TOOLTIP: If you do not need to use anti-leech, please leave it blank -MANAGE_CONSTANT_UPYUN_EXPIRE_TIME_DESC: Expiration time(s) - optional -MANAGE_CONSTANT_UPYUN_PAGING: Whether to enable pagination -MANAGE_CONSTANT_UPYUN_ITEMS_PAGE: Number of items displayed per page -MANAGE_CONSTANT_UPYUN_EXPLAIN: It is necessary to fill in the acceleration domain name of Upyun image bed, otherwise it cannot be used normally. -MANAGE_CONSTANT_UPYUN_REFER_TEXT: 'Refer to: ' - -MANAGE_CONSTANT_IMGUR_NAME: Imgur -MANAGE_CONSTANT_IMGUR_ALIAS_DESC: Alias - required -MANAGE_CONSTANT_IMGUR_ALIAS_PLACEHOLDER: Unique identifier of the configuration -MANAGE_CONSTANT_IMGUR_USERNAME_DESC: Imgur username - required -MANAGE_CONSTANT_IMGUR_USERNAME_PLACEHOLDER: Please enter the Imgur username -MANAGE_CONSTANT_IMGUR_ACCESS_TOKEN_DESC: Access token - required -MANAGE_CONSTANT_IMGUR_ACCESS_TOKEN_PLACEHOLDER: Please enter the access token -MANAGE_CONSTANT_IMGUR_ACCESS_TOKEN_TOOLTIP: Not the client ID, please refer to the configuration tutorial -MANAGE_CONSTANT_IMGUR_PROXY_DESC: Proxy - optional -MANAGE_CONSTANT_IMGUR_PROXY_PLACEHOLDER: 'For example: http://127.0.0.1:1080' -MANAGE_CONSTANT_IMGUR_PROXY_TOOLTIP: Please use a proxy in mainland China, otherwise it cannot be used normally -MANAGE_CONSTANT_IMGUR_EXPLAIN: Please use a proxy in mainland China, API calls have restrictions, please pay attention to usage frequency -MANAGE_CONSTANT_IMGUR_REFER_TEXT: 'Refer to: ' - -MANAGE_CONSTANT_S3_NAME: S3-Compatible -MANAGE_CONSTANT_S3_ALIAS_DESC: Alias - Required -MANAGE_CONSTANT_S3_ALIAS_PLACEHOLDER: Unique identifier for this configuration -MANAGE_CONSTANT_S3_ACCESS_KEY_ID_DESC: Access Key ID - Required -MANAGE_CONSTANT_S3_ACCESS_KEY_ID_PLACEHOLDER: Please enter Access Key ID -MANAGE_CONSTANT_S3_SECRET_ACCESS_KEY_DESC: Secret Access Key - Required -MANAGE_CONSTANT_S3_SECRET_ACCESS_KEY_PLACEHOLDER: Please enter Secret Access Key -MANAGE_CONSTANT_S3_ENDPOINT_DESC: Endpoint - Optional -MANAGE_CONSTANT_S3_ENDPOINT_PLACEHOLDER: e.g. s3.us-east-1.amazonaws.com -MANAGE_CONSTANT_S3_ENDPOINT_TOOLTIP: If left blank, AWS S3 is accessed by default. Provide the root API endpoint -MANAGE_CONSTANT_S3_SSLENABLED_DESC: Use HTTPS connection -MANAGE_CONSTANT_S3_SSLENABLED_TOOLTIP: Disable this option if not supported by your platform. -MANAGE_CONSTANT_S3_FORCE_PATH_STYLE_DESC: Enable S3 Path style -MANAGE_CONSTANT_S3_FORCE_PATH_STYLE_TOOLTIP: Required when using Minio, for example. -MANAGE_CONSTANT_S3_PROXY_DESC: Proxy - Optional -MANAGE_CONSTANT_S3_PROXY_PLACEHOLDER: e.g. http://127.0.0.1:1080 -MANAGE_CONSTANT_S3_PROXY_TOOLTIP: Use proxy if unable to access in some parts of Mainland China -MANAGE_CONSTANT_S3_ACL_FOR_UPLOAD_DESC: Permission for uploaded files -MANAGE_CONSTANT_S3_ACL_FOR_UPLOAD_OPTIONS_PRIVATE: Private -MANAGE_CONSTANT_S3_ACL_FOR_UPLOAD_OPTIONS_PUBLIC_READ: Public read -MANAGE_CONSTANT_S3_ACL_FOR_UPLOAD_OPTIONS_PUBLIC_READ_WRITE: Public read and write -MANAGE_CONSTANT_S3_ACL_FOR_UPLOAD_OPTIONS_AUTHENTICATED_READ: Authenticated read -MANAGE_CONSTANT_S3_ACL_FOR_UPLOAD_OPTIONS_BUCKET_OWNER_READ: Bucket owner read -MANAGE_CONSTANT_S3_ACL_FOR_UPLOAD_OPTIONS_BUCKET_OWNER_FULL_CONTROL: Bucket owner full control -MANAGE_CONSTANT_S3_ACL_FOR_UPLOAD_OPTIONS_AWS_EXEC_READ: AWS execution read -MANAGE_CONSTANT_S3_ACL_FOR_UPLOAD_TOOLTIP: 'Permission options for uploaded files' -MANAGE_CONSTANT_S3_BUCKET_DESC: Bucket name - Optional -MANAGE_CONSTANT_S3_BUCKET_PLACEHOLDER: English comma-separated list, e.g. bucket1,bucket2 -MANAGE_CONSTANT_S3_BASE_DIR_DESC: Base directory - Optional -MANAGE_CONSTANT_S3_BASE_DIR_PLACEHOLDER: English comma-separated list, e.g. /dir1,/dir2 -MANAGE_CONSTANT_S3_DOGE_CLOUD_SUPPORT_DESC: Enable Doge Cloud API -MANAGE_CONSTANT_S3_DOGE_CLOUD_SUPPORT_TOOLTIP: Support Doge Cloud API -MANAGE_CONSTANT_S3_PAGING_DESC: Enable pagination -MANAGE_CONSTANT_S3_ITEMS_PAGE_DESC: Items per page -MANAGE_CONSTANT_S3_EXPLAIN: When configuring bucket name and base directory, they can be set using English comma separation. The order must be consistent and missing or empty items will use the default value. -MANAGE_CONSTANT_S3_REFER_TEXT: 'Refer to: ' - -MANAGE_CONSTANT_WEBDAV_NAME: WebDAV -MANAGE_CONSTANT_WEBDAV_ALIAS_DESC: Alias - Required -MANAGE_CONSTANT_WEBDAV_ALIAS_PLACEHOLDER: Unique identifier for this configuration -MANAGE_CONSTANT_WEBDAV_HOST_DESC: Address - Required -MANAGE_CONSTANT_WEBDAV_HOST_PLACEHOLDER: 'e.g. https://example.com/dav' -MANAGE_CONSTANT_WEBDAV_HOST_TOOLTIP: Please enter the complete WebDAV address -MANAGE_CONSTANT_WEBDAV_USERNAME_DESC: Username - Required -MANAGE_CONSTANT_WEBDAV_USERNAME_PLACEHOLDER: Please enter your username -MANAGE_CONSTANT_WEBDAV_BUCKET_DESC: Special Configuration -MANAGE_CONSTANT_WEBDAV_BUCKET_PLACEHOLDER: 'e.g. bucket1' -MANAGE_CONSTANT_WEBDAV_BUCKET_TOOLTIP: This cannot be modified, only for software compatibility consideration -MANAGE_CONSTANT_WEBDAV_PASSWORD_DESC: Password - Required -MANAGE_CONSTANT_WEBDAV_PASSWORD_PLACEHOLDER: Please enter your password -MANAGE_CONSTANT_WEBDAV_BASE_DIR_DESC: Base Directory - Optional -MANAGE_CONSTANT_WEBDAV_BASE_DIR_PLACEHOLDER: 'e.g. /dir1' -MANAGE_CONSTANT_WEBDAV_CUSTOM_URL_DESC: Custom Domain - Optional -MANAGE_CONSTANT_WEBDAV_CUSTOM_URL_PLACEHOLDER: 'e.g. https://example.com' -MANAGE_CONSTANT_WEBDAV_CUSTOM_URL_TOOLTIP: If your WebDAV server supports custom domains, please fill in -MANAGE_CONSTANT_WEBDAV_CUSTOM_URL_RULE_MESSAGE: 'Custom domain should start with http:// or https://' -MANAGE_CONSTANT_WEBDAV_WEB_PATH: Web Path - Optional -MANAGE_CONSTANT_WEBDAV_WEB_PATH_PLACEHOLDER: 'e.g. test/ttc' -MANAGE_CONSTANT_WEBDAV_WEB_PATH_TOOLTIP: 'Used to generate URL' -MANAGE_CONSTANT_WEBDAV_PROXY_DESC: Proxy - Optional -MANAGE_CONSTANT_WEBDAV_PROXY_PLACEHOLDER: 'e.g. http://127.0.0.1:1080' -MANAGE_CONSTANT_WEBDAV_PROXY_TOOLTIP: If special network environment is required to access, please use proxy -MANAGE_CONSTANT_WEBDAV_SSL_DESC: Use HTTPS Connection -MANAGE_CONSTANT_WEBDAV_SSL_TOOLTIP: Depending on the configuration of your WebDAV server, if your server does not support HTTPS, please turn off this option -MANAGE_CONSTANT_WEBDAV_AUTH_TYPE_DESC: Authentication Type -MANAGE_CONSTANT_WEBDAV_EXPLAIN: 'WebDAV Configuration' -MANAGE_CONSTANT_WEBDAV_REFER_TEXT: 'Refer to:' - -MANAGE_CONSTANT_LOCAL_NAME: Local -MANAGE_CONSTANT_LOCAL_ALIAS_DESC: Alias - Required -MANAGE_CONSTANT_LOCAL_ALIAS_PLACEHOLDER: Unique identifier for this configuration -MANAGE_CONSTANT_LOCAL_BASE_DIR_DESC: Base directory - Required -MANAGE_CONSTANT_LOCAL_BASE_DIR_PLACEHOLDER: 'e.g. /dir1' -MANAGE_CONSTANT_LOCAL_CUSTOM_URL_DESC: Custom Domain - Optional -MANAGE_CONSTANT_LOCAL_CUSTOM_URL_PLACEHOLDER: 'e.g. https://example.com' -MANAGE_CONSTANT_LOCAL_CUSTOM_URL_TOOLTIP: If your local path supports custom domains, please fill in -MANAGE_CONSTANT_LOCAL_WEB_PATH: Web Path - Optional -MANAGE_CONSTANT_LOCAL_WEB_PATH_PLACEHOLDER: 'e.g. test/ttc' -MANAGE_CONSTANT_LOCAL_WEB_PATH_TOOLTIP: 'Used to generate URL' -MANAGE_CONSTANT_LOCAL_EXPLAIN: 'Local Configuration' -MANAGE_CONSTANT_LOCAL_REFER_TEXT: 'Refer to:' -MANAGE_CONSTANT_LOCAL_BASE_DIR_RULE_MESSAGE: baseDir cannot be empty -MANAGE_CONSTANT_LOCAL_BUCKET_DESC: Special Configuration -MANAGE_CONSTANT_LOCAL_BUCKET_PLACEHOLDER: 'bucket1' -MANAGE_CONSTANT_LOCAL_BUCKET_TOOLTIP: This cannot be modified, only for software compatibility consideration - -MANAGE_CONSTANT_SFTP_NAME: SFTP -MANAGE_CONSTANT_SFTP_ALIAS_DESC: Alias - Required -MANAGE_CONSTANT_SFTP_ALIAS_PLACEHOLDER: Unique identifier for this configuration -MANAGE_CONSTANT_SFTP_HOST_DESC: SSH Host - Required -MANAGE_CONSTANT_SFTP_HOST_PLACEHOLDER: 'e.g. 233.233.233.233' -MANAGE_CONSTANT_SFTP_PORT_DESC: SSH Port - Required -MANAGE_CONSTANT_SFTP_PORT_PLACEHOLDER: 'e.g. 22' -MANAGE_CONSTANT_SFTP_USERNAME_DESC: Username -MANAGE_CONSTANT_SFTP_USERNAME_PLACEHOLDER: Please enter your username -MANAGE_CONSTANT_SFTP_PASSWORD_DESC: Password -MANAGE_CONSTANT_SFTP_PASSWORD_PLACEHOLDER: Please enter your password -MANAGE_CONSTANT_SFTP_PRIVATE_KEY_DESC: Private Key -MANAGE_CONSTANT_SFTP_PRIVATE_KEY_PLACEHOLDER: Please enter your private key -MANAGE_CONSTANT_SFTP_PRIVATE_KEY_TOOLTIP: 'e.g. /home/user/.ssh/id_rsa' -MANAGE_CONSTANT_SFTP_PASSPHRASE_DESC: Private Key Password -MANAGE_CONSTANT_SFTP_PASSPHRASE_PLACEHOLDER: Please enter your private key password -MANAGE_CONSTANT_SFTP_BASE_DIR_DESC: Base Directory -MANAGE_CONSTANT_SFTP_BASE_DIR_PLACEHOLDER: 'e.g. /dir1' -MANAGE_CONSTANT_SFTP_CUSTOM_URL_DESC: Custom Domain -MANAGE_CONSTANT_SFTP_CUSTOM_URL_PLACEHOLDER: 'e.g. https://example.com' -MANAGE_CONSTANT_SFTP_CUSTOM_URL_TOOLTIP: If your SFTP server supports custom domains, please fill in -MANAGE_CONSTANT_SFTP_WEB_PATH: Web Path -MANAGE_CONSTANT_SFTP_WEB_PATH_PLACEHOLDER: 'e.g. test/ttc' -MANAGE_CONSTANT_SFTP_WEB_PATH_TOOLTIP: 'Used to generate URL' -MANAGE_CONSTANT_SFTP_FILE_PERMISSIONS_DESC: File mode -MANAGE_CONSTANT_SFTP_FILE_PERMISSIONS_PLACEHOLDER: 'e.g. 0644' -MANAGE_CONSTANT_SFTP_FILE_PERMISSIONS_TOOLTIP: 'Used to set the permissions of uploaded files' -MANAGE_CONSTANT_SFTP_DIR_PERMISSIONS_DESC: Directory mode -MANAGE_CONSTANT_SFTP_DIR_PERMISSIONS_PLACEHOLDER: 'e.g. 0755' -MANAGE_CONSTANT_SFTP_DIR_PERMISSIONS_TOOLTIP: 'Used to set the permissions of uploaded directories' -MANAGE_CONSTANT_SFTP_EXPLAIN: 'SFTP Configuration' -MANAGE_CONSTANT_SFTP_REFER_TEXT: 'Refer to:' -MANAGE_CONSTANT_SFTP_BASE_DIR_RULE_MESSAGE: baseDir cannot be empty -MANAGE_CONSTANT_SFTP_BUCKET_DESC: Special Configuration -MANAGE_CONSTANT_SFTP_BUCKET_PLACEHOLDER: 'e.g. bucket1' -MANAGE_CONSTANT_SFTP_BUCKET_TOOLTIP: This cannot be modified, only for software compatibility consideration - -MANAGE_LOGIN_PAGE_PANE_NAME: Saved Config -MANAGE_LOGIN_PAGE_PANE_DESC: Click on the icon or alias to view details -MANAGE_LOGIN_PAGE_PANE_LOADING: Importing... -MANAGE_LOGIN_PAGE_PANE_KEY_NAME: Configuration -MANAGE_LOGIN_PAGE_PANE_KEY_VALUE: Value -MANAGE_LOGIN_PAGE_PANE_ENTER: Enter -MANAGE_LOGIN_PAGE_PANE_DELETE: Delete -MANAGE_LOGIN_PAGE_PANE_SELECT_PLACEHOLDER: Please select -MANAGE_LOGIN_PAGE_PANE_IMPORT: Import -MANAGE_LOGIN_PAGE_PANE_SAVE: Save -MANAGE_LOGIN_PAGE_PANE_RESET: Reset -MANAGE_LOGIN_PAGE_PANE_TABLE_TITLE: Existing configurations, click to copy corresponding cell data -MANAGE_LOGIN_PAGE_PANE_CONFIG_CHANGE_MESSAGE_A: Please fill in -MANAGE_LOGIN_PAGE_PANE_CONFIG_CHANGE_ALIAS_MESSAGE: 'The alias can only contain Chinese, English, numbers, underscores, and hyphens' -MANAGE_LOGIN_PAGE_PANE_CONFIG_CHANGE_ITEMS_PER_PAGE_MESSAGE: 'The number of items per page must be between 20-1000' -MANAGE_LOGIN_PAGE_PANE_CONFIG_CHANGE_CUSTOM_URL_MESSAGE: 'Custom domain name should start with http:// or https://' -MANAGE_LOGIN_PAGE_PANE_CONFIG_CHANGE_NOTICE_NAME: Notice -MANAGE_LOGIN_PAGE_PANE_CONFIG_CHANGE_NOTICE_MESSAGE: 'Alias overwritten: ' -MANAGE_LOGIN_PAGE_PANE_CONFIG_CHANGE_NOTICE_MESSAGE_B: 'Alias saved: ' -MANAGE_LOGIN_PAGE_PANE_CONFIG_CHANGE_NOTICE_MESSAGE_C: 'Alias deleted: ' -MANAGE_LOGIN_PAGE_PANE_CONFIG_CHANGE_NOTICE_MESSAGE_D: 'Configuration with alias: ' -MANAGE_LOGIN_PAGE_PANE_CONFIG_CHANGE_NOTICE_MESSAGE_E: ' failed to delete' -MANAGE_LOGIN_PAGE_PANE_CONFIG_CHANGE_COPY_SUCCESS: 'Copied ' -MANAGE_LOGIN_PAGE_PANE_DELETE_CONFIG_TITLE: Are you sure to delete this? -MANAGE_LOGIN_PAGE_PANE_DELETE_CONFIG_TIP: Tip -MANAGE_LOGIN_PAGE_PANE_DELETE_CONFIG_CONFIRM: Confirm -MANAGE_LOGIN_PAGE_PANE_DELETE_CONFIG_CANCEL: Cancel - -MANAGE_BUCKET_PAGE_LOADING_TEXT: Loading... -MANAGE_BUCKET_PAGE_CUSTOM_URL_SELECT_PLACEHOLDER: Please select a custom domain -MANAGE_BUCKET_PAGE_CUSTOM_URL_INPUT_PLACEHOLDER: Please enter a custom domain -MANAGE_BUCKET_PAGE_UPLOAD_FILES_TOOLTIP: Upload files -MANAGE_BUCKET_PAGE_UPLOAD_FROM_URL_TOOLTIP: Upload from URL -MANAGE_BUCKET_PAGE_CREATE_FOLDER_TOOLTIP: Create folder -MANAGE_BUCKET_PAGE_DOWNLOAD_TOOLTIP: Download page -MANAGE_BUCKET_PAGE_BATCH_RENAME_TOOLTIP: Batch rename -MANAGE_BUCKET_PAGE_BATCH_COPY_URL_TOOLTIP: Batch copy URL -MANAGE_BUCKET_PAGE_COPY_FILE_INFO_TOOLTIP: Copy file information -MANAGE_BUCKET_PAGE_FORCE_REFRESH_TOOLTIP: Force refresh file list -MANAGE_BUCKET_PAGE_SEARCH_PLACEHOLDER: Search files -MANAGE_BUCKET_PAGE_ROOT_FOLDER: Root folder -MANAGE_BUCKET_PAGE_FILE_NUMBER: 'Number of files: ' -MANAGE_BUCKET_PAGE_FILE_SIZE: 'Total size: ' -MANAGE_BUCKET_PAGE_SELECT_ALL: Select all -MANAGE_BUCKET_PAGE_SELECT_NONE: Deselect all -MANAGE_BUCKET_PAGE_SELECT_INVERT: Invert selection -MANAGE_BUCKET_DOWNLOAD_BTN: Download -MANAGE_BUCKET_DELETE_BTN: Delete -MANAGE_BUCKET_SORT_TITLE: Sort -MANAGE_BUCKET_SORT_NAME: Name -MANAGE_BUCKET_SORT_SIZE: Size -MANAGE_BUCKET_SORT_EXT: Type -MANAGE_BUCKET_SORT_TIME: Time -MANAGE_BUCKET_SORT_CHECK: Selected status -MANAGE_BUCKET_SORT_INIT: Init -MANAGE_BUCKET_URL_UPLOAD_DIALOG_TITLE: Please enter URL(s), support multiple URLs separated by line breaks -MANAGE_BUCKET_URL_UPLOAD_DIALOG_CONFIRM: Confirm -MANAGE_BUCKET_URL_UPLOAD_DIALOG_CANCEL: Cancel -MANAGE_BUCKET_URL_FORMAT_MARKDOWN: Markdown -MANAGE_BUCKET_URL_FORMAT_MARKDOWN_WITH_LINK: Markdown-link -MANAGE_BUCKET_URL_FORMAT_URL: Url -MANAGE_BUCKET_URL_FORMAT_HTML: Html -MANAGE_BUCKET_URL_FORMAT_BBCODE: BBCode -MANAGE_BUCKET_URL_FORMAT_CUSTOM: Custom -MANAGE_BUCKET_URL_FORMAT_PRESIGN: Presigned link -MANAGE_BUCKET_FILE_INFO_TITLE: File information -MANAGE_BUCKET_FILE_INFO_COPY_TIPS: Copy in JSON format -MANAGE_BUCKET_FILE_LIST_LOADING: Loading, click to cancel -MANAGE_BUCKET_FILE_LIST_DOWNLOAD_PRE: Preparing to download, click to cancel -MANAGE_BUCKET_KEEP_FOLDER_STRUCTURE: Keep folder structure -MANAGE_BUCKET_NOT_KEEP_FOLDER_STRUCTURE: Do not keep folder structure -MANAGE_BUCKET_UPLOAD_AREA_TITLE: Drag and drop to upload, support recursive upload of folders -MANAGE_BUCKET_UPLOAD_AREA_TEXT: 'Or: click to select file (folders are not supported)' -MANAGE_BUCKET_UPLOAD_AREA_BTN_LOADING: Loading files -MANAGE_BUCKET_UPLOAD_AREA_BTN: Upload -MANAGE_BUCKET_UPLOAD_AREA_CLEAR: Clear -MANAGE_BUCKET_UPLOAD_AREA_STATUS_UPLOADING: Uploading -MANAGE_BUCKET_UPLOAD_AREA_COPY_TASK: Copy upload task information -MANAGE_BUCKET_UPLOAD_AREA_CLEAR_UPLOADED_TASK: Clear completed tasks -MANAGE_BUCKET_UPLOAD_AREA_CLEAR_ALL_TASK: Clear all tasks -MANAGE_BUCKET_UPLOAD_AREA_SUCCESS: Success -MANAGE_BUCKET_UPLOAD_AREA_FAILED: Failed -MANAGE_BUCKET_DOWNLOAD_PAGE_TITLE: Download page -MANAGE_BUCKET_DOWNLOADING: Downloading -MANAGE_BUCKET_DOWNLOAD_COPY_TASK: Copy download task information -MANAGE_BUCKET_DOWNLOAD_CLEAR_DOWNLOADED_TASK: Clear completed tasks -MANAGE_BUCKET_DOWNLOAD_CLEAR_ALL_TASK: Clear all tasks -MANAGE_BUCKET_DOWNLOAD_OPEN_FOLDER: Open download folder -MANAGE_BUCKET_DOWNLOAD_SUCCESS: Success -MANAGE_BUCKET_DOWNLOAD_FAILED: Failed -MANAGE_BUCKET_MARKDOWN_PREVIEW: Preview -MANAGE_BUCKET_PLAY: Play -MANAGE_BUCKET_RENAME_FILE: Rename file -MANAGE_BUCKET_RENAME_FILE_INPUT_A: String or JS regular expression for matching during replacement -MANAGE_BUCKET_RENAME_FILE_INPUT_A_TIPS: Directly enter the regular expression, no need to add / -MANAGE_BUCKET_RENAME_FILE_INPUT_A_PLACEHOLDER: 'For example: ^\d{4}-\d{2}-\d{2} ' -MANAGE_BUCKET_RENAME_FILE_INPUT_B: String for replacement, placeholders from custom -MANAGE_BUCKET_RENAME_FILE_TABLE_IID: Auto-incrementing number -MANAGE_BUCKET_RENAME_FILE_EXT: Replace extension if it matches -MANAGE_BUCKET_RENAME_FILE_EXT_TIPS: Check this option if you want to modify the extension -MANAGE_BUCKET_RENAME_FILE_EXT_YES: 'Yes' -MANAGE_BUCKET_RENAME_FILE_EXT_NO: 'No' -MANAGE_BUCKET_RENAME_FILE_CANCEL: Cancel -MANAGE_BUCKET_RENAME_FILE_CONFIRM: Confirm -MANAGE_BUCKET_COPY_SUCCESS: Copy success -MANAGE_BUCKET_START_LOADING_MESSAGE: Start getting files -MANAGE_BUCKET_END_LOADING_MESSAGE_FAIL: Failed to get file content -MANAGE_BUCKET_CHANGE_CUSTOM_URL_TITLE: Tip -MANAGE_BUCKET_CHANGE_CUSTOM_URL_MSG: Loading file list, please try again later -MANAGE_BUCKET_LAST_PAGE_TITLE: Tip -MANAGE_BUCKET_LAST_PAGE_MSG: This is the last page -MANAGE_BUCKET_GET_LIST_FAIL_TITLE: Tip -MANAGE_BUCKET_GET_LIST_FAIL_MSG: Failed to get file list -MANAGE_BUCKET_GET_LIST_FAIL_MSG2: Getting file list in the background, please do not switch pages -MANAGE_BUCKET_GET_LIST_FAIL_MSG3: Loading file list, please try again later -MANAGE_BUCKET_DOWNLOAD_FOLDER_BOX_TITLE: 'Are you sure you want to download this folder?' -MANAGE_BUCKET_DOWNLOAD_FOLDER_BOX_TIP: Tip -MANAGE_BUCKET_DOWNLOAD_FOLDER_BOX_CONFIRM: Confirm -MANAGE_BUCKET_DOWNLOAD_FOLDER_BOX_CANCEL: Cancel -MANAGE_BUCKET_DOWNLOAD_FOLDER_SUCCESS: Successfully obtained download list -MANAGE_BUCKET_DOWNLOAD_FOLDER_FAIL: Failed to obtain download list -MANAGE_BUCKET_DOWNLOAD_FOLDER_CANCEL: Canceled -MANAGE_BUCKET_CREATE_FOLDER_BOX_TITLE: Please enter the folder name -MANAGE_BUCKET_CREATE_FOLDER_BOX_TIP: Create folder -MANAGE_BUCKET_CREATE_FOLDER_BOX_CONFIRM: Confirm -MANAGE_BUCKET_CREATE_FOLDER_BOX_CANCEL: Cancel -MANAGE_BUCKET_CREATE_FOLDER_ERROR_MSG: Folder name can only contain Chinese, English, numbers, underscores, and slashes -MANAGE_BUCKET_CREATE_FOLDER_SUCCESS: Successfully created, please refresh -MANAGE_BUCKET_CREATE_FOLDER_FAIL: Failed to create -MANAGE_BUCKET_UPLOAD_URL_ERROR_MSQ: Please enter a valid URL -MANAGE_BUCKET_UPLOAD_URL_NOT_TITLE: Tip -MANAGE_BUCKET_UPLOAD_URL_NOT_MSG: Starting background download, automatic upload after success -MANAGE_BUCKET_BATCH_RENAME_ERROR_MSG: Please enter the matching string -MANAGE_BUCKET_BATCH_RENAME_ERROR_MSG2: No matching files found -MANAGE_BUCKET_BATCH_RENAME_ERROR_MSG3: No files need to be renamed -MANAGE_BUCKET_BATCH_RENAME_REPEATED_MSG_A: Detected -MANAGE_BUCKET_BATCH_RENAME_REPEATED_MSG_B: files are duplicated. Do you want to continue? -MANAGE_BUCKET_BATCH_RENAME_REPEATED_MSG_C: Tip -MANAGE_BUCKET_BATCH_RENAME_REPEATED_CONFIRM: Confirm -MANAGE_BUCKET_BATCH_RENAME_REPEATED_CANCEL: Cancel -MANAGE_BUCKET_BATCH_RENAME_RESULT_MSG_A: Rename successful -MANAGE_BUCKET_BATCH_RENAME_RESULT_MSG_B: Failed -MANAGE_BUCKET_BATCH_RENAME_CANCEL: Canceled -MANAGE_BUCKET_BATCH_COPY_INFO_ERROR_MSG: Please select the file first -MANAGE_BUCKET_BATCH_COPY_INFO_MSG_A: Copied -MANAGE_BUCKET_BATCH_COPY_INFO_MSG_B: file(s) information -MANAGE_BUCKET_BATCH_COPY_URL_ERROR_MSG: Please select the file first -MANAGE_BUCKET_BATCH_COPY_URL_MSG_A: Copied -MANAGE_BUCKET_BATCH_COPY_URL_MSG_B: file(s) link -MANAGE_BUCKET_CANCEL_LOADING_TITLE: Stop getting file list? -MANAGE_BUCKET_CANCEL_LOADING_MSG: Tip -MANAGE_BUCKET_CANCEL_LOADING_CONFIRM: Confirm -MANAGE_BUCKET_CANCEL_LOADING_CANCEL: Cancel -MANAGE_BUCKET_CANCEL_LOADING_SUCCESS: File list retrieval has been stopped -MANAGE_BUCKET_CANCEL_DOWNLOAD_LOADING_TITLE: Stop downloading file retrieval? -MANAGE_BUCKET_CANCEL_DOWNLOAD_LOADING_MSG: Prompt -MANAGE_BUCKET_CANCEL_DOWNLOAD_LOADING_CONFIRM: Confirm -MANAGE_BUCKET_CANCEL_DOWNLOAD_LOADING_CANCEL: Cancel -MANAGE_BUCKET_CANCEL_DOWNLOAD_LOADING_SUCCESS: Download file retrieval has been stopped -MANAGE_BUCKET_GET_FILE_BS_NOT_TITLE: Prompt -MANAGE_BUCKET_GET_FILE_BS_NOT_MSG: Successfully retrieved file list -MANAGE_BUCKET_GET_FILE_BS_NOT_MSG2: Some files failed to retrieve -MANAGE_BUCKET_BATCH_DELETE_CONFIRM_TITLE_A: Permanently delete -MANAGE_BUCKET_BATCH_DELETE_CONFIRM_TITLE_B: files, continue? -MANAGE_BUCKET_BATCH_DELETE_CONFIRM_MSG: Prompt -MANAGE_BUCKET_BATCH_DELETE_CONFIRM_CONFIRM: Confirm -MANAGE_BUCKET_BATCH_DELETE_CONFIRM_CANCEL: Cancel -MANAGE_BUCKET_BATCH_DELETE_ERROR_MSG_TITLE: Prompt -MANAGE_BUCKET_BATCH_DELETE_ERROR_MSG_MSG: Deletion failed -MANAGE_BUCKET_BATCH_DELETE_ERROR_MSG_MSG2: Deletion successful -MANAGE_BUCKET_BATCH_DELETE_ERROR_MSG_MSG3: Failed -MANAGE_BUCKET_BATCH_DELETE_CANCEL: Deletion has been cancelled -MANAGE_BUCKET_DELETE_CONFIRM_TITLE: Permanently delete -MANAGE_BUCKET_DELETE_CONFIRM_TITLE_FOLDER: folder -MANAGE_BUCKET_DELETE_CONFIRM_TITLE_FOLDER_A: and all files in this directory -MANAGE_BUCKET_DELETE_CONFIRM_TITLE_FILE: file -MANAGE_BUCKET_DELETE_CONFIRM_TITLE_C: Continue? -MANAGE_BUCKET_DELETE_CONFIRM_MSG: Prompt -MANAGE_BUCKET_DELETE_CONFIRM_CONFIRM: Confirm -MANAGE_BUCKET_DELETE_CONFIRM_CANCEL: Cancel -MANAGE_BUCKET_DELETE_ERROR_MSG_TITLE: Prompt -MANAGE_BUCKET_DELETE_ERROR_MSG_MSG: Deleting a folder may take some time, please be patient -MANAGE_BUCKET_DELETE_SUCCESS: Deletion successful -MANAGE_BUCKET_DELETE_FAIL: Deletion failed -MANAGE_BUCKET_DELETE_CANCEL: Deletion has been cancelled -MANAGE_BUCKET_RENAME_INFO_MSG: The new file name is the same as the original file name, no need to rename -MANAGE_BUCKET_RENAME_SUCCESS: Rename successful -MANAGE_BUCKET_RENAME_ERROR_MSG: Rename failed -MANAGE_BUCKET_DOWNLOAD_COLUMN_FILENAME: File name -MANAGE_BUCKET_DOWNLOAD_COLUMN_FINISHTIME: Completion time -MANAGE_BUCKET_DOWNLOAD_COLUMN_STATUS: Status -MANAGE_BUCKET_DOWNLOAD_COLUMN_STATUS_SUCCESS: Success -MANAGE_BUCKET_DOWNLOAD_COLUMN_STATUS_FAIL: Failed -MANAGE_BUCKET_UPLOAD_COLUMN_FILENAME: File name -MANAGE_BUCKET_UPLOAD_COLUMN_TARGETFILEPATH: Upload path -MANAGE_BUCKET_UPLOAD_COLUMN_FINISHTIME: Completion time -MANAGE_BUCKET_UPLOAD_COLUMN_STATUS: Status -MANAGE_BUCKET_UPLOAD_COLUMN_STATUS_SUCCESS: Success -MANAGE_BUCKET_UPLOAD_COLUMN_STATUS_FAIL: Failed -MANAGE_BUCKET_DOWNLOADING_COLUMN_FILENAME: File name -MANAGE_BUCKET_DOWNLOADING_COLUMN_PROGRESS: Progress -MANAGE_BUCKET_UPLOADING_COLUMN_FILENAME: File name -MANAGE_BUCKET_UPLOADING_COLUMN_PROGRESS: Progress -MANAGE_BUCKET_UPLOADED_COLUMN_FILENAME: File name -MANAGE_BUCKET_UPLOADED_COLUMN_FILESIZE: Size -MANAGE_BUCKET_UPLOADED_COLUMN_FILENUM: Number of files -MANAGE_BUCKET_FILE_COLUMN_FILENAME: FileName -MANAGE_BUCKET_FILE_COLUMN_COPY_URL: Copy link -MANAGE_BUCKET_FILE_COLUMN_INFO: File Info -MANAGE_BUCKET_FILE_COLUMN_FILESIZE: Size -MANAGE_BUCKET_FILE_COLUMN_TIME: Time - -MANAGE_NEW_BUCKET_TCYUN_NAME: Tencent Cloud -MANAGE_NEW_BUCKET_TCYUN_BUCKETNAME_DESC: Bucket Name -MANAGE_NEW_BUCKET_TCYUN_BUCKETNAME_PLACEHOLDER: Please enter the Bucket name -MANAGE_NEW_BUCKET_TCYUN_BUCKETNAME_RULE_MSG_A: Bucket name can't be empty -MANAGE_NEW_BUCKET_TCYUN_BUCKETNAME_RULE_MSG_B: Bucket name length cannot exceed 23 characters -MANAGE_NEW_BUCKET_TCYUN_BUCKETNAME_RULE_MSG_C: Bucket name can only contain lowercase letters, numbers, and hyphens, and cannot begin or end with a hyphen -MANAGE_NEW_BUCKET_TCYUN_REGION: Region -MANAGE_NEW_BUCKET_TCYUN_ACL_DESC: Access Control -MANAGE_NEW_BUCKET_TCYUN_ACL_PUBLIC_RW: Public Read and Write -MANAGE_NEW_BUCKET_TCYUN_ACL_PUBLIC_R: Public Read -MANAGE_NEW_BUCKET_TCYUN_ACL_PRIVATE: Private -MANAGE_NEW_BUCKET_ALIYUN_NAME: Alibaba Cloud -MANAGE_NEW_BUCKET_ALIYUN_BUCKETNAME_DESC: Bucket Name -MANAGE_NEW_BUCKET_ALIYUN_BUCKETNAME_PLACEHOLDER: Please enter the Bucket name -MANAGE_NEW_BUCKET_ALIYUN_BUCKETNAME_RULE_MSG_A: Bucket name can't be empty -MANAGE_NEW_BUCKET_ALIYUN_BUCKETNAME_RULE_MSG_B: Bucket name length cannot exceed 63 characters -MANAGE_NEW_BUCKET_ALIYUN_BUCKETNAME_RULE_MSG_C: Bucket name can only contain lowercase letters, numbers, and hyphens, and cannot begin or end with a hyphen -MANAGE_NEW_BUCKET_ALIYUN_REGION: Region -MANAGE_NEW_BUCKET_ALIYUN_ACL_DESC: Access Control -MANAGE_NEW_BUCKET_ALIYUN_ACL_PUBLIC_RW: Public Read and Write -MANAGE_NEW_BUCKET_ALIYUN_ACL_PUBLIC_R: Public Read -MANAGE_NEW_BUCKET_ALIYUN_ACL_PRIVATE: Private -MANAGE_NEW_BUCKET_QINIU_NAME: Qiniu Cloud -MANAGE_NEW_BUCKET_QINIU_BUCKETNAME_DESC: Bucket Name -MANAGE_NEW_BUCKET_QINIU_BUCKETNAME_PLACEHOLDER: Please enter the Bucket name -MANAGE_NEW_BUCKET_QINIU_BUCKETNAME_RULE_MSG_A: Bucket name can't be empty -MANAGE_NEW_BUCKET_QINIU_BUCKETNAME_RULE_MSG_B: Bucket name length cannot exceed 63 characters -MANAGE_NEW_BUCKET_QINIU_BUCKETNAME_RULE_MSG_C: Bucket names can only contain lowercase letters, numbers, and hyphens, and cannot start or end with a hyphen. -MANAGE_NEW_BUCKET_QINIU_REGION: Region -MANAGE_NEW_BUCKET_QINIU_ACL_DESC: Public Access -MANAGE_NEW_BUCKET_S3PLIST_NAME: S3-Compatible -MANAGE_NEW_BUCKET_S3PLIST_BUCKETNAME_DESC: Bucket Name -MANAGE_NEW_BUCKET_S3PLIST_BUCKETNAME_PLACEHOLDER: Please enter the Bucket name -MANAGE_NEW_BUCKET_S3PLIST_BUCKETNAME_RULE_MSG_A: Bucket name can't be empty -MANAGE_NEW_BUCKET_S3PLIST_REGION: Region -MANAGE_NEW_BUCKET_S3PLIST_ACL_DESC: Access Control -MANAGE_NEW_BUCKET_S3PLIST_ACL_PUBLIC_RW: Public Read and Write -MANAGE_NEW_BUCKET_S3PLIST_ACL_PUBLIC_R: Public Read -MANAGE_NEW_BUCKET_S3PLIST_ACL_PRIVATE: Private -MANAGE_NEW_BUCKET_S3PLIST_ACL_AUTHENTICATED_READ: Authenticated Read -# ---renderer i18n end--- - -# plugins -PLUGIN_INSTALL_SUCCEED: Plugin install succeed -PLUGIN_INSTALL_FAILED: Plugin install failed -PLUGIN_UNINSTALL_SUCCEED: Plugin uninstall succeed -PLUGIN_UNINSTALL_FAILED: Plugin uninstall failed -PLUGIN_UPDATE_SUCCEED: Plugin update succeed -PLUGIN_UPDATE_FAILED: Plugin update failed -PLUGIN_IMPORT_SUCCEED: Plugin import succeed -PLUGIN_IMPORT_FAILED: Plugin import failed -ENABLE_PLUGIN: Enable Plugin -DISABLE_PLUGIN: Disable Plugin -UNINSTALL_PLUGIN: Uninstall Plugin -UPDATE_PLUGIN: Update Plugin - -# tips -TIPS_NOTICE: Tips -TIPS_WARNING: Warning -TIPS_ERROR: Error -TIPS_INSTALL_NODE_AND_RELOAD_PICGO: Please install Node.js and restart PicList to continue -TIPS_PLUGIN_REMOVE_GALLERY_ITEM: Plugin is trying to remove some images from the album gallery, continue? -TIPS_PLUGIN_OVERWRITE_GALLERY: Plugin is trying to overwrite the album gallery, continue? -TIPS_UPLOAD_NOT_PICTURES: The latest clipboard item is not a picture -TIPS_PICGO_CONFIG_FILE_BROKEN_WITH_DEFAULT: PicList config file broken, has been restored to default -TIPS_PICGO_CONFIG_FILE_BROKEN_WITH_BACKUP: PicList config file broken, has been restored to backup -TIPS_PICGO_BACKUP_FILE_VERSION: 'Backup file version: ${v}' -TIPS_CUSTOM_CONFIG_FILE_PATH_ERROR: Custom config file parse error, please check the path content -TIPS_SHORTCUT_MODIFIED_SUCCEED: Shortcut modified successfully -TIPS_SHORTCUT_MODIFIED_CONFLICT: Shortcut conflict, please reset -TIPS_CUSTOM_LINK_STYLE_MODIFIED_SUCCEED: Custom link style modified successfully -TIPS_FIND_NEW_VERSION: Find new version ${v}, update many new features, do you want to download the latest version in the background? -UPDATE_DOWNLOADED: Update downloaded -TIPS_UPDATE_DOWNLOADED: The update has been downloaded and will be installed on the next app restart. Would you like to restart now? -QUIT: Quit +LANG_DISPLAY_LABEL: 'English' +ABOUT: About +OPEN_MAIN_WINDOW: Open Main Window +OPEN_MINI_WINDOW: Open Mini Window +HIDE_MINI_WINDOW: Hide Mini Window +CHOOSE_DEFAULT_PICBED: Choose Default Picbed +OPEN_UPDATE_HELPER: Open Update Helper +RELOAD_APP: Reload App +UPLOAD_FAILED: Upload Failed +UPLOAD_SUCCEED: Upload Succeed +UPLOAD_PROGRESS: Upload Progress +OPERATION_FAILED: Operation Failed +OPERATION_SUCCEED: Operation Succeed +UPLOADING: Uploading +QUICK_UPLOAD: Quick Upload +UPLOAD_BY_CLIPBOARD: Upload by Clipboard +HIDE_WINDOW: Hide Window +SHOW_PICBED_QRCODE: Show Picbed Qrcode +PICBED_QRCODE: Picbed Qrcode +ENABLE: Enable +DISABLE: Disable +CONFIG_THING: Config ${c} +FIND_NEW_VERSION: Find New Version +NO_MORE_NOTICE: No More Notice +SHOW_DEVTOOLS: Show Devtools +FEEDBACK: Feedback +CURRENT_PICBED: Current Picbed +START_WATCH_CLIPBOARD: Start Watch Clipboard +STOP_WATCH_CLIPBOARD: Stop Watch Clipboard +OPEN_TOOLBOX: Open Toolbox +TOOLBOX: Toolbox +TOOLBOX_TITLE: Troubleshoot PicList runtime issues +TOOLBOX_SUB_TITLE: Scan the following items immediately to fix usage issues +TOOLBOX_CHECK_CONFIG_FILE_BROKEN: Check if the configuration file is damaged +TOOLBOX_CHECK_GALLERY_FILE_BROKEN: Check if the album file is damaged +TOOLBOX_CHECK_PROBLEM_WITH_CLIPBOARD_PIC_UPLOAD: Check if there is a problem with clipboard picture upload +TOOLBOX_CHECK_PROBLEM_WITH_PROXY: Check if the proxy settings are normal +TOOLBOX_FIX_DONE_NEED_RELOAD: Repair completed, need to restart to take effect, restart or not +TOOLBOX_CANT_AUTO_FIX: Unable to automatically repair, please repair the following problems yourself +TOOLBOX_START_SCAN: Start scanning +TOOLBOX_RE_SCAN: Re scanning +TOOLBOX_START_FIX: Start fixing +TOOLBOX_SUCCESS_TIPS: Congratulations, no problems were found +TOOLBOX_CHECK_CONFIG_FILE_PATH_TIPS: "The configuration file path is: ${path}" +TOOLBOX_CHECK_CONFIG_FILE_BROKEN_TIPS: The configuration file is damaged +TOOLBOX_CHECK_GALLERY_FILE_PATH_TIPS: "The album file path is: ${path}" +TOOLBOX_CHECK_GALLERY_FILE_BROKEN_TIPS: The album file is damaged +TOOLBOX_CHECK_PROXY_SUCCESS_TIPS: Proxy settings normal +TOOLBOX_CHECK_PROXY_NO_PROXY_TIPS: No proxy settings +TOOLBOX_CHECK_PROXY_PROXY_IS_NOT_CORRECT: Proxy settings incorrect +TOOLBOX_CHECK_PROXY_PROXY_IS_NOT_WORKING: Proxy settings unavailable +TOOLBOX_CHECK_CLIPBOARD_FILE_PATH_TIPS: "The temporary folder path for clipboard pictures is: ${path}" +TOOLBOX_CHECK_CLIPBOARD_FILE_PATH_NOT_EXIST_TIPS: "The temporary folder for clipboard pictures does not exist: ${path}" +TOOLBOX_CHECK_CLIPBOARD_FILE_PATH_ERROR_TIPS: "Please create the folder yourself: ${path}" +MANUAL_PAGE_OPEN_TIP: Please select the way to open the manual +MANUAL_PAGE_OPEN_TIP_TITLE: Tips +MANUAL_PAGE_OPEN_BY_BROWSER: Browser +MANUAL_PAGE_OPEN_BY_BUILD_IN: Built-in Window +MANUAL_PAGE_OPEN_SETTING_TIP: Select the way to open the manual + +# ---renderer i18n begin--- + +CHOOSE_YOUR_DEFAULT_PICBED: 'Choose ${d} as your default picbed:' +UPLOAD_AREA: Upload +UPLOAD_VIEW_HINT: Click to open picbeds settings +MANAGE_PAGE: Manage +GALLERY: Gallery +REFRESH: Refresh +MANUAL: Manual +OPEN_MANUAL_LINK: Manual +OPEN_MANUAL_LINK_HINT: Will open the manual link in your browser, do you want to continue? +PICBEDS_SETTINGS: Picbeds +PICBEDS_MANAGE: Picbeds Manage +PICLIST_SETTINGS: Settings +PLUGIN_SETTINGS: Plugins +PICLIST_SPONSOR_TEXT: If you like it, please don't forget to buy me a cup of coffee. +CHOOSE_PICBED: Choose Picbed +COPY_PICBED_CONFIG: Copy Picbed Config +COPY_PICBED_CONFIG_SUCCEED: Copy Picbed Config Succeed +INPUT: Input +CANCEL: Cancel +CONFIRM: Confirm +RESET_PICBED_CONFIG: Reset +CHOOSE_SHOWED_PICBED: Choose Showed Picbed +CHOOSE_PASTE_FORMAT: Choose Paste Format +SEARCH: Search +COPY: Copy +DELETE: Delete +SELECT_ALL: Select All +CHANGE_IMAGE_URL: Change Image URL +CHANGE_IMAGE_URL_SUCCEED: Change Image URL Succeed +COPY_LINK_SUCCEED: Copy Link Succeed +BATCH_COPY_LINK_SUCCEED: Batch Copy Link Succeed +FILE_RENAME: File Rename +COPY_FILE_PATH: Copy file path +OPEN_FILE_PATH: Open file path +GALLERY_SYNC_DELETE: Cloud Sync Delete +GALLERY_SYNC_DELETE_NOTICE_TITLE: Notice +GALLERY_SYNC_DELETE_NOTICE_SUCCEED: Cloud Delete Succeed +GALLERY_SYNC_DELETE_NOTICE_FAILED: Cloud Delete Failed +GALLERY_CHANGE_URL: Rename +GALLERY_CHANGE_URL_TITLE: Batch Change Image URL +GALLERY_SEARCH_FILENAME: Search by Filename +GALLERY_SEARCH_URL: Search by URL +GALLERY_MATCHED: ' Matched: ' + +UPLOAD_PAGE_COPY_UPLOAD_API: Copy Upload API +UPLOAD_PAGE_IMAGE_PROCESS_NAME: Image Processing +UPLOAD_PAGE_IMAGE_PROCESS_DIALOG_TITLE: Image Processing Settings +UPLOAD_PAGE_IMAGE_PROCESS_ISADDWM: Add Watermark +UPLOAD_PAGE_IMAGE_PROCESS_WMTYPE: Watermark Type +UPLOAD_PAGE_IMAGE_PROCESS_WMTYPE_TEXT: Text +UPLOAD_PAGE_IMAGE_PROCESS_WMTYPE_IMAGE: Image +UPLOAD_PAGE_IMAGE_PROCESS_ISFULLSCREEN_WM: Full-Screen Watermark +UPLOAD_PAGE_IMAGE_PROCESS_WMDEGREE: Watermark Angle +UPLOAD_PAGE_IMAGE_PROCESS_WMTEXT: Watermark Text +UPLOAD_PAGE_IMAGE_PROCESS_WMTEXT_FONT_PATH: Watermark Font Path (download font file for the first time) +UPLOAD_PAGE_IMAGE_PROCESS_WMRATIO: Watermark Size Ratio +UPLOAD_PAGE_IMAGE_PROCESS_WMCOLOR: Watermark Color, Please select from the color picker +UPLOAD_PAGE_IMAGE_PROCESS_WMPATH: Watermark Image Path (leave blank to use default image) +UPLOAD_PAGE_IMAGE_PROCESS_WMPOSITION: Watermark Position +UPLOAD_PAGE_IMAGE_PROCESS_ISREMOVEEXIF: Remove EXIF Info +UPLOAD_PAGE_IMAGE_PROCESS_QUALITY: Compression Quality +UPLOAD_PAGE_IMAGE_PROCESS_ISCONVERT: Convert Format +UPLOAD_PAGE_IMAGE_PROCESS_CONVERTFORMAT: Destination Format +UPLOAD_PAGE_IMAGE_PROCESS_CONVERTFORMAT_SPECIFIC: 'Specific Format, Please enter in json format, e.g. {"png": "jpg"}' +UPLOAD_PAGE_IMAGE_PROCESS_ISFLIP: Whether to flip vertically +UPLOAD_PAGE_IMAGE_PROCESS_ISFLOP: Whether to flip horizontally +UPLOAD_PAGE_IMAGE_PROCESS_ISRESIZE: Resize to fixed size +UPLOAD_PAGE_IMAGE_PROCESS_RESIZEWIDTH: Width(Set to 0 to scale by height) +UPLOAD_PAGE_IMAGE_PROCESS_RESIZEHEIGHT: Height(Set to 0 to scale by width) +UPLOAD_PAGE_IMAGE_PROCESS_SKIPRESIZEOfSMALLIMG_HEIGHT: Skip resize when image height is smaller than target height +UPLOAD_PAGE_IMAGE_PROCESS_SKIPRESIZEOfSMALLIMG_WIDTH: Skip resize when image width is smaller than target width +UPLOAD_PAGE_IMAGE_PROCESS_ISRESIZEBYPERCENT: Resize by percentage (Higher priority) +UPLOAD_PAGE_IMAGE_PROCESS_RESIZEPERCENT: Resize Percentage, enter 50 for 50% +UPLOAD_PAGE_IMAGE_PROCESS_ISROTATE: Rotate +UPLOAD_PAGE_IMAGE_PROCESS_ROTATEDEGREE: Rotation Angle +UPLOAD_PAGE_IMAGE_PROCESS_CONFIRM: Save +UPLOAD_PAGE_IMAGE_PROCESS_CANCEL: Cancel +UPLOAD_PAGE_IMAGE_PROCESS_POSITION_TOP: top +UPLOAD_PAGE_IMAGE_PROCESS_POSITION_BOTTOM: bottom +UPLOAD_PAGE_IMAGE_PROCESS_POSITION_LEFT: left +UPLOAD_PAGE_IMAGE_PROCESS_POSITION_RIGHT: right +UPLOAD_PAGE_IMAGE_PROCESS_POSITION_TOP_LEFT: top left +UPLOAD_PAGE_IMAGE_PROCESS_POSITION_TOP_RIGHT: top right +UPLOAD_PAGE_IMAGE_PROCESS_POSITION_BOTTOM_LEFT: bottom left +UPLOAD_PAGE_IMAGE_PROCESS_POSITION_BOTTOM_RIGHT: bottom right +UPLOAD_PAGE_IMAGE_PROCESS_POSITION_CENTER: center +UPLOAD_SHORT_URL: Short +UPLOAD_NORMAL_URL: Long +# settings + +SETTINGS: Settings +SETTINGS_OPEN_CONFIG_FILE: Open Config File +SETTINGS_MIGRATE_FROM_PICGO: Migrate from PicGo +SETTINGS_MIGRATE_FROM_PICGO_TITLE: Notice +SETTINGS_MIGRATE_FROM_PICGO_CONTENT: Migrate from PicGo will overwrite your current settings and gallery, do you want to continue? +SETTINGS_MIGRATE_FROM_PICGO_SUCCESS: Import succeed, please restart PicList +SETTINGS_MIGRATE_FROM_PICGO_FAILED: Import failed +SETTINGS_START_MODE: Default Start Mode +SETTINGS_START_MODE_MINI: Mini Window +SETTINGS_START_MODE_MAIN: Main Window +SETTINGS_START_MODE_NO_TRAY: No Tray +SETTINGS_START_MODE_QUIET: Quiet Mode +SETTINGS_CLICK_TO_OPEN: Click to Open +SETTINGS_SET_LOG_FILE: Set Log File +SETTINGS_CLICK_TO_SET: Click to Set +SETTINGS_CLICK_TO_CHECK: Click to Check +SETTINGS_SET_SHORTCUT: Set Shortcut +SETTINGS_CUSTOM_LINK_FORMAT: Custom Link Format +SETTINGS_SET_PROXY_AND_MIRROR: Set Proxy and Mirror +SETTINGS_SET_SERVER: Set Server +SETTINGS_CHECK_UPDATE: Check Update +SETTINGS_OPEN_UPDATE_HELPER: Open Update Helper +SETTINGS_OPEN: Open +SETTINGS_CLOSE: Close +SETTINGS_CLOSE_MINI_WINDOW_SYNC: Close Mini Window When open Main Window +SETTINGS_CLOSE_MAIN_WINDOW_SYNC: Close Main Window When open Mini Window +SETTINGS_ACCEPT_BETA_UPDATE: Accept Beta Update +SETTINGS_LAUNCH_ON_BOOT: Launch On Boot +SETTINGS_RENAME_BEFORE_UPLOAD: Manual Rename +SETTINGS_TIMESTAMP_RENAME: Timestamp Rename +SETTINGS_ADVANCED_RENAME: Advanced Rename +SETTINGS_ADVANCED_RENAME_ENABLE: Enable Advanced Rename +SETTINGS_ADVANCED_RENAME_FORMAT: Advanced Rename Format +SETTINGS_OPEN_UPLOAD_TIPS: Open Upload Tips +SETTINGS_OPEN_UPLOAD_RESULT_TIPS: Open Upload Result Tips +SETTINGS_MINI_WINDOW_ON_TOP: Mini Window On Top +SETTINGS_AUTO_COPY_URL_AFTER_UPLOAD: Auto Copy URL After Upload +SETTINGS_TIPS_PLACEHOLDER_URL: Use $url to represent url position +SETTINGS_TIPS_PLACEHOLDER_FILENAME: Use $fileName to represent file name position +SETTINGS_TIPS_PLACEHOLDER_EXTNAME: Use $extName to represent file's ext position +SETTINGS_TIPS_SUCH_AS: 'Such as: $url/$fileName' +SETTINGS_UPLOAD_PROXY: Upload Proxy +SETTINGS_PLUGIN_INSTALL_PROXY: Proxy for Plugin Install +SETTINGS_PLUGIN_INSTALL_MIRROR: Mirror for Plugin Install +SETTINGS_CURRENT_VERSION: Current Version +SETTINGS_NEWEST_VERSION: Newest Version +SETTINGS_GETING: Getting... +SETTINGS_TIPS_HAS_NEW_VERSION: PicList has a new version, please click confirm to restart +SETTINGS_LOG_FILE_PATH: Log File Path +SETTINGS_CONFIG_FILE_PATH: Config File Path +SETTINGS_LOG_FILE: Log File +SETTINGS_GUI_LOG_FILE: GUI Log File +SETTINGS_MANAGE_LOG_FILE: Manage Log File +SETTINGS_LOG_LEVEL: Log Level +SETTINGS_LOG_FILE_SIZE: Log File Size +SETTINGS_SET_PICGO_SERVER: Set PicGo Server +SETTINGS_TIPS_SERVER_NOTICE: If you don't know what is the server's function, please read the document, or don't modify the configuration. +SETTINGS_ENABLE_SERVER: Enable Server +SETTINGS_SET_SERVER_HOST: Set Server Host +SETTINGS_SET_SERVER_PORT: Set Server Port +SETTINGS_SET_SERVER_KEY: Set Auth Key +SETTINGS_SET_WEB_SERVER: Set Web Server +SETTINGS_TIPS_WEB_SERVER_NOTICE: If you don't know what is the web server's function, please read the document, or don't modify the configuration. +SETTINGS_SET_ENABLE_WEB_SERVER: Enable Web Server +SETTINGS_SET_WEB_SERVER_HOST: Set Web Server Host +SETTINGS_SET_WEB_SERVER_PORT: Set Web Server Port +SETTINGS_SET_WEB_SERVER_PATH: Set Web Server Path +SETTINGS_TIP_PLACEHOLDER_WEB_HOST: Default:127.0.0.1 +SETTINGS_TIP_PLACEHOLDER_WEB_PORT: Default:37777 +SETTINGS_TIP_PLACEHOLDER_HOST: Default:127.0.0.1 +SETTINGS_TIP_PLACEHOLDER_PORT: Default:36677 +SETTINGS_TIP_PLACEHOLDER_KEY: This key is used to avoid malicious requests, through urlParams '?key=xxx' to pass +SETTINGS_SET_SERVER_AES_KEY: Set AES Key for server response +SETTINGS_LOG_LEVEL_ALL: All +SETTINGS_LOG_LEVEL_SUCCESS: Success +SETTINGS_LOG_LEVEL_ERROR: Error +SETTINGS_LOG_LEVEL_INFO: Info +SETTINGS_LOG_LEVEL_WARN: Warn +SETTINGS_LOG_LEVEL_NONE: None +SETTINGS_RESULT: Result +SETTINGS_DEFAULT_PICBED: Default Picbed +SETTINGS_SET_DEFAULT_PICBED: Set Default Picbed +SETTINGS_NOT_CONFIG_OPTIONS: Not Config Options +SETTINGS_USE_BUILTIN_CLIPBOARD_UPLOAD: Use Builtin Clipboard to Upload +SETTINGS_CHOOSE_LANGUAGE: Choose Language +UPLOADER_CONFIG_NAME: Configuration Name +UPLOADER_CONFIG_PLACEHOLDER: Please Enter Configuration Name +SELECTED_SETTING_HINT: Selected +SETTINGS_MAIN_WINDOW_SIZE: Default Main Window Size +SETTINGS_MAIN_WINDOW_WIDTH: Default Main Window Width +SETTINGS_MAIN_WINDOW_WIDTH_HINT: 'Default: 1200' +SETTINGS_MAIN_WINDOW_WIDTH_RULE: Window Height must be greater than 100 +SETTINGS_MAIN_WINDOW_HEIGHT: Default Main Window Height +SETTINGS_MAIN_WINDOW_HEIGHT_HINT: 'Default: 800' +SETTINGS_MAIN_WINDOW_HEIGHT_RULE: Window Height must be greater than 100 +SETTINGS_RAW_PICGO_SIZE: Raw PicGo Size +SETTINGS_CUSTOM_MINI_ICON_PATH: Custom Mini Window Icon Path +SETTINGS_CUSTOM_MINI_ICON: Custom Mini Window Icon +SETTINGS_COMPRESS_AND_WATERMARK: Compress and Watermark +SETTINGS_SYNC_DELETE_CLOUD: Sync delete from cloud storage of gallery +SETTINGS_ISHIDEDOCK: Hide Dock Icon +SETTINGS_ISHIDEDOCK_TIPS: Not support hide dock and tray at the same time +SETTINGS_ENCODE_OUTPUT_URL: Encode Output(or Copyed) URL +SETTINGS_WATCH_CLIPBOARD: Watch clipboard when software start +SETTINGS_SHORT_URL: Use short url +SETTINGS_SHORT_URL_SERVER: Short url server +SETTINGS_SHORT_URL_C1N_TOKEN: C1N Token +SETTINGS_SHORT_URL_YOURLS_DOMAIN: YOURLS domain +SETTINGS_SHORT_URL_YOURLS_SIGNATURE: YOURLS signature +SETTINGS_SHORT_URL_CF_WORKER_HOST: Cloudflare Worker Host +SETTINGS_DELETE_LOCAL_FILE_AFTER_UPLOAD: Delete local file after upload +SETTINGS_SYNC_CONFIG: Settings Sync Configuration +SETTINGS_SYNC_CONFIG_TITLE: Sync Settings +SETTINGS_SYNC_CONFIG_NOTE: The files to be synchronized are configuration files. +SETTINGS_SYNC_CONFIG_SELECT_TYPE: Select sync method +SETTINGS_SYNC_CONFIG_SELECT_FILE: Select files to sync +SETTINGS_SYNC_CONFIG_SELECT_CONFIG: Configuration files only +SETTINGS_SYNC_CONFIG_SELECT_GALLERY: Gallery files only +SETTINGS_SYNC_CONFIG_SELECT_BOTH: Both configuration and gallery files +SETTINGS_SYNC_CONFIG_GITEA_HOST: Gitea Host +SETTINGS_SYNC_CONFIG_GITHUB_USERNAME: username +SETTINGS_SYNC_CONFIG_GITEA_USERNAME: username +SETTINGS_SYNC_CONFIG_GITEE_USERNAME: username +SETTINGS_SYNC_CONFIG_GITHUB_REPO: repository (private) +SETTINGS_SYNC_CONFIG_GITEA_REPO: repository +SETTINGS_SYNC_CONFIG_GITEE_REPO: repository path +SETTINGS_SYNC_CONFIG_GITHUB_BRANCH: branch +SETTINGS_SYNC_CONFIG_GITEA_BRANCH: branch +SETTINGS_SYNC_CONFIG_GITEE_BRANCH: branch +SETTINGS_SYNC_CONFIG_GITHUB_TOKEN: Token +SETTINGS_SYNC_CONFIG_GITEA_TOKEN: Token +SETTINGS_SYNC_CONFIG_GITEE_TOKEN: Token +SETTINGS_SYNC_CONFIG_PROXY: Proxy +SETTINGS_SYNC_CONFIG_INTERVAL: Interval(min) +SETTINGS_SYNC_CONFIG_GITHUB_USERNAME_PLACEHOLDER: Please enter GitHub username +SETTINGS_SYNC_CONFIG_GITEA_USERNAME_PLACEHOLDER: Please enter Gitea username +SETTINGS_SYNC_CONFIG_GITEE_USERNAME_PLACEHOLDER: Please enter Gitee username +SETTINGS_SYNC_CONFIG_GITHUB_REPO_PLACEHOLDER: Please enter GitHub repository name +SETTINGS_SYNC_CONFIG_GITEA_REPO_PLACEHOLDER: Please enter Gitea repository name +SETTINGS_SYNC_CONFIG_GITEE_REPO_PLACEHOLDER: Please enter Gitee repository name +SETTINGS_SYNC_CONFIG_GITHUB_BRANCH_PLACEHOLDER: Please enter GitHub branch name +SETTINGS_SYNC_CONFIG_GITEE_BRANCH_PLACEHOLDER: Please enter Gitee branch name +SETTINGS_SYNC_CONFIG_GITEA_BRANCH_PLACEHOLDER: Please enter Gitea branch name +SETTINGS_SYNC_CONFIG_GITHUB_TOKEN_PLACEHOLDER: Please enter GitHub Token +SETTINGS_SYNC_CONFIG_GITEA_TOKEN_PLACEHOLDER: Please enter Gitea Token +SETTINGS_SYNC_CONFIG_GITEE_TOKEN_PLACEHOLDER: Please enter Gitee Token +SETTINGS_SYNC_CONFIG_PROXY_PLACEHOLDER: Please enter proxy +SETTINGS_UP_DOWN_DESC: Upload and download configuration files +SETTINGS_UP_DOWN_TITLE: Please use this after filled the synchronization configuration +SETTINGS_SYNC_UPLOAD: Upload +SETTINGS_SYNC_DOWNLOAD: Download +SETTINGS_SYNC_UPLOAD_ALL: Upload all +SETTINGS_SYNC_DOWNLOAD_ALL: Download all +SETTINGS_SYNC_UPLOAD_SUCCESS: Successfully uploaded +SETTINGS_SYNC_UPLOAD_FAILED: Upload failed +SETTINGS_SYNC_DOWNLOAD_SUCCESS: Successfully downloaded +SETTINGS_SYNC_DOWNLOAD_FAILED: Download failed +SETTINGS_SYNC_COMMON_CONFIG: Common configuration +SETTINGS_SYNC_MANAGE_CONFIG: Manage configuration +SETTINGS_AUTO_IMPORT: Auto import config in manage page +SETTINGS_AUTO_IMPORT_SELECT_PICBED: Select picbed +SETTINGS_TAB_SYSTEM: System +SETTINGS_TAB_SYNC_CONFIG: Configuration +SETTINGS_TAB_UPLOAD: Upload +SETTINGS_TAB_ADVANCED: Advanced +SETTINGS_TAB_UPDATE: Update +# shortcut-page + +BUILTIN_CLIPBOARD_TIPS: Use builtin clipboard function to upload instead of using scripts +SHORTCUT_NAME: Shortcut Name +SHORTCUT_BIND: Shortcut Binding +SHORTCUT_STATUS: Status +SHORTCUT_ENABLED: Enabled +SHORTCUT_DISABLED: Disabled +SHORTCUT_SOURCE: Source +SHORTCUT_HANDLE: Handle +SHORTCUT_ENABLE: Enable +SHORTCUT_DISABLE: Disable +SHORTCUT_EDIT: Edit +SHORTCUT_CHANGE_UPLOAD: Change Upload Shortcut + +# tray-page + +WAIT_TO_UPLOAD: Wait to Upload +ALREADY_UPLOAD: Already Uploaded + +# upload-page + +PICTURE_UPLOAD: Picture Upload +DRAG_FILE_TO_HERE: Drag file to here, or +CLICK_TO_UPLOAD: click to upload +LINK_FORMAT: Link Format +CUSTOM: Custom +CLIPBOARD_PICTURE: Clipboard +TIPS_DRAG_VALID_PICTURE_OR_URL: Drag valid picture or url to here +TIPS_INPUT_URL: Input URL +TIPS_HTTP_PREFIX: http:// or https:// +TIPS_INPUT_VALID_URL: Input valid URL + +# plugins + +PLUGIN_SEARCH_PLACEHOLDER: Search picgo plugins on npm, or click the button to view the awesome plugins list +PLUGIN_INSTALL: Install +PLUGIN_INSTALLING: Installing... +PLUGIN_INSTALLED: Installed +PLUGIN_DOING_SOMETHING: Doing... +PLUGIN_LIST: Plugin List +PLUGIN_IMPORT_LOCAL: Import Local Plugins +PLUGIN_UPDATE_ALL: Update All Plugins + +# tips + +TIPS_REMOVE_LINK: This operation will remove the picture from the album, continue? +TIPS_WILL_REMOVE_CHOOSED_IMAGES: This operation will remove the picture from the album, continue? +TIPS_MUST_CONTAINS_URL: Must contains $url or $fileName or $extName +TIPS_NETWORK_ERROR: Network Error +TIPS_NEED_RELOAD: Need Reload App +TIPS_PLEASE_CHOOSE_LOG_LEVEL: Please choose log level +TIPS_SET_SUCCEED: Set successfully +TIPS_RESET_SUCCEED: Reset successfully +TIPS_PLUGIN_NOT_GUI_IMPLEMENT: This plugin is not optimized for the GUI, continue? +TIPS_CLICK_NOTIFICATION_TO_RELOAD: Click notification to reload app +TIPS_GET_PLUGIN_LIST_FAILED: Get plugin list failed + +# manage page + +# manageSetting + +MANAGE_SETTING_TITLE: Manage Setting +MANAGE_SETTING_ISAUTOREFRESH_TITLE: Auto refresh file list when entering new directory +MANAGE_SETTING_ISAUTOREFRESH_TIPS: Only applies to non-paginated mode, data is cached to indexdb to speed up loading speed +MANAGE_SETTING_CLEAR_CACHE_TITLE: 'Clear file list cache database, currently in use:' +MANAGE_SETTING_CLEAR_CACHE_FREE_TITLE: 'Available:' +MANAGE_SETTING_CLEAR_CACHE_TIPS: After clearing, the file list will be reloaded when entering a new directory next time +MANAGE_SETTING_CLEAR_CACHE_PROMPT: Are you sure you want to clear the file list cache database? +MANAGE_SETTING_CLEAR_CACHE_BUTTON: Clear +MANAGE_SETTING_ISSHOWTHUMBNAIL_TITLE: Display the original image instead of format icon (requires public access permissions) +MANAGE_SETTING_ISSHOWLIST_TITLE: Default display mode for the file list +MANAGE_SETTING_ISSHOWLIST_ON: List +MANAGE_SETTING_ISSHOWLIST_OFF: Card +MANAGE_SETTING_ISFORCECUSTOMURLHTTPS_TITLE: Force custom URL to use HTTPS +MANAGE_SETTING_ISFORCECUSTOMURLHTTPS_TIPS: After enabling, all operations will automatically add the https prefix to custom domains +MANAGE_SETTING_ISUPLOADKEEPDIRSTRUCTURE_TITLE: Preserve directory structure when uploading +MANAGE_SETTING_ISUPLOADKEEPDIRSTRUCTURE_TIPS: After disabling, all files will be expanded to the specified directory +MANAGE_SETTING_ISDOWNLOADFILEKEEPDIRSTRUCTURE_TITLE_A: Download +MANAGE_SETTING_ISDOWNLOADFILEKEEPDIRSTRUCTURE_TITLE_B: ' File ' +MANAGE_SETTING_ISDOWNLOADFILEKEEPDIRSTRUCTURE_TITLE_C: will preserve the directory structure +MANAGE_SETTING_ISDOWNLOADFOLDERKEEPDIRSTRUCTURE_TITLE_D: ' Folder ' +MANAGE_SETTING_ISDOWNLOADFILEKEEPDIRSTRUCTURE_TIPS: After enabling, the original directory structure will be preserved +MANAGE_SETTING_MAX_DOWNLOAD_FILE_SIZE_TITLE: Maximum number of files to download simultaneously (1-9999) +MANAGE_SETTING_MAX_DOWNLOAD_FILE_SIZE_TIPS: Not work on Tencent +MANAGE_SETTING_MAX_DOWNLOAD_FILE_SIZE_INPUT_TIPS: Please enter the maximum number of files to download simultaneously +MANAGE_SETTING_ISIGNORECASE_TITLE: Should file search be case-insensitive +MANAGE_SETTING_ISIGNORECASE_TIPS: After enabling, the search will be case-insensitive +MANAGE_SETTING_TIMESTAMPRENAME_TITLE: Rename uploaded files with timestamp - (highest priority) +MANAGE_SETTING_TIMESTAMPRENAME_TIPS: After enabling, the uploaded file will be renamed with the timestamp +MANAGE_SETTING_RANDOMSTRINGRENAME_TITLE: Rename uploaded files with random strings - (medium priority) +MANAGE_SETTING_RANDOMSTRINGRENAME_TIPS: Random string length is 20 +MANAGE_SETTING_CUSTOMRENAME_TITLE: Rename uploaded files with custom names - (lowest priority) +MANAGE_SETTING_CUSTOMRENAME_TIPS: After enabling, the uploaded file will be renamed with the custom pattern +MANAGE_SETTING_CUSTOM_PATTERN_TITLE: Custom rename format, placeholders can be freely combined, please refer to the table below +MANAGE_SETTING_CUSTOM_PATTERN_TIPS: Please enter the custom rename format +MANAGE_SETTING_CUSTOM_PATTERN_TABLE_TITLE: Placeholder +MANAGE_SETTING_CUSTOM_PATTERN_TABLE_TIPS: Description +MANAGE_SETTING_PRESIGNED_URL_EXPIRE_TITLE: Presigned URL expiration time (seconds) +MANAGE_SETTING_PRESIGNED_URL_EXPIRE_TIPS: Please enter the presigned URL expiration time +MANAGE_SETTING_CHOOSE_COPY_FORMAT_TITLE: Select default link format for copying +MANAGE_SETTING_CHOOSE_COPY_FORMAT_MARKDOWN: Markdown +MANAGE_SETTING_CHOOSE_COPY_FORMAT_MARKDOWN_WITH_LINK: Markdown with link +MANAGE_SETTING_CHOOSE_COPY_FORMAT_RAWURL: Raw URL +MANAGE_SETTING_CHOOSE_COPY_FORMAT_HTML: HTML +MANAGE_SETTING_CHOOSE_COPY_FORMAT_BBCODE: BBCode +MANAGE_SETTING_CHOOSE_COPY_FORMAT_CUSTOM: Custom +MANAGE_SETTING_CUSTOM_COPY_FORMAT_TITLE: Custom link format($url -> raw url, $fileName -> raw fileName) +MANAGE_SETTING_CUSTOM_COPY_FORMAT_TIPS: Please enter the custom link format +MANAGE_SETTING_CHOOSE_DOWNLOAD_FOLDER_TITLE: Choose default download folder +MANAGE_SETTING_CHOOSE_DOWNLOAD_FOLDER_TIPS: System default download directory +MANAGE_SETTING_CHOOSE_DOWNLOAD_FOLDER_BUTTON: Choose folder +MANAGE_SETTING_COPY_MESSAGE: Copied +MANAGE_SETTING_CLEAR_CACHE_SUCCESS: Cleared successfully +MANAGE_SETTING_CLEAR_CACHE_FAILED: Clear failed +MANAGE_SETTING_ISENCODEURL_TITLE: Encode URL when copy +MANAGE_SETTING_ISENCODEURL_TIPS: After enabling, the URL will be encoded when copying +# Empty +MANAGE_NO_DATA: No data + +# Main Page +MANAGE_MAIN_PAGE_NEW_BUCKET: New Bucket +MANAGE_MAIN_PAGE_BACK_TO_HOME: Home +MANAGE_MAIN_PAGE_SWITCH_PICBED: Switch +MANAGE_MAIN_PAGE_SETTING: Setting +MANAGE_MAIN_PAGE_SUBMIT: Submit +MANAGE_MAIN_PAGE_TIPS: Tips +MANAGE_MAIN_PAGE_TIPS_SUCCESS: Created successfully +MANAGE_MAIN_PAGE_TIPS_FAILED: Create failed +MANAGE_MAIN_PAGE_BUCKET: Bucket +MANAGE_MAIN_PAGE_GALLERY: Album +MANAGE_MAIN_PAGE_REPOSITORY: Repo + +# manage constant +MANAGE_CONSTANT_BASE_RULE: 'Please enter ' +MANAGE_CONSTANT_ITEMS_PAGE_RULE_MESSAGE_A: Please enter the number of items displayed per page. +MANAGE_CONSTANT_ITEMS_PAGE_RULE_MESSAGE_B: The number of items displayed per page must be a number. +MANAGE_CONSTANT_ITEMS_PAGE_RULE_MESSAGE_C: The number of items displayed per page must be between 20 and 1000. +MANAGE_CONSTANT_ALIAS_RULE_MESSAGE_A: Please enter the alias, which is the unique identifier for this configuration. +MANAGE_CONSTANT_ALIAS_RULE_MESSAGE_B: The alias can only contain Chinese, English, numbers, underscores, and hyphens. +MANAGE_CONSTANT_ALIAS_TOOLTIP: The alias can only contain Chinese, English, numbers, underscores, and hyphens. +MANAGE_CONSTANT_ITEMS_PAGE_TOOLTIP: The number of items displayed per page must be between 20 and 1000. +MANAGE_CONSTANT_PAGING_TOOLTIP: When paging is turned off, the directory list will use database caching to optimize performance. +MANAGE_CONSTANT_BUCKET_NAME_TOOLTIP: Separated by commas, e.g., bucket1,bucket2,bucket3, and corresponding to the starting directory order one by one. +MANAGE_CONSTANT_BASE_DIR_TOOLTIP: 'Separated by commas, e.g., /dir1,/dir2,/dir3, corresponding to the storage bucket order one by one.' +MANAGE_CONSTANT_IS_AUTO_CUSTOM_URL_TOOLTIP: When turned on, the domainbound to bucket will be automatically obtained. Else, it can be manually filled in. + +MANAGE_CONSTANT_SMMS_ALIAS_DESC: Alias - required +MANAGE_CONSTANT_SMMS_ALIAS_PLACEHOLDER: Unique identifier of this configuration +MANAGE_CONSTANT_SMMS_TOKEN_DESC: Token - required +MANAGE_CONSTANT_SMMS_TOKEN_PLACEHOLDER: Please fill in your token +MANAGE_CONSTANT_SMMS_PAGING_DESC: Whether to enable pagination +MANAGE_CONSTANT_SMMS_EXPLAIN: 'For users in mainland China, please visit the backup domain https://smms.app. Do not upload images in large quantities.' +MANAGE_CONSTANT_SMMS_REFER_TEXT: 'Refer to: ' + +MANAGE_CONSTANT_QINIU_NAME: Qiniu +MANAGE_CONSTANT_QINIU_ALIAS_DESC: Alias - Required +MANAGE_CONSTANT_QINIU_ALIAS_PLACEHOLDER: Unique identifier for this configuration +MANAGE_CONSTANT_QINIU_ACCESS_KEY_DESC: accessKey - Required +MANAGE_CONSTANT_QINIU_ACCESS_KEY_PLACEHOLDER: Please enter the accessKey +MANAGE_CONSTANT_QINIU_SECRET_KEY_DESC: secretKey - Required +MANAGE_CONSTANT_QINIU_SECRET_KEY_PLACEHOLDER: Please enter the secretKey +MANAGE_CONSTANT_QINIU_BUCKET_DESC: space name - Optional +MANAGE_CONSTANT_QINIU_BUCKET_PLACEHOLDER: 'English comma separated, for example: bucket1, bucket2' +MANAGE_CONSTANT_QINIU_BASE_DIR_DESC: Base directory - Optional +MANAGE_CONSTANT_QINIU_BASE_DIR_PLACEHOLDER: 'English comma separated, for example: /dir1, /dir2' +MANAGE_CONSTANT_QINIU_IS_AUTO_CUSTOM_URL_DESC: Automatically get the bound domain name +MANAGE_CONSTANT_QINIU_PAGING_DESC: Enable pagination +MANAGE_CONSTANT_QINIU_ITEMS_PAGE_DESC: Number of items displayed per page +MANAGE_CONSTANT_QINIU_EXPLAIN: When configuring space name and base directory, they can be set using English comma separation. The order must be consistent and missing or empty items will use the default value. +MANAGE_CONSTANT_QINIU_REFER_TEXT: 'Refer to: ' + +MANAGE_CONSTANT_GITHUB_ALIAS_DESC: Alias - Required +MANAGE_CONSTANT_GITHUB_ALIAS_PLACEHOLDER: Unique identifier for this configuration +MANAGE_CONSTANT_GITHUB_TOKEN_DESC: Token - Required +MANAGE_CONSTANT_GITHUB_TOKEN_PLACEHOLDER: Please enter the Token +MANAGE_CONSTANT_GITHUB_TOKEN_TIPS: 'Please provide a token with full repo permissions' +MANAGE_CONSTANT_GITHUB_USER_DESC: Username - Required +MANAGE_CONSTANT_GITHUB_USER_PLACEHOLDER: Please enter the Username +MANAGE_CONSTANT_GITHUB_USER_RULE_MESSAGE: Username +MANAGE_CONSTANT_GITHUB_PROXY_DESC: Proxy address - Optional +MANAGE_CONSTANT_GITHUB_PROXY_PLACEHOLDER: 'For example: http://127.0.0.1:1080' +MANAGE_CONSTANT_GITHUB_PROXY_TIPS: 'If the access speed is slow, you can try configuring a proxy' +MANAGE_CONSTANT_GITHUB_PAGING_DESC: Enable pagination +MANAGE_CONSTANT_GITHUB_CUSTOM_URL_DESC: CDN acceleration domain name - Optional +MANAGE_CONSTANT_GITHUB_CUSTOM_URL_PLACEHOLDER: 'Support using {username}, {repo}, {branch}, and {path} as replacement placeholders' +MANAGE_CONSTANT_GITHUB_CUSTOM_URL_TIPS: 'For example: https://cdn.staticaly.com/gh/{username}/{repo}@{branch}/{path}' +MANAGE_CONSTANT_GITHUB_CUSTOM_URL_RULE_MESSAGE_A: 'The acceleration domain name must start with http:// or https://' +MANAGE_CONSTANT_GITHUB_CUSTOM_URL_RULE_MESSAGE_B: The braces in the acceleration domain name must appear in pairs +MANAGE_CONSTANT_GITHUB_EXPLAIN: There is an hourly limit for API calls, and uploading files larger than 100M is not supported +MANAGE_CONSTANT_GITHUB_REFER_TEXT: 'Refer to:' + +MANAGE_CONSTANT_ALIYUN_NAME: Ali Cloud +MANAGE_CONSTANT_ALIYUN_ALIAS_DESC: Alias - required +MANAGE_CONSTANT_ALIYUN_ALIAS_PLACEHOLDER: The unique identifier of this configuration +MANAGE_CONSTANT_ALIYUN_ACCESS_KEY_ID_DESC: AccessKeyId - required +MANAGE_CONSTANT_ALIYUN_ACCESS_KEY_ID_PLACEHOLDER: Please fill in AccessKeyId +MANAGE_CONSTANT_ALIYUN_ACCESS_KEY_SECRET_DESC: AccessKeySecret - required +MANAGE_CONSTANT_ALIYUN_ACCESS_KEY_SECRET_PLACEHOLDER: Please fill in AccessKeySecret +MANAGE_CONSTANT_ALIYUN_BUCKET_DESC: Bucket name - optional +MANAGE_CONSTANT_ALIYUN_BUCKET_PLACEHOLDER: 'Separated by commas in English, for example: bucket1, bucket2' +MANAGE_CONSTANT_ALIYUN_BASE_DIR_DESC: Base directory - optional +MANAGE_CONSTANT_ALIYUN_BASE_DIR_PLACEHOLDER: 'Separated by commas in English, for example: /dir1, /dir2' +MANAGE_CONSTANT_ALIYUN_IS_AUTO_CUSTOM_URL_DESC: Automatically obtain bound domain name +MANAGE_CONSTANT_ALIYUN_PAGING_DESC: Whether to enable pagination +MANAGE_CONSTANT_ALIYUN_ITEMS_PAGE_DESC: Number of items displayed per page +MANAGE_CONSTANT_ALIYUN_EXPLAIN: When configuring bucket name and base directory, they can be set using English comma separation. The order must be consistent and missing or empty items will use the default value. +MANAGE_CONSTANT_ALIYUN_REFER_TEXT: 'Refer to: ' + +MANAGE_CONSTANT_TENCENT_NAME: Tencent +MANAGE_CONSTANT_TENCENT_ALIAS_DESC: Alias - Required +MANAGE_CONSTANT_TENCENT_ALIAS_PLACEHOLDER: Unique identifier for this configuration +MANAGE_CONSTANT_TENCENT_SECRET_ID_DESC: SecretID - Required +MANAGE_CONSTANT_TENCENT_SECRET_ID_PLACEHOLDER: Please fill in the SecretID +MANAGE_CONSTANT_TENCENT_SECRET_KEY_DESC: SecretKey - Required +MANAGE_CONSTANT_TENCENT_SECRET_KEY_PLACEHOLDER: Please fill in the SecretKey +MANAGE_CONSTANT_TENCENT_APPID_DESC: App ID - Required +MANAGE_CONSTANT_TENCENT_APPID_PLACEHOLDER: Please fill in the App ID +MANAGE_CONSTANT_TENCENT_APPID_TOOLTIP: 'For example: 1250000000' +MANAGE_CONSTANT_TENCENT_BUCKET_DESC: Bucket name - Optional (note the App ID must be included) +MANAGE_CONSTANT_TENCENT_BUCKET_PLACEHOLDER: 'Comma-separated list of bucket names, for example: bucket1-1250000000, bucket2-1250000000' +MANAGE_CONSTANT_TENCENT_BASE_DIR_DESC: Starting directory - Optional +MANAGE_CONSTANT_TENCENT_BASE_DIR_PLACEHOLDER: 'Comma-separated list of directories, for example: /dir1, /dir2' +MANAGE_CONSTANT_TENCENT_IS_AUTO_CUSTOM_URL_DESC: Automatically obtain binding domain name +MANAGE_CONSTANT_TENCENT_PAGING_DESC: Enable paging +MANAGE_CONSTANT_TENCENT_ITEMS_PAGE_DESC: Number of items to display per page +MANAGE_CONSTANT_TENCENT_EXPLAIN: When configuring bucket name and base directory, they can be set using English comma separation. The order must be consistent and missing or empty items will use the default value. +MANAGE_CONSTANT_TENCENT_REFER_TEXT: 'Refer to: ' + +MANAGE_CONSTANT_UPYUN_NAME: Upyun +MANAGE_CONSTANT_UPYUN_ALIAS_DESC: Alias - required +MANAGE_CONSTANT_UPYUN_ALIAS_PLACEHOLDER: Unique identifier of the configuration +MANAGE_CONSTANT_UPYUN_BUCKET_DESC: Service name - required +MANAGE_CONSTANT_UPYUN_BUCKET_PLACEHOLDER: Name of the storage bucket corresponding to other object storage +MANAGE_CONSTANT_UPYUN_OPERATOR_NAME_DESC: Operator name - required +MANAGE_CONSTANT_UPYUN_OPERATOR_NAME_PLACEHOLDER: It is recommended to use an operator with full read, write, and delete permissions +MANAGE_CONSTANT_UPYUN_OPERATOR_NAME_RULE: Operator +MANAGE_CONSTANT_UPYUN_OPERATOR_PWD_DESC: Operator password - required +MANAGE_CONSTANT_UPYUN_OPERATOR_PWD_PLACEHOLDER: Please enter the password +MANAGE_CONSTANT_UPYUN_OPERATOR_PWD_RULE: Operator password +MANAGE_CONSTANT_UPYUN_BASE_DIR_DESC: Base directory - optional +MANAGE_CONSTANT_UPYUN_BASE_DIR_PLACEHOLDER: Initial directory when reading files +MANAGE_CONSTANT_UPYUN_IS_AUTO_CUSTOM_URL_DESC: Acceleration domain name - required +MANAGE_CONSTANT_UPYUN_IS_AUTO_CUSTOM_URL_PLACEHOLDER: 'Please start with http:// or https://' +MANAGE_CONSTANT_UPYUN_IS_AUTO_CUSTOM_URL_RULE_MESSAGE_A: Acceleration domain name cannot be empty +MANAGE_CONSTANT_UPYUN_IS_AUTO_CUSTOM_URL_RULE_MESSAGE_B: 'Please start the custom domain name with http:// or https://' +MANAGE_CONSTANT_UPYUN_ANTI_LEECH_TOKEN_DESC: Anti-leech key - optional +MANAGE_CONSTANT_UPYUN_ANTI_LEECH_TOKEN_PLACEHOLDER: Please enter the anti-leech key +MANAGE_CONSTANT_UPYUN_ANTI_LEECH_TOKEN_TOOLTIP: If you do not need to use anti-leech, please leave it blank +MANAGE_CONSTANT_UPYUN_EXPIRE_TIME_DESC: Expiration time(s) - optional +MANAGE_CONSTANT_UPYUN_PAGING: Whether to enable pagination +MANAGE_CONSTANT_UPYUN_ITEMS_PAGE: Number of items displayed per page +MANAGE_CONSTANT_UPYUN_EXPLAIN: It is necessary to fill in the acceleration domain name of Upyun image bed, otherwise it cannot be used normally. +MANAGE_CONSTANT_UPYUN_REFER_TEXT: 'Refer to: ' + +MANAGE_CONSTANT_IMGUR_NAME: Imgur +MANAGE_CONSTANT_IMGUR_ALIAS_DESC: Alias - required +MANAGE_CONSTANT_IMGUR_ALIAS_PLACEHOLDER: Unique identifier of the configuration +MANAGE_CONSTANT_IMGUR_USERNAME_DESC: Imgur username - required +MANAGE_CONSTANT_IMGUR_USERNAME_PLACEHOLDER: Please enter the Imgur username +MANAGE_CONSTANT_IMGUR_ACCESS_TOKEN_DESC: Access token - required +MANAGE_CONSTANT_IMGUR_ACCESS_TOKEN_PLACEHOLDER: Please enter the access token +MANAGE_CONSTANT_IMGUR_ACCESS_TOKEN_TOOLTIP: Not the client ID, please refer to the configuration tutorial +MANAGE_CONSTANT_IMGUR_PROXY_DESC: Proxy - optional +MANAGE_CONSTANT_IMGUR_PROXY_PLACEHOLDER: 'For example: http://127.0.0.1:1080' +MANAGE_CONSTANT_IMGUR_PROXY_TOOLTIP: Please use a proxy in mainland China, otherwise it cannot be used normally +MANAGE_CONSTANT_IMGUR_EXPLAIN: Please use a proxy in mainland China, API calls have restrictions, please pay attention to usage frequency +MANAGE_CONSTANT_IMGUR_REFER_TEXT: 'Refer to: ' + +MANAGE_CONSTANT_S3_NAME: S3-Compatible +MANAGE_CONSTANT_S3_ALIAS_DESC: Alias - Required +MANAGE_CONSTANT_S3_ALIAS_PLACEHOLDER: Unique identifier for this configuration +MANAGE_CONSTANT_S3_ACCESS_KEY_ID_DESC: Access Key ID - Required +MANAGE_CONSTANT_S3_ACCESS_KEY_ID_PLACEHOLDER: Please enter Access Key ID +MANAGE_CONSTANT_S3_SECRET_ACCESS_KEY_DESC: Secret Access Key - Required +MANAGE_CONSTANT_S3_SECRET_ACCESS_KEY_PLACEHOLDER: Please enter Secret Access Key +MANAGE_CONSTANT_S3_ENDPOINT_DESC: Endpoint - Optional +MANAGE_CONSTANT_S3_ENDPOINT_PLACEHOLDER: e.g. s3.us-east-1.amazonaws.com +MANAGE_CONSTANT_S3_ENDPOINT_TOOLTIP: If left blank, AWS S3 is accessed by default. Provide the root API endpoint +MANAGE_CONSTANT_S3_SSLENABLED_DESC: Use HTTPS connection +MANAGE_CONSTANT_S3_SSLENABLED_TOOLTIP: Disable this option if not supported by your platform. +MANAGE_CONSTANT_S3_FORCE_PATH_STYLE_DESC: Enable S3 Path style +MANAGE_CONSTANT_S3_FORCE_PATH_STYLE_TOOLTIP: Required when using Minio, for example. +MANAGE_CONSTANT_S3_PROXY_DESC: Proxy - Optional +MANAGE_CONSTANT_S3_PROXY_PLACEHOLDER: e.g. http://127.0.0.1:1080 +MANAGE_CONSTANT_S3_PROXY_TOOLTIP: Use proxy if unable to access in some parts of Mainland China +MANAGE_CONSTANT_S3_ACL_FOR_UPLOAD_DESC: Permission for uploaded files +MANAGE_CONSTANT_S3_ACL_FOR_UPLOAD_OPTIONS_PRIVATE: Private +MANAGE_CONSTANT_S3_ACL_FOR_UPLOAD_OPTIONS_PUBLIC_READ: Public read +MANAGE_CONSTANT_S3_ACL_FOR_UPLOAD_OPTIONS_PUBLIC_READ_WRITE: Public read and write +MANAGE_CONSTANT_S3_ACL_FOR_UPLOAD_OPTIONS_AUTHENTICATED_READ: Authenticated read +MANAGE_CONSTANT_S3_ACL_FOR_UPLOAD_OPTIONS_BUCKET_OWNER_READ: Bucket owner read +MANAGE_CONSTANT_S3_ACL_FOR_UPLOAD_OPTIONS_BUCKET_OWNER_FULL_CONTROL: Bucket owner full control +MANAGE_CONSTANT_S3_ACL_FOR_UPLOAD_OPTIONS_AWS_EXEC_READ: AWS execution read +MANAGE_CONSTANT_S3_ACL_FOR_UPLOAD_TOOLTIP: 'Permission options for uploaded files' +MANAGE_CONSTANT_S3_BUCKET_DESC: Bucket name - Optional +MANAGE_CONSTANT_S3_BUCKET_PLACEHOLDER: English comma-separated list, e.g. bucket1,bucket2 +MANAGE_CONSTANT_S3_BASE_DIR_DESC: Base directory - Optional +MANAGE_CONSTANT_S3_BASE_DIR_PLACEHOLDER: English comma-separated list, e.g. /dir1,/dir2 +MANAGE_CONSTANT_S3_DOGE_CLOUD_SUPPORT_DESC: Enable Doge Cloud API +MANAGE_CONSTANT_S3_DOGE_CLOUD_SUPPORT_TOOLTIP: Support Doge Cloud API +MANAGE_CONSTANT_S3_PAGING_DESC: Enable pagination +MANAGE_CONSTANT_S3_ITEMS_PAGE_DESC: Items per page +MANAGE_CONSTANT_S3_EXPLAIN: When configuring bucket name and base directory, they can be set using English comma separation. The order must be consistent and missing or empty items will use the default value. +MANAGE_CONSTANT_S3_REFER_TEXT: 'Refer to: ' + +MANAGE_CONSTANT_WEBDAV_NAME: WebDAV +MANAGE_CONSTANT_WEBDAV_ALIAS_DESC: Alias - Required +MANAGE_CONSTANT_WEBDAV_ALIAS_PLACEHOLDER: Unique identifier for this configuration +MANAGE_CONSTANT_WEBDAV_HOST_DESC: Address - Required +MANAGE_CONSTANT_WEBDAV_HOST_PLACEHOLDER: 'e.g. https://example.com/dav' +MANAGE_CONSTANT_WEBDAV_HOST_TOOLTIP: Please enter the complete WebDAV address +MANAGE_CONSTANT_WEBDAV_USERNAME_DESC: Username - Required +MANAGE_CONSTANT_WEBDAV_USERNAME_PLACEHOLDER: Please enter your username +MANAGE_CONSTANT_WEBDAV_BUCKET_DESC: Special Configuration +MANAGE_CONSTANT_WEBDAV_BUCKET_PLACEHOLDER: 'e.g. bucket1' +MANAGE_CONSTANT_WEBDAV_BUCKET_TOOLTIP: This cannot be modified, only for software compatibility consideration +MANAGE_CONSTANT_WEBDAV_PASSWORD_DESC: Password - Required +MANAGE_CONSTANT_WEBDAV_PASSWORD_PLACEHOLDER: Please enter your password +MANAGE_CONSTANT_WEBDAV_BASE_DIR_DESC: Base Directory - Optional +MANAGE_CONSTANT_WEBDAV_BASE_DIR_PLACEHOLDER: 'e.g. /dir1' +MANAGE_CONSTANT_WEBDAV_CUSTOM_URL_DESC: Custom Domain - Optional +MANAGE_CONSTANT_WEBDAV_CUSTOM_URL_PLACEHOLDER: 'e.g. https://example.com' +MANAGE_CONSTANT_WEBDAV_CUSTOM_URL_TOOLTIP: If your WebDAV server supports custom domains, please fill in +MANAGE_CONSTANT_WEBDAV_CUSTOM_URL_RULE_MESSAGE: 'Custom domain should start with http:// or https://' +MANAGE_CONSTANT_WEBDAV_WEB_PATH: Web Path - Optional +MANAGE_CONSTANT_WEBDAV_WEB_PATH_PLACEHOLDER: 'e.g. test/ttc' +MANAGE_CONSTANT_WEBDAV_WEB_PATH_TOOLTIP: 'Used to generate URL' +MANAGE_CONSTANT_WEBDAV_PROXY_DESC: Proxy - Optional +MANAGE_CONSTANT_WEBDAV_PROXY_PLACEHOLDER: 'e.g. http://127.0.0.1:1080' +MANAGE_CONSTANT_WEBDAV_PROXY_TOOLTIP: If special network environment is required to access, please use proxy +MANAGE_CONSTANT_WEBDAV_SSL_DESC: Use HTTPS Connection +MANAGE_CONSTANT_WEBDAV_SSL_TOOLTIP: Depending on the configuration of your WebDAV server, if your server does not support HTTPS, please turn off this option +MANAGE_CONSTANT_WEBDAV_AUTH_TYPE_DESC: Authentication Type +MANAGE_CONSTANT_WEBDAV_EXPLAIN: 'WebDAV Configuration' +MANAGE_CONSTANT_WEBDAV_REFER_TEXT: 'Refer to:' + +MANAGE_CONSTANT_LOCAL_NAME: Local +MANAGE_CONSTANT_LOCAL_ALIAS_DESC: Alias - Required +MANAGE_CONSTANT_LOCAL_ALIAS_PLACEHOLDER: Unique identifier for this configuration +MANAGE_CONSTANT_LOCAL_BASE_DIR_DESC: Base directory - Required +MANAGE_CONSTANT_LOCAL_BASE_DIR_PLACEHOLDER: 'e.g. /dir1' +MANAGE_CONSTANT_LOCAL_CUSTOM_URL_DESC: Custom Domain - Optional +MANAGE_CONSTANT_LOCAL_CUSTOM_URL_PLACEHOLDER: 'e.g. https://example.com' +MANAGE_CONSTANT_LOCAL_CUSTOM_URL_TOOLTIP: If your local path supports custom domains, please fill in +MANAGE_CONSTANT_LOCAL_WEB_PATH: Web Path - Optional +MANAGE_CONSTANT_LOCAL_WEB_PATH_PLACEHOLDER: 'e.g. test/ttc' +MANAGE_CONSTANT_LOCAL_WEB_PATH_TOOLTIP: 'Used to generate URL' +MANAGE_CONSTANT_LOCAL_EXPLAIN: 'Local Configuration' +MANAGE_CONSTANT_LOCAL_REFER_TEXT: 'Refer to:' +MANAGE_CONSTANT_LOCAL_BASE_DIR_RULE_MESSAGE: baseDir cannot be empty +MANAGE_CONSTANT_LOCAL_BUCKET_DESC: Special Configuration +MANAGE_CONSTANT_LOCAL_BUCKET_PLACEHOLDER: 'bucket1' +MANAGE_CONSTANT_LOCAL_BUCKET_TOOLTIP: This cannot be modified, only for software compatibility consideration + +MANAGE_CONSTANT_SFTP_NAME: SFTP +MANAGE_CONSTANT_SFTP_ALIAS_DESC: Alias - Required +MANAGE_CONSTANT_SFTP_ALIAS_PLACEHOLDER: Unique identifier for this configuration +MANAGE_CONSTANT_SFTP_HOST_DESC: SSH Host - Required +MANAGE_CONSTANT_SFTP_HOST_PLACEHOLDER: 'e.g. 233.233.233.233' +MANAGE_CONSTANT_SFTP_PORT_DESC: SSH Port - Required +MANAGE_CONSTANT_SFTP_PORT_PLACEHOLDER: 'e.g. 22' +MANAGE_CONSTANT_SFTP_USERNAME_DESC: Username +MANAGE_CONSTANT_SFTP_USERNAME_PLACEHOLDER: Please enter your username +MANAGE_CONSTANT_SFTP_PASSWORD_DESC: Password +MANAGE_CONSTANT_SFTP_PASSWORD_PLACEHOLDER: Please enter your password +MANAGE_CONSTANT_SFTP_PRIVATE_KEY_DESC: Private Key +MANAGE_CONSTANT_SFTP_PRIVATE_KEY_PLACEHOLDER: Please enter your private key +MANAGE_CONSTANT_SFTP_PRIVATE_KEY_TOOLTIP: 'e.g. /home/user/.ssh/id_rsa' +MANAGE_CONSTANT_SFTP_PASSPHRASE_DESC: Private Key Password +MANAGE_CONSTANT_SFTP_PASSPHRASE_PLACEHOLDER: Please enter your private key password +MANAGE_CONSTANT_SFTP_BASE_DIR_DESC: Base Directory +MANAGE_CONSTANT_SFTP_BASE_DIR_PLACEHOLDER: 'e.g. /dir1' +MANAGE_CONSTANT_SFTP_CUSTOM_URL_DESC: Custom Domain +MANAGE_CONSTANT_SFTP_CUSTOM_URL_PLACEHOLDER: 'e.g. https://example.com' +MANAGE_CONSTANT_SFTP_CUSTOM_URL_TOOLTIP: If your SFTP server supports custom domains, please fill in +MANAGE_CONSTANT_SFTP_WEB_PATH: Web Path +MANAGE_CONSTANT_SFTP_WEB_PATH_PLACEHOLDER: 'e.g. test/ttc' +MANAGE_CONSTANT_SFTP_WEB_PATH_TOOLTIP: 'Used to generate URL' +MANAGE_CONSTANT_SFTP_FILE_PERMISSIONS_DESC: File mode +MANAGE_CONSTANT_SFTP_FILE_PERMISSIONS_PLACEHOLDER: 'e.g. 0644' +MANAGE_CONSTANT_SFTP_FILE_PERMISSIONS_TOOLTIP: 'Used to set the permissions of uploaded files' +MANAGE_CONSTANT_SFTP_DIR_PERMISSIONS_DESC: Directory mode +MANAGE_CONSTANT_SFTP_DIR_PERMISSIONS_PLACEHOLDER: 'e.g. 0755' +MANAGE_CONSTANT_SFTP_DIR_PERMISSIONS_TOOLTIP: 'Used to set the permissions of uploaded directories' +MANAGE_CONSTANT_SFTP_EXPLAIN: 'SFTP Configuration' +MANAGE_CONSTANT_SFTP_REFER_TEXT: 'Refer to:' +MANAGE_CONSTANT_SFTP_BASE_DIR_RULE_MESSAGE: baseDir cannot be empty +MANAGE_CONSTANT_SFTP_BUCKET_DESC: Special Configuration +MANAGE_CONSTANT_SFTP_BUCKET_PLACEHOLDER: 'e.g. bucket1' +MANAGE_CONSTANT_SFTP_BUCKET_TOOLTIP: This cannot be modified, only for software compatibility consideration + +MANAGE_LOGIN_PAGE_PANE_NAME: Saved Config +MANAGE_LOGIN_PAGE_PANE_DESC: Click on the icon or alias to view details +MANAGE_LOGIN_PAGE_PANE_LOADING: Importing... +MANAGE_LOGIN_PAGE_PANE_KEY_NAME: Configuration +MANAGE_LOGIN_PAGE_PANE_KEY_VALUE: Value +MANAGE_LOGIN_PAGE_PANE_ENTER: Enter +MANAGE_LOGIN_PAGE_PANE_DELETE: Delete +MANAGE_LOGIN_PAGE_PANE_SELECT_PLACEHOLDER: Please select +MANAGE_LOGIN_PAGE_PANE_IMPORT: Import +MANAGE_LOGIN_PAGE_PANE_SAVE: Save +MANAGE_LOGIN_PAGE_PANE_RESET: Reset +MANAGE_LOGIN_PAGE_PANE_TABLE_TITLE: Existing configurations, click to copy corresponding cell data +MANAGE_LOGIN_PAGE_PANE_CONFIG_CHANGE_MESSAGE_A: Please fill in +MANAGE_LOGIN_PAGE_PANE_CONFIG_CHANGE_ALIAS_MESSAGE: 'The alias can only contain Chinese, English, numbers, underscores, and hyphens' +MANAGE_LOGIN_PAGE_PANE_CONFIG_CHANGE_ITEMS_PER_PAGE_MESSAGE: 'The number of items per page must be between 20-1000' +MANAGE_LOGIN_PAGE_PANE_CONFIG_CHANGE_CUSTOM_URL_MESSAGE: 'Custom domain name should start with http:// or https://' +MANAGE_LOGIN_PAGE_PANE_CONFIG_CHANGE_NOTICE_NAME: Notice +MANAGE_LOGIN_PAGE_PANE_CONFIG_CHANGE_NOTICE_MESSAGE: 'Alias overwritten: ' +MANAGE_LOGIN_PAGE_PANE_CONFIG_CHANGE_NOTICE_MESSAGE_B: 'Alias saved: ' +MANAGE_LOGIN_PAGE_PANE_CONFIG_CHANGE_NOTICE_MESSAGE_C: 'Alias deleted: ' +MANAGE_LOGIN_PAGE_PANE_CONFIG_CHANGE_NOTICE_MESSAGE_D: 'Configuration with alias: ' +MANAGE_LOGIN_PAGE_PANE_CONFIG_CHANGE_NOTICE_MESSAGE_E: ' failed to delete' +MANAGE_LOGIN_PAGE_PANE_CONFIG_CHANGE_COPY_SUCCESS: 'Copied ' +MANAGE_LOGIN_PAGE_PANE_DELETE_CONFIG_TITLE: Are you sure to delete this? +MANAGE_LOGIN_PAGE_PANE_DELETE_CONFIG_TIP: Tip +MANAGE_LOGIN_PAGE_PANE_DELETE_CONFIG_CONFIRM: Confirm +MANAGE_LOGIN_PAGE_PANE_DELETE_CONFIG_CANCEL: Cancel + +MANAGE_BUCKET_PAGE_LOADING_TEXT: Loading... +MANAGE_BUCKET_PAGE_CUSTOM_URL_SELECT_PLACEHOLDER: Please select a custom domain +MANAGE_BUCKET_PAGE_CUSTOM_URL_INPUT_PLACEHOLDER: Please enter a custom domain +MANAGE_BUCKET_PAGE_UPLOAD_FILES_TOOLTIP: Upload files +MANAGE_BUCKET_PAGE_UPLOAD_FROM_URL_TOOLTIP: Upload from URL +MANAGE_BUCKET_PAGE_CREATE_FOLDER_TOOLTIP: Create folder +MANAGE_BUCKET_PAGE_DOWNLOAD_TOOLTIP: Download page +MANAGE_BUCKET_PAGE_BATCH_RENAME_TOOLTIP: Batch rename +MANAGE_BUCKET_PAGE_BATCH_COPY_URL_TOOLTIP: Batch copy URL +MANAGE_BUCKET_PAGE_COPY_FILE_INFO_TOOLTIP: Copy file information +MANAGE_BUCKET_PAGE_FORCE_REFRESH_TOOLTIP: Force refresh file list +MANAGE_BUCKET_PAGE_SEARCH_PLACEHOLDER: Search files +MANAGE_BUCKET_PAGE_ROOT_FOLDER: Root folder +MANAGE_BUCKET_PAGE_FILE_NUMBER: 'Number of files: ' +MANAGE_BUCKET_PAGE_FILE_SIZE: 'Total size: ' +MANAGE_BUCKET_PAGE_SELECT_ALL: Select all +MANAGE_BUCKET_PAGE_SELECT_NONE: Deselect all +MANAGE_BUCKET_PAGE_SELECT_INVERT: Invert selection +MANAGE_BUCKET_DOWNLOAD_BTN: Download +MANAGE_BUCKET_DELETE_BTN: Delete +MANAGE_BUCKET_SORT_TITLE: Sort +MANAGE_BUCKET_SORT_NAME: Name +MANAGE_BUCKET_SORT_SIZE: Size +MANAGE_BUCKET_SORT_EXT: Type +MANAGE_BUCKET_SORT_TIME: Time +MANAGE_BUCKET_SORT_CHECK: Selected status +MANAGE_BUCKET_SORT_INIT: Init +MANAGE_BUCKET_URL_UPLOAD_DIALOG_TITLE: Please enter URL(s), support multiple URLs separated by line breaks +MANAGE_BUCKET_URL_UPLOAD_DIALOG_CONFIRM: Confirm +MANAGE_BUCKET_URL_UPLOAD_DIALOG_CANCEL: Cancel +MANAGE_BUCKET_URL_FORMAT_MARKDOWN: Markdown +MANAGE_BUCKET_URL_FORMAT_MARKDOWN_WITH_LINK: Markdown-link +MANAGE_BUCKET_URL_FORMAT_URL: Url +MANAGE_BUCKET_URL_FORMAT_HTML: Html +MANAGE_BUCKET_URL_FORMAT_BBCODE: BBCode +MANAGE_BUCKET_URL_FORMAT_CUSTOM: Custom +MANAGE_BUCKET_URL_FORMAT_PRESIGN: Presigned link +MANAGE_BUCKET_FILE_INFO_TITLE: File information +MANAGE_BUCKET_FILE_INFO_COPY_TIPS: Copy in JSON format +MANAGE_BUCKET_FILE_LIST_LOADING: Loading, click to cancel +MANAGE_BUCKET_FILE_LIST_DOWNLOAD_PRE: Preparing to download, click to cancel +MANAGE_BUCKET_KEEP_FOLDER_STRUCTURE: Keep folder structure +MANAGE_BUCKET_NOT_KEEP_FOLDER_STRUCTURE: Do not keep folder structure +MANAGE_BUCKET_UPLOAD_AREA_TITLE: Drag and drop to upload, support recursive upload of folders +MANAGE_BUCKET_UPLOAD_AREA_TEXT: 'Or: click to select file (folders are not supported)' +MANAGE_BUCKET_UPLOAD_AREA_BTN_LOADING: Loading files +MANAGE_BUCKET_UPLOAD_AREA_BTN: Upload +MANAGE_BUCKET_UPLOAD_AREA_CLEAR: Clear +MANAGE_BUCKET_UPLOAD_AREA_STATUS_UPLOADING: Uploading +MANAGE_BUCKET_UPLOAD_AREA_COPY_TASK: Copy upload task information +MANAGE_BUCKET_UPLOAD_AREA_CLEAR_UPLOADED_TASK: Clear completed tasks +MANAGE_BUCKET_UPLOAD_AREA_CLEAR_ALL_TASK: Clear all tasks +MANAGE_BUCKET_UPLOAD_AREA_SUCCESS: Success +MANAGE_BUCKET_UPLOAD_AREA_FAILED: Failed +MANAGE_BUCKET_DOWNLOAD_PAGE_TITLE: Download page +MANAGE_BUCKET_DOWNLOADING: Downloading +MANAGE_BUCKET_DOWNLOAD_COPY_TASK: Copy download task information +MANAGE_BUCKET_DOWNLOAD_CLEAR_DOWNLOADED_TASK: Clear completed tasks +MANAGE_BUCKET_DOWNLOAD_CLEAR_ALL_TASK: Clear all tasks +MANAGE_BUCKET_DOWNLOAD_OPEN_FOLDER: Open download folder +MANAGE_BUCKET_DOWNLOAD_SUCCESS: Success +MANAGE_BUCKET_DOWNLOAD_FAILED: Failed +MANAGE_BUCKET_MARKDOWN_PREVIEW: Preview +MANAGE_BUCKET_PLAY: Play +MANAGE_BUCKET_RENAME_FILE: Rename file +MANAGE_BUCKET_RENAME_FILE_INPUT_A: String or JS regular expression for matching during replacement +MANAGE_BUCKET_RENAME_FILE_INPUT_A_TIPS: Directly enter the regular expression, no need to add / +MANAGE_BUCKET_RENAME_FILE_INPUT_A_PLACEHOLDER: 'For example: ^\d{4}-\d{2}-\d{2} ' +MANAGE_BUCKET_RENAME_FILE_INPUT_B: String for replacement, placeholders from custom +MANAGE_BUCKET_RENAME_FILE_TABLE_IID: Auto-incrementing number +MANAGE_BUCKET_RENAME_FILE_EXT: Replace extension if it matches +MANAGE_BUCKET_RENAME_FILE_EXT_TIPS: Check this option if you want to modify the extension +MANAGE_BUCKET_RENAME_FILE_EXT_YES: 'Yes' +MANAGE_BUCKET_RENAME_FILE_EXT_NO: 'No' +MANAGE_BUCKET_RENAME_FILE_CANCEL: Cancel +MANAGE_BUCKET_RENAME_FILE_CONFIRM: Confirm +MANAGE_BUCKET_COPY_SUCCESS: Copy success +MANAGE_BUCKET_START_LOADING_MESSAGE: Start getting files +MANAGE_BUCKET_END_LOADING_MESSAGE_FAIL: Failed to get file content +MANAGE_BUCKET_CHANGE_CUSTOM_URL_TITLE: Tip +MANAGE_BUCKET_CHANGE_CUSTOM_URL_MSG: Loading file list, please try again later +MANAGE_BUCKET_LAST_PAGE_TITLE: Tip +MANAGE_BUCKET_LAST_PAGE_MSG: This is the last page +MANAGE_BUCKET_GET_LIST_FAIL_TITLE: Tip +MANAGE_BUCKET_GET_LIST_FAIL_MSG: Failed to get file list +MANAGE_BUCKET_GET_LIST_FAIL_MSG2: Getting file list in the background, please do not switch pages +MANAGE_BUCKET_GET_LIST_FAIL_MSG3: Loading file list, please try again later +MANAGE_BUCKET_DOWNLOAD_FOLDER_BOX_TITLE: 'Are you sure you want to download this folder?' +MANAGE_BUCKET_DOWNLOAD_FOLDER_BOX_TIP: Tip +MANAGE_BUCKET_DOWNLOAD_FOLDER_BOX_CONFIRM: Confirm +MANAGE_BUCKET_DOWNLOAD_FOLDER_BOX_CANCEL: Cancel +MANAGE_BUCKET_DOWNLOAD_FOLDER_SUCCESS: Successfully obtained download list +MANAGE_BUCKET_DOWNLOAD_FOLDER_FAIL: Failed to obtain download list +MANAGE_BUCKET_DOWNLOAD_FOLDER_CANCEL: Canceled +MANAGE_BUCKET_CREATE_FOLDER_BOX_TITLE: Please enter the folder name +MANAGE_BUCKET_CREATE_FOLDER_BOX_TIP: Create folder +MANAGE_BUCKET_CREATE_FOLDER_BOX_CONFIRM: Confirm +MANAGE_BUCKET_CREATE_FOLDER_BOX_CANCEL: Cancel +MANAGE_BUCKET_CREATE_FOLDER_ERROR_MSG: Folder name can only contain Chinese, English, numbers, underscores, and slashes +MANAGE_BUCKET_CREATE_FOLDER_SUCCESS: Successfully created, please refresh +MANAGE_BUCKET_CREATE_FOLDER_FAIL: Failed to create +MANAGE_BUCKET_UPLOAD_URL_ERROR_MSQ: Please enter a valid URL +MANAGE_BUCKET_UPLOAD_URL_NOT_TITLE: Tip +MANAGE_BUCKET_UPLOAD_URL_NOT_MSG: Starting background download, automatic upload after success +MANAGE_BUCKET_BATCH_RENAME_ERROR_MSG: Please enter the matching string +MANAGE_BUCKET_BATCH_RENAME_ERROR_MSG2: No matching files found +MANAGE_BUCKET_BATCH_RENAME_ERROR_MSG3: No files need to be renamed +MANAGE_BUCKET_BATCH_RENAME_REPEATED_MSG_A: Detected +MANAGE_BUCKET_BATCH_RENAME_REPEATED_MSG_B: files are duplicated. Do you want to continue? +MANAGE_BUCKET_BATCH_RENAME_REPEATED_MSG_C: Tip +MANAGE_BUCKET_BATCH_RENAME_REPEATED_CONFIRM: Confirm +MANAGE_BUCKET_BATCH_RENAME_REPEATED_CANCEL: Cancel +MANAGE_BUCKET_BATCH_RENAME_RESULT_MSG_A: Rename successful +MANAGE_BUCKET_BATCH_RENAME_RESULT_MSG_B: Failed +MANAGE_BUCKET_BATCH_RENAME_CANCEL: Canceled +MANAGE_BUCKET_BATCH_COPY_INFO_ERROR_MSG: Please select the file first +MANAGE_BUCKET_BATCH_COPY_INFO_MSG_A: Copied +MANAGE_BUCKET_BATCH_COPY_INFO_MSG_B: file(s) information +MANAGE_BUCKET_BATCH_COPY_URL_ERROR_MSG: Please select the file first +MANAGE_BUCKET_BATCH_COPY_URL_MSG_A: Copied +MANAGE_BUCKET_BATCH_COPY_URL_MSG_B: file(s) link +MANAGE_BUCKET_CANCEL_LOADING_TITLE: Stop getting file list? +MANAGE_BUCKET_CANCEL_LOADING_MSG: Tip +MANAGE_BUCKET_CANCEL_LOADING_CONFIRM: Confirm +MANAGE_BUCKET_CANCEL_LOADING_CANCEL: Cancel +MANAGE_BUCKET_CANCEL_LOADING_SUCCESS: File list retrieval has been stopped +MANAGE_BUCKET_CANCEL_DOWNLOAD_LOADING_TITLE: Stop downloading file retrieval? +MANAGE_BUCKET_CANCEL_DOWNLOAD_LOADING_MSG: Prompt +MANAGE_BUCKET_CANCEL_DOWNLOAD_LOADING_CONFIRM: Confirm +MANAGE_BUCKET_CANCEL_DOWNLOAD_LOADING_CANCEL: Cancel +MANAGE_BUCKET_CANCEL_DOWNLOAD_LOADING_SUCCESS: Download file retrieval has been stopped +MANAGE_BUCKET_GET_FILE_BS_NOT_TITLE: Prompt +MANAGE_BUCKET_GET_FILE_BS_NOT_MSG: Successfully retrieved file list +MANAGE_BUCKET_GET_FILE_BS_NOT_MSG2: Some files failed to retrieve +MANAGE_BUCKET_BATCH_DELETE_CONFIRM_TITLE_A: Permanently delete +MANAGE_BUCKET_BATCH_DELETE_CONFIRM_TITLE_B: files, continue? +MANAGE_BUCKET_BATCH_DELETE_CONFIRM_MSG: Prompt +MANAGE_BUCKET_BATCH_DELETE_CONFIRM_CONFIRM: Confirm +MANAGE_BUCKET_BATCH_DELETE_CONFIRM_CANCEL: Cancel +MANAGE_BUCKET_BATCH_DELETE_ERROR_MSG_TITLE: Prompt +MANAGE_BUCKET_BATCH_DELETE_ERROR_MSG_MSG: Deletion failed +MANAGE_BUCKET_BATCH_DELETE_ERROR_MSG_MSG2: Deletion successful +MANAGE_BUCKET_BATCH_DELETE_ERROR_MSG_MSG3: Failed +MANAGE_BUCKET_BATCH_DELETE_CANCEL: Deletion has been cancelled +MANAGE_BUCKET_DELETE_CONFIRM_TITLE: Permanently delete +MANAGE_BUCKET_DELETE_CONFIRM_TITLE_FOLDER: folder +MANAGE_BUCKET_DELETE_CONFIRM_TITLE_FOLDER_A: and all files in this directory +MANAGE_BUCKET_DELETE_CONFIRM_TITLE_FILE: file +MANAGE_BUCKET_DELETE_CONFIRM_TITLE_C: Continue? +MANAGE_BUCKET_DELETE_CONFIRM_MSG: Prompt +MANAGE_BUCKET_DELETE_CONFIRM_CONFIRM: Confirm +MANAGE_BUCKET_DELETE_CONFIRM_CANCEL: Cancel +MANAGE_BUCKET_DELETE_ERROR_MSG_TITLE: Prompt +MANAGE_BUCKET_DELETE_ERROR_MSG_MSG: Deleting a folder may take some time, please be patient +MANAGE_BUCKET_DELETE_SUCCESS: Deletion successful +MANAGE_BUCKET_DELETE_FAIL: Deletion failed +MANAGE_BUCKET_DELETE_CANCEL: Deletion has been cancelled +MANAGE_BUCKET_RENAME_INFO_MSG: The new file name is the same as the original file name, no need to rename +MANAGE_BUCKET_RENAME_SUCCESS: Rename successful +MANAGE_BUCKET_RENAME_ERROR_MSG: Rename failed +MANAGE_BUCKET_DOWNLOAD_COLUMN_FILENAME: File name +MANAGE_BUCKET_DOWNLOAD_COLUMN_FINISHTIME: Completion time +MANAGE_BUCKET_DOWNLOAD_COLUMN_STATUS: Status +MANAGE_BUCKET_DOWNLOAD_COLUMN_STATUS_SUCCESS: Success +MANAGE_BUCKET_DOWNLOAD_COLUMN_STATUS_FAIL: Failed +MANAGE_BUCKET_UPLOAD_COLUMN_FILENAME: File name +MANAGE_BUCKET_UPLOAD_COLUMN_TARGETFILEPATH: Upload path +MANAGE_BUCKET_UPLOAD_COLUMN_FINISHTIME: Completion time +MANAGE_BUCKET_UPLOAD_COLUMN_STATUS: Status +MANAGE_BUCKET_UPLOAD_COLUMN_STATUS_SUCCESS: Success +MANAGE_BUCKET_UPLOAD_COLUMN_STATUS_FAIL: Failed +MANAGE_BUCKET_DOWNLOADING_COLUMN_FILENAME: File name +MANAGE_BUCKET_DOWNLOADING_COLUMN_PROGRESS: Progress +MANAGE_BUCKET_UPLOADING_COLUMN_FILENAME: File name +MANAGE_BUCKET_UPLOADING_COLUMN_PROGRESS: Progress +MANAGE_BUCKET_UPLOADED_COLUMN_FILENAME: File name +MANAGE_BUCKET_UPLOADED_COLUMN_FILESIZE: Size +MANAGE_BUCKET_UPLOADED_COLUMN_FILENUM: Number of files +MANAGE_BUCKET_FILE_COLUMN_FILENAME: FileName +MANAGE_BUCKET_FILE_COLUMN_COPY_URL: Copy link +MANAGE_BUCKET_FILE_COLUMN_INFO: File Info +MANAGE_BUCKET_FILE_COLUMN_FILESIZE: Size +MANAGE_BUCKET_FILE_COLUMN_TIME: Time + +MANAGE_NEW_BUCKET_TCYUN_NAME: Tencent Cloud +MANAGE_NEW_BUCKET_TCYUN_BUCKETNAME_DESC: Bucket Name +MANAGE_NEW_BUCKET_TCYUN_BUCKETNAME_PLACEHOLDER: Please enter the Bucket name +MANAGE_NEW_BUCKET_TCYUN_BUCKETNAME_RULE_MSG_A: Bucket name can't be empty +MANAGE_NEW_BUCKET_TCYUN_BUCKETNAME_RULE_MSG_B: Bucket name length cannot exceed 23 characters +MANAGE_NEW_BUCKET_TCYUN_BUCKETNAME_RULE_MSG_C: Bucket name can only contain lowercase letters, numbers, and hyphens, and cannot begin or end with a hyphen +MANAGE_NEW_BUCKET_TCYUN_REGION: Region +MANAGE_NEW_BUCKET_TCYUN_ACL_DESC: Access Control +MANAGE_NEW_BUCKET_TCYUN_ACL_PUBLIC_RW: Public Read and Write +MANAGE_NEW_BUCKET_TCYUN_ACL_PUBLIC_R: Public Read +MANAGE_NEW_BUCKET_TCYUN_ACL_PRIVATE: Private +MANAGE_NEW_BUCKET_ALIYUN_NAME: Alibaba Cloud +MANAGE_NEW_BUCKET_ALIYUN_BUCKETNAME_DESC: Bucket Name +MANAGE_NEW_BUCKET_ALIYUN_BUCKETNAME_PLACEHOLDER: Please enter the Bucket name +MANAGE_NEW_BUCKET_ALIYUN_BUCKETNAME_RULE_MSG_A: Bucket name can't be empty +MANAGE_NEW_BUCKET_ALIYUN_BUCKETNAME_RULE_MSG_B: Bucket name length cannot exceed 63 characters +MANAGE_NEW_BUCKET_ALIYUN_BUCKETNAME_RULE_MSG_C: Bucket name can only contain lowercase letters, numbers, and hyphens, and cannot begin or end with a hyphen +MANAGE_NEW_BUCKET_ALIYUN_REGION: Region +MANAGE_NEW_BUCKET_ALIYUN_ACL_DESC: Access Control +MANAGE_NEW_BUCKET_ALIYUN_ACL_PUBLIC_RW: Public Read and Write +MANAGE_NEW_BUCKET_ALIYUN_ACL_PUBLIC_R: Public Read +MANAGE_NEW_BUCKET_ALIYUN_ACL_PRIVATE: Private +MANAGE_NEW_BUCKET_QINIU_NAME: Qiniu Cloud +MANAGE_NEW_BUCKET_QINIU_BUCKETNAME_DESC: Bucket Name +MANAGE_NEW_BUCKET_QINIU_BUCKETNAME_PLACEHOLDER: Please enter the Bucket name +MANAGE_NEW_BUCKET_QINIU_BUCKETNAME_RULE_MSG_A: Bucket name can't be empty +MANAGE_NEW_BUCKET_QINIU_BUCKETNAME_RULE_MSG_B: Bucket name length cannot exceed 63 characters +MANAGE_NEW_BUCKET_QINIU_BUCKETNAME_RULE_MSG_C: Bucket names can only contain lowercase letters, numbers, and hyphens, and cannot start or end with a hyphen. +MANAGE_NEW_BUCKET_QINIU_REGION: Region +MANAGE_NEW_BUCKET_QINIU_ACL_DESC: Public Access +MANAGE_NEW_BUCKET_S3PLIST_NAME: S3-Compatible +MANAGE_NEW_BUCKET_S3PLIST_BUCKETNAME_DESC: Bucket Name +MANAGE_NEW_BUCKET_S3PLIST_BUCKETNAME_PLACEHOLDER: Please enter the Bucket name +MANAGE_NEW_BUCKET_S3PLIST_BUCKETNAME_RULE_MSG_A: Bucket name can't be empty +MANAGE_NEW_BUCKET_S3PLIST_REGION: Region +MANAGE_NEW_BUCKET_S3PLIST_ACL_DESC: Access Control +MANAGE_NEW_BUCKET_S3PLIST_ACL_PUBLIC_RW: Public Read and Write +MANAGE_NEW_BUCKET_S3PLIST_ACL_PUBLIC_R: Public Read +MANAGE_NEW_BUCKET_S3PLIST_ACL_PRIVATE: Private +MANAGE_NEW_BUCKET_S3PLIST_ACL_AUTHENTICATED_READ: Authenticated Read +# ---renderer i18n end--- + +# plugins +PLUGIN_INSTALL_SUCCEED: Plugin install succeed +PLUGIN_INSTALL_FAILED: Plugin install failed +PLUGIN_UNINSTALL_SUCCEED: Plugin uninstall succeed +PLUGIN_UNINSTALL_FAILED: Plugin uninstall failed +PLUGIN_UPDATE_SUCCEED: Plugin update succeed +PLUGIN_UPDATE_FAILED: Plugin update failed +PLUGIN_IMPORT_SUCCEED: Plugin import succeed +PLUGIN_IMPORT_FAILED: Plugin import failed +ENABLE_PLUGIN: Enable Plugin +DISABLE_PLUGIN: Disable Plugin +UNINSTALL_PLUGIN: Uninstall Plugin +UPDATE_PLUGIN: Update Plugin + +# tips +TIPS_NOTICE: Tips +TIPS_WARNING: Warning +TIPS_ERROR: Error +TIPS_INSTALL_NODE_AND_RELOAD_PICGO: Please install Node.js and restart PicList to continue +TIPS_PLUGIN_REMOVE_GALLERY_ITEM: Plugin is trying to remove some images from the album gallery, continue? +TIPS_PLUGIN_OVERWRITE_GALLERY: Plugin is trying to overwrite the album gallery, continue? +TIPS_UPLOAD_NOT_PICTURES: The latest clipboard item is not a picture +TIPS_PICGO_CONFIG_FILE_BROKEN_WITH_DEFAULT: PicList config file broken, has been restored to default +TIPS_PICGO_CONFIG_FILE_BROKEN_WITH_BACKUP: PicList config file broken, has been restored to backup +TIPS_PICGO_BACKUP_FILE_VERSION: 'Backup file version: ${v}' +TIPS_CUSTOM_CONFIG_FILE_PATH_ERROR: Custom config file parse error, please check the path content +TIPS_SHORTCUT_MODIFIED_SUCCEED: Shortcut modified successfully +TIPS_SHORTCUT_MODIFIED_CONFLICT: Shortcut conflict, please reset +TIPS_CUSTOM_LINK_STYLE_MODIFIED_SUCCEED: Custom link style modified successfully +TIPS_FIND_NEW_VERSION: Find new version ${v}, update many new features, do you want to download the latest version in the background? +UPDATE_DOWNLOADED: Update downloaded +TIPS_UPDATE_DOWNLOADED: The update has been downloaded and will be installed on the next app restart. Would you like to restart now? +QUIT: Quit diff --git a/public/i18n/zh-CN.yml b/public/i18n/zh-CN.yml index 0ca38feb..e27cb184 100644 --- a/public/i18n/zh-CN.yml +++ b/public/i18n/zh-CN.yml @@ -1,1004 +1,1004 @@ -LANG_DISPLAY_LABEL: 中文 -ABOUT: 关于 -OPEN_MAIN_WINDOW: 打开主窗口 -OPEN_MINI_WINDOW: 打开mini窗口 -HIDE_MINI_WINDOW: 隐藏mini窗口 -CHOOSE_DEFAULT_PICBED: 选择默认图床 -OPEN_UPDATE_HELPER: 打开更新助手 -RELOAD_APP: 重启应用 -UPLOAD_SUCCEED: 上传成功 -UPLOAD_FAILED: 上传失败 -UPLOAD_PROGRESS: 上传进度 -OPERATION_SUCCEED: 操作成功 -OPERATION_FAILED: 操作失败 -UPLOADING: 正在上传 -QUICK_UPLOAD: 快捷上传 -UPLOAD_BY_CLIPBOARD: 剪贴板图片上传 -HIDE_WINDOW: 隐藏窗口 -SHOW_PICBED_QRCODE: 生成图床配置二维码 -PICBED_QRCODE: 图床配置二维码 -ENABLE: 启用 -DISABLE: 禁用 -CONFIG_THING: 配置${c} -FIND_NEW_VERSION: 发现新版本 -NO_MORE_NOTICE: 以后不再提醒 -SHOW_DEVTOOLS: 打开开发者工具 -FEEDBACK: 反馈问题 -CURRENT_PICBED: 当前图床 -START_WATCH_CLIPBOARD: 开始监听剪贴板 -STOP_WATCH_CLIPBOARD: 停止监听剪贴板 -OPEN_TOOLBOX: 打开修复工具箱 -TOOLBOX: 工具箱 -TOOLBOX_TITLE: 排查 PicList 运行时问题 -TOOLBOX_SUB_TITLE: 立即扫描以下项目,修复使用问题 -TOOLBOX_CHECK_CONFIG_FILE_BROKEN: 检查配置文件是否损坏 -TOOLBOX_CHECK_GALLERY_FILE_BROKEN: 检查相册文件是否损坏 -TOOLBOX_CHECK_PROBLEM_WITH_CLIPBOARD_PIC_UPLOAD: 检查剪贴板图片上传是否存在问题 -TOOLBOX_CHECK_PROBLEM_WITH_PROXY: 检查代理设置是否正常 -TOOLBOX_FIX_DONE_NEED_RELOAD: 修复完成,需要重启生效,是否重启 -TOOLBOX_CANT_AUTO_FIX: 无法自动修复,请自行修复以下问题 -TOOLBOX_START_SCAN: 开始扫描 -TOOLBOX_RE_SCAN: 重新扫描 -TOOLBOX_START_FIX: 开始修复 -TOOLBOX_SUCCESS_TIPS: 恭喜你,没有检查出问题 -TOOLBOX_CHECK_CONFIG_FILE_PATH_TIPS: 配置文件路径是:${path} -TOOLBOX_CHECK_CONFIG_FILE_BROKEN_TIPS: 配置文件已损坏 -TOOLBOX_CHECK_GALLERY_FILE_PATH_TIPS: 相册文件路径是:${path} -TOOLBOX_CHECK_GALLERY_FILE_BROKEN_TIPS: 相册文件已损坏 -TOOLBOX_CHECK_PROXY_SUCCESS_TIPS: 代理设置正常 -TOOLBOX_CHECK_PROXY_NO_PROXY_TIPS: 无代理设置 -TOOLBOX_CHECK_PROXY_PROXY_IS_NOT_CORRECT: 代理设置不正确 -TOOLBOX_CHECK_PROXY_PROXY_IS_NOT_WORKING: 代理设置不可用 -TOOLBOX_CHECK_CLIPBOARD_FILE_PATH_TIPS: 剪贴板图片临时文件夹路径是:${path} -TOOLBOX_CHECK_CLIPBOARD_FILE_PATH_NOT_EXIST_TIPS: 剪贴板图片临时文件夹不存在:${path} -TOOLBOX_CHECK_CLIPBOARD_FILE_PATH_ERROR_TIPS: 请自行创建文件夹:${path} -MANUAL_PAGE_OPEN_TIP: 请选择打开方式 -MANUAL_PAGE_OPEN_TIP_TITLE: Tips -MANUAL_PAGE_OPEN_BY_BROWSER: 浏览器 -MANUAL_PAGE_OPEN_BY_BUILD_IN: 内置窗口 -MANUAL_PAGE_OPEN_SETTING_TIP: 选择手册打开方式 - -# ---renderer i18n begin--- - -CHOOSE_YOUR_DEFAULT_PICBED: 选择 ${d} 作为你默认图床: -UPLOAD_AREA: 上传 -UPLOAD_VIEW_HINT: 点击打开图床设置 -MANAGE_PAGE: 管理 -GALLERY: 相册 -REFRESH: 刷新 -MANUAL: 手册 -OPEN_MANUAL_LINK: 前往手册 -OPEN_MANUAL_LINK_HINT: 即将打开PicList使用手册网页, 是否继续? -PICBEDS_SETTINGS: 图床 -PICBEDS_MANAGE: 图床管理 -PICLIST_SETTINGS: 设置 -PLUGIN_SETTINGS: 插件 -PICLIST_SPONSOR_TEXT: 如果你喜欢它,对你有帮助,可以请我喝杯蜜雪冰城~ -CHOOSE_PICBED: 选择图床 -COPY_PICBED_CONFIG: 复制图床配置 -COPY_PICBED_CONFIG_SUCCEED: 复制图床配置成功 -INPUT: 输入框 -CANCEL: 取消 -CONFIRM: 确定 -RESET_PICBED_CONFIG: 重置 -CHOOSE_SHOWED_PICBED: 请选择显示的图床 -CHOOSE_PASTE_FORMAT: 请选择粘贴的格式 -SEARCH: 搜索 -COPY: 复制 -DELETE: 删除 -SELECT_ALL: 全选 -CHANGE_IMAGE_URL: 修改图片URL -CHANGE_IMAGE_URL_SUCCEED: 修改图片URL成功 -COPY_LINK_SUCCEED: 复制链接成功 -BATCH_COPY_LINK_SUCCEED: 批量复制链接成功 -FILE_RENAME: 文件改名 -COPY_FILE_PATH: 复制文件路径 -OPEN_FILE_PATH: 打开文件路径 -GALLERY_SYNC_DELETE: 删除云端 -GALLERY_SYNC_DELETE_NOTICE_TITLE: 通知 -GALLERY_SYNC_DELETE_NOTICE_SUCCEED: 云端删除成功 -GALLERY_SYNC_DELETE_NOTICE_FAILED: 云端删除失败 -GALLERY_CHANGE_URL: 修改 -GALLERY_CHANGE_URL_TITLE: 批量修改图片URL -GALLERY_SEARCH_FILENAME: 搜索文件名 -GALLERY_SEARCH_URL: 搜索URL -GALLERY_MATCHED: ' 匹配到: ' - -UPLOAD_PAGE_COPY_UPLOAD_API: 复制上传API -UPLOAD_PAGE_IMAGE_PROCESS_NAME: 图片处理 -UPLOAD_PAGE_IMAGE_PROCESS_DIALOG_TITLE: 图片处理设置 -UPLOAD_PAGE_IMAGE_PROCESS_ISADDWM: 是否添加水印 -UPLOAD_PAGE_IMAGE_PROCESS_WMTYPE: 水印类型 -UPLOAD_PAGE_IMAGE_PROCESS_WMTYPE_TEXT: 文字 -UPLOAD_PAGE_IMAGE_PROCESS_WMTYPE_IMAGE: 图片 -UPLOAD_PAGE_IMAGE_PROCESS_ISFULLSCREEN_WM: 是否全屏水印 -UPLOAD_PAGE_IMAGE_PROCESS_WMDEGREE: 水印角度 -UPLOAD_PAGE_IMAGE_PROCESS_WMTEXT: 水印文字 -UPLOAD_PAGE_IMAGE_PROCESS_WMTEXT_FONT_PATH: 水印字体路径(第一次需下载字体文件) -UPLOAD_PAGE_IMAGE_PROCESS_WMRATIO: 水印占原图比例 -UPLOAD_PAGE_IMAGE_PROCESS_WMCOLOR: 水印颜色,请从取色器中选择 -UPLOAD_PAGE_IMAGE_PROCESS_WMPATH: 水印图片路径(留空使用默认图片) -UPLOAD_PAGE_IMAGE_PROCESS_WMPOSITION: 水印位置 -UPLOAD_PAGE_IMAGE_PROCESS_ISREMOVEEXIF: 是否移除EXIF信息 -UPLOAD_PAGE_IMAGE_PROCESS_QUALITY: 压缩质量 -UPLOAD_PAGE_IMAGE_PROCESS_ISCONVERT: 是否转换格式 -UPLOAD_PAGE_IMAGE_PROCESS_CONVERTFORMAT: 转换目的格式 -UPLOAD_PAGE_IMAGE_PROCESS_CONVERTFORMAT_SPECIFIC: '精细化转换格式, 请输入JSON格式,如: {"png": "jpg"}' -UPLOAD_PAGE_IMAGE_PROCESS_ISFLIP: 是否进行垂直翻转 -UPLOAD_PAGE_IMAGE_PROCESS_ISFLOP: 是否进行水平翻转 -UPLOAD_PAGE_IMAGE_PROCESS_ISRESIZE: 是否按固定尺寸调整图片 -UPLOAD_PAGE_IMAGE_PROCESS_RESIZEWIDTH: 调整尺寸宽度(设为0则按高度等比缩放) -UPLOAD_PAGE_IMAGE_PROCESS_RESIZEHEIGHT: 调整尺寸高度(设为0则按宽度等比缩放) -UPLOAD_PAGE_IMAGE_PROCESS_SKIPRESIZEOfSMALLIMG_HEIGHT: 当图片高度小于设定高度时跳过缩放 -UPLOAD_PAGE_IMAGE_PROCESS_SKIPRESIZEOfSMALLIMG_WIDTH: 当图片宽度小于设定宽度时跳过缩放 -UPLOAD_PAGE_IMAGE_PROCESS_ISRESIZEBYPERCENT: 是否按比例调整尺寸,优先级更高 -UPLOAD_PAGE_IMAGE_PROCESS_RESIZEPERCENT: 调整尺寸比例, 输入50表示50% -UPLOAD_PAGE_IMAGE_PROCESS_ISROTATE: 是否旋转 -UPLOAD_PAGE_IMAGE_PROCESS_ROTATEDEGREE: 旋转角度 -UPLOAD_PAGE_IMAGE_PROCESS_CONFIRM: 保存 -UPLOAD_PAGE_IMAGE_PROCESS_CANCEL: 取消 -UPLOAD_PAGE_IMAGE_PROCESS_POSITION_TOP: 上 -UPLOAD_PAGE_IMAGE_PROCESS_POSITION_BOTTOM: 下 -UPLOAD_PAGE_IMAGE_PROCESS_POSITION_LEFT: 左 -UPLOAD_PAGE_IMAGE_PROCESS_POSITION_RIGHT: 右 -UPLOAD_PAGE_IMAGE_PROCESS_POSITION_TOP_LEFT: 左上 -UPLOAD_PAGE_IMAGE_PROCESS_POSITION_TOP_RIGHT: 右上 -UPLOAD_PAGE_IMAGE_PROCESS_POSITION_BOTTOM_LEFT: 左下 -UPLOAD_PAGE_IMAGE_PROCESS_POSITION_BOTTOM_RIGHT: 右下 -UPLOAD_PAGE_IMAGE_PROCESS_POSITION_CENTER: 中 -UPLOAD_SHORT_URL: 短链接 -UPLOAD_NORMAL_URL: 长链接 - - -# settings - -SETTINGS: 设置 -SETTINGS_OPEN_CONFIG_FILE: 打开配置文件 -SETTINGS_MIGRATE_FROM_PICGO: 从PicGo迁移 -SETTINGS_MIGRATE_FROM_PICGO_TITLE: 通知 -SETTINGS_MIGRATE_FROM_PICGO_CONTENT: 即将导入PicGo的配置文件和相册, 这将覆盖当前的配置文件和相册, 是否继续? -SETTINGS_MIGRATE_FROM_PICGO_SUCCESS: 导入成功, 请重启PicList生效 -SETTINGS_MIGRATE_FROM_PICGO_FAILED: 导入失败 -SETTINGS_START_MODE: 启动模式 -SETTINGS_START_MODE_MINI: mini窗口 -SETTINGS_START_MODE_MAIN: 主窗口 -SETTINGS_START_MODE_NO_TRAY: 隐藏托盘 -SETTINGS_START_MODE_QUIET: 静默启动 -SETTINGS_CLICK_TO_OPEN: 点击打开 -SETTINGS_SET_LOG_FILE: 设置日志文件 -SETTINGS_CLICK_TO_SET: 点击设置 -SETTINGS_CLICK_TO_CHECK: 点击检查 -SETTINGS_SET_SHORTCUT: 设置快捷键 -SETTINGS_CUSTOM_LINK_FORMAT: 自定义链接格式 -SETTINGS_SET_PROXY_AND_MIRROR: 设置代理和镜像地址 -SETTINGS_SET_SERVER: 设置Server -SETTINGS_CHECK_UPDATE: 检查更新 -SETTINGS_OPEN_UPDATE_HELPER: 打开更新助手 -SETTINGS_OPEN: 开 -SETTINGS_CLOSE: 关 -SETTINGS_CLOSE_MINI_WINDOW_SYNC: 打开主窗口时关闭mini窗口 -SETTINGS_CLOSE_MAIN_WINDOW_SYNC: 打开mini窗口时关闭主窗口 -SETTINGS_ACCEPT_BETA_UPDATE: 接受Beta版本更新 -SETTINGS_LAUNCH_ON_BOOT: 开机自启 -SETTINGS_RENAME_BEFORE_UPLOAD: 手动重命名 -SETTINGS_TIMESTAMP_RENAME: 时间戳重命名 -SETTINGS_ADVANCED_RENAME: 高级重命名 -SETTINGS_ADVANCED_RENAME_ENABLE: 开启高级重命名 -SETTINGS_ADVANCED_RENAME_FORMAT: 重命名格式 -SETTINGS_OPEN_UPLOAD_TIPS: 开启上传进度提示 -SETTINGS_OPEN_UPLOAD_RESULT_TIPS: 开启上传结果提示 -SETTINGS_MINI_WINDOW_ON_TOP: Mini窗口置顶 -SETTINGS_AUTO_COPY_URL_AFTER_UPLOAD: 上传后自动复制URL -SETTINGS_TIPS_PLACEHOLDER_URL: 用占位符 $url 来表示url的位置 -SETTINGS_TIPS_PLACEHOLDER_FILENAME: 用占位符 $fileName 来表示文件名的位置 -SETTINGS_TIPS_PLACEHOLDER_EXTNAME: 用占位符 $extName 来表示文件格式的位置 -SETTINGS_TIPS_SUCH_AS: 如 -SETTINGS_UPLOAD_PROXY: 上传代理 -SETTINGS_PLUGIN_INSTALL_PROXY: 插件安装代理 -SETTINGS_PLUGIN_INSTALL_MIRROR: 插件安装镜像 -SETTINGS_CURRENT_VERSION: 当前版本 -SETTINGS_NEWEST_VERSION: 最新版本 -SETTINGS_GETING: 正在获取中 -SETTINGS_TIPS_HAS_NEW_VERSION: PicList更新啦,请点击确定打开下载页面 -SETTINGS_LOG_FILE_PATH: 日志文件路径 -SETTINGS_CONFIG_FILE_PATH: 配置文件路径 -SETTINGS_LOG_FILE: 常规日志文件 -SETTINGS_GUI_LOG_FILE: GUI日志文件 -SETTINGS_MANAGE_LOG_FILE: 管理日志文件 -SETTINGS_LOG_LEVEL: 日志记录等级 -SETTINGS_LOG_FILE_SIZE: 日志文件大小 -SETTINGS_SET_PICGO_SERVER: 设置PicGo-Server -SETTINGS_TIPS_SERVER_NOTICE: 如果你不知道Server的作用,请阅读文档,或者不用修改配置。 -SETTINGS_ENABLE_SERVER: 是否开启Server -SETTINGS_SET_SERVER_HOST: 设置监听地址 -SETTINGS_SET_SERVER_PORT: 设置监听端口 -SETTINGS_SET_SERVER_KEY: 设置鉴权密钥 -SETTINGS_SET_WEB_SERVER: 设置Web服务 -SETTINGS_TIPS_WEB_SERVER_NOTICE: 如果你不知道Web服务的作用,请阅读文档,或者不用修改配置。 -SETTINGS_SET_ENABLE_WEB_SERVER: 是否开启Web服务 -SETTINGS_SET_WEB_SERVER_HOST: 设置Web服务监听地址 -SETTINGS_SET_WEB_SERVER_PORT: 设置Web服务监听端口 -SETTINGS_SET_WEB_SERVER_PATH: 设置Web服务路径 -SETTINGS_TIP_PLACEHOLDER_WEB_HOST: 推荐默认地址:127.0.0.1 -SETTINGS_TIP_PLACEHOLDER_WEB_PORT: 推荐默认端口:37777 -SETTINGS_TIP_PLACEHOLDER_HOST: 推荐默认地址:127.0.0.1 -SETTINGS_TIP_PLACEHOLDER_PORT: 推荐默认端口:36677 -SETTINGS_TIP_PLACEHOLDER_KEY: 用于接口鉴权, 通过url参数添加'?key=xxx' -SETTINGS_SET_SERVER_AES_KEY: 设置接口数据加密密钥 -SETTINGS_LOG_LEVEL_ALL: 全部-All -SETTINGS_LOG_LEVEL_SUCCESS: 成功-Success -SETTINGS_LOG_LEVEL_ERROR: 错误-Error -SETTINGS_LOG_LEVEL_INFO: 普通-Info -SETTINGS_LOG_LEVEL_WARN: 提醒-Warn -SETTINGS_LOG_LEVEL_NONE: 不记录日志-None -SETTINGS_RESULT: 设置结果 -SETTINGS_DEFAULT_PICBED: 设置默认图床 -SETTINGS_SET_DEFAULT_PICBED: 设为默认图床 -SETTINGS_NOT_CONFIG_OPTIONS: 暂无配置项 -SETTINGS_USE_BUILTIN_CLIPBOARD_UPLOAD: 使用内置剪贴板上传 -SETTINGS_CHOOSE_LANGUAGE: 选择语言 -BUILTIN_CLIPBOARD_TIPS: 使用内置剪贴板函数而不是调用脚本获取剪贴板图片 -UPLOADER_CONFIG_NAME: 图床配置名 -UPLOADER_CONFIG_PLACEHOLDER: 请输入配置名称 -SELECTED_SETTING_HINT: 已选中 -SETTINGS_MAIN_WINDOW_SIZE: 默认主窗口大小(需重启) -SETTINGS_MAIN_WINDOW_SIZE_WIDTH: 默认主窗口宽度 -SETTINGS_MAIN_WINDOW_WIDTH_HINT: '默认宽度: 1200' -SETTINGS_MAIN_WINDOW_WIDTH_RULE: 窗口宽度必须大于100 -SETTINGS_MAIN_WINDOW_SIZE_HEIGHT: 默认主窗口高度 -SETTINGS_MAIN_WINDOW_HEIGHT_HINT: '默认高度: 800' -SETTINGS_MAIN_WINDOW_HEIGHT_RULE: 窗口高度必须大于100 -SETTINGS_RAW_PICGO_SIZE: 原PicGo大小 -SETTINGS_CUSTOM_MINI_ICON_PATH: 自定义Mini窗口图标路径 -SETTINGS_CUSTOM_MINI_ICON: 是否自定义Mini窗口图标 -SETTINGS_COMPRESS_AND_WATERMARK: 设置图片水印和压缩-格式转换等参数 -SETTINGS_SYNC_DELETE_CLOUD: 相册内删除时同步删除云端文件 -SETTINGS_ISHIDEDOCK: 是否隐藏dock图标 -SETTINGS_ISHIDEDOCK_TIPS: 不支持同时隐藏dock和托盘 -SETTINGS_ENCODE_OUTPUT_URL: 输出(复制) URL 时进行转义 -SETTINGS_WATCH_CLIPBOARD: 软件启动时自动监听剪贴板上传 -SETTINGS_SHORT_URL: 使用短链接 -SETTINGS_SHORT_URL_SERVER: 短链接服务 -SETTINGS_SHORT_URL_C1N_TOKEN: C1N Token -SETTINGS_SHORT_URL_YOURLS_DOMAIN: YOURLS域名 -SETTINGS_SHORT_URL_YOURLS_SIGNATURE: YOURLS signature -SETTINGS_SHORT_URL_CF_WORKER_HOST: Cloudflare Worker域名 -SETTINGS_DELETE_LOCAL_FILE_AFTER_UPLOAD: 上传后删除本地文件 -SETTINGS_SYNC_CONFIG: 设置配置同步 -SETTINGS_SYNC_CONFIG_TITLE: 同步设置 -SETTINGS_SYNC_CONFIG_NOTE: 同步的文件为配置文件 -SETTINGS_SYNC_CONFIG_SELECT_TYPE: 选择同步方式 -SETTINGS_SYNC_CONFIG_SELECT_FILE: 选择同步文件 -SETTINGS_SYNC_CONFIG_SELECT_CONFIG: 仅配置文件 -SETTINGS_SYNC_CONFIG_SELECT_GALLERY: 仅相册文件 -SETTINGS_SYNC_CONFIG_SELECT_BOTH: 配置文件和相册文件 -SETTINGS_SYNC_CONFIG_GITEA_HOST: Gitea 网址 -SETTINGS_SYNC_CONFIG_GITHUB_USERNAME: GitHub用户名 -SETTINGS_SYNC_CONFIG_GITEA_USERNAME: Gitea用户名 -SETTINGS_SYNC_CONFIG_GITEE_USERNAME: Gitee用户名 -SETTINGS_SYNC_CONFIG_GITHUB_REPO: 仓库(私有) -SETTINGS_SYNC_CONFIG_GITEA_REPO: 仓库 -SETTINGS_SYNC_CONFIG_GITEE_REPO: 仓库路径名 -SETTINGS_SYNC_CONFIG_GITHUB_BRANCH: GitHub分支 -SETTINGS_SYNC_CONFIG_GITEA_BRANCH: Gitea分支 -SETTINGS_SYNC_CONFIG_GITEE_BRANCH: Gitee分支 -SETTINGS_SYNC_CONFIG_GITHUB_TOKEN: GitHub Token -SETTINGS_SYNC_CONFIG_GITEA_TOKEN: Gitea Token -SETTINGS_SYNC_CONFIG_GITEE_TOKEN: Gitee Token -SETTINGS_SYNC_CONFIG_PROXY: 代理 -SETTINGS_SYNC_CONFIG_INTERVAL: 间隔(分钟) -SETTINGS_SYNC_CONFIG_GITHUB_USERNAME_PLACEHOLDER: 请输入GitHub用户名 -SETTINGS_SYNC_CONFIG_GITEA_USERNAME_PLACEHOLDER: 请输入Gitea用户名 -SETTINGS_SYNC_CONFIG_GITEE_USERNAME_PLACEHOLDER: 请输入Gitee用户名 -SETTINGS_SYNC_CONFIG_GITHUB_REPO_PLACEHOLDER: 请输入GitHub仓库名 -SETTINGS_SYNC_CONFIG_GITEA_REPO_PLACEHOLDER: 请输入Gitea仓库名 -SETTINGS_SYNC_CONFIG_GITEE_REPO_PLACEHOLDER: 请输入Gitee仓库名 -SETTINGS_SYNC_CONFIG_GITHUB_BRANCH_PLACEHOLDER: 请输入GitHub分支名 -SETTINGS_SYNC_CONFIG_GITEA_BRANCH_PLACEHOLDER: 请输入Gitea分支名 -SETTINGS_SYNC_CONFIG_GITEE_BRANCH_PLACEHOLDER: 请输入Gitee分支名 -SETTINGS_SYNC_CONFIG_GITHUB_TOKEN_PLACEHOLDER: 请输入GitHub Token -SETTINGS_SYNC_CONFIG_GITEA_TOKEN_PLACEHOLDER: 请输入Gitea Token -SETTINGS_SYNC_CONFIG_GITEE_TOKEN_PLACEHOLDER: 请输入Gitee Token -SETTINGS_SYNC_CONFIG_PROXY_PLACEHOLDER: 请输入代理地址 -SETTINGS_UP_DOWN_DESC: 上传下载配置文件 -SETTINGS_UP_DOWN_TITLE: 请在设置完同步配置后使用 -SETTINGS_SYNC_UPLOAD: 上传 -SETTINGS_SYNC_DOWNLOAD: 下载 -SETTINGS_SYNC_UPLOAD_ALL: 上传所有 -SETTINGS_SYNC_DOWNLOAD_ALL: 下载所有 -SETTINGS_SYNC_UPLOAD_SUCCESS: 上传成功 -SETTINGS_SYNC_UPLOAD_FAILED: 上传失败 -SETTINGS_SYNC_DOWNLOAD_SUCCESS: 下载成功 -SETTINGS_SYNC_DOWNLOAD_FAILED: 下载失败 -SETTINGS_SYNC_COMMON_CONFIG: 通用配置 -SETTINGS_SYNC_MANAGE_CONFIG: 管理配置 -SETTINGS_AUTO_IMPORT: 管理页面自动导入配置 -SETTINGS_AUTO_IMPORT_SELECT_PICBED: 选择需要开启自动导入的图床 -SETTINGS_TAB_SYSTEM: 系统设置 -SETTINGS_TAB_SYNC_CONFIG: 同步与配置 -SETTINGS_TAB_UPLOAD: 上传设置 -SETTINGS_TAB_ADVANCED: 高级设置 -SETTINGS_TAB_UPDATE: 更新 -# shortcut-page - -SHORTCUT_NAME: 快捷键名称 -SHORTCUT_BIND: 快捷键绑定 -SHORTCUT_STATUS: 状态 -SHORTCUT_ENABLED: 已启用 -SHORTCUT_DISABLED: 已禁用 -SHORTCUT_SOURCE: 来源 -SHORTCUT_HANDLE: 操作 -SHORTCUT_ENABLE: 启用 -SHORTCUT_DISABLE: 禁用 -SHORTCUT_EDIT: 编辑 -SHORTCUT_CHANGE_UPLOAD: 修改上传快捷键 - -# tray-page - -WAIT_TO_UPLOAD: 等待上传 -ALREADY_UPLOAD: 已上传 - -# upload-page - -PICTURE_UPLOAD: 图片上传 -DRAG_FILE_TO_HERE: 将文件拖拽到此处,或 -CLICK_TO_UPLOAD: 点击上传 -LINK_FORMAT: 链接格式 -CUSTOM: 自定义 -CLIPBOARD_PICTURE: 剪贴板图片 -TIPS_DRAG_VALID_PICTURE_OR_URL: 请拖入合法的图片文件或者图片URL地址 -TIPS_INPUT_URL: 请输入URL -TIPS_HTTP_PREFIX: http://或者https://开头 -TIPS_INPUT_VALID_URL: 请输入合法的URL - -# plugins - -PLUGIN_SEARCH_PLACEHOLDER: 搜索npm上的PicGo插件,或者点击上方按钮查看优秀插件列表 -PLUGIN_INSTALL: 安装 -PLUGIN_INSTALLING: 安装中 -PLUGIN_INSTALLED: 已安装 -PLUGIN_DOING_SOMETHING: 进行中 -PLUGIN_LIST: 插件列表 -PLUGIN_IMPORT_LOCAL: 导入本地插件 -PLUGIN_UPDATE_ALL: 更新全部插件 - -# tips - -TIPS_REMOVE_LINK: 此操作将把该图片移出相册, 是否继续? -TIPS_WILL_REMOVE_CHOOSED_IMAGES: 将在相册中移除刚才选中的 ${m} 张图片,是否继续? -TIPS_MUST_CONTAINS_URL: 必须含有$url 或 $fileName 或 $extName -TIPS_NETWORK_ERROR: 网络错误暂时无法获取 -TIPS_NEED_RELOAD: 需要重启生效 -TIPS_PLEASE_CHOOSE_LOG_LEVEL: 请选择日志记录等级 -TIPS_SET_SUCCEED: 设置成功 -TIPS_RESET_SUCCEED: 重置成功 -TIPS_PLUGIN_NOT_GUI_IMPLEMENT: 该插件未对可视化界面进行优化, 是否继续安装? -TIPS_CLICK_NOTIFICATION_TO_RELOAD: 请点击此通知重启应用以生效 -TIPS_GET_PLUGIN_LIST_FAILED: 获取插件列表失败 - -# manage page - -# manageSetting - -MANAGE_SETTING_TITLE: 管理页面设置 -MANAGE_SETTING_ISAUTOREFRESH_TITLE: 每次进入新目录时,是否自动刷新文件列表 -MANAGE_SETTING_ISAUTOREFRESH_TIPS: 仅对不分页模式有效,默认在加载过一次后自动缓存到数据库来加快下次加载速度 -MANAGE_SETTING_CLEAR_CACHE_TITLE: '清空文件列表缓存数据库 已占用:' -MANAGE_SETTING_CLEAR_CACHE_FREE_TITLE: '剩余可用:' -MANAGE_SETTING_CLEAR_CACHE_TIPS: 清空后下次进入新目录时将会重新加载文件列表 -MANAGE_SETTING_CLEAR_CACHE_PROMPT: 确定要清空文件列表缓存数据库吗? -MANAGE_SETTING_CLEAR_CACHE_BUTTON: 清空 -MANAGE_SETTING_ISSHOWTHUMBNAIL_TITLE: 图片显示为原图而非默认文件格式图标(需要存储桶可公开访问) -MANAGE_SETTING_ISSHOWLIST_TITLE: 文件列表默认显示方式 -MANAGE_SETTING_ISSHOWLIST_ON: 列表 -MANAGE_SETTING_ISSHOWLIST_OFF: 卡片 -MANAGE_SETTING_ISFORCECUSTOMURLHTTPS_TITLE: 为自定义域名开启强制HTTPS -MANAGE_SETTING_ISFORCECUSTOMURLHTTPS_TIPS: 开启后, 复制链接等操作将会自动为自定义域名添加https前缀 -MANAGE_SETTING_ISUPLOADKEEPDIRSTRUCTURE_TITLE: 上传时保留目录结构 -MANAGE_SETTING_ISUPLOADKEEPDIRSTRUCTURE_TIPS: 关闭后会将所有文件展开到指定目录下 -MANAGE_SETTING_ISDOWNLOADFILEKEEPDIRSTRUCTURE_TITLE_A: 下载 -MANAGE_SETTING_ISDOWNLOADFILEKEEPDIRSTRUCTURE_TITLE_B: 文件 -MANAGE_SETTING_ISDOWNLOADFILEKEEPDIRSTRUCTURE_TITLE_C: 时保留目录结构 -MANAGE_SETTING_ISDOWNLOADFOLDERKEEPDIRSTRUCTURE_TITLE_D: 文件夹 -MANAGE_SETTING_ISDOWNLOADFILEKEEPDIRSTRUCTURE_TIPS: 开启后,下载时会保留原始目录结构 -MANAGE_SETTING_MAX_DOWNLOAD_FILE_SIZE_TITLE: 最大同时下载文件数(1-9999) -MANAGE_SETTING_MAX_DOWNLOAD_FILE_SIZE_TIPS: 腾讯云由于后端实现不同,该设置不生效 -MANAGE_SETTING_MAX_DOWNLOAD_FILE_SIZE_INPUT_TIPS: 请输入最大同时下载文件数 -MANAGE_SETTING_ISIGNORECASE_TITLE: 文件搜索时,是否忽略大小写 -MANAGE_SETTING_ISIGNORECASE_TIPS: 开启后,搜索时会忽略大小写 -MANAGE_SETTING_TIMESTAMPRENAME_TITLE: 上传文件时间戳重命名--(优先级最高) -MANAGE_SETTING_TIMESTAMPRENAME_TIPS: 开启后,上传文件时会自动重命名为时间戳 -MANAGE_SETTING_RANDOMSTRINGRENAME_TITLE: 上传文件随机字符串重命名--(优先级中) -MANAGE_SETTING_RANDOMSTRINGRENAME_TIPS: 随机字符串长度为20 -MANAGE_SETTING_CUSTOMRENAME_TITLE: 上传文件自定义重命名--(优先级最低) -MANAGE_SETTING_CUSTOMRENAME_TIPS: 请填写自定义重命名格式 -MANAGE_SETTING_CUSTOM_PATTERN_TITLE: 自定义重命名格式,占位符请参考下表,可自由组合 -MANAGE_SETTING_CUSTOM_PATTERN_TIPS: 请填写自定义重命名格式 -MANAGE_SETTING_CUSTOM_PATTERN_TABLE_TITLE: 占位符 -MANAGE_SETTING_CUSTOM_PATTERN_TABLE_TIPS: 描述 -MANAGE_SETTING_PRESIGNED_URL_EXPIRE_TITLE: 预签名URL过期时间(单位:秒) -MANAGE_SETTING_PRESIGNED_URL_EXPIRE_TIPS: 请填写预签名URL过期时间 -MANAGE_SETTING_CHOOSE_COPY_FORMAT_TITLE: 选择默认复制的链接格式 -MANAGE_SETTING_CHOOSE_COPY_FORMAT_MARKDOWN: Markdown -MANAGE_SETTING_CHOOSE_COPY_FORMAT_MARKDOWN_WITH_LINK: Markdown(带链接) -MANAGE_SETTING_CHOOSE_COPY_FORMAT_RAWURL: 原始链接 -MANAGE_SETTING_CHOOSE_COPY_FORMAT_HTML: HTML格式 -MANAGE_SETTING_CHOOSE_COPY_FORMAT_BBCODE: BBCode格式 -MANAGE_SETTING_CHOOSE_COPY_FORMAT_CUSTOM: 自定义格式 -MANAGE_SETTING_CUSTOM_COPY_FORMAT_TITLE: 自定义链接格式($url为链接,$fileName为文件名) -MANAGE_SETTING_CUSTOM_COPY_FORMAT_TIPS: 请填写自定义链接格式 -MANAGE_SETTING_CHOOSE_DOWNLOAD_FOLDER_TITLE: 选择下载目录 -MANAGE_SETTING_CHOOSE_DOWNLOAD_FOLDER_TIPS: 系统默认下载目录 -MANAGE_SETTING_CHOOSE_DOWNLOAD_FOLDER_BUTTON: 选择目录 -MANAGE_SETTING_COPY_MESSAGE: 已复制 -MANAGE_SETTING_CLEAR_CACHE_SUCCESS: 清除成功 -MANAGE_SETTING_CLEAR_CACHE_FAILED: 清除失败 -MANAGE_SETTING_ISENCODEURL_TITLE: 复制链接时进行URL编码 -MANAGE_SETTING_ISENCODEURL_TIPS: 根据平台选择是否开启 - -# Empty -MANAGE_NO_DATA: 暂无数据 - -# Main Page -MANAGE_MAIN_PAGE_NEW_BUCKET: 新建存储桶 -MANAGE_MAIN_PAGE_BACK_TO_HOME: 返回首页 -MANAGE_MAIN_PAGE_SWITCH_PICBED: 切换图床 -MANAGE_MAIN_PAGE_SETTING: 设置 -MANAGE_MAIN_PAGE_SUBMIT: 提交 -MANAGE_MAIN_PAGE_TIPS: 提示 -MANAGE_MAIN_PAGE_TIPS_SUCCESS: 创建成功 -MANAGE_MAIN_PAGE_TIPS_FAILED: 创建失败 -MANAGE_MAIN_PAGE_BUCKET: 存储桶 -MANAGE_MAIN_PAGE_GALLERY: 相册 -MANAGE_MAIN_PAGE_REPOSITORY: 仓库 - -# manage constant -MANAGE_CONSTANT_BASE_RULE: 请输入 -MANAGE_CONSTANT_ITEMS_PAGE_RULE_MESSAGE_A: 请输入每页显示数量 -MANAGE_CONSTANT_ITEMS_PAGE_RULE_MESSAGE_B: 每页显示数量必须为数字 -MANAGE_CONSTANT_ITEMS_PAGE_RULE_MESSAGE_C: 每页显示数量必须在20-1000之间 -MANAGE_CONSTANT_ALIAS_RULE_MESSAGE_A: 请输入别名, 该配置的唯一标识 -MANAGE_CONSTANT_ALIAS_RULE_MESSAGE_B: 别名只能包含中文、英文、数字、下划线和中划线 -MANAGE_CONSTANT_ALIAS_TOOLTIP: 别名只能包含中文、英文、数字、下划线和中划线 -MANAGE_CONSTANT_ITEMS_PAGE_TOOLTIP: 每页显示数量必须在20-1000之间 -MANAGE_CONSTANT_PAGING_TOOLTIP: 关闭分页时,目录列表将使用数据库缓存以优化性能 -MANAGE_CONSTANT_BUCKET_NAME_TOOLTIP: 英文逗号分隔,如:bucket1,bucket2,bucket3,和起始目录顺序一一对应 -MANAGE_CONSTANT_BASE_DIR_TOOLTIP: '英文逗号分隔,如:/dir1,/dir2,/dir3, 和存储桶顺序一一对应' -MANAGE_CONSTANT_IS_AUTO_CUSTOM_URL_TOOLTIP: 开启时,将自动获取存储桶绑定的域名,关闭时可手动填写 - -MANAGE_CONSTANT_SMMS_ALIAS_DESC: 配置别名-必需 -MANAGE_CONSTANT_SMMS_ALIAS_PLACEHOLDER: 该配置的唯一标识 -MANAGE_CONSTANT_SMMS_TOKEN_DESC: Token-必需 -MANAGE_CONSTANT_SMMS_TOKEN_PLACEHOLDER: 请填写Token -MANAGE_CONSTANT_SMMS_PAGING_DESC: 是否开启分页 -MANAGE_CONSTANT_SMMS_EXPLAIN: '大陆地区请访问备用域名https://smms.app, 请勿大批量上传图片,否则API接口会被限制' -MANAGE_CONSTANT_SMMS_REFER_TEXT: '配置教程请参考: ' - -MANAGE_CONSTANT_QINIU_NAME: 七牛云 -MANAGE_CONSTANT_QINIU_ALIAS_DESC: 配置别名-必需 -MANAGE_CONSTANT_QINIU_ALIAS_PLACEHOLDER: 该配置的唯一标识 -MANAGE_CONSTANT_QINIU_ACCESS_KEY_DESC: accessKey-必需 -MANAGE_CONSTANT_QINIU_ACCESS_KEY_PLACEHOLDER: 请填写accessKey -MANAGE_CONSTANT_QINIU_SECRET_KEY_DESC: secretKey-必需 -MANAGE_CONSTANT_QINIU_SECRET_KEY_PLACEHOLDER: 请填写secretKey -MANAGE_CONSTANT_QINIU_BUCKET_DESC: 空间名-可选 -MANAGE_CONSTANT_QINIU_BUCKET_PLACEHOLDER: 英文逗号分隔,例如:bucket1,bucket2 -MANAGE_CONSTANT_QINIU_BASE_DIR_DESC: 起始目录-可选 -MANAGE_CONSTANT_QINIU_BASE_DIR_PLACEHOLDER: 英文逗号分隔,例如:/dir1,/dir2 -MANAGE_CONSTANT_QINIU_IS_AUTO_CUSTOM_URL_DESC: 是否自动获取绑定域名 -MANAGE_CONSTANT_QINIU_PAGING_DESC: 是否开启分页 -MANAGE_CONSTANT_QINIU_ITEMS_PAGE_DESC: 每页显示数量 -MANAGE_CONSTANT_QINIU_EXPLAIN: 空间名和起始目录配置时可通过英文逗号分隔设置,顺序必须一致,逗号间留空或缺失项使用默认值 -MANAGE_CONSTANT_QINIU_REFER_TEXT: '配置教程请参考: ' - -MANAGE_CONSTANT_GITHUB_ALIAS_DESC: 配置别名-必需 -MANAGE_CONSTANT_GITHUB_ALIAS_PLACEHOLDER: 该配置的唯一标识 -MANAGE_CONSTANT_GITHUB_TOKEN_DESC: Token-必需 -MANAGE_CONSTANT_GITHUB_TOKEN_PLACEHOLDER: 请填写Token -MANAGE_CONSTANT_GITHUB_TOKEN_TIPS: '请提供具有完整repo权限的token,否则部分功能可能无法使用' -MANAGE_CONSTANT_GITHUB_USER_DESC: 用户名-必需 -MANAGE_CONSTANT_GITHUB_USER_PLACEHOLDER: 请填写用户名 -MANAGE_CONSTANT_GITHUB_USER_RULE_MESSAGE: 用户名 -MANAGE_CONSTANT_GITHUB_PROXY_DESC: 代理地址-可选 -MANAGE_CONSTANT_GITHUB_PROXY_PLACEHOLDER: '例如:http://127.0.0.1:1080' -MANAGE_CONSTANT_GITHUB_PROXY_TIPS: '如果访问速度较慢,可以尝试配置代理' -MANAGE_CONSTANT_GITHUB_PAGING_DESC: 是否开启分页 -MANAGE_CONSTANT_GITHUB_CUSTOM_URL_DESC: CDN加速域名-可选 -MANAGE_CONSTANT_GITHUB_CUSTOM_URL_PLACEHOLDER: '支持使用{username}、{repo}、{branch}和{path}作为替换占位符,用于适配不同仓库和分支' -MANAGE_CONSTANT_GITHUB_CUSTOM_URL_TIPS: '例如: https://cdn.staticaly.com/gh/{username}/{repo}@{branch}/{path}' -MANAGE_CONSTANT_GITHUB_CUSTOM_URL_RULE_MESSAGE_A: '加速域名请以http://或https://开头' -MANAGE_CONSTANT_GITHUB_CUSTOM_URL_RULE_MESSAGE_B: 加速域名中的大括号必须成对出现 -MANAGE_CONSTANT_GITHUB_EXPLAIN: API调用有每小时上限,此外不支持上传超过100M的文件 -MANAGE_CONSTANT_GITHUB_REFER_TEXT: '配置教程请参考: ' - -MANAGE_CONSTANT_ALIYUN_NAME: 阿里云 -MANAGE_CONSTANT_ALIYUN_ALIAS_DESC: 配置别名-必需 -MANAGE_CONSTANT_ALIYUN_ALIAS_PLACEHOLDER: 该配置的唯一标识 -MANAGE_CONSTANT_ALIYUN_ACCESS_KEY_ID_DESC: accessKeyId-必需 -MANAGE_CONSTANT_ALIYUN_ACCESS_KEY_ID_PLACEHOLDER: 请填写accessKeyId -MANAGE_CONSTANT_ALIYUN_ACCESS_KEY_SECRET_DESC: accessKeySecret-必需 -MANAGE_CONSTANT_ALIYUN_ACCESS_KEY_SECRET_PLACEHOLDER: 请填写accessKeySecret -MANAGE_CONSTANT_ALIYUN_BUCKET_DESC: 存储桶名-可选 -MANAGE_CONSTANT_ALIYUN_BUCKET_PLACEHOLDER: 英文逗号分隔,例如:bucket1,bucket2 -MANAGE_CONSTANT_ALIYUN_BASE_DIR_DESC: 起始目录-可选 -MANAGE_CONSTANT_ALIYUN_BASE_DIR_PLACEHOLDER: 英文逗号分隔,例如:/dir1,/dir2 -MANAGE_CONSTANT_ALIYUN_IS_AUTO_CUSTOM_URL_DESC: 是否自动获取绑定域名 -MANAGE_CONSTANT_ALIYUN_PAGING_DESC: 是否开启分页 -MANAGE_CONSTANT_ALIYUN_ITEMS_PAGE_DESC: 每页显示数量 -MANAGE_CONSTANT_ALIYUN_EXPLAIN: 存储桶名和起始目录配置时可通过英文逗号分隔不同存储桶的设置,顺序必须一致,逗号间留空或缺失项使用默认值 -MANAGE_CONSTANT_ALIYUN_REFER_TEXT: '配置教程请参考: ' - -MANAGE_CONSTANT_TENCENT_NAME: 腾讯云 -MANAGE_CONSTANT_TENCENT_ALIAS_DESC: 配置别名-必需 -MANAGE_CONSTANT_TENCENT_ALIAS_PLACEHOLDER: 该配置的唯一标识 -MANAGE_CONSTANT_TENCENT_SECRET_ID_DESC: secretId-必需 -MANAGE_CONSTANT_TENCENT_SECRET_ID_PLACEHOLDER: 请填写secretId -MANAGE_CONSTANT_TENCENT_SECRET_KEY_DESC: secretKey-必需 -MANAGE_CONSTANT_TENCENT_SECRET_KEY_PLACEHOLDER: 请填写secretKey -MANAGE_CONSTANT_TENCENT_APPID_DESC: appId-必需 -MANAGE_CONSTANT_TENCENT_APPID_PLACEHOLDER: 请填写appId -MANAGE_CONSTANT_TENCENT_APPID_TOOLTIP: '例如:1250000000' -MANAGE_CONSTANT_TENCENT_BUCKET_DESC: 存储桶名-可选(注意包含AppId) -MANAGE_CONSTANT_TENCENT_BUCKET_PLACEHOLDER: 英文逗号分隔,例如:bucket1-1250000000,bucket2-1250000000 -MANAGE_CONSTANT_TENCENT_BASE_DIR_DESC: 起始目录-可选 -MANAGE_CONSTANT_TENCENT_BASE_DIR_PLACEHOLDER: 英文逗号分隔,例如:/dir1,/dir2 -MANAGE_CONSTANT_TENCENT_IS_AUTO_CUSTOM_URL_DESC: 是否自动获取绑定域名 -MANAGE_CONSTANT_TENCENT_PAGING_DESC: 是否开启分页 -MANAGE_CONSTANT_TENCENT_ITEMS_PAGE_DESC: 每页显示数量 -MANAGE_CONSTANT_TENCENT_EXPLAIN: 存储桶名和起始目录配置时可通过英文逗号分隔不同存储桶的设置,顺序必须一致,逗号间留空或缺失项使用默认值 -MANAGE_CONSTANT_TENCENT_REFER_TEXT: '配置教程请参考: ' - -MANAGE_CONSTANT_UPYUN_NAME: 又拍云 -MANAGE_CONSTANT_UPYUN_ALIAS_DESC: 配置别名-必需 -MANAGE_CONSTANT_UPYUN_ALIAS_PLACEHOLDER: 该配置的唯一标识 -MANAGE_CONSTANT_UPYUN_BUCKET_DESC: 服务名-必需 -MANAGE_CONSTANT_UPYUN_BUCKET_PLACEHOLDER: 对应其它对象存储的存储桶名 -MANAGE_CONSTANT_UPYUN_OPERATOR_NAME_DESC: 操作员名-必需 -MANAGE_CONSTANT_UPYUN_OPERATOR_NAME_PLACEHOLDER: 推荐使用具有读取、写入和删除完整权限的操作员 -MANAGE_CONSTANT_UPYUN_OPERATOR_NAME_RULE: 操作员 -MANAGE_CONSTANT_UPYUN_OPERATOR_PWD_DESC: 操作员密码-必需 -MANAGE_CONSTANT_UPYUN_OPERATOR_PWD_PLACEHOLDER: 请填写密码 -MANAGE_CONSTANT_UPYUN_OPERATOR_PWD_RULE: 操作员密码 -MANAGE_CONSTANT_UPYUN_BASE_DIR_DESC: 起始目录-可选 -MANAGE_CONSTANT_UPYUN_BASE_DIR_PLACEHOLDER: 读取文件时的初始目录 -MANAGE_CONSTANT_UPYUN_IS_AUTO_CUSTOM_URL_DESC: 加速域名-必需 -MANAGE_CONSTANT_UPYUN_IS_AUTO_CUSTOM_URL_PLACEHOLDER: '请以http://或https://开头' -MANAGE_CONSTANT_UPYUN_IS_AUTO_CUSTOM_URL_RULE_MESSAGE_A: 加速域名不能为空 -MANAGE_CONSTANT_UPYUN_IS_AUTO_CUSTOM_URL_RULE_MESSAGE_B: '自定义域名请以http://或https://开头' -MANAGE_CONSTANT_UPYUN_ANTI_LEECH_TOKEN_DESC: 防盗链密钥-可选 -MANAGE_CONSTANT_UPYUN_ANTI_LEECH_TOKEN_PLACEHOLDER: 请填写防盗链密钥 -MANAGE_CONSTANT_UPYUN_ANTI_LEECH_TOKEN_TOOLTIP: 如果不填写,默认不启用防盗链 -MANAGE_CONSTANT_UPYUN_EXPIRE_TIME_DESC: 防盗链过期时间(秒)-可选 -MANAGE_CONSTANT_UPYUN_PAGING: 是否开启分页 -MANAGE_CONSTANT_UPYUN_ITEMS_PAGE: 每页显示数量 -MANAGE_CONSTANT_UPYUN_EXPLAIN: 又拍云图床务必填写加速域名,否则无法正常使用 -MANAGE_CONSTANT_UPYUN_REFER_TEXT: '配置教程请参考: ' - -MANAGE_CONSTANT_IMGUR_NAME: Imgur -MANAGE_CONSTANT_IMGUR_ALIAS_DESC: 配置别名-必需 -MANAGE_CONSTANT_IMGUR_ALIAS_PLACEHOLDER: 该配置的唯一标识 -MANAGE_CONSTANT_IMGUR_USERNAME_DESC: imgur用户名-必需 -MANAGE_CONSTANT_IMGUR_USERNAME_PLACEHOLDER: 请填写imgur用户名 -MANAGE_CONSTANT_IMGUR_ACCESS_TOKEN_DESC: access token-必需 -MANAGE_CONSTANT_IMGUR_ACCESS_TOKEN_PLACEHOLDER: 请填写access token -MANAGE_CONSTANT_IMGUR_ACCESS_TOKEN_TOOLTIP: 不是clientID,请参考配置教程 -MANAGE_CONSTANT_IMGUR_PROXY_DESC: 代理-可选 -MANAGE_CONSTANT_IMGUR_PROXY_PLACEHOLDER: '例如:http://127.0.0.1:1080' -MANAGE_CONSTANT_IMGUR_PROXY_TOOLTIP: 大陆地区请使用代理,否则无法正常使用 -MANAGE_CONSTANT_IMGUR_EXPLAIN: 大陆地区请使用代理,API调用存在限制,请注意使用频率 -MANAGE_CONSTANT_IMGUR_REFER_TEXT: '配置教程请参考: ' - -MANAGE_CONSTANT_S3_NAME: S3兼容云 -MANAGE_CONSTANT_S3_ALIAS_DESC: 配置别名-必需 -MANAGE_CONSTANT_S3_ALIAS_PLACEHOLDER: 该配置的唯一标识 -MANAGE_CONSTANT_S3_ACCESS_KEY_ID_DESC: accessKeyId-必需 -MANAGE_CONSTANT_S3_ACCESS_KEY_ID_PLACEHOLDER: 请填写accessKeyId -MANAGE_CONSTANT_S3_SECRET_ACCESS_KEY_DESC: secretAccessKey-必需 -MANAGE_CONSTANT_S3_SECRET_ACCESS_KEY_PLACEHOLDER: 请填写secretAccessKey -MANAGE_CONSTANT_S3_ENDPOINT_DESC: endpoint-可选 -MANAGE_CONSTANT_S3_ENDPOINT_PLACEHOLDER: '例如:s3.us-east-1.amazonaws.com' -MANAGE_CONSTANT_S3_ENDPOINT_TOOLTIP: 如果不填写,默认访问 AWS S3,请提供根API endpoint -MANAGE_CONSTANT_S3_SSLENABLED_DESC: 使用HTTPS连接 -MANAGE_CONSTANT_S3_SSLENABLED_TOOLTIP: 如果您的平台不支持,请关闭该选项 -MANAGE_CONSTANT_S3_FORCE_PATH_STYLE_DESC: 启用 S3 Path style -MANAGE_CONSTANT_S3_FORCE_PATH_STYLE_TOOLTIP: 例如使用 minio 时需要启用 -MANAGE_CONSTANT_S3_PROXY_DESC: 代理-可选 -MANAGE_CONSTANT_S3_PROXY_PLACEHOLDER: '例如:http://127.0.0.1:1080' -MANAGE_CONSTANT_S3_PROXY_TOOLTIP: 如果部分平台大陆地区无法访问,请使用代理 -MANAGE_CONSTANT_S3_ACL_FOR_UPLOAD_DESC: 上传文件的权限 -MANAGE_CONSTANT_S3_ACL_FOR_UPLOAD_OPTIONS_PRIVATE: 私有 -MANAGE_CONSTANT_S3_ACL_FOR_UPLOAD_OPTIONS_PUBLIC_READ: 公共读 -MANAGE_CONSTANT_S3_ACL_FOR_UPLOAD_OPTIONS_PUBLIC_READ_WRITE: 公共读写 -MANAGE_CONSTANT_S3_ACL_FOR_UPLOAD_OPTIONS_AUTHENTICATED_READ: 授权读 -MANAGE_CONSTANT_S3_ACL_FOR_UPLOAD_OPTIONS_BUCKET_OWNER_READ: 桶所有者读 -MANAGE_CONSTANT_S3_ACL_FOR_UPLOAD_OPTIONS_BUCKET_OWNER_FULL_CONTROL: 桶所有者完全控制 -MANAGE_CONSTANT_S3_ACL_FOR_UPLOAD_OPTIONS_AWS_EXEC_READ: AWS执行读 -MANAGE_CONSTANT_S3_ACL_FOR_UPLOAD_TOOLTIP: '上传文件的权限,可选值:private、public-read、public-read-write、authenticated-read、bucket-owner-read、bucket-owner-full-control、aws-exec-read' -MANAGE_CONSTANT_S3_BUCKET_DESC: 存储桶名-可选 -MANAGE_CONSTANT_S3_BUCKET_PLACEHOLDER: 英文逗号分隔,例如:bucket1,bucket2 -MANAGE_CONSTANT_S3_BASE_DIR_DESC: 起始目录-可选 -MANAGE_CONSTANT_S3_BASE_DIR_PLACEHOLDER: '英文逗号分隔,例如:/dir1,/dir2' -MANAGE_CONSTANT_S3_DOGE_CLOUD_SUPPORT_DESC: 是否使用Doge Cloud -MANAGE_CONSTANT_S3_DOGE_CLOUD_SUPPORT_TOOLTIP: 开启后,将使用Doge Cloud的API -MANAGE_CONSTANT_S3_PAGING_DESC: 是否开启分页 -MANAGE_CONSTANT_S3_ITEMS_PAGE_DESC: 每页显示数量 -MANAGE_CONSTANT_S3_EXPLAIN: 存储桶名和起始目录配置时可通过英文逗号分隔不同存储桶的设置,顺序必须一致,逗号间留空或缺失项使用默认值 -MANAGE_CONSTANT_S3_REFER_TEXT: '配置教程请参考: ' - -MANAGE_CONSTANT_WEBDAV_NAME: WebDAV -MANAGE_CONSTANT_WEBDAV_ALIAS_DESC: 配置别名-必需 -MANAGE_CONSTANT_WEBDAV_ALIAS_PLACEHOLDER: 该配置的唯一标识 -MANAGE_CONSTANT_WEBDAV_HOST_DESC: 地址-必需 -MANAGE_CONSTANT_WEBDAV_HOST_PLACEHOLDER: '例如:https://example.com/dav' -MANAGE_CONSTANT_WEBDAV_HOST_TOOLTIP: 请填写完整的WebDAV地址 -MANAGE_CONSTANT_WEBDAV_USERNAME_DESC: 用户名-必需 -MANAGE_CONSTANT_WEBDAV_USERNAME_PLACEHOLDER: 请填写用户名 -MANAGE_CONSTANT_WEBDAV_BUCKET_DESC: 特殊配置 -MANAGE_CONSTANT_WEBDAV_BUCKET_PLACEHOLDER: '例如:bucket1' -MANAGE_CONSTANT_WEBDAV_BUCKET_TOOLTIP: 此处不可修改,仅为软件兼容性考虑 -MANAGE_CONSTANT_WEBDAV_PASSWORD_DESC: 密码-必需 -MANAGE_CONSTANT_WEBDAV_PASSWORD_PLACEHOLDER: 请填写密码 -MANAGE_CONSTANT_WEBDAV_BASE_DIR_DESC: 起始目录-可选 -MANAGE_CONSTANT_WEBDAV_BASE_DIR_PLACEHOLDER: '例如:/dir1' -MANAGE_CONSTANT_WEBDAV_CUSTOM_URL_DESC: 自定义域名-可选 -MANAGE_CONSTANT_WEBDAV_CUSTOM_URL_PLACEHOLDER: '例如:https://example.com' -MANAGE_CONSTANT_WEBDAV_CUSTOM_URL_TOOLTIP: 如果您的WebDAV服务器支持自定义域名,请填写 -MANAGE_CONSTANT_WEBDAV_CUSTOM_URL_RULE_MESSAGE: '自定义域名请以http://或https://开头' -MANAGE_CONSTANT_WEBDAV_WEB_PATH: 网址拼接用起始路径 -MANAGE_CONSTANT_WEBDAV_WEB_PATH_PLACEHOLDER: '例如:test/ttc' -MANAGE_CONSTANT_WEBDAV_WEB_PATH_TOOLTIP: '用于拼接网址' -MANAGE_CONSTANT_WEBDAV_PROXY_DESC: 代理-可选 -MANAGE_CONSTANT_WEBDAV_PROXY_PLACEHOLDER: '例如:http://127.0.0.1:1080' -MANAGE_CONSTANT_WEBDAV_PROXY_TOOLTIP: 如果需要特殊网络环境才能访问,请使用代理 -MANAGE_CONSTANT_WEBDAV_SSL_DESC: 使用HTTPS连接 -MANAGE_CONSTANT_WEBDAV_SSL_TOOLTIP: 根据WebDAV服务器的配置,如果您的服务器不支持HTTPS,请关闭该选项 -MANAGE_CONSTANT_WEBDAV_AUTH_TYPE_DESC: 认证类型 -MANAGE_CONSTANT_WEBDAV_EXPLAIN: 'WebDAV配置' -MANAGE_CONSTANT_WEBDAV_REFER_TEXT: '配置教程请参考: ' - -MANAGE_CONSTANT_LOCAL_NAME: 本地存储 -MANAGE_CONSTANT_LOCAL_ALIAS_DESC: 配置别名-必需 -MANAGE_CONSTANT_LOCAL_ALIAS_PLACEHOLDER: 该配置的唯一标识 -MANAGE_CONSTANT_LOCAL_BASE_DIR_DESC: 起始目录-必需 -MANAGE_CONSTANT_LOCAL_BASE_DIR_PLACEHOLDER: 请填写起始目录 -MANAGE_CONSTANT_LOCAL_CUSTOM_URL_DESC: 自定义域名-可选 -MANAGE_CONSTANT_LOCAL_CUSTOM_URL_PLACEHOLDER: '例如:https://example.com' -MANAGE_CONSTANT_LOCAL_CUSTOM_URL_TOOLTIP: 如果您的本地存储支持自定义域名,请填写 -MANAGE_CONSTANT_LOCAL_WEB_PATH: 网址拼接用起始路径 -MANAGE_CONSTANT_LOCAL_WEB_PATH_PLACEHOLDER: '例如:test/ttc' -MANAGE_CONSTANT_LOCAL_WEB_PATH_TOOLTIP: '用于拼接网址' -MANAGE_CONSTANT_LOCAL_EXPLAIN: '本地存储配置' -MANAGE_CONSTANT_LOCAL_REFER_TEXT: '配置教程请参考: ' -MANAGE_CONSTANT_LOCAL_BASE_DIR_RULE_MESSAGE: 起始目录不能为空 -MANAGE_CONSTANT_LOCAL_BUCKET_DESC: 特殊配置 -MANAGE_CONSTANT_LOCAL_BUCKET_PLACEHOLDER: '例如:bucket1' -MANAGE_CONSTANT_LOCAL_BUCKET_TOOLTIP: 此处不可修改,仅为软件兼容性考虑 - -MANAGE_CONSTANT_SFTP_NAME: SFTP -MANAGE_CONSTANT_SFTP_ALIAS_DESC: 配置别名-必需 -MANAGE_CONSTANT_SFTP_ALIAS_PLACEHOLDER: 该配置的唯一标识 -MANAGE_CONSTANT_SFTP_HOST_DESC: SSH地址-必需 -MANAGE_CONSTANT_SFTP_HOST_PLACEHOLDER: '例如:233.233.233.233' -MANAGE_CONSTANT_SFTP_PORT_DESC: SSH端口-必需 -MANAGE_CONSTANT_SFTP_PORT_PLACEHOLDER: '例如:22' -MANAGE_CONSTANT_SFTP_USERNAME_DESC: 用户名 -MANAGE_CONSTANT_SFTP_USERNAME_PLACEHOLDER: 请填写用户名 -MANAGE_CONSTANT_SFTP_PASSWORD_DESC: 密码 -MANAGE_CONSTANT_SFTP_PASSWORD_PLACEHOLDER: 请填写密码 -MANAGE_CONSTANT_SFTP_PRIVATE_KEY_DESC: 私钥地址 -MANAGE_CONSTANT_SFTP_PRIVATE_KEY_PLACEHOLDER: 请填写私钥地址 -MANAGE_CONSTANT_SFTP_PRIVATE_KEY_TOOLTIP: '例如:/home/user/.ssh/id_rsa' -MANAGE_CONSTANT_SFTP_PASSPHRASE_DESC: 私钥密码 -MANAGE_CONSTANT_SFTP_PASSPHRASE_PLACEHOLDER: 请填写私钥密码 -MANAGE_CONSTANT_SFTP_BASE_DIR_DESC: 起始目录-可选 -MANAGE_CONSTANT_SFTP_BASE_DIR_PLACEHOLDER: '例如:/dir1' -MANAGE_CONSTANT_SFTP_CUSTOM_URL_DESC: 自定义域名-可选 -MANAGE_CONSTANT_SFTP_CUSTOM_URL_PLACEHOLDER: '例如:https://example.com' -MANAGE_CONSTANT_SFTP_CUSTOM_URL_TOOLTIP: 如果您的对应路径支持域名访问,请填写 -MANAGE_CONSTANT_SFTP_WEB_PATH: 网址拼接用起始路径 -MANAGE_CONSTANT_SFTP_WEB_PATH_PLACEHOLDER: '例如:test/ttc' -MANAGE_CONSTANT_SFTP_WEB_PATH_TOOLTIP: '用于拼接网址' -MANAGE_CONSTANT_SFTP_FILE_PERMISSIONS_DESC: 文件权限 -MANAGE_CONSTANT_SFTP_FILE_PERMISSIONS_PLACEHOLDER: '例如:0644' -MANAGE_CONSTANT_SFTP_FILE_PERMISSIONS_TOOLTIP: '用于设置上传文件的权限' -MANAGE_CONSTANT_SFTP_DIR_PERMISSIONS_DESC: 目录权限 -MANAGE_CONSTANT_SFTP_DIR_PERMISSIONS_PLACEHOLDER: '例如:0755' -MANAGE_CONSTANT_SFTP_DIR_PERMISSIONS_TOOLTIP: '用于设置上传目录的权限' -MANAGE_CONSTANT_SFTP_EXPLAIN: 'SFTP配置' -MANAGE_CONSTANT_SFTP_REFER_TEXT: '配置教程请参考: ' -MANAGE_CONSTANT_SFTP_BASE_DIR_RULE_MESSAGE: 起始目录不能为空 -MANAGE_CONSTANT_SFTP_BUCKET_DESC: 特殊配置 -MANAGE_CONSTANT_SFTP_BUCKET_PLACEHOLDER: '例如:bucket1' -MANAGE_CONSTANT_SFTP_BUCKET_TOOLTIP: 此处不可修改,仅为软件兼容性考虑 - - -MANAGE_LOGIN_PAGE_PANE_NAME: 已保存配置 -MANAGE_LOGIN_PAGE_PANE_DESC: 点击图标和别名可查看详情 -MANAGE_LOGIN_PAGE_PANE_LOADING: 导入配置... -MANAGE_LOGIN_PAGE_PANE_KEY_NAME: 配置项 -MANAGE_LOGIN_PAGE_PANE_KEY_VALUE: 值 -MANAGE_LOGIN_PAGE_PANE_ENTER: 进入 -MANAGE_LOGIN_PAGE_PANE_DELETE: 删除 -MANAGE_LOGIN_PAGE_PANE_SELECT_PLACEHOLDER: 请选择 -MANAGE_LOGIN_PAGE_PANE_IMPORT: 导入 -MANAGE_LOGIN_PAGE_PANE_SAVE: 保存 -MANAGE_LOGIN_PAGE_PANE_RESET: 重置 -MANAGE_LOGIN_PAGE_PANE_TABLE_TITLE: 已有配置,单击可复制对应单元格数据 -MANAGE_LOGIN_PAGE_PANE_CONFIG_CHANGE_MESSAGE_A: 请填写 -MANAGE_LOGIN_PAGE_PANE_CONFIG_CHANGE_ALIAS_MESSAGE: 别名只能包含中文、英文、数字、下划线和中划线 -MANAGE_LOGIN_PAGE_PANE_CONFIG_CHANGE_ITEMS_PER_PAGE_MESSAGE: 每页数量必须在20-1000之间 -MANAGE_LOGIN_PAGE_PANE_CONFIG_CHANGE_CUSTOM_URL_MESSAGE: '自定义域名请以http://或https://开头' -MANAGE_LOGIN_PAGE_PANE_CONFIG_CHANGE_NOTICE_NAME: 通知 -MANAGE_LOGIN_PAGE_PANE_CONFIG_CHANGE_NOTICE_MESSAGE: 已覆盖别名 -MANAGE_LOGIN_PAGE_PANE_CONFIG_CHANGE_NOTICE_MESSAGE_B: 已保存别名 -MANAGE_LOGIN_PAGE_PANE_CONFIG_CHANGE_NOTICE_MESSAGE_C: 已删除别名 -MANAGE_LOGIN_PAGE_PANE_CONFIG_CHANGE_NOTICE_MESSAGE_D: 删除别名为 -MANAGE_LOGIN_PAGE_PANE_CONFIG_CHANGE_NOTICE_MESSAGE_E: 的配置失败 -MANAGE_LOGIN_PAGE_PANE_CONFIG_CHANGE_COPY_SUCCESS: 已复制 -MANAGE_LOGIN_PAGE_PANE_DELETE_CONFIG_TITLE: 确定要删除配置么? -MANAGE_LOGIN_PAGE_PANE_DELETE_CONFIG_TIP: 提示 -MANAGE_LOGIN_PAGE_PANE_DELETE_CONFIG_CONFIRM: 确定 -MANAGE_LOGIN_PAGE_PANE_DELETE_CONFIG_CANCEL: 取消 - - -MANAGE_BUCKET_PAGE_LOADING_TEXT: 加载文件中... -MANAGE_BUCKET_PAGE_CUSTOM_URL_SELECT_PLACEHOLDER: 请选择自定义域名 -MANAGE_BUCKET_PAGE_CUSTOM_URL_INPUT_PLACEHOLDER: 请输入自定义域名 -MANAGE_BUCKET_PAGE_UPLOAD_FILES_TOOLTIP: 文件上传(支持多选) -MANAGE_BUCKET_PAGE_UPLOAD_FROM_URL_TOOLTIP: 从URL上传 -MANAGE_BUCKET_PAGE_CREATE_FOLDER_TOOLTIP: 创建文件夹 -MANAGE_BUCKET_PAGE_DOWNLOAD_TOOLTIP: 下载页面 -MANAGE_BUCKET_PAGE_BATCH_RENAME_TOOLTIP: 批量重命名 -MANAGE_BUCKET_PAGE_BATCH_COPY_URL_TOOLTIP: 批量复制URL -MANAGE_BUCKET_PAGE_COPY_FILE_INFO_TOOLTIP: 复制文件信息 -MANAGE_BUCKET_PAGE_FORCE_REFRESH_TOOLTIP: 强制刷新文件列表 -MANAGE_BUCKET_PAGE_SEARCH_PLACEHOLDER: 搜索文件 -MANAGE_BUCKET_PAGE_ROOT_FOLDER: 根目录 -MANAGE_BUCKET_PAGE_FILE_NUMBER: '文件数: ' -MANAGE_BUCKET_PAGE_FILE_SIZE: '总大小: ' -MANAGE_BUCKET_PAGE_SELECT_ALL: 全选 -MANAGE_BUCKET_PAGE_SELECT_NONE: 取消 -MANAGE_BUCKET_PAGE_SELECT_INVERT: 反选 -MANAGE_BUCKET_DOWNLOAD_BTN: 下载 -MANAGE_BUCKET_DELETE_BTN: 删除 -MANAGE_BUCKET_SORT_TITLE: 排序 -MANAGE_BUCKET_SORT_NAME: 文件名 -MANAGE_BUCKET_SORT_SIZE: 大小 -MANAGE_BUCKET_SORT_EXT: 类型 -MANAGE_BUCKET_SORT_TIME: 时间 -MANAGE_BUCKET_SORT_CHECK: 选中状态 -MANAGE_BUCKET_SORT_INIT: 初始化 -MANAGE_BUCKET_URL_UPLOAD_DIALOG_TITLE: 请输入URL,支持多个URL,以换行分隔 -MANAGE_BUCKET_URL_UPLOAD_DIALOG_CONFIRM: 确定 -MANAGE_BUCKET_URL_UPLOAD_DIALOG_CANCEL: 取消 -MANAGE_BUCKET_URL_FORMAT_MARKDOWN: Markdown -MANAGE_BUCKET_URL_FORMAT_MARKDOWN_WITH_LINK: Markdown-link -MANAGE_BUCKET_URL_FORMAT_URL: Url -MANAGE_BUCKET_URL_FORMAT_HTML: Html -MANAGE_BUCKET_URL_FORMAT_BBCODE: BBCode -MANAGE_BUCKET_URL_FORMAT_CUSTOM: 自定义 -MANAGE_BUCKET_URL_FORMAT_PRESIGN: 预签名链接 -MANAGE_BUCKET_FILE_INFO_TITLE: 文件信息 -MANAGE_BUCKET_FILE_INFO_COPY_TIPS: 复制JSON格式信息 -MANAGE_BUCKET_FILE_LIST_LOADING: 加载中,点击取消 -MANAGE_BUCKET_FILE_LIST_DOWNLOAD_PRE: 准备下载中,点击取消 -MANAGE_BUCKET_KEEP_FOLDER_STRUCTURE: 保持目录结构 -MANAGE_BUCKET_NOT_KEEP_FOLDER_STRUCTURE: 不保持目录结构 -MANAGE_BUCKET_UPLOAD_AREA_TITLE: 拖放上传支持递归上传文件夹 -MANAGE_BUCKET_UPLOAD_AREA_TEXT: '或:点击选择文件(不支持文件夹)' -MANAGE_BUCKET_UPLOAD_AREA_BTN_LOADING: 读取文件中 -MANAGE_BUCKET_UPLOAD_AREA_BTN: 上传 -MANAGE_BUCKET_UPLOAD_AREA_CLEAR: 清空 -MANAGE_BUCKET_UPLOAD_AREA_STATUS_UPLOADING: 上传中 -MANAGE_BUCKET_UPLOAD_AREA_COPY_TASK: 复制上传任务信息 -MANAGE_BUCKET_UPLOAD_AREA_CLEAR_UPLOADED_TASK: 清空已完成任务 -MANAGE_BUCKET_UPLOAD_AREA_CLEAR_ALL_TASK: 清空所有任务 -MANAGE_BUCKET_UPLOAD_AREA_SUCCESS: 成功 -MANAGE_BUCKET_UPLOAD_AREA_FAILED: 失败 -MANAGE_BUCKET_DOWNLOAD_PAGE_TITLE: 下载页面 -MANAGE_BUCKET_DOWNLOADING: 下载中 -MANAGE_BUCKET_DOWNLOAD_COPY_TASK: 复制下载任务信息 -MANAGE_BUCKET_DOWNLOAD_CLEAR_DOWNLOADED_TASK: 清空已完成任务 -MANAGE_BUCKET_DOWNLOAD_CLEAR_ALL_TASK: 清空所有任务 -MANAGE_BUCKET_DOWNLOAD_OPEN_FOLDER: 打开下载目录 -MANAGE_BUCKET_DOWNLOAD_SUCCESS: 成功 -MANAGE_BUCKET_DOWNLOAD_FAILED: 失败 -MANAGE_BUCKET_MARKDOWN_PREVIEW: 预览 -MANAGE_BUCKET_PLAY: 播放 -MANAGE_BUCKET_RENAME_FILE: 文件重命名 -MANAGE_BUCKET_RENAME_FILE_INPUT_A: 进行替换时匹配的字符串或js正则表达式 -MANAGE_BUCKET_RENAME_FILE_INPUT_A_TIPS: 正则表达式请直接输入,不需要加上/ -MANAGE_BUCKET_RENAME_FILE_INPUT_A_PLACEHOLDER: '例如:^\d{4}-\d{2}-\d{2} ' -MANAGE_BUCKET_RENAME_FILE_INPUT_B: 需要替换的字符串,可使用自定义重命名规则中的占位符 -MANAGE_BUCKET_RENAME_FILE_TABLE_IID: 自增数字 -MANAGE_BUCKET_RENAME_FILE_EXT: 是否匹配扩展名进行替换 -MANAGE_BUCKET_RENAME_FILE_EXT_TIPS: 如果希望修改扩展名,请勾选此项 -MANAGE_BUCKET_RENAME_FILE_EXT_YES: 是 -MANAGE_BUCKET_RENAME_FILE_EXT_NO: 否 -MANAGE_BUCKET_RENAME_FILE_CANCEL: 取消 -MANAGE_BUCKET_RENAME_FILE_CONFIRM: 确定 -MANAGE_BUCKET_COPY_SUCCESS: 复制成功 -MANAGE_BUCKET_START_LOADING_MESSAGE: 开始获取文件 -MANAGE_BUCKET_END_LOADING_MESSAGE_FAIL: 获取文件内容失败 -MANAGE_BUCKET_CHANGE_CUSTOM_URL_TITLE: 提示 -MANAGE_BUCKET_CHANGE_CUSTOM_URL_MSG: 正在加载文件列表,请稍后再试 -MANAGE_BUCKET_LAST_PAGE_TITLE: 提示 -MANAGE_BUCKET_LAST_PAGE_MSG: 已经是最后一页了 -MANAGE_BUCKET_GET_LIST_FAIL_TITLE: 提示 -MANAGE_BUCKET_GET_LIST_FAIL_MSG: 获取文件列表失败 -MANAGE_BUCKET_GET_LIST_FAIL_MSG2: 正在后台获取文件列表,请不要切换页面 -MANAGE_BUCKET_GET_LIST_FAIL_MSG3: 正在加载文件列表,请稍后再试 -MANAGE_BUCKET_DOWNLOAD_FOLDER_BOX_TITLE: '确定要下载该文件夹吗?' -MANAGE_BUCKET_DOWNLOAD_FOLDER_BOX_TIP: 提示 -MANAGE_BUCKET_DOWNLOAD_FOLDER_BOX_CONFIRM: 确定 -MANAGE_BUCKET_DOWNLOAD_FOLDER_BOX_CANCEL: 取消 -MANAGE_BUCKET_DOWNLOAD_FOLDER_SUCCESS: 获取下载列表成功 -MANAGE_BUCKET_DOWNLOAD_FOLDER_FAIL: 获取失败 -MANAGE_BUCKET_DOWNLOAD_FOLDER_CANCEL: 已取消 -MANAGE_BUCKET_CREATE_FOLDER_BOX_TITLE: 请输入文件夹名称 -MANAGE_BUCKET_CREATE_FOLDER_BOX_TIP: 新建文件夹 -MANAGE_BUCKET_CREATE_FOLDER_BOX_CONFIRM: 确定 -MANAGE_BUCKET_CREATE_FOLDER_BOX_CANCEL: 取消 -MANAGE_BUCKET_CREATE_FOLDER_ERROR_MSG: 文件夹名称只能包含中文、英文、数字、下划线和斜杠 -MANAGE_BUCKET_CREATE_FOLDER_SUCCESS: 创建成功, 请刷新 -MANAGE_BUCKET_CREATE_FOLDER_FAIL: 创建失败 -MANAGE_BUCKET_UPLOAD_URL_ERROR_MSQ: 请输入有效的URL -MANAGE_BUCKET_UPLOAD_URL_NOT_TITLE: 提示 -MANAGE_BUCKET_UPLOAD_URL_NOT_MSG: 开始后台下载,成功后自动上传 -MANAGE_BUCKET_BATCH_RENAME_ERROR_MSG: 请输入匹配字符串 -MANAGE_BUCKET_BATCH_RENAME_ERROR_MSG2: 没有匹配到文件 -MANAGE_BUCKET_BATCH_RENAME_ERROR_MSG3: 没有需要重命名的文件 -MANAGE_BUCKET_BATCH_RENAME_REPEATED_MSG_A: 检测到有 -MANAGE_BUCKET_BATCH_RENAME_REPEATED_MSG_B: 个文件重复,是否继续 -MANAGE_BUCKET_BATCH_RENAME_REPEATED_MSG_C: 提示 -MANAGE_BUCKET_BATCH_RENAME_REPEATED_CONFIRM: 确定 -MANAGE_BUCKET_BATCH_RENAME_REPEATED_CANCEL: 取消 -MANAGE_BUCKET_BATCH_RENAME_RESULT_MSG_A: 重命名成功 -MANAGE_BUCKET_BATCH_RENAME_RESULT_MSG_B: 失败 -MANAGE_BUCKET_BATCH_RENAME_CANCEL: 已取消 -MANAGE_BUCKET_BATCH_COPY_INFO_ERROR_MSG: 请先选择文件 -MANAGE_BUCKET_BATCH_COPY_INFO_MSG_A: 已复制 -MANAGE_BUCKET_BATCH_COPY_INFO_MSG_B: 个文件信息 -MANAGE_BUCKET_BATCH_COPY_URL_ERROR_MSG: 请先选择文件 -MANAGE_BUCKET_BATCH_COPY_URL_MSG_A: 已复制 -MANAGE_BUCKET_BATCH_COPY_URL_MSG_B: 个链接 -MANAGE_BUCKET_CANCEL_LOADING_TITLE: 是否停止获取文件列表? -MANAGE_BUCKET_CANCEL_LOADING_MSG: 提示 -MANAGE_BUCKET_CANCEL_LOADING_CONFIRM: 确定 -MANAGE_BUCKET_CANCEL_LOADING_CANCEL: 取消 -MANAGE_BUCKET_CANCEL_LOADING_SUCCESS: 文件列表获取已停止 -MANAGE_BUCKET_CANCEL_DOWNLOAD_LOADING_TITLE: 是否停止下载文件获取? -MANAGE_BUCKET_CANCEL_DOWNLOAD_LOADING_MSG: 提示 -MANAGE_BUCKET_CANCEL_DOWNLOAD_LOADING_CONFIRM: 确定 -MANAGE_BUCKET_CANCEL_DOWNLOAD_LOADING_CANCEL: 取消 -MANAGE_BUCKET_CANCEL_DOWNLOAD_LOADING_SUCCESS: 下载文件获取已停止 -MANAGE_BUCKET_GET_FILE_BS_NOT_TITLE: 提示 -MANAGE_BUCKET_GET_FILE_BS_NOT_MSG: 获取文件列表成功 -MANAGE_BUCKET_GET_FILE_BS_NOT_MSG2: 部分文件获取失败 -MANAGE_BUCKET_BATCH_DELETE_CONFIRM_TITLE_A: 将永久删除 -MANAGE_BUCKET_BATCH_DELETE_CONFIRM_TITLE_B: 个文件,是否继续? -MANAGE_BUCKET_BATCH_DELETE_CONFIRM_MSG: 提示 -MANAGE_BUCKET_BATCH_DELETE_CONFIRM_CONFIRM: 确定 -MANAGE_BUCKET_BATCH_DELETE_CONFIRM_CANCEL: 取消 -MANAGE_BUCKET_BATCH_DELETE_ERROR_MSG_TITLE: 提示 -MANAGE_BUCKET_BATCH_DELETE_ERROR_MSG_MSG: 删除失败 -MANAGE_BUCKET_BATCH_DELETE_ERROR_MSG_MSG2: 删除成功 -MANAGE_BUCKET_BATCH_DELETE_ERROR_MSG_MSG3: 失败 -MANAGE_BUCKET_BATCH_DELETE_CANCEL: 已取消删除 -MANAGE_BUCKET_DELETE_CONFIRM_TITLE: 将永久删除 -MANAGE_BUCKET_DELETE_CONFIRM_TITLE_FOLDER: 文件夹 -MANAGE_BUCKET_DELETE_CONFIRM_TITLE_FOLDER_A: 和该目录下的所有文件 -MANAGE_BUCKET_DELETE_CONFIRM_TITLE_FILE: 文件 -MANAGE_BUCKET_DELETE_CONFIRM_TITLE_C: 是否继续 -MANAGE_BUCKET_DELETE_CONFIRM_MSG: 提示 -MANAGE_BUCKET_DELETE_CONFIRM_CONFIRM: 确定 -MANAGE_BUCKET_DELETE_CONFIRM_CANCEL: 取消 -MANAGE_BUCKET_DELETE_ERROR_MSG_TITLE: 提示 -MANAGE_BUCKET_DELETE_ERROR_MSG_MSG: 删除文件夹可能需要一段时间,请耐心等待 -MANAGE_BUCKET_DELETE_SUCCESS: 删除成功 -MANAGE_BUCKET_DELETE_FAIL: 删除失败 -MANAGE_BUCKET_DELETE_CANCEL: 已取消删除 -MANAGE_BUCKET_RENAME_INFO_MSG: 新文件名与原文件名相同,无需重命名 -MANAGE_BUCKET_RENAME_SUCCESS: 重命名成功 -MANAGE_BUCKET_RENAME_ERROR_MSG: 重命名失败 -MANAGE_BUCKET_DOWNLOAD_COLUMN_FILENAME: 文件名 -MANAGE_BUCKET_DOWNLOAD_COLUMN_FINISHTIME: 完成时间 -MANAGE_BUCKET_DOWNLOAD_COLUMN_STATUS: 状态 -MANAGE_BUCKET_DOWNLOAD_COLUMN_STATUS_SUCCESS: 成功 -MANAGE_BUCKET_DOWNLOAD_COLUMN_STATUS_FAIL: 失败 -MANAGE_BUCKET_UPLOAD_COLUMN_FILENAME: 文件名 -MANAGE_BUCKET_UPLOAD_COLUMN_TARGETFILEPATH: 上传路径 -MANAGE_BUCKET_UPLOAD_COLUMN_FINISHTIME: 完成时间 -MANAGE_BUCKET_UPLOAD_COLUMN_STATUS: 状态 -MANAGE_BUCKET_UPLOAD_COLUMN_STATUS_SUCCESS: 成功 -MANAGE_BUCKET_UPLOAD_COLUMN_STATUS_FAIL: 失败 -MANAGE_BUCKET_DOWNLOADING_COLUMN_FILENAME: 文件名 -MANAGE_BUCKET_DOWNLOADING_COLUMN_PROGRESS: 进度 -MANAGE_BUCKET_UPLOADING_COLUMN_FILENAME: 文件名 -MANAGE_BUCKET_UPLOADING_COLUMN_PROGRESS: 进度 -MANAGE_BUCKET_UPLOADED_COLUMN_FILENAME: 文件名 -MANAGE_BUCKET_UPLOADED_COLUMN_FILESIZE: 大小 -MANAGE_BUCKET_UPLOADED_COLUMN_FILENUM: 文件数 -MANAGE_BUCKET_FILE_COLUMN_FILENAME: 文件名 -MANAGE_BUCKET_FILE_COLUMN_COPY_URL: 复制链接 -MANAGE_BUCKET_FILE_COLUMN_INFO: 文件信息 -MANAGE_BUCKET_FILE_COLUMN_FILESIZE: 大小 -MANAGE_BUCKET_FILE_COLUMN_TIME: 修改时间 - -MANAGE_NEW_BUCKET_TCYUN_NAME: 腾讯云 -MANAGE_NEW_BUCKET_TCYUN_BUCKETNAME_DESC: Bucket名 -MANAGE_NEW_BUCKET_TCYUN_BUCKETNAME_PLACEHOLDER: 请输入Bucket名 -MANAGE_NEW_BUCKET_TCYUN_BUCKETNAME_RULE_MSG_A: Bucket名不能为空 -MANAGE_NEW_BUCKET_TCYUN_BUCKETNAME_RULE_MSG_B: Bucket名称长度不能超过23个字符 -MANAGE_NEW_BUCKET_TCYUN_BUCKETNAME_RULE_MSG_C: Bucket名称只能包含小写字母、数字和中划线,且不能以中划线开头和结尾 -MANAGE_NEW_BUCKET_TCYUN_REGION: 区域 -MANAGE_NEW_BUCKET_TCYUN_ACL_DESC: 访问权限 -MANAGE_NEW_BUCKET_TCYUN_ACL_PUBLIC_RW: 公共读写 -MANAGE_NEW_BUCKET_TCYUN_ACL_PUBLIC_R: 公共读 -MANAGE_NEW_BUCKET_TCYUN_ACL_PRIVATE: 私有 -MANAGE_NEW_BUCKET_ALIYUN_NAME: 阿里云 -MANAGE_NEW_BUCKET_ALIYUN_BUCKETNAME_DESC: Bucket名 -MANAGE_NEW_BUCKET_ALIYUN_BUCKETNAME_PLACEHOLDER: 请输入Bucket名 -MANAGE_NEW_BUCKET_ALIYUN_BUCKETNAME_RULE_MSG_A: Bucket名不能为空 -MANAGE_NEW_BUCKET_ALIYUN_BUCKETNAME_RULE_MSG_B: Bucket名称长度不能超过63个字符 -MANAGE_NEW_BUCKET_ALIYUN_BUCKETNAME_RULE_MSG_C: Bucket名称只能包含小写字母、数字和中划线,且不能以中划线开头和结尾 -MANAGE_NEW_BUCKET_ALIYUN_REGION: 区域 -MANAGE_NEW_BUCKET_ALIYUN_ACL_DESC: 访问权限 -MANAGE_NEW_BUCKET_ALIYUN_ACL_PUBLIC_RW: 公共读写 -MANAGE_NEW_BUCKET_ALIYUN_ACL_PUBLIC_R: 公共读 -MANAGE_NEW_BUCKET_ALIYUN_ACL_PRIVATE: 私有 -MANAGE_NEW_BUCKET_QINIU_NAME: 七牛云 -MANAGE_NEW_BUCKET_QINIU_BUCKETNAME_DESC: Bucket名 -MANAGE_NEW_BUCKET_QINIU_BUCKETNAME_PLACEHOLDER: 请输入Bucket名 -MANAGE_NEW_BUCKET_QINIU_BUCKETNAME_RULE_MSG_A: Bucket名不能为空 -MANAGE_NEW_BUCKET_QINIU_BUCKETNAME_RULE_MSG_B: Bucket名称长度不能超过63个字符 -MANAGE_NEW_BUCKET_QINIU_BUCKETNAME_RULE_MSG_C: Bucket名称只能包含小写字母、数字和中划线,且不能以中划线开头和结尾 -MANAGE_NEW_BUCKET_QINIU_REGION: 区域 -MANAGE_NEW_BUCKET_QINIU_ACL_DESC: 公开访问 -MANAGE_NEW_BUCKET_S3PLIST_NAME: S3兼容云 -MANAGE_NEW_BUCKET_S3PLIST_BUCKETNAME_DESC: Bucket名 -MANAGE_NEW_BUCKET_S3PLIST_BUCKETNAME_PLACEHOLDER: 请输入Bucket名 -MANAGE_NEW_BUCKET_S3PLIST_BUCKETNAME_RULE_MSG_A: Bucket名不能为空 -MANAGE_NEW_BUCKET_S3PLIST_REGION: 区域 -MANAGE_NEW_BUCKET_S3PLIST_ACL_DESC: 访问权限 -MANAGE_NEW_BUCKET_S3PLIST_ACL_PUBLIC_RW: 公共读写 -MANAGE_NEW_BUCKET_S3PLIST_ACL_PUBLIC_R: 公共读 -MANAGE_NEW_BUCKET_S3PLIST_ACL_PRIVATE: 私有 -MANAGE_NEW_BUCKET_S3PLIST_ACL_AUTHENTICATED_READ: 授权读 - -# ---renderer i18n end--- - -# plugins -PLUGIN_INSTALL_SUCCEED: 插件安装成功 -PLUGIN_INSTALL_FAILED: 插件安装失败 -PLUGIN_UNINSTALL_SUCCEED: 插件卸载成功 -PLUGIN_UNINSTALL_FAILED: 插件卸载失败 -PLUGIN_UPDATE_SUCCEED: 插件更新成功 -PLUGIN_UPDATE_FAILED: 插件更新失败 -PLUGIN_IMPORT_SUCCEED: 插件导入成功 -PLUGIN_IMPORT_FAILED: 插件导入失败 -ENABLE_PLUGIN: 启用插件 -DISABLE_PLUGIN: 禁用插件 -UNINSTALL_PLUGIN: 卸载插件 -UPDATE_PLUGIN: 更新插件 - -# tips -TIPS_NOTICE: 注意 -TIPS_WARNING: 警告 -TIPS_ERROR: 发生错误 -TIPS_INSTALL_NODE_AND_RELOAD_PICGO: 请安装Node.js并重启PicList再继续操作 -TIPS_PLUGIN_REMOVE_GALLERY_ITEM: 有插件正在试图删除一些相册图片,是否继续 -TIPS_PLUGIN_OVERWRITE_GALLERY: 有插件正在试图覆盖相册列表,是否继续 -TIPS_UPLOAD_NOT_PICTURES: 剪贴板最新的一条记录不是图片 -TIPS_PICGO_CONFIG_FILE_BROKEN_WITH_DEFAULT: PicList 配置文件损坏,已经恢复为默认配置 -TIPS_PICGO_CONFIG_FILE_BROKEN_WITH_BACKUP: PicList 配置文件损坏,已经恢复为备份配置 -TIPS_PICGO_BACKUP_FILE_VERSION: '备份文件版本: ${v}' -TIPS_CUSTOM_CONFIG_FILE_PATH_ERROR: 自定义文件解析出错,请检查路径内容是否正确 -TIPS_SHORTCUT_MODIFIED_SUCCEED: 快捷键已经修改成功 -TIPS_SHORTCUT_MODIFIED_CONFLICT: 快捷键冲突,请重新设置 -TIPS_CUSTOM_LINK_STYLE_MODIFIED_SUCCEED: 自定义链接格式已经修改成功 -TIPS_FIND_NEW_VERSION: 发现新版本${v},更新了很多功能,是否后台下载最新的版本? -UPDATE_DOWNLOADED: 更新已下载 -TIPS_UPDATE_DOWNLOADED: 更新已下载,将在下次启动时安装,是否现在重启? - -QUIT: 退出 +LANG_DISPLAY_LABEL: 中文 +ABOUT: 关于 +OPEN_MAIN_WINDOW: 打开主窗口 +OPEN_MINI_WINDOW: 打开mini窗口 +HIDE_MINI_WINDOW: 隐藏mini窗口 +CHOOSE_DEFAULT_PICBED: 选择默认图床 +OPEN_UPDATE_HELPER: 打开更新助手 +RELOAD_APP: 重启应用 +UPLOAD_SUCCEED: 上传成功 +UPLOAD_FAILED: 上传失败 +UPLOAD_PROGRESS: 上传进度 +OPERATION_SUCCEED: 操作成功 +OPERATION_FAILED: 操作失败 +UPLOADING: 正在上传 +QUICK_UPLOAD: 快捷上传 +UPLOAD_BY_CLIPBOARD: 剪贴板图片上传 +HIDE_WINDOW: 隐藏窗口 +SHOW_PICBED_QRCODE: 生成图床配置二维码 +PICBED_QRCODE: 图床配置二维码 +ENABLE: 启用 +DISABLE: 禁用 +CONFIG_THING: 配置${c} +FIND_NEW_VERSION: 发现新版本 +NO_MORE_NOTICE: 以后不再提醒 +SHOW_DEVTOOLS: 打开开发者工具 +FEEDBACK: 反馈问题 +CURRENT_PICBED: 当前图床 +START_WATCH_CLIPBOARD: 开始监听剪贴板 +STOP_WATCH_CLIPBOARD: 停止监听剪贴板 +OPEN_TOOLBOX: 打开修复工具箱 +TOOLBOX: 工具箱 +TOOLBOX_TITLE: 排查 PicList 运行时问题 +TOOLBOX_SUB_TITLE: 立即扫描以下项目,修复使用问题 +TOOLBOX_CHECK_CONFIG_FILE_BROKEN: 检查配置文件是否损坏 +TOOLBOX_CHECK_GALLERY_FILE_BROKEN: 检查相册文件是否损坏 +TOOLBOX_CHECK_PROBLEM_WITH_CLIPBOARD_PIC_UPLOAD: 检查剪贴板图片上传是否存在问题 +TOOLBOX_CHECK_PROBLEM_WITH_PROXY: 检查代理设置是否正常 +TOOLBOX_FIX_DONE_NEED_RELOAD: 修复完成,需要重启生效,是否重启 +TOOLBOX_CANT_AUTO_FIX: 无法自动修复,请自行修复以下问题 +TOOLBOX_START_SCAN: 开始扫描 +TOOLBOX_RE_SCAN: 重新扫描 +TOOLBOX_START_FIX: 开始修复 +TOOLBOX_SUCCESS_TIPS: 恭喜你,没有检查出问题 +TOOLBOX_CHECK_CONFIG_FILE_PATH_TIPS: 配置文件路径是:${path} +TOOLBOX_CHECK_CONFIG_FILE_BROKEN_TIPS: 配置文件已损坏 +TOOLBOX_CHECK_GALLERY_FILE_PATH_TIPS: 相册文件路径是:${path} +TOOLBOX_CHECK_GALLERY_FILE_BROKEN_TIPS: 相册文件已损坏 +TOOLBOX_CHECK_PROXY_SUCCESS_TIPS: 代理设置正常 +TOOLBOX_CHECK_PROXY_NO_PROXY_TIPS: 无代理设置 +TOOLBOX_CHECK_PROXY_PROXY_IS_NOT_CORRECT: 代理设置不正确 +TOOLBOX_CHECK_PROXY_PROXY_IS_NOT_WORKING: 代理设置不可用 +TOOLBOX_CHECK_CLIPBOARD_FILE_PATH_TIPS: 剪贴板图片临时文件夹路径是:${path} +TOOLBOX_CHECK_CLIPBOARD_FILE_PATH_NOT_EXIST_TIPS: 剪贴板图片临时文件夹不存在:${path} +TOOLBOX_CHECK_CLIPBOARD_FILE_PATH_ERROR_TIPS: 请自行创建文件夹:${path} +MANUAL_PAGE_OPEN_TIP: 请选择打开方式 +MANUAL_PAGE_OPEN_TIP_TITLE: Tips +MANUAL_PAGE_OPEN_BY_BROWSER: 浏览器 +MANUAL_PAGE_OPEN_BY_BUILD_IN: 内置窗口 +MANUAL_PAGE_OPEN_SETTING_TIP: 选择手册打开方式 + +# ---renderer i18n begin--- + +CHOOSE_YOUR_DEFAULT_PICBED: 选择 ${d} 作为你默认图床: +UPLOAD_AREA: 上传 +UPLOAD_VIEW_HINT: 点击打开图床设置 +MANAGE_PAGE: 管理 +GALLERY: 相册 +REFRESH: 刷新 +MANUAL: 手册 +OPEN_MANUAL_LINK: 前往手册 +OPEN_MANUAL_LINK_HINT: 即将打开PicList使用手册网页, 是否继续? +PICBEDS_SETTINGS: 图床 +PICBEDS_MANAGE: 图床管理 +PICLIST_SETTINGS: 设置 +PLUGIN_SETTINGS: 插件 +PICLIST_SPONSOR_TEXT: 如果你喜欢它,对你有帮助,可以请我喝杯蜜雪冰城~ +CHOOSE_PICBED: 选择图床 +COPY_PICBED_CONFIG: 复制图床配置 +COPY_PICBED_CONFIG_SUCCEED: 复制图床配置成功 +INPUT: 输入框 +CANCEL: 取消 +CONFIRM: 确定 +RESET_PICBED_CONFIG: 重置 +CHOOSE_SHOWED_PICBED: 请选择显示的图床 +CHOOSE_PASTE_FORMAT: 请选择粘贴的格式 +SEARCH: 搜索 +COPY: 复制 +DELETE: 删除 +SELECT_ALL: 全选 +CHANGE_IMAGE_URL: 修改图片URL +CHANGE_IMAGE_URL_SUCCEED: 修改图片URL成功 +COPY_LINK_SUCCEED: 复制链接成功 +BATCH_COPY_LINK_SUCCEED: 批量复制链接成功 +FILE_RENAME: 文件改名 +COPY_FILE_PATH: 复制文件路径 +OPEN_FILE_PATH: 打开文件路径 +GALLERY_SYNC_DELETE: 删除云端 +GALLERY_SYNC_DELETE_NOTICE_TITLE: 通知 +GALLERY_SYNC_DELETE_NOTICE_SUCCEED: 云端删除成功 +GALLERY_SYNC_DELETE_NOTICE_FAILED: 云端删除失败 +GALLERY_CHANGE_URL: 修改 +GALLERY_CHANGE_URL_TITLE: 批量修改图片URL +GALLERY_SEARCH_FILENAME: 搜索文件名 +GALLERY_SEARCH_URL: 搜索URL +GALLERY_MATCHED: ' 匹配到: ' + +UPLOAD_PAGE_COPY_UPLOAD_API: 复制上传API +UPLOAD_PAGE_IMAGE_PROCESS_NAME: 图片处理 +UPLOAD_PAGE_IMAGE_PROCESS_DIALOG_TITLE: 图片处理设置 +UPLOAD_PAGE_IMAGE_PROCESS_ISADDWM: 是否添加水印 +UPLOAD_PAGE_IMAGE_PROCESS_WMTYPE: 水印类型 +UPLOAD_PAGE_IMAGE_PROCESS_WMTYPE_TEXT: 文字 +UPLOAD_PAGE_IMAGE_PROCESS_WMTYPE_IMAGE: 图片 +UPLOAD_PAGE_IMAGE_PROCESS_ISFULLSCREEN_WM: 是否全屏水印 +UPLOAD_PAGE_IMAGE_PROCESS_WMDEGREE: 水印角度 +UPLOAD_PAGE_IMAGE_PROCESS_WMTEXT: 水印文字 +UPLOAD_PAGE_IMAGE_PROCESS_WMTEXT_FONT_PATH: 水印字体路径(第一次需下载字体文件) +UPLOAD_PAGE_IMAGE_PROCESS_WMRATIO: 水印占原图比例 +UPLOAD_PAGE_IMAGE_PROCESS_WMCOLOR: 水印颜色,请从取色器中选择 +UPLOAD_PAGE_IMAGE_PROCESS_WMPATH: 水印图片路径(留空使用默认图片) +UPLOAD_PAGE_IMAGE_PROCESS_WMPOSITION: 水印位置 +UPLOAD_PAGE_IMAGE_PROCESS_ISREMOVEEXIF: 是否移除EXIF信息 +UPLOAD_PAGE_IMAGE_PROCESS_QUALITY: 压缩质量 +UPLOAD_PAGE_IMAGE_PROCESS_ISCONVERT: 是否转换格式 +UPLOAD_PAGE_IMAGE_PROCESS_CONVERTFORMAT: 转换目的格式 +UPLOAD_PAGE_IMAGE_PROCESS_CONVERTFORMAT_SPECIFIC: '精细化转换格式, 请输入JSON格式,如: {"png": "jpg"}' +UPLOAD_PAGE_IMAGE_PROCESS_ISFLIP: 是否进行垂直翻转 +UPLOAD_PAGE_IMAGE_PROCESS_ISFLOP: 是否进行水平翻转 +UPLOAD_PAGE_IMAGE_PROCESS_ISRESIZE: 是否按固定尺寸调整图片 +UPLOAD_PAGE_IMAGE_PROCESS_RESIZEWIDTH: 调整尺寸宽度(设为0则按高度等比缩放) +UPLOAD_PAGE_IMAGE_PROCESS_RESIZEHEIGHT: 调整尺寸高度(设为0则按宽度等比缩放) +UPLOAD_PAGE_IMAGE_PROCESS_SKIPRESIZEOfSMALLIMG_HEIGHT: 当图片高度小于设定高度时跳过缩放 +UPLOAD_PAGE_IMAGE_PROCESS_SKIPRESIZEOfSMALLIMG_WIDTH: 当图片宽度小于设定宽度时跳过缩放 +UPLOAD_PAGE_IMAGE_PROCESS_ISRESIZEBYPERCENT: 是否按比例调整尺寸,优先级更高 +UPLOAD_PAGE_IMAGE_PROCESS_RESIZEPERCENT: 调整尺寸比例, 输入50表示50% +UPLOAD_PAGE_IMAGE_PROCESS_ISROTATE: 是否旋转 +UPLOAD_PAGE_IMAGE_PROCESS_ROTATEDEGREE: 旋转角度 +UPLOAD_PAGE_IMAGE_PROCESS_CONFIRM: 保存 +UPLOAD_PAGE_IMAGE_PROCESS_CANCEL: 取消 +UPLOAD_PAGE_IMAGE_PROCESS_POSITION_TOP: 上 +UPLOAD_PAGE_IMAGE_PROCESS_POSITION_BOTTOM: 下 +UPLOAD_PAGE_IMAGE_PROCESS_POSITION_LEFT: 左 +UPLOAD_PAGE_IMAGE_PROCESS_POSITION_RIGHT: 右 +UPLOAD_PAGE_IMAGE_PROCESS_POSITION_TOP_LEFT: 左上 +UPLOAD_PAGE_IMAGE_PROCESS_POSITION_TOP_RIGHT: 右上 +UPLOAD_PAGE_IMAGE_PROCESS_POSITION_BOTTOM_LEFT: 左下 +UPLOAD_PAGE_IMAGE_PROCESS_POSITION_BOTTOM_RIGHT: 右下 +UPLOAD_PAGE_IMAGE_PROCESS_POSITION_CENTER: 中 +UPLOAD_SHORT_URL: 短链接 +UPLOAD_NORMAL_URL: 长链接 + + +# settings + +SETTINGS: 设置 +SETTINGS_OPEN_CONFIG_FILE: 打开配置文件 +SETTINGS_MIGRATE_FROM_PICGO: 从PicGo迁移 +SETTINGS_MIGRATE_FROM_PICGO_TITLE: 通知 +SETTINGS_MIGRATE_FROM_PICGO_CONTENT: 即将导入PicGo的配置文件和相册, 这将覆盖当前的配置文件和相册, 是否继续? +SETTINGS_MIGRATE_FROM_PICGO_SUCCESS: 导入成功, 请重启PicList生效 +SETTINGS_MIGRATE_FROM_PICGO_FAILED: 导入失败 +SETTINGS_START_MODE: 启动模式 +SETTINGS_START_MODE_MINI: mini窗口 +SETTINGS_START_MODE_MAIN: 主窗口 +SETTINGS_START_MODE_NO_TRAY: 隐藏托盘 +SETTINGS_START_MODE_QUIET: 静默启动 +SETTINGS_CLICK_TO_OPEN: 点击打开 +SETTINGS_SET_LOG_FILE: 设置日志文件 +SETTINGS_CLICK_TO_SET: 点击设置 +SETTINGS_CLICK_TO_CHECK: 点击检查 +SETTINGS_SET_SHORTCUT: 设置快捷键 +SETTINGS_CUSTOM_LINK_FORMAT: 自定义链接格式 +SETTINGS_SET_PROXY_AND_MIRROR: 设置代理和镜像地址 +SETTINGS_SET_SERVER: 设置Server +SETTINGS_CHECK_UPDATE: 检查更新 +SETTINGS_OPEN_UPDATE_HELPER: 打开更新助手 +SETTINGS_OPEN: 开 +SETTINGS_CLOSE: 关 +SETTINGS_CLOSE_MINI_WINDOW_SYNC: 打开主窗口时关闭mini窗口 +SETTINGS_CLOSE_MAIN_WINDOW_SYNC: 打开mini窗口时关闭主窗口 +SETTINGS_ACCEPT_BETA_UPDATE: 接受Beta版本更新 +SETTINGS_LAUNCH_ON_BOOT: 开机自启 +SETTINGS_RENAME_BEFORE_UPLOAD: 手动重命名 +SETTINGS_TIMESTAMP_RENAME: 时间戳重命名 +SETTINGS_ADVANCED_RENAME: 高级重命名 +SETTINGS_ADVANCED_RENAME_ENABLE: 开启高级重命名 +SETTINGS_ADVANCED_RENAME_FORMAT: 重命名格式 +SETTINGS_OPEN_UPLOAD_TIPS: 开启上传进度提示 +SETTINGS_OPEN_UPLOAD_RESULT_TIPS: 开启上传结果提示 +SETTINGS_MINI_WINDOW_ON_TOP: Mini窗口置顶 +SETTINGS_AUTO_COPY_URL_AFTER_UPLOAD: 上传后自动复制URL +SETTINGS_TIPS_PLACEHOLDER_URL: 用占位符 $url 来表示url的位置 +SETTINGS_TIPS_PLACEHOLDER_FILENAME: 用占位符 $fileName 来表示文件名的位置 +SETTINGS_TIPS_PLACEHOLDER_EXTNAME: 用占位符 $extName 来表示文件格式的位置 +SETTINGS_TIPS_SUCH_AS: 如 +SETTINGS_UPLOAD_PROXY: 上传代理 +SETTINGS_PLUGIN_INSTALL_PROXY: 插件安装代理 +SETTINGS_PLUGIN_INSTALL_MIRROR: 插件安装镜像 +SETTINGS_CURRENT_VERSION: 当前版本 +SETTINGS_NEWEST_VERSION: 最新版本 +SETTINGS_GETING: 正在获取中 +SETTINGS_TIPS_HAS_NEW_VERSION: PicList更新啦,请点击确定重启触发更新 +SETTINGS_LOG_FILE_PATH: 日志文件路径 +SETTINGS_CONFIG_FILE_PATH: 配置文件路径 +SETTINGS_LOG_FILE: 常规日志文件 +SETTINGS_GUI_LOG_FILE: GUI日志文件 +SETTINGS_MANAGE_LOG_FILE: 管理日志文件 +SETTINGS_LOG_LEVEL: 日志记录等级 +SETTINGS_LOG_FILE_SIZE: 日志文件大小 +SETTINGS_SET_PICGO_SERVER: 设置PicGo-Server +SETTINGS_TIPS_SERVER_NOTICE: 如果你不知道Server的作用,请阅读文档,或者不用修改配置。 +SETTINGS_ENABLE_SERVER: 是否开启Server +SETTINGS_SET_SERVER_HOST: 设置监听地址 +SETTINGS_SET_SERVER_PORT: 设置监听端口 +SETTINGS_SET_SERVER_KEY: 设置鉴权密钥 +SETTINGS_SET_WEB_SERVER: 设置Web服务 +SETTINGS_TIPS_WEB_SERVER_NOTICE: 如果你不知道Web服务的作用,请阅读文档,或者不用修改配置。 +SETTINGS_SET_ENABLE_WEB_SERVER: 是否开启Web服务 +SETTINGS_SET_WEB_SERVER_HOST: 设置Web服务监听地址 +SETTINGS_SET_WEB_SERVER_PORT: 设置Web服务监听端口 +SETTINGS_SET_WEB_SERVER_PATH: 设置Web服务路径 +SETTINGS_TIP_PLACEHOLDER_WEB_HOST: 推荐默认地址:127.0.0.1 +SETTINGS_TIP_PLACEHOLDER_WEB_PORT: 推荐默认端口:37777 +SETTINGS_TIP_PLACEHOLDER_HOST: 推荐默认地址:127.0.0.1 +SETTINGS_TIP_PLACEHOLDER_PORT: 推荐默认端口:36677 +SETTINGS_TIP_PLACEHOLDER_KEY: 用于接口鉴权, 通过url参数添加'?key=xxx' +SETTINGS_SET_SERVER_AES_KEY: 设置接口数据加密密钥 +SETTINGS_LOG_LEVEL_ALL: 全部-All +SETTINGS_LOG_LEVEL_SUCCESS: 成功-Success +SETTINGS_LOG_LEVEL_ERROR: 错误-Error +SETTINGS_LOG_LEVEL_INFO: 普通-Info +SETTINGS_LOG_LEVEL_WARN: 提醒-Warn +SETTINGS_LOG_LEVEL_NONE: 不记录日志-None +SETTINGS_RESULT: 设置结果 +SETTINGS_DEFAULT_PICBED: 设置默认图床 +SETTINGS_SET_DEFAULT_PICBED: 设为默认图床 +SETTINGS_NOT_CONFIG_OPTIONS: 暂无配置项 +SETTINGS_USE_BUILTIN_CLIPBOARD_UPLOAD: 使用内置剪贴板上传 +SETTINGS_CHOOSE_LANGUAGE: 选择语言 +BUILTIN_CLIPBOARD_TIPS: 使用内置剪贴板函数而不是调用脚本获取剪贴板图片 +UPLOADER_CONFIG_NAME: 图床配置名 +UPLOADER_CONFIG_PLACEHOLDER: 请输入配置名称 +SELECTED_SETTING_HINT: 已选中 +SETTINGS_MAIN_WINDOW_SIZE: 默认主窗口大小(需重启) +SETTINGS_MAIN_WINDOW_SIZE_WIDTH: 默认主窗口宽度 +SETTINGS_MAIN_WINDOW_WIDTH_HINT: '默认宽度: 1200' +SETTINGS_MAIN_WINDOW_WIDTH_RULE: 窗口宽度必须大于100 +SETTINGS_MAIN_WINDOW_SIZE_HEIGHT: 默认主窗口高度 +SETTINGS_MAIN_WINDOW_HEIGHT_HINT: '默认高度: 800' +SETTINGS_MAIN_WINDOW_HEIGHT_RULE: 窗口高度必须大于100 +SETTINGS_RAW_PICGO_SIZE: 原PicGo大小 +SETTINGS_CUSTOM_MINI_ICON_PATH: 自定义Mini窗口图标路径 +SETTINGS_CUSTOM_MINI_ICON: 是否自定义Mini窗口图标 +SETTINGS_COMPRESS_AND_WATERMARK: 设置图片水印和压缩-格式转换等参数 +SETTINGS_SYNC_DELETE_CLOUD: 相册内删除时同步删除云端文件 +SETTINGS_ISHIDEDOCK: 是否隐藏dock图标 +SETTINGS_ISHIDEDOCK_TIPS: 不支持同时隐藏dock和托盘 +SETTINGS_ENCODE_OUTPUT_URL: 输出(复制) URL 时进行转义 +SETTINGS_WATCH_CLIPBOARD: 软件启动时自动监听剪贴板上传 +SETTINGS_SHORT_URL: 使用短链接 +SETTINGS_SHORT_URL_SERVER: 短链接服务 +SETTINGS_SHORT_URL_C1N_TOKEN: C1N Token +SETTINGS_SHORT_URL_YOURLS_DOMAIN: YOURLS域名 +SETTINGS_SHORT_URL_YOURLS_SIGNATURE: YOURLS signature +SETTINGS_SHORT_URL_CF_WORKER_HOST: Cloudflare Worker域名 +SETTINGS_DELETE_LOCAL_FILE_AFTER_UPLOAD: 上传后删除本地文件 +SETTINGS_SYNC_CONFIG: 设置配置同步 +SETTINGS_SYNC_CONFIG_TITLE: 同步设置 +SETTINGS_SYNC_CONFIG_NOTE: 同步的文件为配置文件 +SETTINGS_SYNC_CONFIG_SELECT_TYPE: 选择同步方式 +SETTINGS_SYNC_CONFIG_SELECT_FILE: 选择同步文件 +SETTINGS_SYNC_CONFIG_SELECT_CONFIG: 仅配置文件 +SETTINGS_SYNC_CONFIG_SELECT_GALLERY: 仅相册文件 +SETTINGS_SYNC_CONFIG_SELECT_BOTH: 配置文件和相册文件 +SETTINGS_SYNC_CONFIG_GITEA_HOST: Gitea 网址 +SETTINGS_SYNC_CONFIG_GITHUB_USERNAME: GitHub用户名 +SETTINGS_SYNC_CONFIG_GITEA_USERNAME: Gitea用户名 +SETTINGS_SYNC_CONFIG_GITEE_USERNAME: Gitee用户名 +SETTINGS_SYNC_CONFIG_GITHUB_REPO: 仓库(私有) +SETTINGS_SYNC_CONFIG_GITEA_REPO: 仓库 +SETTINGS_SYNC_CONFIG_GITEE_REPO: 仓库路径名 +SETTINGS_SYNC_CONFIG_GITHUB_BRANCH: GitHub分支 +SETTINGS_SYNC_CONFIG_GITEA_BRANCH: Gitea分支 +SETTINGS_SYNC_CONFIG_GITEE_BRANCH: Gitee分支 +SETTINGS_SYNC_CONFIG_GITHUB_TOKEN: GitHub Token +SETTINGS_SYNC_CONFIG_GITEA_TOKEN: Gitea Token +SETTINGS_SYNC_CONFIG_GITEE_TOKEN: Gitee Token +SETTINGS_SYNC_CONFIG_PROXY: 代理 +SETTINGS_SYNC_CONFIG_INTERVAL: 间隔(分钟) +SETTINGS_SYNC_CONFIG_GITHUB_USERNAME_PLACEHOLDER: 请输入GitHub用户名 +SETTINGS_SYNC_CONFIG_GITEA_USERNAME_PLACEHOLDER: 请输入Gitea用户名 +SETTINGS_SYNC_CONFIG_GITEE_USERNAME_PLACEHOLDER: 请输入Gitee用户名 +SETTINGS_SYNC_CONFIG_GITHUB_REPO_PLACEHOLDER: 请输入GitHub仓库名 +SETTINGS_SYNC_CONFIG_GITEA_REPO_PLACEHOLDER: 请输入Gitea仓库名 +SETTINGS_SYNC_CONFIG_GITEE_REPO_PLACEHOLDER: 请输入Gitee仓库名 +SETTINGS_SYNC_CONFIG_GITHUB_BRANCH_PLACEHOLDER: 请输入GitHub分支名 +SETTINGS_SYNC_CONFIG_GITEA_BRANCH_PLACEHOLDER: 请输入Gitea分支名 +SETTINGS_SYNC_CONFIG_GITEE_BRANCH_PLACEHOLDER: 请输入Gitee分支名 +SETTINGS_SYNC_CONFIG_GITHUB_TOKEN_PLACEHOLDER: 请输入GitHub Token +SETTINGS_SYNC_CONFIG_GITEA_TOKEN_PLACEHOLDER: 请输入Gitea Token +SETTINGS_SYNC_CONFIG_GITEE_TOKEN_PLACEHOLDER: 请输入Gitee Token +SETTINGS_SYNC_CONFIG_PROXY_PLACEHOLDER: 请输入代理地址 +SETTINGS_UP_DOWN_DESC: 上传下载配置文件 +SETTINGS_UP_DOWN_TITLE: 请在设置完同步配置后使用 +SETTINGS_SYNC_UPLOAD: 上传 +SETTINGS_SYNC_DOWNLOAD: 下载 +SETTINGS_SYNC_UPLOAD_ALL: 上传所有 +SETTINGS_SYNC_DOWNLOAD_ALL: 下载所有 +SETTINGS_SYNC_UPLOAD_SUCCESS: 上传成功 +SETTINGS_SYNC_UPLOAD_FAILED: 上传失败 +SETTINGS_SYNC_DOWNLOAD_SUCCESS: 下载成功 +SETTINGS_SYNC_DOWNLOAD_FAILED: 下载失败 +SETTINGS_SYNC_COMMON_CONFIG: 通用配置 +SETTINGS_SYNC_MANAGE_CONFIG: 管理配置 +SETTINGS_AUTO_IMPORT: 管理页面自动导入配置 +SETTINGS_AUTO_IMPORT_SELECT_PICBED: 选择需要开启自动导入的图床 +SETTINGS_TAB_SYSTEM: 系统设置 +SETTINGS_TAB_SYNC_CONFIG: 同步与配置 +SETTINGS_TAB_UPLOAD: 上传设置 +SETTINGS_TAB_ADVANCED: 高级设置 +SETTINGS_TAB_UPDATE: 更新 +# shortcut-page + +SHORTCUT_NAME: 快捷键名称 +SHORTCUT_BIND: 快捷键绑定 +SHORTCUT_STATUS: 状态 +SHORTCUT_ENABLED: 已启用 +SHORTCUT_DISABLED: 已禁用 +SHORTCUT_SOURCE: 来源 +SHORTCUT_HANDLE: 操作 +SHORTCUT_ENABLE: 启用 +SHORTCUT_DISABLE: 禁用 +SHORTCUT_EDIT: 编辑 +SHORTCUT_CHANGE_UPLOAD: 修改上传快捷键 + +# tray-page + +WAIT_TO_UPLOAD: 等待上传 +ALREADY_UPLOAD: 已上传 + +# upload-page + +PICTURE_UPLOAD: 图片上传 +DRAG_FILE_TO_HERE: 将文件拖拽到此处,或 +CLICK_TO_UPLOAD: 点击上传 +LINK_FORMAT: 链接格式 +CUSTOM: 自定义 +CLIPBOARD_PICTURE: 剪贴板图片 +TIPS_DRAG_VALID_PICTURE_OR_URL: 请拖入合法的图片文件或者图片URL地址 +TIPS_INPUT_URL: 请输入URL +TIPS_HTTP_PREFIX: http://或者https://开头 +TIPS_INPUT_VALID_URL: 请输入合法的URL + +# plugins + +PLUGIN_SEARCH_PLACEHOLDER: 搜索npm上的PicGo插件,或者点击上方按钮查看优秀插件列表 +PLUGIN_INSTALL: 安装 +PLUGIN_INSTALLING: 安装中 +PLUGIN_INSTALLED: 已安装 +PLUGIN_DOING_SOMETHING: 进行中 +PLUGIN_LIST: 插件列表 +PLUGIN_IMPORT_LOCAL: 导入本地插件 +PLUGIN_UPDATE_ALL: 更新全部插件 + +# tips + +TIPS_REMOVE_LINK: 此操作将把该图片移出相册, 是否继续? +TIPS_WILL_REMOVE_CHOOSED_IMAGES: 将在相册中移除刚才选中的 ${m} 张图片,是否继续? +TIPS_MUST_CONTAINS_URL: 必须含有$url 或 $fileName 或 $extName +TIPS_NETWORK_ERROR: 网络错误暂时无法获取 +TIPS_NEED_RELOAD: 需要重启生效 +TIPS_PLEASE_CHOOSE_LOG_LEVEL: 请选择日志记录等级 +TIPS_SET_SUCCEED: 设置成功 +TIPS_RESET_SUCCEED: 重置成功 +TIPS_PLUGIN_NOT_GUI_IMPLEMENT: 该插件未对可视化界面进行优化, 是否继续安装? +TIPS_CLICK_NOTIFICATION_TO_RELOAD: 请点击此通知重启应用以生效 +TIPS_GET_PLUGIN_LIST_FAILED: 获取插件列表失败 + +# manage page + +# manageSetting + +MANAGE_SETTING_TITLE: 管理页面设置 +MANAGE_SETTING_ISAUTOREFRESH_TITLE: 每次进入新目录时,是否自动刷新文件列表 +MANAGE_SETTING_ISAUTOREFRESH_TIPS: 仅对不分页模式有效,默认在加载过一次后自动缓存到数据库来加快下次加载速度 +MANAGE_SETTING_CLEAR_CACHE_TITLE: '清空文件列表缓存数据库 已占用:' +MANAGE_SETTING_CLEAR_CACHE_FREE_TITLE: '剩余可用:' +MANAGE_SETTING_CLEAR_CACHE_TIPS: 清空后下次进入新目录时将会重新加载文件列表 +MANAGE_SETTING_CLEAR_CACHE_PROMPT: 确定要清空文件列表缓存数据库吗? +MANAGE_SETTING_CLEAR_CACHE_BUTTON: 清空 +MANAGE_SETTING_ISSHOWTHUMBNAIL_TITLE: 图片显示为原图而非默认文件格式图标(需要存储桶可公开访问) +MANAGE_SETTING_ISSHOWLIST_TITLE: 文件列表默认显示方式 +MANAGE_SETTING_ISSHOWLIST_ON: 列表 +MANAGE_SETTING_ISSHOWLIST_OFF: 卡片 +MANAGE_SETTING_ISFORCECUSTOMURLHTTPS_TITLE: 为自定义域名开启强制HTTPS +MANAGE_SETTING_ISFORCECUSTOMURLHTTPS_TIPS: 开启后, 复制链接等操作将会自动为自定义域名添加https前缀 +MANAGE_SETTING_ISUPLOADKEEPDIRSTRUCTURE_TITLE: 上传时保留目录结构 +MANAGE_SETTING_ISUPLOADKEEPDIRSTRUCTURE_TIPS: 关闭后会将所有文件展开到指定目录下 +MANAGE_SETTING_ISDOWNLOADFILEKEEPDIRSTRUCTURE_TITLE_A: 下载 +MANAGE_SETTING_ISDOWNLOADFILEKEEPDIRSTRUCTURE_TITLE_B: 文件 +MANAGE_SETTING_ISDOWNLOADFILEKEEPDIRSTRUCTURE_TITLE_C: 时保留目录结构 +MANAGE_SETTING_ISDOWNLOADFOLDERKEEPDIRSTRUCTURE_TITLE_D: 文件夹 +MANAGE_SETTING_ISDOWNLOADFILEKEEPDIRSTRUCTURE_TIPS: 开启后,下载时会保留原始目录结构 +MANAGE_SETTING_MAX_DOWNLOAD_FILE_SIZE_TITLE: 最大同时下载文件数(1-9999) +MANAGE_SETTING_MAX_DOWNLOAD_FILE_SIZE_TIPS: 腾讯云由于后端实现不同,该设置不生效 +MANAGE_SETTING_MAX_DOWNLOAD_FILE_SIZE_INPUT_TIPS: 请输入最大同时下载文件数 +MANAGE_SETTING_ISIGNORECASE_TITLE: 文件搜索时,是否忽略大小写 +MANAGE_SETTING_ISIGNORECASE_TIPS: 开启后,搜索时会忽略大小写 +MANAGE_SETTING_TIMESTAMPRENAME_TITLE: 上传文件时间戳重命名--(优先级最高) +MANAGE_SETTING_TIMESTAMPRENAME_TIPS: 开启后,上传文件时会自动重命名为时间戳 +MANAGE_SETTING_RANDOMSTRINGRENAME_TITLE: 上传文件随机字符串重命名--(优先级中) +MANAGE_SETTING_RANDOMSTRINGRENAME_TIPS: 随机字符串长度为20 +MANAGE_SETTING_CUSTOMRENAME_TITLE: 上传文件自定义重命名--(优先级最低) +MANAGE_SETTING_CUSTOMRENAME_TIPS: 请填写自定义重命名格式 +MANAGE_SETTING_CUSTOM_PATTERN_TITLE: 自定义重命名格式,占位符请参考下表,可自由组合 +MANAGE_SETTING_CUSTOM_PATTERN_TIPS: 请填写自定义重命名格式 +MANAGE_SETTING_CUSTOM_PATTERN_TABLE_TITLE: 占位符 +MANAGE_SETTING_CUSTOM_PATTERN_TABLE_TIPS: 描述 +MANAGE_SETTING_PRESIGNED_URL_EXPIRE_TITLE: 预签名URL过期时间(单位:秒) +MANAGE_SETTING_PRESIGNED_URL_EXPIRE_TIPS: 请填写预签名URL过期时间 +MANAGE_SETTING_CHOOSE_COPY_FORMAT_TITLE: 选择默认复制的链接格式 +MANAGE_SETTING_CHOOSE_COPY_FORMAT_MARKDOWN: Markdown +MANAGE_SETTING_CHOOSE_COPY_FORMAT_MARKDOWN_WITH_LINK: Markdown(带链接) +MANAGE_SETTING_CHOOSE_COPY_FORMAT_RAWURL: 原始链接 +MANAGE_SETTING_CHOOSE_COPY_FORMAT_HTML: HTML格式 +MANAGE_SETTING_CHOOSE_COPY_FORMAT_BBCODE: BBCode格式 +MANAGE_SETTING_CHOOSE_COPY_FORMAT_CUSTOM: 自定义格式 +MANAGE_SETTING_CUSTOM_COPY_FORMAT_TITLE: 自定义链接格式($url为链接,$fileName为文件名) +MANAGE_SETTING_CUSTOM_COPY_FORMAT_TIPS: 请填写自定义链接格式 +MANAGE_SETTING_CHOOSE_DOWNLOAD_FOLDER_TITLE: 选择下载目录 +MANAGE_SETTING_CHOOSE_DOWNLOAD_FOLDER_TIPS: 系统默认下载目录 +MANAGE_SETTING_CHOOSE_DOWNLOAD_FOLDER_BUTTON: 选择目录 +MANAGE_SETTING_COPY_MESSAGE: 已复制 +MANAGE_SETTING_CLEAR_CACHE_SUCCESS: 清除成功 +MANAGE_SETTING_CLEAR_CACHE_FAILED: 清除失败 +MANAGE_SETTING_ISENCODEURL_TITLE: 复制链接时进行URL编码 +MANAGE_SETTING_ISENCODEURL_TIPS: 根据平台选择是否开启 + +# Empty +MANAGE_NO_DATA: 暂无数据 + +# Main Page +MANAGE_MAIN_PAGE_NEW_BUCKET: 新建存储桶 +MANAGE_MAIN_PAGE_BACK_TO_HOME: 返回首页 +MANAGE_MAIN_PAGE_SWITCH_PICBED: 切换图床 +MANAGE_MAIN_PAGE_SETTING: 设置 +MANAGE_MAIN_PAGE_SUBMIT: 提交 +MANAGE_MAIN_PAGE_TIPS: 提示 +MANAGE_MAIN_PAGE_TIPS_SUCCESS: 创建成功 +MANAGE_MAIN_PAGE_TIPS_FAILED: 创建失败 +MANAGE_MAIN_PAGE_BUCKET: 存储桶 +MANAGE_MAIN_PAGE_GALLERY: 相册 +MANAGE_MAIN_PAGE_REPOSITORY: 仓库 + +# manage constant +MANAGE_CONSTANT_BASE_RULE: 请输入 +MANAGE_CONSTANT_ITEMS_PAGE_RULE_MESSAGE_A: 请输入每页显示数量 +MANAGE_CONSTANT_ITEMS_PAGE_RULE_MESSAGE_B: 每页显示数量必须为数字 +MANAGE_CONSTANT_ITEMS_PAGE_RULE_MESSAGE_C: 每页显示数量必须在20-1000之间 +MANAGE_CONSTANT_ALIAS_RULE_MESSAGE_A: 请输入别名, 该配置的唯一标识 +MANAGE_CONSTANT_ALIAS_RULE_MESSAGE_B: 别名只能包含中文、英文、数字、下划线和中划线 +MANAGE_CONSTANT_ALIAS_TOOLTIP: 别名只能包含中文、英文、数字、下划线和中划线 +MANAGE_CONSTANT_ITEMS_PAGE_TOOLTIP: 每页显示数量必须在20-1000之间 +MANAGE_CONSTANT_PAGING_TOOLTIP: 关闭分页时,目录列表将使用数据库缓存以优化性能 +MANAGE_CONSTANT_BUCKET_NAME_TOOLTIP: 英文逗号分隔,如:bucket1,bucket2,bucket3,和起始目录顺序一一对应 +MANAGE_CONSTANT_BASE_DIR_TOOLTIP: '英文逗号分隔,如:/dir1,/dir2,/dir3, 和存储桶顺序一一对应' +MANAGE_CONSTANT_IS_AUTO_CUSTOM_URL_TOOLTIP: 开启时,将自动获取存储桶绑定的域名,关闭时可手动填写 + +MANAGE_CONSTANT_SMMS_ALIAS_DESC: 配置别名-必需 +MANAGE_CONSTANT_SMMS_ALIAS_PLACEHOLDER: 该配置的唯一标识 +MANAGE_CONSTANT_SMMS_TOKEN_DESC: Token-必需 +MANAGE_CONSTANT_SMMS_TOKEN_PLACEHOLDER: 请填写Token +MANAGE_CONSTANT_SMMS_PAGING_DESC: 是否开启分页 +MANAGE_CONSTANT_SMMS_EXPLAIN: '大陆地区请访问备用域名https://smms.app, 请勿大批量上传图片,否则API接口会被限制' +MANAGE_CONSTANT_SMMS_REFER_TEXT: '配置教程请参考: ' + +MANAGE_CONSTANT_QINIU_NAME: 七牛云 +MANAGE_CONSTANT_QINIU_ALIAS_DESC: 配置别名-必需 +MANAGE_CONSTANT_QINIU_ALIAS_PLACEHOLDER: 该配置的唯一标识 +MANAGE_CONSTANT_QINIU_ACCESS_KEY_DESC: accessKey-必需 +MANAGE_CONSTANT_QINIU_ACCESS_KEY_PLACEHOLDER: 请填写accessKey +MANAGE_CONSTANT_QINIU_SECRET_KEY_DESC: secretKey-必需 +MANAGE_CONSTANT_QINIU_SECRET_KEY_PLACEHOLDER: 请填写secretKey +MANAGE_CONSTANT_QINIU_BUCKET_DESC: 空间名-可选 +MANAGE_CONSTANT_QINIU_BUCKET_PLACEHOLDER: 英文逗号分隔,例如:bucket1,bucket2 +MANAGE_CONSTANT_QINIU_BASE_DIR_DESC: 起始目录-可选 +MANAGE_CONSTANT_QINIU_BASE_DIR_PLACEHOLDER: 英文逗号分隔,例如:/dir1,/dir2 +MANAGE_CONSTANT_QINIU_IS_AUTO_CUSTOM_URL_DESC: 是否自动获取绑定域名 +MANAGE_CONSTANT_QINIU_PAGING_DESC: 是否开启分页 +MANAGE_CONSTANT_QINIU_ITEMS_PAGE_DESC: 每页显示数量 +MANAGE_CONSTANT_QINIU_EXPLAIN: 空间名和起始目录配置时可通过英文逗号分隔设置,顺序必须一致,逗号间留空或缺失项使用默认值 +MANAGE_CONSTANT_QINIU_REFER_TEXT: '配置教程请参考: ' + +MANAGE_CONSTANT_GITHUB_ALIAS_DESC: 配置别名-必需 +MANAGE_CONSTANT_GITHUB_ALIAS_PLACEHOLDER: 该配置的唯一标识 +MANAGE_CONSTANT_GITHUB_TOKEN_DESC: Token-必需 +MANAGE_CONSTANT_GITHUB_TOKEN_PLACEHOLDER: 请填写Token +MANAGE_CONSTANT_GITHUB_TOKEN_TIPS: '请提供具有完整repo权限的token,否则部分功能可能无法使用' +MANAGE_CONSTANT_GITHUB_USER_DESC: 用户名-必需 +MANAGE_CONSTANT_GITHUB_USER_PLACEHOLDER: 请填写用户名 +MANAGE_CONSTANT_GITHUB_USER_RULE_MESSAGE: 用户名 +MANAGE_CONSTANT_GITHUB_PROXY_DESC: 代理地址-可选 +MANAGE_CONSTANT_GITHUB_PROXY_PLACEHOLDER: '例如:http://127.0.0.1:1080' +MANAGE_CONSTANT_GITHUB_PROXY_TIPS: '如果访问速度较慢,可以尝试配置代理' +MANAGE_CONSTANT_GITHUB_PAGING_DESC: 是否开启分页 +MANAGE_CONSTANT_GITHUB_CUSTOM_URL_DESC: CDN加速域名-可选 +MANAGE_CONSTANT_GITHUB_CUSTOM_URL_PLACEHOLDER: '支持使用{username}、{repo}、{branch}和{path}作为替换占位符,用于适配不同仓库和分支' +MANAGE_CONSTANT_GITHUB_CUSTOM_URL_TIPS: '例如: https://cdn.staticaly.com/gh/{username}/{repo}@{branch}/{path}' +MANAGE_CONSTANT_GITHUB_CUSTOM_URL_RULE_MESSAGE_A: '加速域名请以http://或https://开头' +MANAGE_CONSTANT_GITHUB_CUSTOM_URL_RULE_MESSAGE_B: 加速域名中的大括号必须成对出现 +MANAGE_CONSTANT_GITHUB_EXPLAIN: API调用有每小时上限,此外不支持上传超过100M的文件 +MANAGE_CONSTANT_GITHUB_REFER_TEXT: '配置教程请参考: ' + +MANAGE_CONSTANT_ALIYUN_NAME: 阿里云 +MANAGE_CONSTANT_ALIYUN_ALIAS_DESC: 配置别名-必需 +MANAGE_CONSTANT_ALIYUN_ALIAS_PLACEHOLDER: 该配置的唯一标识 +MANAGE_CONSTANT_ALIYUN_ACCESS_KEY_ID_DESC: accessKeyId-必需 +MANAGE_CONSTANT_ALIYUN_ACCESS_KEY_ID_PLACEHOLDER: 请填写accessKeyId +MANAGE_CONSTANT_ALIYUN_ACCESS_KEY_SECRET_DESC: accessKeySecret-必需 +MANAGE_CONSTANT_ALIYUN_ACCESS_KEY_SECRET_PLACEHOLDER: 请填写accessKeySecret +MANAGE_CONSTANT_ALIYUN_BUCKET_DESC: 存储桶名-可选 +MANAGE_CONSTANT_ALIYUN_BUCKET_PLACEHOLDER: 英文逗号分隔,例如:bucket1,bucket2 +MANAGE_CONSTANT_ALIYUN_BASE_DIR_DESC: 起始目录-可选 +MANAGE_CONSTANT_ALIYUN_BASE_DIR_PLACEHOLDER: 英文逗号分隔,例如:/dir1,/dir2 +MANAGE_CONSTANT_ALIYUN_IS_AUTO_CUSTOM_URL_DESC: 是否自动获取绑定域名 +MANAGE_CONSTANT_ALIYUN_PAGING_DESC: 是否开启分页 +MANAGE_CONSTANT_ALIYUN_ITEMS_PAGE_DESC: 每页显示数量 +MANAGE_CONSTANT_ALIYUN_EXPLAIN: 存储桶名和起始目录配置时可通过英文逗号分隔不同存储桶的设置,顺序必须一致,逗号间留空或缺失项使用默认值 +MANAGE_CONSTANT_ALIYUN_REFER_TEXT: '配置教程请参考: ' + +MANAGE_CONSTANT_TENCENT_NAME: 腾讯云 +MANAGE_CONSTANT_TENCENT_ALIAS_DESC: 配置别名-必需 +MANAGE_CONSTANT_TENCENT_ALIAS_PLACEHOLDER: 该配置的唯一标识 +MANAGE_CONSTANT_TENCENT_SECRET_ID_DESC: secretId-必需 +MANAGE_CONSTANT_TENCENT_SECRET_ID_PLACEHOLDER: 请填写secretId +MANAGE_CONSTANT_TENCENT_SECRET_KEY_DESC: secretKey-必需 +MANAGE_CONSTANT_TENCENT_SECRET_KEY_PLACEHOLDER: 请填写secretKey +MANAGE_CONSTANT_TENCENT_APPID_DESC: appId-必需 +MANAGE_CONSTANT_TENCENT_APPID_PLACEHOLDER: 请填写appId +MANAGE_CONSTANT_TENCENT_APPID_TOOLTIP: '例如:1250000000' +MANAGE_CONSTANT_TENCENT_BUCKET_DESC: 存储桶名-可选(注意包含AppId) +MANAGE_CONSTANT_TENCENT_BUCKET_PLACEHOLDER: 英文逗号分隔,例如:bucket1-1250000000,bucket2-1250000000 +MANAGE_CONSTANT_TENCENT_BASE_DIR_DESC: 起始目录-可选 +MANAGE_CONSTANT_TENCENT_BASE_DIR_PLACEHOLDER: 英文逗号分隔,例如:/dir1,/dir2 +MANAGE_CONSTANT_TENCENT_IS_AUTO_CUSTOM_URL_DESC: 是否自动获取绑定域名 +MANAGE_CONSTANT_TENCENT_PAGING_DESC: 是否开启分页 +MANAGE_CONSTANT_TENCENT_ITEMS_PAGE_DESC: 每页显示数量 +MANAGE_CONSTANT_TENCENT_EXPLAIN: 存储桶名和起始目录配置时可通过英文逗号分隔不同存储桶的设置,顺序必须一致,逗号间留空或缺失项使用默认值 +MANAGE_CONSTANT_TENCENT_REFER_TEXT: '配置教程请参考: ' + +MANAGE_CONSTANT_UPYUN_NAME: 又拍云 +MANAGE_CONSTANT_UPYUN_ALIAS_DESC: 配置别名-必需 +MANAGE_CONSTANT_UPYUN_ALIAS_PLACEHOLDER: 该配置的唯一标识 +MANAGE_CONSTANT_UPYUN_BUCKET_DESC: 服务名-必需 +MANAGE_CONSTANT_UPYUN_BUCKET_PLACEHOLDER: 对应其它对象存储的存储桶名 +MANAGE_CONSTANT_UPYUN_OPERATOR_NAME_DESC: 操作员名-必需 +MANAGE_CONSTANT_UPYUN_OPERATOR_NAME_PLACEHOLDER: 推荐使用具有读取、写入和删除完整权限的操作员 +MANAGE_CONSTANT_UPYUN_OPERATOR_NAME_RULE: 操作员 +MANAGE_CONSTANT_UPYUN_OPERATOR_PWD_DESC: 操作员密码-必需 +MANAGE_CONSTANT_UPYUN_OPERATOR_PWD_PLACEHOLDER: 请填写密码 +MANAGE_CONSTANT_UPYUN_OPERATOR_PWD_RULE: 操作员密码 +MANAGE_CONSTANT_UPYUN_BASE_DIR_DESC: 起始目录-可选 +MANAGE_CONSTANT_UPYUN_BASE_DIR_PLACEHOLDER: 读取文件时的初始目录 +MANAGE_CONSTANT_UPYUN_IS_AUTO_CUSTOM_URL_DESC: 加速域名-必需 +MANAGE_CONSTANT_UPYUN_IS_AUTO_CUSTOM_URL_PLACEHOLDER: '请以http://或https://开头' +MANAGE_CONSTANT_UPYUN_IS_AUTO_CUSTOM_URL_RULE_MESSAGE_A: 加速域名不能为空 +MANAGE_CONSTANT_UPYUN_IS_AUTO_CUSTOM_URL_RULE_MESSAGE_B: '自定义域名请以http://或https://开头' +MANAGE_CONSTANT_UPYUN_ANTI_LEECH_TOKEN_DESC: 防盗链密钥-可选 +MANAGE_CONSTANT_UPYUN_ANTI_LEECH_TOKEN_PLACEHOLDER: 请填写防盗链密钥 +MANAGE_CONSTANT_UPYUN_ANTI_LEECH_TOKEN_TOOLTIP: 如果不填写,默认不启用防盗链 +MANAGE_CONSTANT_UPYUN_EXPIRE_TIME_DESC: 防盗链过期时间(秒)-可选 +MANAGE_CONSTANT_UPYUN_PAGING: 是否开启分页 +MANAGE_CONSTANT_UPYUN_ITEMS_PAGE: 每页显示数量 +MANAGE_CONSTANT_UPYUN_EXPLAIN: 又拍云图床务必填写加速域名,否则无法正常使用 +MANAGE_CONSTANT_UPYUN_REFER_TEXT: '配置教程请参考: ' + +MANAGE_CONSTANT_IMGUR_NAME: Imgur +MANAGE_CONSTANT_IMGUR_ALIAS_DESC: 配置别名-必需 +MANAGE_CONSTANT_IMGUR_ALIAS_PLACEHOLDER: 该配置的唯一标识 +MANAGE_CONSTANT_IMGUR_USERNAME_DESC: imgur用户名-必需 +MANAGE_CONSTANT_IMGUR_USERNAME_PLACEHOLDER: 请填写imgur用户名 +MANAGE_CONSTANT_IMGUR_ACCESS_TOKEN_DESC: access token-必需 +MANAGE_CONSTANT_IMGUR_ACCESS_TOKEN_PLACEHOLDER: 请填写access token +MANAGE_CONSTANT_IMGUR_ACCESS_TOKEN_TOOLTIP: 不是clientID,请参考配置教程 +MANAGE_CONSTANT_IMGUR_PROXY_DESC: 代理-可选 +MANAGE_CONSTANT_IMGUR_PROXY_PLACEHOLDER: '例如:http://127.0.0.1:1080' +MANAGE_CONSTANT_IMGUR_PROXY_TOOLTIP: 大陆地区请使用代理,否则无法正常使用 +MANAGE_CONSTANT_IMGUR_EXPLAIN: 大陆地区请使用代理,API调用存在限制,请注意使用频率 +MANAGE_CONSTANT_IMGUR_REFER_TEXT: '配置教程请参考: ' + +MANAGE_CONSTANT_S3_NAME: S3兼容云 +MANAGE_CONSTANT_S3_ALIAS_DESC: 配置别名-必需 +MANAGE_CONSTANT_S3_ALIAS_PLACEHOLDER: 该配置的唯一标识 +MANAGE_CONSTANT_S3_ACCESS_KEY_ID_DESC: accessKeyId-必需 +MANAGE_CONSTANT_S3_ACCESS_KEY_ID_PLACEHOLDER: 请填写accessKeyId +MANAGE_CONSTANT_S3_SECRET_ACCESS_KEY_DESC: secretAccessKey-必需 +MANAGE_CONSTANT_S3_SECRET_ACCESS_KEY_PLACEHOLDER: 请填写secretAccessKey +MANAGE_CONSTANT_S3_ENDPOINT_DESC: endpoint-可选 +MANAGE_CONSTANT_S3_ENDPOINT_PLACEHOLDER: '例如:s3.us-east-1.amazonaws.com' +MANAGE_CONSTANT_S3_ENDPOINT_TOOLTIP: 如果不填写,默认访问 AWS S3,请提供根API endpoint +MANAGE_CONSTANT_S3_SSLENABLED_DESC: 使用HTTPS连接 +MANAGE_CONSTANT_S3_SSLENABLED_TOOLTIP: 如果您的平台不支持,请关闭该选项 +MANAGE_CONSTANT_S3_FORCE_PATH_STYLE_DESC: 启用 S3 Path style +MANAGE_CONSTANT_S3_FORCE_PATH_STYLE_TOOLTIP: 例如使用 minio 时需要启用 +MANAGE_CONSTANT_S3_PROXY_DESC: 代理-可选 +MANAGE_CONSTANT_S3_PROXY_PLACEHOLDER: '例如:http://127.0.0.1:1080' +MANAGE_CONSTANT_S3_PROXY_TOOLTIP: 如果部分平台大陆地区无法访问,请使用代理 +MANAGE_CONSTANT_S3_ACL_FOR_UPLOAD_DESC: 上传文件的权限 +MANAGE_CONSTANT_S3_ACL_FOR_UPLOAD_OPTIONS_PRIVATE: 私有 +MANAGE_CONSTANT_S3_ACL_FOR_UPLOAD_OPTIONS_PUBLIC_READ: 公共读 +MANAGE_CONSTANT_S3_ACL_FOR_UPLOAD_OPTIONS_PUBLIC_READ_WRITE: 公共读写 +MANAGE_CONSTANT_S3_ACL_FOR_UPLOAD_OPTIONS_AUTHENTICATED_READ: 授权读 +MANAGE_CONSTANT_S3_ACL_FOR_UPLOAD_OPTIONS_BUCKET_OWNER_READ: 桶所有者读 +MANAGE_CONSTANT_S3_ACL_FOR_UPLOAD_OPTIONS_BUCKET_OWNER_FULL_CONTROL: 桶所有者完全控制 +MANAGE_CONSTANT_S3_ACL_FOR_UPLOAD_OPTIONS_AWS_EXEC_READ: AWS执行读 +MANAGE_CONSTANT_S3_ACL_FOR_UPLOAD_TOOLTIP: '上传文件的权限,可选值:private、public-read、public-read-write、authenticated-read、bucket-owner-read、bucket-owner-full-control、aws-exec-read' +MANAGE_CONSTANT_S3_BUCKET_DESC: 存储桶名-可选 +MANAGE_CONSTANT_S3_BUCKET_PLACEHOLDER: 英文逗号分隔,例如:bucket1,bucket2 +MANAGE_CONSTANT_S3_BASE_DIR_DESC: 起始目录-可选 +MANAGE_CONSTANT_S3_BASE_DIR_PLACEHOLDER: '英文逗号分隔,例如:/dir1,/dir2' +MANAGE_CONSTANT_S3_DOGE_CLOUD_SUPPORT_DESC: 是否使用Doge Cloud +MANAGE_CONSTANT_S3_DOGE_CLOUD_SUPPORT_TOOLTIP: 开启后,将使用Doge Cloud的API +MANAGE_CONSTANT_S3_PAGING_DESC: 是否开启分页 +MANAGE_CONSTANT_S3_ITEMS_PAGE_DESC: 每页显示数量 +MANAGE_CONSTANT_S3_EXPLAIN: 存储桶名和起始目录配置时可通过英文逗号分隔不同存储桶的设置,顺序必须一致,逗号间留空或缺失项使用默认值 +MANAGE_CONSTANT_S3_REFER_TEXT: '配置教程请参考: ' + +MANAGE_CONSTANT_WEBDAV_NAME: WebDAV +MANAGE_CONSTANT_WEBDAV_ALIAS_DESC: 配置别名-必需 +MANAGE_CONSTANT_WEBDAV_ALIAS_PLACEHOLDER: 该配置的唯一标识 +MANAGE_CONSTANT_WEBDAV_HOST_DESC: 地址-必需 +MANAGE_CONSTANT_WEBDAV_HOST_PLACEHOLDER: '例如:https://example.com/dav' +MANAGE_CONSTANT_WEBDAV_HOST_TOOLTIP: 请填写完整的WebDAV地址 +MANAGE_CONSTANT_WEBDAV_USERNAME_DESC: 用户名-必需 +MANAGE_CONSTANT_WEBDAV_USERNAME_PLACEHOLDER: 请填写用户名 +MANAGE_CONSTANT_WEBDAV_BUCKET_DESC: 特殊配置 +MANAGE_CONSTANT_WEBDAV_BUCKET_PLACEHOLDER: '例如:bucket1' +MANAGE_CONSTANT_WEBDAV_BUCKET_TOOLTIP: 此处不可修改,仅为软件兼容性考虑 +MANAGE_CONSTANT_WEBDAV_PASSWORD_DESC: 密码-必需 +MANAGE_CONSTANT_WEBDAV_PASSWORD_PLACEHOLDER: 请填写密码 +MANAGE_CONSTANT_WEBDAV_BASE_DIR_DESC: 起始目录-可选 +MANAGE_CONSTANT_WEBDAV_BASE_DIR_PLACEHOLDER: '例如:/dir1' +MANAGE_CONSTANT_WEBDAV_CUSTOM_URL_DESC: 自定义域名-可选 +MANAGE_CONSTANT_WEBDAV_CUSTOM_URL_PLACEHOLDER: '例如:https://example.com' +MANAGE_CONSTANT_WEBDAV_CUSTOM_URL_TOOLTIP: 如果您的WebDAV服务器支持自定义域名,请填写 +MANAGE_CONSTANT_WEBDAV_CUSTOM_URL_RULE_MESSAGE: '自定义域名请以http://或https://开头' +MANAGE_CONSTANT_WEBDAV_WEB_PATH: 网址拼接用起始路径 +MANAGE_CONSTANT_WEBDAV_WEB_PATH_PLACEHOLDER: '例如:test/ttc' +MANAGE_CONSTANT_WEBDAV_WEB_PATH_TOOLTIP: '用于拼接网址' +MANAGE_CONSTANT_WEBDAV_PROXY_DESC: 代理-可选 +MANAGE_CONSTANT_WEBDAV_PROXY_PLACEHOLDER: '例如:http://127.0.0.1:1080' +MANAGE_CONSTANT_WEBDAV_PROXY_TOOLTIP: 如果需要特殊网络环境才能访问,请使用代理 +MANAGE_CONSTANT_WEBDAV_SSL_DESC: 使用HTTPS连接 +MANAGE_CONSTANT_WEBDAV_SSL_TOOLTIP: 根据WebDAV服务器的配置,如果您的服务器不支持HTTPS,请关闭该选项 +MANAGE_CONSTANT_WEBDAV_AUTH_TYPE_DESC: 认证类型 +MANAGE_CONSTANT_WEBDAV_EXPLAIN: 'WebDAV配置' +MANAGE_CONSTANT_WEBDAV_REFER_TEXT: '配置教程请参考: ' + +MANAGE_CONSTANT_LOCAL_NAME: 本地存储 +MANAGE_CONSTANT_LOCAL_ALIAS_DESC: 配置别名-必需 +MANAGE_CONSTANT_LOCAL_ALIAS_PLACEHOLDER: 该配置的唯一标识 +MANAGE_CONSTANT_LOCAL_BASE_DIR_DESC: 起始目录-必需 +MANAGE_CONSTANT_LOCAL_BASE_DIR_PLACEHOLDER: 请填写起始目录 +MANAGE_CONSTANT_LOCAL_CUSTOM_URL_DESC: 自定义域名-可选 +MANAGE_CONSTANT_LOCAL_CUSTOM_URL_PLACEHOLDER: '例如:https://example.com' +MANAGE_CONSTANT_LOCAL_CUSTOM_URL_TOOLTIP: 如果您的本地存储支持自定义域名,请填写 +MANAGE_CONSTANT_LOCAL_WEB_PATH: 网址拼接用起始路径 +MANAGE_CONSTANT_LOCAL_WEB_PATH_PLACEHOLDER: '例如:test/ttc' +MANAGE_CONSTANT_LOCAL_WEB_PATH_TOOLTIP: '用于拼接网址' +MANAGE_CONSTANT_LOCAL_EXPLAIN: '本地存储配置' +MANAGE_CONSTANT_LOCAL_REFER_TEXT: '配置教程请参考: ' +MANAGE_CONSTANT_LOCAL_BASE_DIR_RULE_MESSAGE: 起始目录不能为空 +MANAGE_CONSTANT_LOCAL_BUCKET_DESC: 特殊配置 +MANAGE_CONSTANT_LOCAL_BUCKET_PLACEHOLDER: '例如:bucket1' +MANAGE_CONSTANT_LOCAL_BUCKET_TOOLTIP: 此处不可修改,仅为软件兼容性考虑 + +MANAGE_CONSTANT_SFTP_NAME: SFTP +MANAGE_CONSTANT_SFTP_ALIAS_DESC: 配置别名-必需 +MANAGE_CONSTANT_SFTP_ALIAS_PLACEHOLDER: 该配置的唯一标识 +MANAGE_CONSTANT_SFTP_HOST_DESC: SSH地址-必需 +MANAGE_CONSTANT_SFTP_HOST_PLACEHOLDER: '例如:233.233.233.233' +MANAGE_CONSTANT_SFTP_PORT_DESC: SSH端口-必需 +MANAGE_CONSTANT_SFTP_PORT_PLACEHOLDER: '例如:22' +MANAGE_CONSTANT_SFTP_USERNAME_DESC: 用户名 +MANAGE_CONSTANT_SFTP_USERNAME_PLACEHOLDER: 请填写用户名 +MANAGE_CONSTANT_SFTP_PASSWORD_DESC: 密码 +MANAGE_CONSTANT_SFTP_PASSWORD_PLACEHOLDER: 请填写密码 +MANAGE_CONSTANT_SFTP_PRIVATE_KEY_DESC: 私钥地址 +MANAGE_CONSTANT_SFTP_PRIVATE_KEY_PLACEHOLDER: 请填写私钥地址 +MANAGE_CONSTANT_SFTP_PRIVATE_KEY_TOOLTIP: '例如:/home/user/.ssh/id_rsa' +MANAGE_CONSTANT_SFTP_PASSPHRASE_DESC: 私钥密码 +MANAGE_CONSTANT_SFTP_PASSPHRASE_PLACEHOLDER: 请填写私钥密码 +MANAGE_CONSTANT_SFTP_BASE_DIR_DESC: 起始目录-可选 +MANAGE_CONSTANT_SFTP_BASE_DIR_PLACEHOLDER: '例如:/dir1' +MANAGE_CONSTANT_SFTP_CUSTOM_URL_DESC: 自定义域名-可选 +MANAGE_CONSTANT_SFTP_CUSTOM_URL_PLACEHOLDER: '例如:https://example.com' +MANAGE_CONSTANT_SFTP_CUSTOM_URL_TOOLTIP: 如果您的对应路径支持域名访问,请填写 +MANAGE_CONSTANT_SFTP_WEB_PATH: 网址拼接用起始路径 +MANAGE_CONSTANT_SFTP_WEB_PATH_PLACEHOLDER: '例如:test/ttc' +MANAGE_CONSTANT_SFTP_WEB_PATH_TOOLTIP: '用于拼接网址' +MANAGE_CONSTANT_SFTP_FILE_PERMISSIONS_DESC: 文件权限 +MANAGE_CONSTANT_SFTP_FILE_PERMISSIONS_PLACEHOLDER: '例如:0644' +MANAGE_CONSTANT_SFTP_FILE_PERMISSIONS_TOOLTIP: '用于设置上传文件的权限' +MANAGE_CONSTANT_SFTP_DIR_PERMISSIONS_DESC: 目录权限 +MANAGE_CONSTANT_SFTP_DIR_PERMISSIONS_PLACEHOLDER: '例如:0755' +MANAGE_CONSTANT_SFTP_DIR_PERMISSIONS_TOOLTIP: '用于设置上传目录的权限' +MANAGE_CONSTANT_SFTP_EXPLAIN: 'SFTP配置' +MANAGE_CONSTANT_SFTP_REFER_TEXT: '配置教程请参考: ' +MANAGE_CONSTANT_SFTP_BASE_DIR_RULE_MESSAGE: 起始目录不能为空 +MANAGE_CONSTANT_SFTP_BUCKET_DESC: 特殊配置 +MANAGE_CONSTANT_SFTP_BUCKET_PLACEHOLDER: '例如:bucket1' +MANAGE_CONSTANT_SFTP_BUCKET_TOOLTIP: 此处不可修改,仅为软件兼容性考虑 + + +MANAGE_LOGIN_PAGE_PANE_NAME: 已保存配置 +MANAGE_LOGIN_PAGE_PANE_DESC: 点击图标和别名可查看详情 +MANAGE_LOGIN_PAGE_PANE_LOADING: 导入配置... +MANAGE_LOGIN_PAGE_PANE_KEY_NAME: 配置项 +MANAGE_LOGIN_PAGE_PANE_KEY_VALUE: 值 +MANAGE_LOGIN_PAGE_PANE_ENTER: 进入 +MANAGE_LOGIN_PAGE_PANE_DELETE: 删除 +MANAGE_LOGIN_PAGE_PANE_SELECT_PLACEHOLDER: 请选择 +MANAGE_LOGIN_PAGE_PANE_IMPORT: 导入 +MANAGE_LOGIN_PAGE_PANE_SAVE: 保存 +MANAGE_LOGIN_PAGE_PANE_RESET: 重置 +MANAGE_LOGIN_PAGE_PANE_TABLE_TITLE: 已有配置,单击可复制对应单元格数据 +MANAGE_LOGIN_PAGE_PANE_CONFIG_CHANGE_MESSAGE_A: 请填写 +MANAGE_LOGIN_PAGE_PANE_CONFIG_CHANGE_ALIAS_MESSAGE: 别名只能包含中文、英文、数字、下划线和中划线 +MANAGE_LOGIN_PAGE_PANE_CONFIG_CHANGE_ITEMS_PER_PAGE_MESSAGE: 每页数量必须在20-1000之间 +MANAGE_LOGIN_PAGE_PANE_CONFIG_CHANGE_CUSTOM_URL_MESSAGE: '自定义域名请以http://或https://开头' +MANAGE_LOGIN_PAGE_PANE_CONFIG_CHANGE_NOTICE_NAME: 通知 +MANAGE_LOGIN_PAGE_PANE_CONFIG_CHANGE_NOTICE_MESSAGE: 已覆盖别名 +MANAGE_LOGIN_PAGE_PANE_CONFIG_CHANGE_NOTICE_MESSAGE_B: 已保存别名 +MANAGE_LOGIN_PAGE_PANE_CONFIG_CHANGE_NOTICE_MESSAGE_C: 已删除别名 +MANAGE_LOGIN_PAGE_PANE_CONFIG_CHANGE_NOTICE_MESSAGE_D: 删除别名为 +MANAGE_LOGIN_PAGE_PANE_CONFIG_CHANGE_NOTICE_MESSAGE_E: 的配置失败 +MANAGE_LOGIN_PAGE_PANE_CONFIG_CHANGE_COPY_SUCCESS: 已复制 +MANAGE_LOGIN_PAGE_PANE_DELETE_CONFIG_TITLE: 确定要删除配置么? +MANAGE_LOGIN_PAGE_PANE_DELETE_CONFIG_TIP: 提示 +MANAGE_LOGIN_PAGE_PANE_DELETE_CONFIG_CONFIRM: 确定 +MANAGE_LOGIN_PAGE_PANE_DELETE_CONFIG_CANCEL: 取消 + + +MANAGE_BUCKET_PAGE_LOADING_TEXT: 加载文件中... +MANAGE_BUCKET_PAGE_CUSTOM_URL_SELECT_PLACEHOLDER: 请选择自定义域名 +MANAGE_BUCKET_PAGE_CUSTOM_URL_INPUT_PLACEHOLDER: 请输入自定义域名 +MANAGE_BUCKET_PAGE_UPLOAD_FILES_TOOLTIP: 文件上传(支持多选) +MANAGE_BUCKET_PAGE_UPLOAD_FROM_URL_TOOLTIP: 从URL上传 +MANAGE_BUCKET_PAGE_CREATE_FOLDER_TOOLTIP: 创建文件夹 +MANAGE_BUCKET_PAGE_DOWNLOAD_TOOLTIP: 下载页面 +MANAGE_BUCKET_PAGE_BATCH_RENAME_TOOLTIP: 批量重命名 +MANAGE_BUCKET_PAGE_BATCH_COPY_URL_TOOLTIP: 批量复制URL +MANAGE_BUCKET_PAGE_COPY_FILE_INFO_TOOLTIP: 复制文件信息 +MANAGE_BUCKET_PAGE_FORCE_REFRESH_TOOLTIP: 强制刷新文件列表 +MANAGE_BUCKET_PAGE_SEARCH_PLACEHOLDER: 搜索文件 +MANAGE_BUCKET_PAGE_ROOT_FOLDER: 根目录 +MANAGE_BUCKET_PAGE_FILE_NUMBER: '文件数: ' +MANAGE_BUCKET_PAGE_FILE_SIZE: '总大小: ' +MANAGE_BUCKET_PAGE_SELECT_ALL: 全选 +MANAGE_BUCKET_PAGE_SELECT_NONE: 取消 +MANAGE_BUCKET_PAGE_SELECT_INVERT: 反选 +MANAGE_BUCKET_DOWNLOAD_BTN: 下载 +MANAGE_BUCKET_DELETE_BTN: 删除 +MANAGE_BUCKET_SORT_TITLE: 排序 +MANAGE_BUCKET_SORT_NAME: 文件名 +MANAGE_BUCKET_SORT_SIZE: 大小 +MANAGE_BUCKET_SORT_EXT: 类型 +MANAGE_BUCKET_SORT_TIME: 时间 +MANAGE_BUCKET_SORT_CHECK: 选中状态 +MANAGE_BUCKET_SORT_INIT: 初始化 +MANAGE_BUCKET_URL_UPLOAD_DIALOG_TITLE: 请输入URL,支持多个URL,以换行分隔 +MANAGE_BUCKET_URL_UPLOAD_DIALOG_CONFIRM: 确定 +MANAGE_BUCKET_URL_UPLOAD_DIALOG_CANCEL: 取消 +MANAGE_BUCKET_URL_FORMAT_MARKDOWN: Markdown +MANAGE_BUCKET_URL_FORMAT_MARKDOWN_WITH_LINK: Markdown-link +MANAGE_BUCKET_URL_FORMAT_URL: Url +MANAGE_BUCKET_URL_FORMAT_HTML: Html +MANAGE_BUCKET_URL_FORMAT_BBCODE: BBCode +MANAGE_BUCKET_URL_FORMAT_CUSTOM: 自定义 +MANAGE_BUCKET_URL_FORMAT_PRESIGN: 预签名链接 +MANAGE_BUCKET_FILE_INFO_TITLE: 文件信息 +MANAGE_BUCKET_FILE_INFO_COPY_TIPS: 复制JSON格式信息 +MANAGE_BUCKET_FILE_LIST_LOADING: 加载中,点击取消 +MANAGE_BUCKET_FILE_LIST_DOWNLOAD_PRE: 准备下载中,点击取消 +MANAGE_BUCKET_KEEP_FOLDER_STRUCTURE: 保持目录结构 +MANAGE_BUCKET_NOT_KEEP_FOLDER_STRUCTURE: 不保持目录结构 +MANAGE_BUCKET_UPLOAD_AREA_TITLE: 拖放上传支持递归上传文件夹 +MANAGE_BUCKET_UPLOAD_AREA_TEXT: '或:点击选择文件(不支持文件夹)' +MANAGE_BUCKET_UPLOAD_AREA_BTN_LOADING: 读取文件中 +MANAGE_BUCKET_UPLOAD_AREA_BTN: 上传 +MANAGE_BUCKET_UPLOAD_AREA_CLEAR: 清空 +MANAGE_BUCKET_UPLOAD_AREA_STATUS_UPLOADING: 上传中 +MANAGE_BUCKET_UPLOAD_AREA_COPY_TASK: 复制上传任务信息 +MANAGE_BUCKET_UPLOAD_AREA_CLEAR_UPLOADED_TASK: 清空已完成任务 +MANAGE_BUCKET_UPLOAD_AREA_CLEAR_ALL_TASK: 清空所有任务 +MANAGE_BUCKET_UPLOAD_AREA_SUCCESS: 成功 +MANAGE_BUCKET_UPLOAD_AREA_FAILED: 失败 +MANAGE_BUCKET_DOWNLOAD_PAGE_TITLE: 下载页面 +MANAGE_BUCKET_DOWNLOADING: 下载中 +MANAGE_BUCKET_DOWNLOAD_COPY_TASK: 复制下载任务信息 +MANAGE_BUCKET_DOWNLOAD_CLEAR_DOWNLOADED_TASK: 清空已完成任务 +MANAGE_BUCKET_DOWNLOAD_CLEAR_ALL_TASK: 清空所有任务 +MANAGE_BUCKET_DOWNLOAD_OPEN_FOLDER: 打开下载目录 +MANAGE_BUCKET_DOWNLOAD_SUCCESS: 成功 +MANAGE_BUCKET_DOWNLOAD_FAILED: 失败 +MANAGE_BUCKET_MARKDOWN_PREVIEW: 预览 +MANAGE_BUCKET_PLAY: 播放 +MANAGE_BUCKET_RENAME_FILE: 文件重命名 +MANAGE_BUCKET_RENAME_FILE_INPUT_A: 进行替换时匹配的字符串或js正则表达式 +MANAGE_BUCKET_RENAME_FILE_INPUT_A_TIPS: 正则表达式请直接输入,不需要加上/ +MANAGE_BUCKET_RENAME_FILE_INPUT_A_PLACEHOLDER: '例如:^\d{4}-\d{2}-\d{2} ' +MANAGE_BUCKET_RENAME_FILE_INPUT_B: 需要替换的字符串,可使用自定义重命名规则中的占位符 +MANAGE_BUCKET_RENAME_FILE_TABLE_IID: 自增数字 +MANAGE_BUCKET_RENAME_FILE_EXT: 是否匹配扩展名进行替换 +MANAGE_BUCKET_RENAME_FILE_EXT_TIPS: 如果希望修改扩展名,请勾选此项 +MANAGE_BUCKET_RENAME_FILE_EXT_YES: 是 +MANAGE_BUCKET_RENAME_FILE_EXT_NO: 否 +MANAGE_BUCKET_RENAME_FILE_CANCEL: 取消 +MANAGE_BUCKET_RENAME_FILE_CONFIRM: 确定 +MANAGE_BUCKET_COPY_SUCCESS: 复制成功 +MANAGE_BUCKET_START_LOADING_MESSAGE: 开始获取文件 +MANAGE_BUCKET_END_LOADING_MESSAGE_FAIL: 获取文件内容失败 +MANAGE_BUCKET_CHANGE_CUSTOM_URL_TITLE: 提示 +MANAGE_BUCKET_CHANGE_CUSTOM_URL_MSG: 正在加载文件列表,请稍后再试 +MANAGE_BUCKET_LAST_PAGE_TITLE: 提示 +MANAGE_BUCKET_LAST_PAGE_MSG: 已经是最后一页了 +MANAGE_BUCKET_GET_LIST_FAIL_TITLE: 提示 +MANAGE_BUCKET_GET_LIST_FAIL_MSG: 获取文件列表失败 +MANAGE_BUCKET_GET_LIST_FAIL_MSG2: 正在后台获取文件列表,请不要切换页面 +MANAGE_BUCKET_GET_LIST_FAIL_MSG3: 正在加载文件列表,请稍后再试 +MANAGE_BUCKET_DOWNLOAD_FOLDER_BOX_TITLE: '确定要下载该文件夹吗?' +MANAGE_BUCKET_DOWNLOAD_FOLDER_BOX_TIP: 提示 +MANAGE_BUCKET_DOWNLOAD_FOLDER_BOX_CONFIRM: 确定 +MANAGE_BUCKET_DOWNLOAD_FOLDER_BOX_CANCEL: 取消 +MANAGE_BUCKET_DOWNLOAD_FOLDER_SUCCESS: 获取下载列表成功 +MANAGE_BUCKET_DOWNLOAD_FOLDER_FAIL: 获取失败 +MANAGE_BUCKET_DOWNLOAD_FOLDER_CANCEL: 已取消 +MANAGE_BUCKET_CREATE_FOLDER_BOX_TITLE: 请输入文件夹名称 +MANAGE_BUCKET_CREATE_FOLDER_BOX_TIP: 新建文件夹 +MANAGE_BUCKET_CREATE_FOLDER_BOX_CONFIRM: 确定 +MANAGE_BUCKET_CREATE_FOLDER_BOX_CANCEL: 取消 +MANAGE_BUCKET_CREATE_FOLDER_ERROR_MSG: 文件夹名称只能包含中文、英文、数字、下划线和斜杠 +MANAGE_BUCKET_CREATE_FOLDER_SUCCESS: 创建成功, 请刷新 +MANAGE_BUCKET_CREATE_FOLDER_FAIL: 创建失败 +MANAGE_BUCKET_UPLOAD_URL_ERROR_MSQ: 请输入有效的URL +MANAGE_BUCKET_UPLOAD_URL_NOT_TITLE: 提示 +MANAGE_BUCKET_UPLOAD_URL_NOT_MSG: 开始后台下载,成功后自动上传 +MANAGE_BUCKET_BATCH_RENAME_ERROR_MSG: 请输入匹配字符串 +MANAGE_BUCKET_BATCH_RENAME_ERROR_MSG2: 没有匹配到文件 +MANAGE_BUCKET_BATCH_RENAME_ERROR_MSG3: 没有需要重命名的文件 +MANAGE_BUCKET_BATCH_RENAME_REPEATED_MSG_A: 检测到有 +MANAGE_BUCKET_BATCH_RENAME_REPEATED_MSG_B: 个文件重复,是否继续 +MANAGE_BUCKET_BATCH_RENAME_REPEATED_MSG_C: 提示 +MANAGE_BUCKET_BATCH_RENAME_REPEATED_CONFIRM: 确定 +MANAGE_BUCKET_BATCH_RENAME_REPEATED_CANCEL: 取消 +MANAGE_BUCKET_BATCH_RENAME_RESULT_MSG_A: 重命名成功 +MANAGE_BUCKET_BATCH_RENAME_RESULT_MSG_B: 失败 +MANAGE_BUCKET_BATCH_RENAME_CANCEL: 已取消 +MANAGE_BUCKET_BATCH_COPY_INFO_ERROR_MSG: 请先选择文件 +MANAGE_BUCKET_BATCH_COPY_INFO_MSG_A: 已复制 +MANAGE_BUCKET_BATCH_COPY_INFO_MSG_B: 个文件信息 +MANAGE_BUCKET_BATCH_COPY_URL_ERROR_MSG: 请先选择文件 +MANAGE_BUCKET_BATCH_COPY_URL_MSG_A: 已复制 +MANAGE_BUCKET_BATCH_COPY_URL_MSG_B: 个链接 +MANAGE_BUCKET_CANCEL_LOADING_TITLE: 是否停止获取文件列表? +MANAGE_BUCKET_CANCEL_LOADING_MSG: 提示 +MANAGE_BUCKET_CANCEL_LOADING_CONFIRM: 确定 +MANAGE_BUCKET_CANCEL_LOADING_CANCEL: 取消 +MANAGE_BUCKET_CANCEL_LOADING_SUCCESS: 文件列表获取已停止 +MANAGE_BUCKET_CANCEL_DOWNLOAD_LOADING_TITLE: 是否停止下载文件获取? +MANAGE_BUCKET_CANCEL_DOWNLOAD_LOADING_MSG: 提示 +MANAGE_BUCKET_CANCEL_DOWNLOAD_LOADING_CONFIRM: 确定 +MANAGE_BUCKET_CANCEL_DOWNLOAD_LOADING_CANCEL: 取消 +MANAGE_BUCKET_CANCEL_DOWNLOAD_LOADING_SUCCESS: 下载文件获取已停止 +MANAGE_BUCKET_GET_FILE_BS_NOT_TITLE: 提示 +MANAGE_BUCKET_GET_FILE_BS_NOT_MSG: 获取文件列表成功 +MANAGE_BUCKET_GET_FILE_BS_NOT_MSG2: 部分文件获取失败 +MANAGE_BUCKET_BATCH_DELETE_CONFIRM_TITLE_A: 将永久删除 +MANAGE_BUCKET_BATCH_DELETE_CONFIRM_TITLE_B: 个文件,是否继续? +MANAGE_BUCKET_BATCH_DELETE_CONFIRM_MSG: 提示 +MANAGE_BUCKET_BATCH_DELETE_CONFIRM_CONFIRM: 确定 +MANAGE_BUCKET_BATCH_DELETE_CONFIRM_CANCEL: 取消 +MANAGE_BUCKET_BATCH_DELETE_ERROR_MSG_TITLE: 提示 +MANAGE_BUCKET_BATCH_DELETE_ERROR_MSG_MSG: 删除失败 +MANAGE_BUCKET_BATCH_DELETE_ERROR_MSG_MSG2: 删除成功 +MANAGE_BUCKET_BATCH_DELETE_ERROR_MSG_MSG3: 失败 +MANAGE_BUCKET_BATCH_DELETE_CANCEL: 已取消删除 +MANAGE_BUCKET_DELETE_CONFIRM_TITLE: 将永久删除 +MANAGE_BUCKET_DELETE_CONFIRM_TITLE_FOLDER: 文件夹 +MANAGE_BUCKET_DELETE_CONFIRM_TITLE_FOLDER_A: 和该目录下的所有文件 +MANAGE_BUCKET_DELETE_CONFIRM_TITLE_FILE: 文件 +MANAGE_BUCKET_DELETE_CONFIRM_TITLE_C: 是否继续 +MANAGE_BUCKET_DELETE_CONFIRM_MSG: 提示 +MANAGE_BUCKET_DELETE_CONFIRM_CONFIRM: 确定 +MANAGE_BUCKET_DELETE_CONFIRM_CANCEL: 取消 +MANAGE_BUCKET_DELETE_ERROR_MSG_TITLE: 提示 +MANAGE_BUCKET_DELETE_ERROR_MSG_MSG: 删除文件夹可能需要一段时间,请耐心等待 +MANAGE_BUCKET_DELETE_SUCCESS: 删除成功 +MANAGE_BUCKET_DELETE_FAIL: 删除失败 +MANAGE_BUCKET_DELETE_CANCEL: 已取消删除 +MANAGE_BUCKET_RENAME_INFO_MSG: 新文件名与原文件名相同,无需重命名 +MANAGE_BUCKET_RENAME_SUCCESS: 重命名成功 +MANAGE_BUCKET_RENAME_ERROR_MSG: 重命名失败 +MANAGE_BUCKET_DOWNLOAD_COLUMN_FILENAME: 文件名 +MANAGE_BUCKET_DOWNLOAD_COLUMN_FINISHTIME: 完成时间 +MANAGE_BUCKET_DOWNLOAD_COLUMN_STATUS: 状态 +MANAGE_BUCKET_DOWNLOAD_COLUMN_STATUS_SUCCESS: 成功 +MANAGE_BUCKET_DOWNLOAD_COLUMN_STATUS_FAIL: 失败 +MANAGE_BUCKET_UPLOAD_COLUMN_FILENAME: 文件名 +MANAGE_BUCKET_UPLOAD_COLUMN_TARGETFILEPATH: 上传路径 +MANAGE_BUCKET_UPLOAD_COLUMN_FINISHTIME: 完成时间 +MANAGE_BUCKET_UPLOAD_COLUMN_STATUS: 状态 +MANAGE_BUCKET_UPLOAD_COLUMN_STATUS_SUCCESS: 成功 +MANAGE_BUCKET_UPLOAD_COLUMN_STATUS_FAIL: 失败 +MANAGE_BUCKET_DOWNLOADING_COLUMN_FILENAME: 文件名 +MANAGE_BUCKET_DOWNLOADING_COLUMN_PROGRESS: 进度 +MANAGE_BUCKET_UPLOADING_COLUMN_FILENAME: 文件名 +MANAGE_BUCKET_UPLOADING_COLUMN_PROGRESS: 进度 +MANAGE_BUCKET_UPLOADED_COLUMN_FILENAME: 文件名 +MANAGE_BUCKET_UPLOADED_COLUMN_FILESIZE: 大小 +MANAGE_BUCKET_UPLOADED_COLUMN_FILENUM: 文件数 +MANAGE_BUCKET_FILE_COLUMN_FILENAME: 文件名 +MANAGE_BUCKET_FILE_COLUMN_COPY_URL: 复制链接 +MANAGE_BUCKET_FILE_COLUMN_INFO: 文件信息 +MANAGE_BUCKET_FILE_COLUMN_FILESIZE: 大小 +MANAGE_BUCKET_FILE_COLUMN_TIME: 修改时间 + +MANAGE_NEW_BUCKET_TCYUN_NAME: 腾讯云 +MANAGE_NEW_BUCKET_TCYUN_BUCKETNAME_DESC: Bucket名 +MANAGE_NEW_BUCKET_TCYUN_BUCKETNAME_PLACEHOLDER: 请输入Bucket名 +MANAGE_NEW_BUCKET_TCYUN_BUCKETNAME_RULE_MSG_A: Bucket名不能为空 +MANAGE_NEW_BUCKET_TCYUN_BUCKETNAME_RULE_MSG_B: Bucket名称长度不能超过23个字符 +MANAGE_NEW_BUCKET_TCYUN_BUCKETNAME_RULE_MSG_C: Bucket名称只能包含小写字母、数字和中划线,且不能以中划线开头和结尾 +MANAGE_NEW_BUCKET_TCYUN_REGION: 区域 +MANAGE_NEW_BUCKET_TCYUN_ACL_DESC: 访问权限 +MANAGE_NEW_BUCKET_TCYUN_ACL_PUBLIC_RW: 公共读写 +MANAGE_NEW_BUCKET_TCYUN_ACL_PUBLIC_R: 公共读 +MANAGE_NEW_BUCKET_TCYUN_ACL_PRIVATE: 私有 +MANAGE_NEW_BUCKET_ALIYUN_NAME: 阿里云 +MANAGE_NEW_BUCKET_ALIYUN_BUCKETNAME_DESC: Bucket名 +MANAGE_NEW_BUCKET_ALIYUN_BUCKETNAME_PLACEHOLDER: 请输入Bucket名 +MANAGE_NEW_BUCKET_ALIYUN_BUCKETNAME_RULE_MSG_A: Bucket名不能为空 +MANAGE_NEW_BUCKET_ALIYUN_BUCKETNAME_RULE_MSG_B: Bucket名称长度不能超过63个字符 +MANAGE_NEW_BUCKET_ALIYUN_BUCKETNAME_RULE_MSG_C: Bucket名称只能包含小写字母、数字和中划线,且不能以中划线开头和结尾 +MANAGE_NEW_BUCKET_ALIYUN_REGION: 区域 +MANAGE_NEW_BUCKET_ALIYUN_ACL_DESC: 访问权限 +MANAGE_NEW_BUCKET_ALIYUN_ACL_PUBLIC_RW: 公共读写 +MANAGE_NEW_BUCKET_ALIYUN_ACL_PUBLIC_R: 公共读 +MANAGE_NEW_BUCKET_ALIYUN_ACL_PRIVATE: 私有 +MANAGE_NEW_BUCKET_QINIU_NAME: 七牛云 +MANAGE_NEW_BUCKET_QINIU_BUCKETNAME_DESC: Bucket名 +MANAGE_NEW_BUCKET_QINIU_BUCKETNAME_PLACEHOLDER: 请输入Bucket名 +MANAGE_NEW_BUCKET_QINIU_BUCKETNAME_RULE_MSG_A: Bucket名不能为空 +MANAGE_NEW_BUCKET_QINIU_BUCKETNAME_RULE_MSG_B: Bucket名称长度不能超过63个字符 +MANAGE_NEW_BUCKET_QINIU_BUCKETNAME_RULE_MSG_C: Bucket名称只能包含小写字母、数字和中划线,且不能以中划线开头和结尾 +MANAGE_NEW_BUCKET_QINIU_REGION: 区域 +MANAGE_NEW_BUCKET_QINIU_ACL_DESC: 公开访问 +MANAGE_NEW_BUCKET_S3PLIST_NAME: S3兼容云 +MANAGE_NEW_BUCKET_S3PLIST_BUCKETNAME_DESC: Bucket名 +MANAGE_NEW_BUCKET_S3PLIST_BUCKETNAME_PLACEHOLDER: 请输入Bucket名 +MANAGE_NEW_BUCKET_S3PLIST_BUCKETNAME_RULE_MSG_A: Bucket名不能为空 +MANAGE_NEW_BUCKET_S3PLIST_REGION: 区域 +MANAGE_NEW_BUCKET_S3PLIST_ACL_DESC: 访问权限 +MANAGE_NEW_BUCKET_S3PLIST_ACL_PUBLIC_RW: 公共读写 +MANAGE_NEW_BUCKET_S3PLIST_ACL_PUBLIC_R: 公共读 +MANAGE_NEW_BUCKET_S3PLIST_ACL_PRIVATE: 私有 +MANAGE_NEW_BUCKET_S3PLIST_ACL_AUTHENTICATED_READ: 授权读 + +# ---renderer i18n end--- + +# plugins +PLUGIN_INSTALL_SUCCEED: 插件安装成功 +PLUGIN_INSTALL_FAILED: 插件安装失败 +PLUGIN_UNINSTALL_SUCCEED: 插件卸载成功 +PLUGIN_UNINSTALL_FAILED: 插件卸载失败 +PLUGIN_UPDATE_SUCCEED: 插件更新成功 +PLUGIN_UPDATE_FAILED: 插件更新失败 +PLUGIN_IMPORT_SUCCEED: 插件导入成功 +PLUGIN_IMPORT_FAILED: 插件导入失败 +ENABLE_PLUGIN: 启用插件 +DISABLE_PLUGIN: 禁用插件 +UNINSTALL_PLUGIN: 卸载插件 +UPDATE_PLUGIN: 更新插件 + +# tips +TIPS_NOTICE: 注意 +TIPS_WARNING: 警告 +TIPS_ERROR: 发生错误 +TIPS_INSTALL_NODE_AND_RELOAD_PICGO: 请安装Node.js并重启PicList再继续操作 +TIPS_PLUGIN_REMOVE_GALLERY_ITEM: 有插件正在试图删除一些相册图片,是否继续 +TIPS_PLUGIN_OVERWRITE_GALLERY: 有插件正在试图覆盖相册列表,是否继续 +TIPS_UPLOAD_NOT_PICTURES: 剪贴板最新的一条记录不是图片 +TIPS_PICGO_CONFIG_FILE_BROKEN_WITH_DEFAULT: PicList 配置文件损坏,已经恢复为默认配置 +TIPS_PICGO_CONFIG_FILE_BROKEN_WITH_BACKUP: PicList 配置文件损坏,已经恢复为备份配置 +TIPS_PICGO_BACKUP_FILE_VERSION: '备份文件版本: ${v}' +TIPS_CUSTOM_CONFIG_FILE_PATH_ERROR: 自定义文件解析出错,请检查路径内容是否正确 +TIPS_SHORTCUT_MODIFIED_SUCCEED: 快捷键已经修改成功 +TIPS_SHORTCUT_MODIFIED_CONFLICT: 快捷键冲突,请重新设置 +TIPS_CUSTOM_LINK_STYLE_MODIFIED_SUCCEED: 自定义链接格式已经修改成功 +TIPS_FIND_NEW_VERSION: 发现新版本${v},更新了很多功能,是否后台下载最新的版本? +UPDATE_DOWNLOADED: 更新已下载 +TIPS_UPDATE_DOWNLOADED: 更新已下载,将在下次启动时安装,是否现在重启? + +QUIT: 退出 diff --git a/public/i18n/zh-TW.yml b/public/i18n/zh-TW.yml index 2e0be82c..a58d687a 100644 --- a/public/i18n/zh-TW.yml +++ b/public/i18n/zh-TW.yml @@ -1,997 +1,997 @@ -LANG_DISPLAY_LABEL: 繁體中文 -ABOUT: 關於 -OPEN_MAIN_WINDOW: 打開主視窗 -OPEN_MINI_WINDOW: 打開mini視窗 -HIDE_MINI_WINDOW: 隱藏mini視窗 -CHOOSE_DEFAULT_PICBED: 選擇預設圖床 -OPEN_UPDATE_HELPER: 開啟更新助手 -RELOAD_APP: 重啟程式 -UPLOAD_SUCCEED: 上傳成功 -UPLOAD_FAILED: 上傳失敗 -UPLOAD_PROGRESS: 上傳進度 -OPERATION_SUCCEED: 操作成功 -OPERATION_FAILED: 操作失敗 -UPLOADING: 正在上傳 -QUICK_UPLOAD: 快速上傳 -UPLOAD_BY_CLIPBOARD: 剪貼簿圖片上傳 -HIDE_WINDOW: 隱藏視窗 -SHOW_PICBED_QRCODE: 產生圖床配置 QRCODE -PICBED_QRCODE: 圖床配置 QRCODE -ENABLE: 啟用 -DISABLE: 禁用 -CONFIG_THING: 設定${c} -FIND_NEW_VERSION: 發現新版本 -NO_MORE_NOTICE: 以後不再提醒 -SHOW_DEVTOOLS: 開啟開發者工具 -FEEDBACK: 問題反饋 -CURRENT_PICBED: 當前圖床 -START_WATCH_CLIPBOARD: 開始監聽剪貼簿 -STOP_WATCH_CLIPBOARD: 停止監聽剪貼簿 -OPEN_TOOLBOX: 開啟修復工具箱 -TOOLBOX: 工具箱 -TOOLBOX_TITLE: 排查 PicList 執行時問題 -TOOLBOX_SUB_TITLE: 立即掃描以下項目,修復使用問題 -TOOLBOX_CHECK_CONFIG_FILE_BROKEN: 檢查配置文件是否損壞 -TOOLBOX_CHECK_GALLERY_FILE_BROKEN: 檢查相冊文件是否損壞 -TOOLBOX_CHECK_PROBLEM_WITH_CLIPBOARD_PIC_UPLOAD: 檢查剪貼板圖片上傳是否存在問題 -TOOLBOX_CHECK_PROBLEM_WITH_PROXY: 檢查代理設置是否正常 -TOOLBOX_FIX_DONE_NEED_RELOAD: 修復完成,需要重啓生效,是否重啓 -TOOLBOX_CANT_AUTO_FIX: 無法自動修復,請自行修復以下問題 -TOOLBOX_START_SCAN: 開始掃描 -TOOLBOX_RE_SCAN: 重新掃描 -TOOLBOX_START_FIX: 開始修復 -TOOLBOX_SUCCESS_TIPS: 恭喜你,沒有檢查出問題 -TOOLBOX_CHECK_CONFIG_FILE_PATH_TIPS: 配置文件路徑是:${path} -TOOLBOX_CHECK_CONFIG_FILE_BROKEN_TIPS: 配置文件已損壞 -TOOLBOX_CHECK_GALLERY_FILE_PATH_TIPS: 相冊文件路徑是:${path} -TOOLBOX_CHECK_GALLERY_FILE_BROKEN_TIPS: 相冊文件已損壞 -TOOLBOX_CHECK_PROXY_SUCCESS_TIPS: 代理設置正常 -TOOLBOX_CHECK_PROXY_NO_PROXY_TIPS: 無代理設置 -TOOLBOX_CHECK_PROXY_PROXY_IS_NOT_CORRECT: 代理設置不正確 -TOOLBOX_CHECK_PROXY_PROXY_IS_NOT_WORKING: 代理設置不可用 -TOOLBOX_CHECK_CLIPBOARD_FILE_PATH_TIPS: 剪貼板圖片臨時文件夾路徑是:${path} -TOOLBOX_CHECK_CLIPBOARD_FILE_PATH_NOT_EXIST_TIPS: 剪貼板圖片臨時文件夾不存在:${path} -TOOLBOX_CHECK_CLIPBOARD_FILE_PATH_ERROR_TIPS: 請自行創建文件夾:${path} -MANUAL_PAGE_OPEN_TIP: 請選擇打開方式 -MANUAL_PAGE_OPEN_TIP_TITLE: Tips -MANUAL_PAGE_OPEN_BY_BROWSER: 瀏覽器 -MANUAL_PAGE_OPEN_BY_BUILD_IN: 內置窗口 -MANUAL_PAGE_OPEN_SETTING_TIP: 選擇打開手冊方式 - -# ---renderer i18n begin--- - -CHOOSE_YOUR_DEFAULT_PICBED: 選擇 ${d} 作為你的預設圖床: -UPLOAD_AREA: 上傳 -UPLOAD_VIEW_HINT: 點擊打開圖床設定 -MANAGE_PAGE: 管理 -GALLERY: 相簿 -REFRESH: 刷新 -MANUAL: 手冊 -OPEN_MANUAL_LINK: 手冊 -OPEN_MANUAL_LINK_HINT: 即將打開PicList使用手冊網頁,是否繼續? -PICBEDS_SETTINGS: 圖床 -PICBEDS_MANAGE: 圖床管理 -PICLIST_SETTINGS: 設定 -PLUGIN_SETTINGS: 插件 -PICLIST_SPONSOR_TEXT: 如果你喜歡它,對你有幫助,不妨請我喝杯咖啡~ -CHOOSE_PICBED: 選擇圖床 -COPY_PICBED_CONFIG: 複製圖床設定 -COPY_PICBED_CONFIG_SUCCEED: 複製圖床設定成功 -INPUT: 輸入框 -CANCEL: 取消 -CONFIRM: 確定 -RESET_PICBED_CONFIG: 重置 -CHOOSE_SHOWED_PICBED: 請選擇顯示的圖床 -CHOOSE_PASTE_FORMAT: 請選擇貼上的格式 -SEARCH: 搜尋 -COPY: 複製 -DELETE: 刪除 -SELECT_ALL: 全選 -CHANGE_IMAGE_URL: 修改圖片URL -CHANGE_IMAGE_URL_SUCCEED: 修改圖片URL成功 -COPY_LINK_SUCCEED: 複製連結成功 -BATCH_COPY_LINK_SUCCEED: 批量複製連結成功 -FILE_RENAME: 檔案改名 -COPY_FILE_PATH: 複製檔案路徑 -OPEN_FILE_PATH: 打開檔案路徑 -GALLERY_SYNC_DELETE: 刪除雲端 -GALLERY_SYNC_DELETE_NOTICE_TITLE: 通知 -GALLERY_SYNC_DELETE_NOTICE_SUCCEED: 雲端刪除成功 -GALLERY_SYNC_DELETE_NOTICE_FAILED: 雲端刪除失敗 -GALLERY_CHANGE_URL: 修改 -GALLERY_CHANGE_URL_TITLE: 批量修改圖片URL -GALLERY_SEARCH_FILENAME: 搜尋文件名 -GALLERY_SEARCH_URL: 搜尋URL -GALLERY_MATCHED: ' 匹配到: ' - -UPLOAD_PAGE_COPY_UPLOAD_API: 複製上傳API -UPLOAD_PAGE_IMAGE_PROCESS_NAME: 圖片處理 -UPLOAD_PAGE_IMAGE_PROCESS_DIALOG_TITLE: 圖片處理設置 -UPLOAD_PAGE_IMAGE_PROCESS_ISADDWM: 是否添加水印 -UPLOAD_PAGE_IMAGE_PROCESS_WMTYPE: 水印類型 -UPLOAD_PAGE_IMAGE_PROCESS_WMTYPE_TEXT: 文字 -UPLOAD_PAGE_IMAGE_PROCESS_WMTYPE_IMAGE: 圖片 -UPLOAD_PAGE_IMAGE_PROCESS_ISFULLSCREEN_WM: 是否全屏水印 -UPLOAD_PAGE_IMAGE_PROCESS_WMDEGREE: 水印角度 -UPLOAD_PAGE_IMAGE_PROCESS_WMTEXT: 水印文字 -UPLOAD_PAGE_IMAGE_PROCESS_WMTEXT_FONT_PATH: 水印字體路徑(第一次需下載字體文件) -UPLOAD_PAGE_IMAGE_PROCESS_WMRATIO: 水印占原圖比例 -UPLOAD_PAGE_IMAGE_PROCESS_WMCOLOR: 水印顏色,請從取色器中選擇 -UPLOAD_PAGE_IMAGE_PROCESS_WMPATH: 水印圖片路徑(留空使用預設圖片) -UPLOAD_PAGE_IMAGE_PROCESS_WMPOSITION: 水印位置 -UPLOAD_PAGE_IMAGE_PROCESS_ISREMOVEEXIF: 是否移除EXIF信息 -UPLOAD_PAGE_IMAGE_PROCESS_QUALITY: 壓縮質量 -UPLOAD_PAGE_IMAGE_PROCESS_ISCONVERT: 是否轉換格式 -UPLOAD_PAGE_IMAGE_PROCESS_CONVERTFORMAT: 轉換目的格式 -UPLOAD_PAGE_IMAGE_PROCESS_CONVERTFORMAT_SPECIFIC: '指定格式, 请输入JSON格式配置,如{"jpg":"png"}' -UPLOAD_PAGE_IMAGE_PROCESS_ISFLIP: 是否進行垂直翻轉 -UPLOAD_PAGE_IMAGE_PROCESS_ISFLOP: 是否進行水平翻轉 -UPLOAD_PAGE_IMAGE_PROCESS_ISRESIZE: 是否按固定尺寸調整圖片 -UPLOAD_PAGE_IMAGE_PROCESS_RESIZEWIDTH: 調整尺寸寬度(設為0則按高度等比縮放) -UPLOAD_PAGE_IMAGE_PROCESS_RESIZEHEIGHT: 調整尺寸高度(設為0則按寬度等比縮放) -UPLOAD_PAGE_IMAGE_PROCESS_SKIPRESIZEOfSMALLIMG_HEIGHT: 當圖片高度小於設定高度時跳過縮放 -UPLOAD_PAGE_IMAGE_PROCESS_SKIPRESIZEOfSMALLIMG_WIDTH: 當圖片寬度小於設定寬度時跳過縮放 -UPLOAD_PAGE_IMAGE_PROCESS_ISRESIZEBYPERCENT: 是否按比例調整尺寸,優先級更高 -UPLOAD_PAGE_IMAGE_PROCESS_RESIZEPERCENT: 調整尺寸比例,輸入50表示50% -UPLOAD_PAGE_IMAGE_PROCESS_ISROTATE: 是否旋轉 -UPLOAD_PAGE_IMAGE_PROCESS_ROTATEDEGREE: 旋轉角度 -UPLOAD_PAGE_IMAGE_PROCESS_CONFIRM: 儲存 -UPLOAD_PAGE_IMAGE_PROCESS_CANCEL: 取消 -UPLOAD_PAGE_IMAGE_PROCESS_POSITION_TOP: 上 -UPLOAD_PAGE_IMAGE_PROCESS_POSITION_BOTTOM: 下 -UPLOAD_PAGE_IMAGE_PROCESS_POSITION_LEFT: 左 -UPLOAD_PAGE_IMAGE_PROCESS_POSITION_RIGHT: 右 -UPLOAD_PAGE_IMAGE_PROCESS_POSITION_TOP_LEFT: 左上 -UPLOAD_PAGE_IMAGE_PROCESS_POSITION_TOP_RIGHT: 右上 -UPLOAD_PAGE_IMAGE_PROCESS_POSITION_BOTTOM_LEFT: 左下 -UPLOAD_PAGE_IMAGE_PROCESS_POSITION_BOTTOM_RIGHT: 右下 -UPLOAD_PAGE_IMAGE_PROCESS_POSITION_CENTER: 中 -UPLOAD_SHORT_URL: 短連結 -UPLOAD_NORMAL_URL: 长連結 -# settings - -SETTINGS: 設定 -SETTINGS_OPEN_CONFIG_FILE: 打開設定檔案 -SETTINGS_MIGRATE_FROM_PICGO: 從PicGo導入設定 -SETTINGS_MIGRATE_FROM_PICGO_TITLE: 通知 -SETTINGS_MIGRATE_FROM_PICGO_CONTENT: 即將導入PicGo的設定文件和相冊, 這將會覆蓋當前的設定, 是否繼續? -SETTINGS_MIGRATE_FROM_PICGO_SUCCESS: 導入成功, 請重啟應用 -SETTINGS_MIGRATE_FROM_PICGO_FAILED: 導入失敗 -SETTINGS_START_MODE: 啟動模式 -SETTINGS_START_MODE_MINI: mini視窗 -SETTINGS_START_MODE_MAIN: 主視窗 -SETTINGS_START_MODE_QUIET: 靜默啟動 -SETTINGS_START_MODE_NO_TRAY: 隐藏托盘 -SETTINGS_CLICK_TO_OPEN: 點擊打開 -SETTINGS_SET_LOG_FILE: 設定記錄檔案 -SETTINGS_CLICK_TO_SET: 點擊設定 -SETTINGS_CLICK_TO_CHECK: 點擊檢查 -SETTINGS_SET_SHORTCUT: 設定快捷鍵 -SETTINGS_CUSTOM_LINK_FORMAT: 自訂連結格式 -SETTINGS_SET_PROXY_AND_MIRROR: 設定PROXY和鏡像地址 -SETTINGS_SET_SERVER: 設定Server -SETTINGS_CHECK_UPDATE: 檢查更新 -SETTINGS_OPEN_UPDATE_HELPER: 打開更新助手 -SETTINGS_OPEN: 開 -SETTINGS_CLOSE: 關 -SETTINGS_CLOSE_MINI_WINDOW_SYNC: 開主窗口同步關閉mini窗口 -SETTINGS_CLOSE_MAIN_WINDOW_SYNC: 關mini窗口同步關閉主窗口 -SETTINGS_ACCEPT_BETA_UPDATE: 接受Beta版本更新 -SETTINGS_LAUNCH_ON_BOOT: 開機時啟動 -SETTINGS_RENAME_BEFORE_UPLOAD: 手動重新命名 -SETTINGS_TIMESTAMP_RENAME: 以時間戳命名 -SETTINGS_ADVANCED_RENAME: 高級命名 -SETTINGS_ADVANCED_RENAME_ENABLE: 啟用高級命名 -SETTINGS_ADVANCED_RENAME_FORMAT: 高級命名格式 -SETTINGS_OPEN_UPLOAD_TIPS: 開啟上傳提示 -SETTINGS_OPEN_UPLOAD_RESULT_TIPS: 開啟上傳結果提示 -SETTINGS_MINI_WINDOW_ON_TOP: Mini視窗置頂 -SETTINGS_AUTO_COPY_URL_AFTER_UPLOAD: 上傳後自動複製URL -SETTINGS_TIPS_PLACEHOLDER_URL: 用佔位符 $url 來表示URL的位置 -SETTINGS_TIPS_PLACEHOLDER_FILENAME: 用佔位符 $fileName 來表示檔案名稱的位置 -SETTINGS_TIPS_PLACEHOLDER_EXTNAME: 用佔位符 $extName 來表示檔案格式的位置 -SETTINGS_TIPS_SUCH_AS: 如 -SETTINGS_UPLOAD_PROXY: 上傳PROXY -SETTINGS_PLUGIN_INSTALL_PROXY: 插件安裝PROXY -SETTINGS_PLUGIN_INSTALL_MIRROR: 插件安裝鏡像 -SETTINGS_CURRENT_VERSION: 當前版本 -SETTINGS_NEWEST_VERSION: 最新版本 -SETTINGS_GETING: 正在取得中 -SETTINGS_TIPS_HAS_NEW_VERSION: PicList更新啦,請點擊確定開啟下載頁面 -SETTINGS_LOG_FILE_PATH: 記錄檔案路徑 -SETTINGS_CONFIG_FILE_PATH: 設定檔案路徑 -SETTINGS_LOG_FILE: 記錄檔案 -SETTINGS_GUI_LOG_FILE: GUI記錄檔案 -SETTINGS_MANAGE_LOG_FILE: 管理記錄檔案 -SETTINGS_LOG_LEVEL: 記錄等级 -SETTINGS_LOG_FILE_SIZE: 記錄檔案大小 -SETTINGS_SET_PICGO_SERVER: 設定PicGo-Server -SETTINGS_TIPS_SERVER_NOTICE: 如果你不知道Server的作用,請閱讀文檔,或者不用修改設定。 -SETTINGS_ENABLE_SERVER: 是否開啟Server -SETTINGS_SET_SERVER_HOST: 設定監聽地址 -SETTINGS_SET_SERVER_PORT: 設定監聽端口 -SETTINGS_SET_SERVER_KEY: 設定鑒權密鑰 -SETTINGS_SET_WEB_SERVER: 設定Web服務 -SETTINGS_TIPS_WEB_SERVER_NOTICE: 如果你不知道Web服務的作用,請閱讀文檔,或者不用修改設定。 -SETTINGS_SET_ENABLE_WEB_SERVER: 是否開啟Web服務 -SETTINGS_SET_WEB_SERVER_HOST: 設定Web服務地 -SETTINGS_SET_WEB_SERVER_PORT: 設定Web服務端口 -SETTINGS_SET_WEB_SERVER_PATH: 設定Web服務路徑 -SETTINGS_TIP_PLACEHOLDER_WEB_HOST: 推薦預設地址:127.0.0.1 -SETTINGS_TIP_PLACEHOLDER_WEB_PORT: 推薦預設端口:37777 -SETTINGS_TIP_PLACEHOLDER_HOST: 推薦預設地址:127.0.0.1 -SETTINGS_TIP_PLACEHOLDER_PORT: 推薦預設端口:36677 -SETTINGS_TIP_PLACEHOLDER_KEY: 用於接口鑒權, 通過url參數添加'?key=xxx' -SETTINGS_SET_SERVER_AES_KEY: 設定AES加密密鑰 -SETTINGS_LOG_LEVEL_ALL: 全部-All -SETTINGS_LOG_LEVEL_SUCCESS: 成功-Success -SETTINGS_LOG_LEVEL_ERROR: 錯誤-Error -SETTINGS_LOG_LEVEL_INFO: 普通-Info -SETTINGS_LOG_LEVEL_WARN: 提醒-Warn -SETTINGS_LOG_LEVEL_NONE: 不記錄-None -SETTINGS_RESULT: 設定結果 -SETTINGS_DEFAULT_PICBED: 設定預設圖床 -SETTINGS_SET_DEFAULT_PICBED: 設為預設圖床 -SETTINGS_NOT_CONFIG_OPTIONS: 暫無設定選項 -SETTINGS_USE_BUILTIN_CLIPBOARD_UPLOAD: 使用內建剪貼簿上傳 -SETTINGS_CHOOSE_LANGUAGE: 選擇語言 -BUILTIN_CLIPBOARD_TIPS: 使用內建剪貼簿函數而不是調用腳本取得剪貼簿內的照片 -UPLOADER_CONFIG_NAME: 圖床配置名 -UPLOADER_CONFIG_PLACEHOLDER: 請輸入配置名稱 -SELECTED_SETTING_HINT: 已選中 -SETTINGS_MAIN_WINDOW_SIZE: 默認主視窗大小 -SETTINGS_MAIN_WINDOW_SIZE_WIDTH: 默認主視窗寬度 -SETTINGS_MAIN_WINDOW_WIDTH_HINT: '默認: 1200' -SETTINGS_MAIN_WINDOW_WIDTH_RULE: 窗口寬度必須大於100 -SETTINGS_MAIN_WINDOW_SIZE_HEIGHT: 默認主視窗高度 -SETTINGS_MAIN_WINDOW_HEIGHT_HINT: '默認: 800' -SETTINGS_MAIN_WINDOW_HEIGHT_RULE: 視窗高度必須大於100 -SETTINGS_RAW_PICGO_SIZE: 原PicGo大小 -SETTINGS_CUSTOM_MINI_ICON_PATH: 自訂Mini視窗圖示路徑 -SETTINGS_CUSTOM_MINI_ICON: 自訂Mini視窗圖示 -SETTINGS_COMPRESS_AND_WATERMARK: 設置圖片浮水印和壓縮-格式轉換等參數 -SETTINGS_SYNC_DELETE_CLOUD: 從相簿中刪除並同步從雲端刪除 -SETTINGS_ISHIDEDOCK: 是否隱藏dock圖示 -SETTINGS_ISHIDEDOCK_TIPS: 不支持同時隱藏dock和托盘 -SETTINGS_ENCODE_OUTPUT_URL: 輸出(複製) URL 時進行轉義 -SETTINGS_WATCH_CLIPBOARD: 軟體啟動時自動監聽剪貼簿上傳 -SETTINGS_SHORT_URL: 使用短網址 -SETTINGS_SHORT_URL_SERVER: 短網址服務 -SETTINGS_SHORT_URL_C1N_TOKEN: C1N Token -SETTINGS_SHORT_URL_YOURLS_DOMAIN: YOURLS域名 -SETTINGS_SHORT_URL_YOURLS_SIGNATURE: YOURLS signature -SETTINGS_SHORT_URL_CF_WORKER_HOST: Cloudflare Worker Host -SETTINGS_DELETE_LOCAL_FILE_AFTER_UPLOAD: 上傳後刪除本地檔案 -SETTINGS_SYNC_CONFIG: 設置同步配置 -SETTINGS_SYNC_CONFIG_TITLE: 同步設置 -SETTINGS_SYNC_CONFIG_NOTE: 同步的檔案为配置檔案 -SETTINGS_SYNC_CONFIG_SELECT_TYPE: 選擇同步方式 -SETTINGS_SYNC_CONFIG_SELECT_FILE: 選擇同步檔案 -SETTINGS_SYNC_CONFIG_SELECT_CONFIG: 僅配置檔案 -SETTINGS_SYNC_CONFIG_SELECT_GALLERY: 僅相簿檔案 -SETTINGS_SYNC_CONFIG_SELECT_BOTH: 配置檔案和相簿檔案 -SETTINGS_SYNC_CONFIG_GITEA_HOST: Gitea Host -SETTINGS_SYNC_CONFIG_GITHUB_USERNAME: 用戶名 -SETTINGS_SYNC_CONFIG_GITEA_USERNAME: 用戶名 -SETTINGS_SYNC_CONFIG_GITEE_USERNAME: 用戶名 -SETTINGS_SYNC_CONFIG_GITHUB_REPO: 儲存庫(私有) -SETTINGS_SYNC_CONFIG_GITEA_REPO: 儲存庫 -SETTINGS_SYNC_CONFIG_GITEE_REPO: 儲存庫路径 -SETTINGS_SYNC_CONFIG_GITHUB_BRANCH: GitHub 分支 -SETTINGS_SYNC_CONFIG_GITEA_BRANCH: Gitea 分支 -SETTINGS_SYNC_CONFIG_GITEE_BRANCH: Gitee 分支 -SETTINGS_SYNC_CONFIG_GITHUB_TOKEN: GitHub Token -SETTINGS_SYNC_CONFIG_GITEA_TOKEN: Gitea Token -SETTINGS_SYNC_CONFIG_GITEE_TOKEN: Gitee Token -SETTINGS_SYNC_CONFIG_PROXY: 代理 -SETTINGS_SYNC_CONFIG_INTERVAL: 間隔(分鐘) -SETTINGS_SYNC_CONFIG_GITHUB_USERNAME_PLACEHOLDER: 請輸入 GitHub 用戶名 -SETTINGS_SYNC_CONFIG_GITEA_USERNAME_PLACEHOLDER: 請輸入 Gitea 用戶名 -SETTINGS_SYNC_CONFIG_GITEE_USERNAME_PLACEHOLDER: 請輸入 Gitee 用戶名 -SETTINGS_SYNC_CONFIG_GITHUB_REPO_PLACEHOLDER: 請輸入 GitHub 儲存庫名稱 -SETTINGS_SYNC_CONFIG_GITEA_REPO_PLACEHOLDER: 請輸入 Gitea 儲存庫名稱 -SETTINGS_SYNC_CONFIG_GITEE_REPO_PLACEHOLDER: 請輸入 Gitee 儲存庫名稱 -SETTINGS_SYNC_CONFIG_GITHUB_BRANCH_PLACEHOLDER: 請輸入 GitHub 分支名稱 -SETTINGS_SYNC_CONFIG_GITEA_BRANCH_PLACEHOLDER: 請輸入 Gitea 分支名稱 -SETTINGS_SYNC_CONFIG_GITEE_BRANCH_PLACEHOLDER: 請輸入 Gitee 分支名稱 -SETTINGS_SYNC_CONFIG_GITHUB_TOKEN_PLACEHOLDER: 請輸入 GitHub Token -SETTINGS_SYNC_CONFIG_GITEA_TOKEN_PLACEHOLDER: 請輸入 Gitea Token -SETTINGS_SYNC_CONFIG_GITEE_TOKEN_PLACEHOLDER: 請輸入 Gitee Token -SETTINGS_SYNC_CONFIG_PROXY_PLACEHOLDER: 請輸入代理地址 -SETTINGS_UP_DOWN_DESC: 上傳和下載配置檔案 -SETTINGS_UP_DOWN_TITLE: 請在設置完同步配置後再使用 -SETTINGS_SYNC_UPLOAD: 上傳 -SETTINGS_SYNC_DOWNLOAD: 下載 -SETTINGS_SYNC_UPLOAD_ALL: 上傳全部 -SETTINGS_SYNC_DOWNLOAD_ALL: 下載全部 -SETTINGS_SYNC_UPLOAD_SUCCESS: 上傳成功 -SETTINGS_SYNC_UPLOAD_FAILED: 上傳失敗 -SETTINGS_SYNC_DOWNLOAD_SUCCESS: 下載成功 -SETTINGS_SYNC_DOWNLOAD_FAILED: 下載失敗 -SETTINGS_SYNC_COMMON_CONFIG: 通用配置 -SETTINGS_SYNC_MANAGE_CONFIG: 管理配置 -SETTINGS_AUTO_IMPORT: 管理頁面自動導入配置 -SETTINGS_AUTO_IMPORT_SELECT_PICBED: 選擇需要開啟自動導入的圖床 -SETTINGS_TAB_SYSTEM: 系統設置 -SETTINGS_TAB_SYNC_CONFIG: 同步與配置 -SETTINGS_TAB_UPLOAD: 上傳設置 -SETTINGS_TAB_ADVANCED: 高級設置 -SETTINGS_TAB_UPDATE: 更新 -# shortcut-page - -SHORTCUT_NAME: 快捷鍵名稱 -SHORTCUT_BIND: 快捷鍵綁定 -SHORTCUT_STATUS: 狀態 -SHORTCUT_ENABLED: 已啟用 -SHORTCUT_DISABLED: 已禁用 -SHORTCUT_SOURCE: 來源 -SHORTCUT_HANDLE: 操作 -SHORTCUT_ENABLE: 啟用 -SHORTCUT_DISABLE: 禁用 -SHORTCUT_EDIT: 編輯 -SHORTCUT_CHANGE_UPLOAD: 修改上傳快捷鍵 - -# tray-page - -WAIT_TO_UPLOAD: 等待上傳 -ALREADY_UPLOAD: 已上傳 - -# upload-page - -PICTURE_UPLOAD: 圖片上傳 -DRAG_FILE_TO_HERE: 將檔案拖曳到此處,或 -CLICK_TO_UPLOAD: 點擊上傳 -LINK_FORMAT: 連結格式 -CUSTOM: 自訂 -CLIPBOARD_PICTURE: 剪貼簿圖片 -TIPS_DRAG_VALID_PICTURE_OR_URL: 請拖入合法的圖片檔案或者圖片URL地址 -TIPS_INPUT_URL: 請輸入URL -TIPS_HTTP_PREFIX: http://或者https://開頭 -TIPS_INPUT_VALID_URL: 請輸入合法的URL - -# plugins - -PLUGIN_SEARCH_PLACEHOLDER: 搜尋npm上的PicGo插件,或者點擊上方按鈕查看優秀插件列表 -PLUGIN_INSTALL: 安裝 -PLUGIN_INSTALLING: 安裝中 -PLUGIN_INSTALLED: 已安裝 -PLUGIN_DOING_SOMETHING: 進行中 -PLUGIN_LIST: 插件列表 -PLUGIN_IMPORT_LOCAL: 導入本地插件 -PLUGIN_UPDATE_ALL: 更新全部插件 - -# tips - -TIPS_REMOVE_LINK: 此操作將在相簿中移除該圖片,是否繼續? -TIPS_WILL_REMOVE_CHOOSED_IMAGES: 將在相簿中移除剛才選中的 ${m} 張圖片,是否繼續? -TIPS_MUST_CONTAINS_URL: 必須含有$url 或 $fileName 或 $extName -TIPS_NETWORK_ERROR: 網路錯誤,暫時無法取得 -TIPS_NEED_RELOAD: 需要重新啟動生效 -TIPS_PLEASE_CHOOSE_LOG_LEVEL: 請選擇記錄等級 -TIPS_SET_SUCCEED: 設定成功 -TIPS_RESET_SUCCEED: 重置成功 -TIPS_PLUGIN_NOT_GUI_IMPLEMENT: 該插件未對GUI進行優化,是否繼續安裝? -TIPS_CLICK_NOTIFICATION_TO_RELOAD: 請點擊此通知重新啟動程式以生效 -TIPS_GET_PLUGIN_LIST_FAILED: 取得插件列表失敗 - -# manage page - -# manageSetting - -MANAGE_SETTING_TITLE: 管理設定 -MANAGE_SETTING_ISAUTOREFRESH_TITLE: 每次進入新目錄時,是否自動重新整理檔案列表 -MANAGE_SETTING_ISAUTOREFRESH_TIPS: 僅對不分頁模式有效,預設會在載入後自動快取至資料庫以提升下次載入速度 -MANAGE_SETTING_CLEAR_CACHE_TITLE: '清空檔案列表快取資料庫 已佔用:' -MANAGE_SETTING_CLEAR_CACHE_FREE_TITLE: '剩餘可用:' -MANAGE_SETTING_CLEAR_CACHE_TIPS: 清空後下次進入新目錄時將會重新載入檔案列表 -MANAGE_SETTING_CLEAR_CACHE_PROMPT: 確定要清空檔案列表快取資料庫嗎? -MANAGE_SETTING_CLEAR_CACHE_BUTTON: 清空 -MANAGE_SETTING_ISSHOWTHUMBNAIL_TITLE: 顯示圖片的原始圖像而非預設的檔案格式圖示(需要存儲桶公開訪問權限) -MANAGE_SETTING_ISSHOWLIST_TITLE: 檔案列表預設顯示方式 -MANAGE_SETTING_ISSHOWLIST_ON: 列表 -MANAGE_SETTING_ISSHOWLIST_OFF: 卡片 -MANAGE_SETTING_ISFORCECUSTOMURLHTTPS_TITLE: 自定義域名啟用強制 HTTPS -MANAGE_SETTING_ISFORCECUSTOMURLHTTPS_TIPS: 開啟後,複製鏈結等操作將會自動為自定義域名添加 HTTPS 前綴 -MANAGE_SETTING_ISUPLOADKEEPDIRSTRUCTURE_TITLE: 保留上傳時的目錄結構 -MANAGE_SETTING_ISUPLOADKEEPDIRSTRUCTURE_TIPS: 停用後,所有文件將會展開到指定目錄下 -MANAGE_SETTING_ISDOWNLOADFILEKEEPDIRSTRUCTURE_TITLE_A: 下載 -MANAGE_SETTING_ISDOWNLOADFILEKEEPDIRSTRUCTURE_TITLE_B: 文件 -MANAGE_SETTING_ISDOWNLOADFILEKEEPDIRSTRUCTURE_TITLE_C: 時保留目錄結構 -MANAGE_SETTING_ISDOWNLOADFOLDERKEEPDIRSTRUCTURE_TITLE_D: 目錄 -MANAGE_SETTING_ISDOWNLOADFILEKEEPDIRSTRUCTURE_TIPS: 啟用後,下載時會保留原始目錄結構 -MANAGE_SETTING_MAX_DOWNLOAD_FILE_SIZE_TITLE: 最大同時下載檔案數量(1-9999) -MANAGE_SETTING_MAX_DOWNLOAD_FILE_SIZE_TIPS: 由於後端實現方式不同,此設定在腾讯云上不生效 -MANAGE_SETTING_MAX_DOWNLOAD_FILE_SIZE_INPUT_TIPS: 請輸入最大同時下載檔案數量 -MANAGE_SETTING_ISIGNORECASE_TITLE: 搜尋檔案時,是否忽略大小寫 -MANAGE_SETTING_ISIGNORECASE_TIPS: 啟用後,搜尋時將會忽略大小寫 -MANAGE_SETTING_TIMESTAMPRENAME_TITLE: 上傳檔案時間戳重新命名--(最高優先級) -MANAGE_SETTING_TIMESTAMPRENAME_TIPS: 啟用後,上傳檔案時將會使用時間戳重新命名 -MANAGE_SETTING_RANDOMSTRINGRENAME_TITLE: 上傳檔案隨機字符串重新命名--(中優先級) -MANAGE_SETTING_RANDOMSTRINGRENAME_TIPS: 隨機字符串長度為20 -MANAGE_SETTING_CUSTOMRENAME_TITLE: 上傳檔案自定義重新命名--(最低優先級) -MANAGE_SETTING_CUSTOMRENAME_TIPS: 啟用後,上傳檔案時將會使用自定義重新命名 -MANAGE_SETTING_CUSTOM_PATTERN_TITLE: 自訂重新命名格式,占位符請參考下表,可自由組合 -MANAGE_SETTING_CUSTOM_PATTERN_TIPS: 請輸入自訂重新命名格式 -MANAGE_SETTING_CUSTOM_PATTERN_TABLE_TITLE: 占位符 -MANAGE_SETTING_CUSTOM_PATTERN_TABLE_TIPS: 說明 -MANAGE_SETTING_PRESIGNED_URL_EXPIRE_TITLE: 預設下載鏈結有效期(秒) -MANAGE_SETTING_PRESIGNED_URL_EXPIRE_TIPS: 請輸入下載鏈結有效期 -MANAGE_SETTING_CHOOSE_COPY_FORMAT_TITLE: 選擇預設複製的連結格式 -MANAGE_SETTING_CHOOSE_COPY_FORMAT_MARKDOWN: Markdown -MANAGE_SETTING_CHOOSE_COPY_FORMAT_MARKDOWN_WITH_LINK: Markdown(帶連結) -MANAGE_SETTING_CHOOSE_COPY_FORMAT_RAWURL: 原始鏈結 -MANAGE_SETTING_CHOOSE_COPY_FORMAT_HTML: HTML格式 -MANAGE_SETTING_CHOOSE_COPY_FORMAT_BBCODE: BBCode格式 -MANAGE_SETTING_CHOOSE_COPY_FORMAT_CUSTOM: 自定義格式 -MANAGE_SETTING_CUSTOM_COPY_FORMAT_TITLE: 自定義鏈結格式($url為原始鏈結,$fileName為檔案名稱) -MANAGE_SETTING_CUSTOM_COPY_FORMAT_TIPS: 請輸入自定義鏈結格式 -MANAGE_SETTING_CHOOSE_DOWNLOAD_FOLDER_TITLE: 選擇下載目錄 -MANAGE_SETTING_CHOOSE_DOWNLOAD_FOLDER_TIPS: 系統預設下載目錄 -MANAGE_SETTING_CHOOSE_DOWNLOAD_FOLDER_BUTTON: 選擇目錄 -MANAGE_SETTING_COPY_MESSAGE: 已複製 -MANAGE_SETTING_CLEAR_CACHE_SUCCESS: 清除成功 -MANAGE_SETTING_CLEAR_CACHE_FAILED: 清除失敗 -MANAGE_SETTING_ISENCODEURL_TITLE: 複製鏈結時編碼 -MANAGE_SETTING_ISENCODEURL_TIPS: 啟用後,複製鏈結時將會編碼 -# Empty -MANAGE_NO_DATA: 暫無數據 - -# Main Page -MANAGE_MAIN_PAGE_NEW_BUCKET: 新建存儲桶 -MANAGE_MAIN_PAGE_BACK_TO_HOME: 返回首頁 -MANAGE_MAIN_PAGE_SWITCH_PICBED: 切換圖床 -MANAGE_MAIN_PAGE_SETTING: 設定 -MANAGE_MAIN_PAGE_SUBMIT: 提交 -MANAGE_MAIN_PAGE_TIPS: 提示 -MANAGE_MAIN_PAGE_TIPS_SUCCESS: 創建成功 -MANAGE_MAIN_PAGE_TIPS_FAILED: 創建失敗 -MANAGE_MAIN_PAGE_BUCKET: 存儲桶 -MANAGE_MAIN_PAGE_GALLERY: 圖庫 -MANAGE_MAIN_PAGE_REPOSITORY: 倉庫 - -# manage constant -MANAGE_CONSTANT_BASE_RULE: 請輸入 -MANAGE_CONSTANT_ITEMS_PAGE_RULE_MESSAGE_A: 請輸入每頁顯示數量 -MANAGE_CONSTANT_ITEMS_PAGE_RULE_MESSAGE_B: 每頁顯示數量必須為數字 -MANAGE_CONSTANT_ITEMS_PAGE_RULE_MESSAGE_C: 每頁顯示數量必須在20-1000之間 -MANAGE_CONSTANT_ALIAS_RULE_MESSAGE_A: 請輸入別名,該配置的唯一標識 -MANAGE_CONSTANT_ALIAS_RULE_MESSAGE_B: 別名只能包含中文、英文、數字、下劃線和中劃線 -MANAGE_CONSTANT_ALIAS_TOOLTIP: 別名只能包含中文、英文、數字、下劃線和中劃線 -MANAGE_CONSTANT_ITEMS_PAGE_TOOLTIP: 每頁顯示數量必須在20-1000之間 -MANAGE_CONSTANT_PAGING_TOOLTIP: 關閉分頁時,目錄列表將使用數據庫緩存以優化性能 -MANAGE_CONSTANT_BUCKET_NAME_TOOLTIP: 英文逗號分隔,如:bucket1,bucket2,bucket3,和起始目錄順序一一對應 -MANAGE_CONSTANT_BASE_DIR_TOOLTIP: '英文逗號分隔,如:/dir1,/dir2,/dir3, 和存儲桶順序一一對應' -MANAGE_CONSTANT_IS_AUTO_CUSTOM_URL_TOOLTIP: 開啟時,將自動獲取存儲桶綁定的域名,關閉時可手動填寫 - -MANAGE_CONSTANT_SMMS_ALIAS_DESC: 配置別名-必需 -MANAGE_CONSTANT_SMMS_ALIAS_PLACEHOLDER: 該配置的唯一標識 -MANAGE_CONSTANT_SMMS_TOKEN_DESC: Token-必需 -MANAGE_CONSTANT_SMMS_TOKEN_PLACEHOLDER: 請填寫Token -MANAGE_CONSTANT_SMMS_PAGING_DESC: 是否開啟分頁 -MANAGE_CONSTANT_SMMS_EXPLAIN: '大陸地區請訪問備用域名https://smms.app,請勿大批量上傳圖片,否則API接口會被限制' -MANAGE_CONSTANT_SMMS_REFER_TEXT: '配置教程請參考:' - -MANAGE_CONSTANT_QINIU_NAME: 七牛雲 -MANAGE_CONSTANT_QINIU_ALIAS_DESC: 配置別名-必需 -MANAGE_CONSTANT_QINIU_ALIAS_PLACEHOLDER: 該配置的唯一標識 -MANAGE_CONSTANT_QINIU_ACCESS_KEY_DESC: accessKey-必需 -MANAGE_CONSTANT_QINIU_ACCESS_KEY_PLACEHOLDER: 請填寫 accessKey -MANAGE_CONSTANT_QINIU_SECRET_KEY_DESC: secretKey-必需 -MANAGE_CONSTANT_QINIU_SECRET_KEY_PLACEHOLDER: 請填寫 secretKey -MANAGE_CONSTANT_QINIU_BUCKET_DESC: 空間名-可選 -MANAGE_CONSTANT_QINIU_BUCKET_PLACEHOLDER: 英文逗號分隔,例如:bucket1,bucket2 -MANAGE_CONSTANT_QINIU_BASE_DIR_DESC: 起始目錄-可選 -MANAGE_CONSTANT_QINIU_BASE_DIR_PLACEHOLDER: 英文逗號分隔,例如:/dir1,/dir2 -MANAGE_CONSTANT_QINIU_IS_AUTO_CUSTOM_URL_DESC: 是否自動獲取綁定域名 -MANAGE_CONSTANT_QINIU_PAGING_DESC: 是否開啟分頁 -MANAGE_CONSTANT_QINIU_ITEMS_PAGE_DESC: 每頁顯示數量 -MANAGE_CONSTANT_QINIU_EXPLAIN: 空間名和起始目錄配置時可通過英文逗號分隔設置,順序必須一致,逗號間留空或缺失項使用默認值 -MANAGE_CONSTANT_QINIU_REFER_TEXT: '配置教程請參考: ' - -MANAGE_CONSTANT_GITHUB_ALIAS_DESC: 配置別名-必需 -MANAGE_CONSTANT_GITHUB_ALIAS_PLACEHOLDER: 該配置的唯一標識 -MANAGE_CONSTANT_GITHUB_TOKEN_DESC: Token-必需 -MANAGE_CONSTANT_GITHUB_TOKEN_PLACEHOLDER: 請填寫Token -MANAGE_CONSTANT_GITHUB_TOKEN_TIPS: 請提供具有完整repo權限的token,否則部分功能可能無法使用 -MANAGE_CONSTANT_GITHUB_USER_DESC: 用戶名-必需 -MANAGE_CONSTANT_GITHUB_USER_PLACEHOLDER: 請填寫用戶名 -MANAGE_CONSTANT_GITHUB_USER_RULE_MESSAGE: 用戶名 -MANAGE_CONSTANT_GITHUB_PROXY_DESC: 代理地址-可選 -MANAGE_CONSTANT_GITHUB_PROXY_PLACEHOLDER: '例如:http://127.0.0.1:1080' -MANAGE_CONSTANT_GITHUB_PROXY_TIPS: 如果訪問速度較慢,可以嘗試配置代理 -MANAGE_CONSTANT_GITHUB_PAGING_DESC: 是否開啟分頁 -MANAGE_CONSTANT_GITHUB_CUSTOM_URL_DESC: CDN加速域名-可選 -MANAGE_CONSTANT_GITHUB_CUSTOM_URL_PLACEHOLDER: '支持使用{username}、{repo}、{branch}和{path}作為替換占位符,用於適配不同倉庫和分支' -MANAGE_CONSTANT_GITHUB_CUSTOM_URL_TIPS: '例如: https://cdn.staticaly.com/gh/{username}/{repo}@{branch}/{path}' -MANAGE_CONSTANT_GITHUB_CUSTOM_URL_RULE_MESSAGE_A: '加速域名請以http://或https://開頭' -MANAGE_CONSTANT_GITHUB_CUSTOM_URL_RULE_MESSAGE_B: 加速域名中的大括號必須成對出現 -MANAGE_CONSTANT_GITHUB_EXPLAIN: API調用有每小時上限,此外不支持上傳超過100M的文件 -MANAGE_CONSTANT_GITHUB_REFER_TEXT: '配置教程請參考:' - -MANAGE_CONSTANT_ALIYUN_NAME: 阿里雲 -MANAGE_CONSTANT_ALIYUN_ALIAS_DESC: 配置別名-必需 -MANAGE_CONSTANT_ALIYUN_ALIAS_PLACEHOLDER: 該配置的唯一標識 -MANAGE_CONSTANT_ALIYUN_ACCESS_KEY_ID_DESC: accessKeyId-必需 -MANAGE_CONSTANT_ALIYUN_ACCESS_KEY_ID_PLACEHOLDER: 請填寫accessKeyId -MANAGE_CONSTANT_ALIYUN_ACCESS_KEY_SECRET_DESC: accessKeySecret-必需 -MANAGE_CONSTANT_ALIYUN_ACCESS_KEY_SECRET_PLACEHOLDER: 請填寫accessKeySecret -MANAGE_CONSTANT_ALIYUN_BUCKET_DESC: 儲存桶名-可選 -MANAGE_CONSTANT_ALIYUN_BUCKET_PLACEHOLDER: 英文逗號分隔,例如:bucket1,bucket2 -MANAGE_CONSTANT_ALIYUN_BASE_DIR_DESC: 起始目錄-可選 -MANAGE_CONSTANT_ALIYUN_BASE_DIR_PLACEHOLDER: 英文逗號分隔,例如:/dir1,/dir2 -MANAGE_CONSTANT_ALIYUN_IS_AUTO_CUSTOM_URL_DESC: 是否自動獲取綁定域名 -MANAGE_CONSTANT_ALIYUN_PAGING_DESC: 是否開啟分頁 -MANAGE_CONSTANT_ALIYUN_ITEMS_PAGE_DESC: 每頁顯示數量 -MANAGE_CONSTANT_ALIYUN_EXPLAIN: 儲存桶名和起始目錄配置時可通過英文逗號分隔不同儲存桶的設置,順序必須一致,逗號間留空或缺失項使用默認值 -MANAGE_CONSTANT_ALIYUN_REFER_TEXT: '配置教程請參考: ' - -MANAGE_CONSTANT_TENCENT_NAME: 腾讯雲 -MANAGE_CONSTANT_TENCENT_ALIAS_DESC: 配置别名-必需 -MANAGE_CONSTANT_TENCENT_ALIAS_PLACEHOLDER: 該配置的唯一標識 -MANAGE_CONSTANT_TENCENT_SECRET_ID_DESC: secretId-必需 -MANAGE_CONSTANT_TENCENT_SECRET_ID_PLACEHOLDER: 請填寫 secretId -MANAGE_CONSTANT_TENCENT_SECRET_KEY_DESC: secretKey-必需 -MANAGE_CONSTANT_TENCENT_SECRET_KEY_PLACEHOLDER: 請填寫 secretKey -MANAGE_CONSTANT_TENCENT_APPID_DESC: appId-必需 -MANAGE_CONSTANT_TENCENT_APPID_PLACEHOLDER: 請填寫 appId -MANAGE_CONSTANT_TENCENT_APPID_TOOLTIP: '例如:1250000000' -MANAGE_CONSTANT_TENCENT_BUCKET_DESC: 存儲桶名-可選(注意包含AppId) -MANAGE_CONSTANT_TENCENT_BUCKET_PLACEHOLDER: 英文逗號分隔,例如:bucket1-1250000000,bucket2-1250000000 -MANAGE_CONSTANT_TENCENT_BASE_DIR_DESC: 起始目錄-可選 -MANAGE_CONSTANT_TENCENT_BASE_DIR_PLACEHOLDER: 英文逗號分隔,例如:/dir1,/dir2 -MANAGE_CONSTANT_TENCENT_IS_AUTO_CUSTOM_URL_DESC: 是否自動獲取綁定域名 -MANAGE_CONSTANT_TENCENT_PAGING_DESC: 是否開啟分頁 -MANAGE_CONSTANT_TENCENT_ITEMS_PAGE_DESC: 每頁顯示數量 -MANAGE_CONSTANT_TENCENT_EXPLAIN: 存儲桶名和起始目錄配置時可通過英文逗號分隔不同存儲桶的設置,順序必須一致,逗號間留空或缺失項使用默認值 -MANAGE_CONSTANT_TENCENT_REFER_TEXT: '配置教程請參考: ' - -MANAGE_CONSTANT_UPYUN_NAME: 又拍雲 -MANAGE_CONSTANT_UPYUN_ALIAS_DESC: 配置別名-必需 -MANAGE_CONSTANT_UPYUN_ALIAS_PLACEHOLDER: 該配置的唯一標識 -MANAGE_CONSTANT_UPYUN_BUCKET_DESC: 服務名-必需 -MANAGE_CONSTANT_UPYUN_BUCKET_PLACEHOLDER: 對應其它對象存儲的存儲桶名 -MANAGE_CONSTANT_UPYUN_OPERATOR_NAME_DESC: 操作員名-必需 -MANAGE_CONSTANT_UPYUN_OPERATOR_NAME_PLACEHOLDER: 推薦使用具有讀取、寫入和刪除完整權限的操作員 -MANAGE_CONSTANT_UPYUN_OPERATOR_NAME_RULE: 操作員 -MANAGE_CONSTANT_UPYUN_OPERATOR_PWD_DESC: 操作員密碼-必需 -MANAGE_CONSTANT_UPYUN_OPERATOR_PWD_PLACEHOLDER: 請填寫密碼 -MANAGE_CONSTANT_UPYUN_OPERATOR_PWD_RULE: 操作員密碼 -MANAGE_CONSTANT_UPYUN_BASE_DIR_DESC: 起始目錄-可選 -MANAGE_CONSTANT_UPYUN_BASE_DIR_PLACEHOLDER: 讀取文件時的初始目錄 -MANAGE_CONSTANT_UPYUN_IS_AUTO_CUSTOM_URL_DESC: 加速域名-必需 -MANAGE_CONSTANT_UPYUN_IS_AUTO_CUSTOM_URL_PLACEHOLDER: '請以http://或https://開頭' -MANAGE_CONSTANT_UPYUN_IS_AUTO_CUSTOM_URL_RULE_MESSAGE_A: 加速域名不能為空 -MANAGE_CONSTANT_UPYUN_IS_AUTO_CUSTOM_URL_RULE_MESSAGE_B: '自定義域名請以http://或https://開頭' -MANAGE_CONSTANT_UPYUN_ANTI_LEECH_TOKEN_DESC: 防盗链密钥-可選 -MANAGE_CONSTANT_UPYUN_ANTI_LEECH_TOKEN_PLACEHOLDER: 請填寫防盗链密钥 -MANAGE_CONSTANT_UPYUN_ANTI_LEECH_TOKEN_TOOLTIP: 如果不填寫,則不啟用防盗链 -MANAGE_CONSTANT_UPYUN_EXPIRE_TIME_DESC: 防盗链有效期(秒)-可選 -MANAGE_CONSTANT_UPYUN_PAGING: 是否開啟分頁 -MANAGE_CONSTANT_UPYUN_ITEMS_PAGE: 每頁顯示數量 -MANAGE_CONSTANT_UPYUN_EXPLAIN: 又拍雲圖床必須填寫加速域名,否則無法正常使用 -MANAGE_CONSTANT_UPYUN_REFER_TEXT: '配置教程請參考: ' - -MANAGE_CONSTANT_IMGUR_NAME: Imgur -MANAGE_CONSTANT_IMGUR_ALIAS_DESC: 配置別名-必需 -MANAGE_CONSTANT_IMGUR_ALIAS_PLACEHOLDER: 該配置的唯一標識 -MANAGE_CONSTANT_IMGUR_USERNAME_DESC: Imgur用戶名-必需 -MANAGE_CONSTANT_IMGUR_USERNAME_PLACEHOLDER: 請填寫Imgur用戶名 -MANAGE_CONSTANT_IMGUR_ACCESS_TOKEN_DESC: Access Token-必需 -MANAGE_CONSTANT_IMGUR_ACCESS_TOKEN_PLACEHOLDER: 請填寫Access Token -MANAGE_CONSTANT_IMGUR_ACCESS_TOKEN_TOOLTIP: 不是client ID,請參考配置教程 -MANAGE_CONSTANT_IMGUR_PROXY_DESC: 代理-可選 -MANAGE_CONSTANT_IMGUR_PROXY_PLACEHOLDER: 例如:http://127.0.0.1:1080 -MANAGE_CONSTANT_IMGUR_PROXY_TOOLTIP: 大陸地區請使用代理,否則無法正常使用 -MANAGE_CONSTANT_IMGUR_EXPLAIN: 大陸地區請使用代理,API調用存在限制,請注意使用頻率 -MANAGE_CONSTANT_IMGUR_REFER_TEXT: '配置教程請參考:' - -MANAGE_CONSTANT_S3_NAME: S3兼容雲 -MANAGE_CONSTANT_S3_ALIAS_DESC: 配置別名-必需 -MANAGE_CONSTANT_S3_ALIAS_PLACEHOLDER: 該配置的唯一標識 -MANAGE_CONSTANT_S3_ACCESS_KEY_ID_DESC: accessKeyId-必需 -MANAGE_CONSTANT_S3_ACCESS_KEY_ID_PLACEHOLDER: 請填寫accessKeyId -MANAGE_CONSTANT_S3_SECRET_ACCESS_KEY_DESC: secretAccessKey-必需 -MANAGE_CONSTANT_S3_SECRET_ACCESS_KEY_PLACEHOLDER: 請填寫secretAccessKey -MANAGE_CONSTANT_S3_ENDPOINT_DESC: endpoint-可選 -MANAGE_CONSTANT_S3_ENDPOINT_PLACEHOLDER: '例如:s3.us-east-1.amazonaws.com' -MANAGE_CONSTANT_S3_ENDPOINT_TOOLTIP: 如果不填寫,默認訪問 AWS S3,請提供根API endpoint -MANAGE_CONSTANT_S3_SSLENABLED_DESC: 使用HTTPS連接 -MANAGE_CONSTANT_S3_SSLENABLED_TOOLTIP: 如果您的平臺不支持,請關閉該選項 -MANAGE_CONSTANT_S3_FORCE_PATH_STYLE_DESC: 啟用 S3 Path style -MANAGE_CONSTANT_S3_FORCE_PATH_STYLE_TOOLTIP: 例如使用 minio 時需要啟用 -MANAGE_CONSTANT_S3_PROXY_DESC: 代理-可選 -MANAGE_CONSTANT_S3_PROXY_PLACEHOLDER: '例如:http://127.0.0.1:1080' -MANAGE_CONSTANT_S3_PROXY_TOOLTIP: 如果部分平臺大陸地區無法訪問,請使用代理 -MANAGE_CONSTANT_S3_ACL_FOR_UPLOAD_DESC: 上傳文件的權限 -MANAGE_CONSTANT_S3_ACL_FOR_UPLOAD_OPTIONS_PRIVATE: 私有 -MANAGE_CONSTANT_S3_ACL_FOR_UPLOAD_OPTIONS_PUBLIC_READ: 公共讀 -MANAGE_CONSTANT_S3_ACL_FOR_UPLOAD_OPTIONS_PUBLIC_READ_WRITE: 公共讀寫 -MANAGE_CONSTANT_S3_ACL_FOR_UPLOAD_OPTIONS_AUTHENTICATED_READ: 授權讀 -MANAGE_CONSTANT_S3_ACL_FOR_UPLOAD_OPTIONS_BUCKET_OWNER_READ: 桶所有者讀 -MANAGE_CONSTANT_S3_ACL_FOR_UPLOAD_OPTIONS_BUCKET_OWNER_FULL_CONTROL: 桶所有者完全控制 -MANAGE_CONSTANT_S3_ACL_FOR_UPLOAD_OPTIONS_AWS_EXEC_READ: AWS執行讀 -MANAGE_CONSTANT_S3_ACL_FOR_UPLOAD_TOOLTIP: '上傳文件的權限,可選值:private、public-read、public-read-write、authenticated-read、bucket-owner-read、bucket-owner-full-control、aws-exec-read' -MANAGE_CONSTANT_S3_BUCKET_DESC: 存儲桶名-可選 -MANAGE_CONSTANT_S3_BUCKET_PLACEHOLDER: 英文逗號分隔,例如:bucket1,bucket2 -MANAGE_CONSTANT_S3_BASE_DIR_DESC: 起始目錄-可選 -MANAGE_CONSTANT_S3_BASE_DIR_PLACEHOLDER: '英文逗號分隔,例如:/dir1,/dir2' -MANAGE_CONSTANT_S3_DOGE_CLOUD_SUPPORT_DESC: 啟用 Doge Cloud 支援 -MANAGE_CONSTANT_S3_DOGE_CLOUD_SUPPORT_TOOLTIP: 啟用後,將會啟用Doge Cloud API -MANAGE_CONSTANT_S3_PAGING_DESC: 是否開啟分頁 -MANAGE_CONSTANT_S3_ITEMS_PAGE_DESC: 每頁顯示數量 -MANAGE_CONSTANT_S3_EXPLAIN: 存儲桶名和起始目錄配置時可通過英文逗號分隔不同存儲桶的設置,順序必須一致,逗號間留空或缺失項使用默認值 -MANAGE_CONSTANT_S3_REFER_TEXT: '配置教程請參考:' - -MANAGE_CONSTANT_WEBDAV_NAME: WebDAV -MANAGE_CONSTANT_WEBDAV_ALIAS_DESC: 配置別名-必需 -MANAGE_CONSTANT_WEBDAV_ALIAS_PLACEHOLDER: 該配置的唯一標識 -MANAGE_CONSTANT_WEBDAV_HOST_DESC: 地址-必需 -MANAGE_CONSTANT_WEBDAV_HOST_PLACEHOLDER: '例如:https://example.com/dav' -MANAGE_CONSTANT_WEBDAV_HOST_TOOLTIP: 請填寫完整的WebDAV地址 -MANAGE_CONSTANT_WEBDAV_USERNAME_DESC: 使用者名稱-必需 -MANAGE_CONSTANT_WEBDAV_USERNAME_PLACEHOLDER: 請填寫使用者名稱 -MANAGE_CONSTANT_WEBDAV_BUCKET_DESC: 特殊配置 -MANAGE_CONSTANT_WEBDAV_BUCKET_PLACEHOLDER: '例如:bucket1' -MANAGE_CONSTANT_WEBDAV_BUCKET_TOOLTIP: 此處不可修改,僅為軟體相容性考量 -MANAGE_CONSTANT_WEBDAV_PASSWORD_DESC: 密碼-必需 -MANAGE_CONSTANT_WEBDAV_PASSWORD_PLACEHOLDER: 請填寫密碼 -MANAGE_CONSTANT_WEBDAV_BASE_DIR_DESC: 起始目錄-可選 -MANAGE_CONSTANT_WEBDAV_BASE_DIR_PLACEHOLDER: '例如:/dir1' -MANAGE_CONSTANT_WEBDAV_CUSTOM_URL_DESC: 自訂網域名稱-可選 -MANAGE_CONSTANT_WEBDAV_CUSTOM_URL_PLACEHOLDER: '例如:https://example.com' -MANAGE_CONSTANT_WEBDAV_CUSTOM_URL_TOOLTIP: 如果您的WebDAV伺服器支援自訂網域名稱,請填寫 -MANAGE_CONSTANT_WEBDAV_CUSTOM_URL_RULE_MESSAGE: '自訂網域名稱請以http://或https://開頭' -MANAGE_CONSTANT_WEBDAV_WEB_PATH: WebDAV網路路徑-可選 -MANAGE_CONSTANT_WEBDAV_WEB_PATH_PLACEHOLDER: '例如:test/ttc' -MANAGE_CONSTANT_WEBDAV_WEB_PATH_TOOLTIP: '用於拼接網址' -MANAGE_CONSTANT_WEBDAV_PROXY_DESC: 代理-可選 -MANAGE_CONSTANT_WEBDAV_PROXY_PLACEHOLDER: '例如:http://127.0.0.1:1080' -MANAGE_CONSTANT_WEBDAV_PROXY_TOOLTIP: 如果需要特殊網路環境才能訪問,請使用代理 -MANAGE_CONSTANT_WEBDAV_SSL_DESC: 使用HTTPS連線 -MANAGE_CONSTANT_WEBDAV_SSL_TOOLTIP: 根據WebDAV伺服器的配置,如果您的伺服器不支援HTTPS,請關閉該選項 -MANAGE_CONSTANT_WEBDAV_AUTH_TYPE_DESC: 認證類型 -MANAGE_CONSTANT_WEBDAV_EXPLAIN: 'WebDAV配置' -MANAGE_CONSTANT_WEBDAV_REFER_TEXT: '配置教程請參考: ' - -MANAGE_CONSTANT_LOCAL_NAME: 本地 -MANAGE_CONSTANT_LOCAL_ALIAS_DESC: 配置別名-必需 -MANAGE_CONSTANT_LOCAL_ALIAS_PLACEHOLDER: 該配置的唯一標識 -MANAGE_CONSTANT_LOCAL_BASE_DIR_DESC: 起始目錄-必需 -MANAGE_CONSTANT_LOCAL_BASE_DIR_PLACEHOLDER: 請填寫起始目錄 -MANAGE_CONSTANT_LOCAL_CUSTOM_URL_DESC: 自定義網域-可選 -MANAGE_CONSTANT_LOCAL_CUSTOM_URL_PLACEHOLDER: '例如:https://example.com' -MANAGE_CONSTANT_LOCAL_CUSTOM_URL_TOOLTIP: 如果您的目錄支援自定義網域,請填寫 -MANAGE_CONSTANT_LOCAL_WEB_PATH: 網路路徑-可選 -MANAGE_CONSTANT_LOCAL_WEB_PATH_PLACEHOLDER: '例如:test/ttc' -MANAGE_CONSTANT_LOCAL_WEB_PATH_TOOLTIP: '用於拼接網址' -MANAGE_CONSTANT_LOCAL_EXPLAIN: '本地配置' -MANAGE_CONSTANT_LOCAL_REFER_TEXT: '配置教程請參考: ' -MANAGE_CONSTANT_LOCAL_BASE_DIR_RULE_MESSAGE: 起始目錄不能為空 -MANAGE_CONSTANT_LOCAL_BUCKET_DESC: 特殊配置 -MANAGE_CONSTANT_LOCAL_BUCKET_PLACEHOLDER: '例如:bucket1' -MANAGE_CONSTANT_LOCAL_BUCKET_TOOLTIP: 此處不可修改,僅為軟體相容性考量 - -MANAGE_CONSTANT_SFTP_NAME: SFTP -MANAGE_CONSTANT_SFTP_ALIAS_DESC: 配置別名-必需 -MANAGE_CONSTANT_SFTP_ALIAS_PLACEHOLDER: 該配置的唯一標識 -MANAGE_CONSTANT_SFTP_HOST_DESC: 地址-必需 -MANAGE_CONSTANT_SFTP_HOST_PLACEHOLDER: '例如:233.233.233.233' -MANAGE_CONSTANT_SFTP_PORT_DESC: 端口-必需 -MANAGE_CONSTANT_SFTP_PORT_PLACEHOLDER: '例如:22' -MANAGE_CONSTANT_SFTP_USERNAME_DESC: 用戶名 -MANAGE_CONSTANT_SFTP_USERNAME_PLACEHOLDER: 請填寫用戶名 -MANAGE_CONSTANT_SFTP_PASSWORD_DESC: 密碼 -MANAGE_CONSTANT_SFTP_PASSWORD_PLACEHOLDER: 請填寫密碼 -MANAGE_CONSTANT_SFTP_PRIVATE_KEY_DESC: 私鑰地址 -MANAGE_CONSTANT_SFTP_PRIVATE_KEY_PLACEHOLDER: 請填寫私鑰地址 -MANAGE_CONSTANT_SFTP_PRIVATE_KEY_TOOLTIP: '例如:/home/user/.ssh/id_rsa' -MANAGE_CONSTANT_SFTP_PASSPHRASE_DESC: 私鑰密碼 -MANAGE_CONSTANT_SFTP_PASSPHRASE_PLACEHOLDER: 請填寫私鑰密碼 -MANAGE_CONSTANT_SFTP_BASE_DIR_DESC: 起始目錄-可選 -MANAGE_CONSTANT_SFTP_BASE_DIR_PLACEHOLDER: '例如:/dir1' -MANAGE_CONSTANT_SFTP_CUSTOM_URL_DESC: 自定義網域-可選 -MANAGE_CONSTANT_SFTP_CUSTOM_URL_PLACEHOLDER: '例如:https://example.com' -MANAGE_CONSTANT_SFTP_CUSTOM_URL_TOOLTIP: 如果您的目錄支援自定義網域,請填寫 -MANAGE_CONSTANT_SFTP_WEB_PATH: 網路路徑-可選 -MANAGE_CONSTANT_SFTP_WEB_PATH_PLACEHOLDER: '例如:test/ttc' -MANAGE_CONSTANT_SFTP_WEB_PATH_TOOLTIP: '用於拼接網址' -MANAGE_CONSTANT_SFTP_FILE_PERMISSIONS_DESC: 文件權限 -MANAGE_CONSTANT_SFTP_FILE_PERMISSIONS_PLACEHOLDER: '例如:0644' -MANAGE_CONSTANT_SFTP_FILE_PERMISSIONS_TOOLTIP: '用於設置上傳文件的權限' -MANAGE_CONSTANT_SFTP_DIR_PERMISSIONS_DESC: 目錄權限 -MANAGE_CONSTANT_SFTP_DIR_PERMISSIONS_PLACEHOLDER: '例如:0755' -MANAGE_CONSTANT_SFTP_DIR_PERMISSIONS_TOOLTIP: '用於設置上傳目錄的權限' -MANAGE_CONSTANT_SFTP_EXPLAIN: 'SFTP配置' -MANAGE_CONSTANT_SFTP_REFER_TEXT: '配置教程請參考: ' -MANAGE_CONSTANT_SFTP_BASE_DIR_RULE_MESSAGE: 起始目錄不能為空 -MANAGE_CONSTANT_SFTP_BUCKET_DESC: 特殊配置 -MANAGE_CONSTANT_SFTP_BUCKET_PLACEHOLDER: '例如:bucket1' -MANAGE_CONSTANT_SFTP_BUCKET_TOOLTIP: 此處不可修改,僅為軟體相容性考量 - -MANAGE_LOGIN_PAGE_PANE_NAME: 已保存配置 -MANAGE_LOGIN_PAGE_PANE_DESC: 點擊圖標和別名可查看詳情 -MANAGE_LOGIN_PAGE_PANE_LOADING: 導入配置... -MANAGE_LOGIN_PAGE_PANE_KEY_NAME: 配置項 -MANAGE_LOGIN_PAGE_PANE_KEY_VALUE: 值 -MANAGE_LOGIN_PAGE_PANE_ENTER: 進入 -MANAGE_LOGIN_PAGE_PANE_DELETE: 刪除 -MANAGE_LOGIN_PAGE_PANE_SELECT_PLACEHOLDER: 請選擇 -MANAGE_LOGIN_PAGE_PANE_IMPORT: 導入 -MANAGE_LOGIN_PAGE_PANE_SAVE: 保存 -MANAGE_LOGIN_PAGE_PANE_RESET: 重置 -MANAGE_LOGIN_PAGE_PANE_TABLE_TITLE: 已有配置,單擊可複製對應儲存格資料 -MANAGE_LOGIN_PAGE_PANE_CONFIG_CHANGE_MESSAGE_A: 請填寫 -MANAGE_LOGIN_PAGE_PANE_CONFIG_CHANGE_ALIAS_MESSAGE: 別名只能包含中文、英文、數字、下劃線和中劃線 -MANAGE_LOGIN_PAGE_PANE_CONFIG_CHANGE_ITEMS_PER_PAGE_MESSAGE: 每頁數量必須在20-1000之間 -MANAGE_LOGIN_PAGE_PANE_CONFIG_CHANGE_CUSTOM_URL_MESSAGE: 自定義網域請以http://或https://開頭 -MANAGE_LOGIN_PAGE_PANE_CONFIG_CHANGE_NOTICE_NAME: 通知 -MANAGE_LOGIN_PAGE_PANE_CONFIG_CHANGE_NOTICE_MESSAGE: 已覆蓋別名 -MANAGE_LOGIN_PAGE_PANE_CONFIG_CHANGE_NOTICE_MESSAGE_B: 已保存別名 -MANAGE_LOGIN_PAGE_PANE_CONFIG_CHANGE_NOTICE_MESSAGE_C: 已刪除別名 -MANAGE_LOGIN_PAGE_PANE_CONFIG_CHANGE_NOTICE_MESSAGE_D: 刪除別名為 -MANAGE_LOGIN_PAGE_PANE_CONFIG_CHANGE_NOTICE_MESSAGE_E: 的配置失敗 -MANAGE_LOGIN_PAGE_PANE_CONFIG_CHANGE_COPY_SUCCESS: 已複製 -MANAGE_LOGIN_PAGE_PANE_DELETE_CONFIG_TITLE: 確定要删除嗎?? -MANAGE_LOGIN_PAGE_PANE_DELETE_CONFIG_TIP: 提示 -MANAGE_LOGIN_PAGE_PANE_DELETE_CONFIG_CONFIRM: 確定 -MANAGE_LOGIN_PAGE_PANE_DELETE_CONFIG_CANCEL: 取消 - -MANAGE_BUCKET_PAGE_LOADING_TEXT: 載入檔案中... -MANAGE_BUCKET_PAGE_CUSTOM_URL_SELECT_PLACEHOLDER: 請選擇自訂域名 -MANAGE_BUCKET_PAGE_CUSTOM_URL_INPUT_PLACEHOLDER: 請輸入自訂域名 -MANAGE_BUCKET_PAGE_UPLOAD_FILES_TOOLTIP: 檔案上傳(支援多選) -MANAGE_BUCKET_PAGE_UPLOAD_FROM_URL_TOOLTIP: 從 URL 上傳 -MANAGE_BUCKET_PAGE_CREATE_FOLDER_TOOLTIP: 建立資料夾 -MANAGE_BUCKET_PAGE_DOWNLOAD_TOOLTIP: 下載頁面 -MANAGE_BUCKET_PAGE_BATCH_RENAME_TOOLTIP: 批次重新命名 -MANAGE_BUCKET_PAGE_BATCH_COPY_URL_TOOLTIP: 批次複製 URL -MANAGE_BUCKET_PAGE_COPY_FILE_INFO_TOOLTIP: 複製檔案資訊 -MANAGE_BUCKET_PAGE_FORCE_REFRESH_TOOLTIP: 強制重新整理檔案列表 -MANAGE_BUCKET_PAGE_SEARCH_PLACEHOLDER: 搜尋檔案 -MANAGE_BUCKET_PAGE_ROOT_FOLDER: 根目錄 -MANAGE_BUCKET_PAGE_FILE_NUMBER: '檔案數:' -MANAGE_BUCKET_PAGE_FILE_SIZE: '總大小:' -MANAGE_BUCKET_PAGE_SELECT_ALL: 全選 -MANAGE_BUCKET_PAGE_SELECT_NONE: 取消選擇 -MANAGE_BUCKET_PAGE_SELECT_INVERT: 反選 -MANAGE_BUCKET_DOWNLOAD_BTN: 下載 -MANAGE_BUCKET_DELETE_BTN: 刪除 -MANAGE_BUCKET_SORT_TITLE: 排序 -MANAGE_BUCKET_SORT_NAME: 檔案名稱 -MANAGE_BUCKET_SORT_SIZE: 大小 -MANAGE_BUCKET_SORT_EXT: 類型 -MANAGE_BUCKET_SORT_TIME: 時間 -MANAGE_BUCKET_SORT_CHECK: 選取狀態 -MANAGE_BUCKET_SORT_INIT: 初始化 -MANAGE_BUCKET_URL_UPLOAD_DIALOG_TITLE: 請輸入 URL,支援多個 URL,以換行分隔 -MANAGE_BUCKET_URL_UPLOAD_DIALOG_CONFIRM: 確定 -MANAGE_BUCKET_URL_UPLOAD_DIALOG_CANCEL: 取消 -MANAGE_BUCKET_URL_FORMAT_MARKDOWN: Markdown -MANAGE_BUCKET_URL_FORMAT_MARKDOWN_WITH_LINK: Markdown-link -MANAGE_BUCKET_URL_FORMAT_URL: Url -MANAGE_BUCKET_URL_FORMAT_HTML: Html -MANAGE_BUCKET_URL_FORMAT_BBCODE: BBCode -MANAGE_BUCKET_URL_FORMAT_CUSTOM: 自訂 -MANAGE_BUCKET_URL_FORMAT_PRESIGN: 預簽名連結 -MANAGE_BUCKET_FILE_INFO_TITLE: 檔案資訊 -MANAGE_BUCKET_FILE_INFO_COPY_TIPS: 複製 JSON 格式資訊 -MANAGE_BUCKET_FILE_LIST_LOADING: 載入中,點擊取消 -MANAGE_BUCKET_FILE_LIST_DOWNLOAD_PRE: 準備下載中,點擊取消 -MANAGE_BUCKET_KEEP_FOLDER_STRUCTURE: 保持目錄結構 -MANAGE_BUCKET_NOT_KEEP_FOLDER_STRUCTURE: 不保持目錄結構 -MANAGE_BUCKET_UPLOAD_AREA_TITLE: 拖放上傳支援遞歸上傳資料夾 -MANAGE_BUCKET_UPLOAD_AREA_TEXT: 或:點選選擇檔案(不支援資料夾) -MANAGE_BUCKET_UPLOAD_AREA_BTN_LOADING: 讀取檔案中 -MANAGE_BUCKET_UPLOAD_AREA_BTN: 上傳 -MANAGE_BUCKET_UPLOAD_AREA_CLEAR: 清空 -MANAGE_BUCKET_UPLOAD_AREA_STATUS_UPLOADING: 上傳中 -MANAGE_BUCKET_UPLOAD_AREA_COPY_TASK: 複製上傳任務資訊 -MANAGE_BUCKET_UPLOAD_AREA_CLEAR_UPLOADED_TASK: 清空已完成任務 -MANAGE_BUCKET_UPLOAD_AREA_CLEAR_ALL_TASK: 清空所有任務 -MANAGE_BUCKET_UPLOAD_AREA_SUCCESS: 成功 -MANAGE_BUCKET_UPLOAD_AREA_FAILED: 失敗 -MANAGE_BUCKET_DOWNLOAD_PAGE_TITLE: 下載頁面 -MANAGE_BUCKET_DOWNLOADING: 下載中 -MANAGE_BUCKET_DOWNLOAD_COPY_TASK: 複製下載任務資訊 -MANAGE_BUCKET_DOWNLOAD_CLEAR_DOWNLOADED_TASK: 清空已完成任務 -MANAGE_BUCKET_DOWNLOAD_CLEAR_ALL_TASK: 清空所有任務 -MANAGE_BUCKET_DOWNLOAD_OPEN_FOLDER: 開啟下載目錄 -MANAGE_BUCKET_DOWNLOAD_SUCCESS: 成功 -MANAGE_BUCKET_DOWNLOAD_FAILED: 失敗 -MANAGE_BUCKET_MARKDOWN_PREVIEW: 預覽 -MANAGE_BUCKET_PLAY: 播放 -MANAGE_BUCKET_RENAME_FILE: 檔案重新命名 -MANAGE_BUCKET_RENAME_FILE_INPUT_A: 進行替換時匹配的字串或 JS 正則表達式 -MANAGE_BUCKET_RENAME_FILE_INPUT_A_TIPS: 正則表達式請直接輸入,不需要加上 / -MANAGE_BUCKET_RENAME_FILE_INPUT_A_PLACEHOLDER: 例如:^\d{4}-\d{2}-\d{2} -MANAGE_BUCKET_RENAME_FILE_INPUT_B: 需要替換的字串,可使用自訂重新命名規則中的佔位符 -MANAGE_BUCKET_RENAME_FILE_TABLE_IID: 自增數字 -MANAGE_BUCKET_RENAME_FILE_EXT: 是否匹配副檔名進行替換 -MANAGE_BUCKET_RENAME_FILE_EXT_TIPS: 如果希望修改副檔名,請勾選此項 -MANAGE_BUCKET_RENAME_FILE_EXT_YES: 是 -MANAGE_BUCKET_RENAME_FILE_EXT_NO: 否 -MANAGE_BUCKET_RENAME_FILE_CANCEL: 取消 -MANAGE_BUCKET_RENAME_FILE_CONFIRM: 確定 -MANAGE_BUCKET_COPY_SUCCESS: 複製成功 -MANAGE_BUCKET_START_LOADING_MESSAGE: 開始取得檔案 -MANAGE_BUCKET_END_LOADING_MESSAGE_FAIL: 取得檔案內容失敗 -MANAGE_BUCKET_CHANGE_CUSTOM_URL_TITLE: 提示 -MANAGE_BUCKET_CHANGE_CUSTOM_URL_MSG: 正在載入檔案列表,請稍後再試 -MANAGE_BUCKET_LAST_PAGE_TITLE: 提示 -MANAGE_BUCKET_LAST_PAGE_MSG: 已經是最後一頁了 -MANAGE_BUCKET_GET_LIST_FAIL_TITLE: 提示 -MANAGE_BUCKET_GET_LIST_FAIL_MSG: 獲取檔案列表失敗 -MANAGE_BUCKET_GET_LIST_FAIL_MSG2: 正在後台獲取檔案列表,請勿切換頁面 -MANAGE_BUCKET_GET_LIST_FAIL_MSG3: 正在載入檔案列表,請稍後再試 -MANAGE_BUCKET_DOWNLOAD_FOLDER_BOX_TITLE: '確定要下載該資料夾嗎?' -MANAGE_BUCKET_DOWNLOAD_FOLDER_BOX_TIP: 提示 -MANAGE_BUCKET_DOWNLOAD_FOLDER_BOX_CONFIRM: 確定 -MANAGE_BUCKET_DOWNLOAD_FOLDER_BOX_CANCEL: 取消 -MANAGE_BUCKET_DOWNLOAD_FOLDER_SUCCESS: 獲取下載列表成功 -MANAGE_BUCKET_DOWNLOAD_FOLDER_FAIL: 獲取失敗 -MANAGE_BUCKET_DOWNLOAD_FOLDER_CANCEL: 已取消 -MANAGE_BUCKET_CREATE_FOLDER_BOX_TITLE: 請輸入資料夾名稱 -MANAGE_BUCKET_CREATE_FOLDER_BOX_TIP: 新建資料夾 -MANAGE_BUCKET_CREATE_FOLDER_BOX_CONFIRM: 確定 -MANAGE_BUCKET_CREATE_FOLDER_BOX_CANCEL: 取消 -MANAGE_BUCKET_CREATE_FOLDER_ERROR_MSG: 資料夾名稱只能包含中文、英文、數字、下劃線和斜線 -MANAGE_BUCKET_CREATE_FOLDER_SUCCESS: 創建成功,請刷新 -MANAGE_BUCKET_CREATE_FOLDER_FAIL: 創建失敗 -MANAGE_BUCKET_UPLOAD_URL_ERROR_MSQ: 請輸入有效的URL -MANAGE_BUCKET_UPLOAD_URL_NOT_TITLE: 提示 -MANAGE_BUCKET_UPLOAD_URL_NOT_MSG: 開始後台下載,成功後自動上傳 -MANAGE_BUCKET_BATCH_RENAME_ERROR_MSG: 請輸入匹配字串 -MANAGE_BUCKET_BATCH_RENAME_ERROR_MSG2: 沒有匹配到檔案 -MANAGE_BUCKET_BATCH_RENAME_ERROR_MSG3: 沒有需要重命名的檔案 -MANAGE_BUCKET_BATCH_RENAME_REPEATED_MSG_A: 檢測到有 -MANAGE_BUCKET_BATCH_RENAME_REPEATED_MSG_B: 個檔案重複,是否繼續 -MANAGE_BUCKET_BATCH_RENAME_REPEATED_MSG_C: 提示 -MANAGE_BUCKET_BATCH_RENAME_REPEATED_CONFIRM: 確定 -MANAGE_BUCKET_BATCH_RENAME_REPEATED_CANCEL: 取消 -MANAGE_BUCKET_BATCH_RENAME_RESULT_MSG_A: 重命名成功 -MANAGE_BUCKET_BATCH_RENAME_RESULT_MSG_B: 失敗 -MANAGE_BUCKET_BATCH_RENAME_CANCEL: 已取消 -MANAGE_BUCKET_BATCH_COPY_INFO_ERROR_MSG: 請先選擇檔案 -MANAGE_BUCKET_BATCH_COPY_INFO_MSG_A: 已複製 -MANAGE_BUCKET_BATCH_COPY_INFO_MSG_B: 個檔案資訊 -MANAGE_BUCKET_BATCH_COPY_URL_ERROR_MSG: 請先選擇檔案 -MANAGE_BUCKET_BATCH_COPY_URL_MSG_A: 已複製 -MANAGE_BUCKET_BATCH_COPY_URL_MSG_B: 個連結 -MANAGE_BUCKET_CANCEL_LOADING_TITLE: 是否停止獲取檔案列表? -MANAGE_BUCKET_CANCEL_LOADING_MSG: 提示 -MANAGE_BUCKET_CANCEL_LOADING_CONFIRM: 确定 -MANAGE_BUCKET_CANCEL_LOADING_CANCEL: 取消 -MANAGE_BUCKET_CANCEL_LOADING_SUCCESS: 文件列表获取已停止 -MANAGE_BUCKET_CANCEL_DOWNLOAD_LOADING_TITLE: 是否停止下载文件获取? -MANAGE_BUCKET_CANCEL_DOWNLOAD_LOADING_MSG: 提示 -MANAGE_BUCKET_CANCEL_DOWNLOAD_LOADING_CONFIRM: 确定 -MANAGE_BUCKET_CANCEL_DOWNLOAD_LOADING_CANCEL: 取消 -MANAGE_BUCKET_CANCEL_DOWNLOAD_LOADING_SUCCESS: 下载文件获取已停止 -MANAGE_BUCKET_GET_FILE_BS_NOT_TITLE: 提示 -MANAGE_BUCKET_GET_FILE_BS_NOT_MSG: 获取文件列表成功 -MANAGE_BUCKET_GET_FILE_BS_NOT_MSG2: 部分文件获取失败 -MANAGE_BUCKET_BATCH_DELETE_CONFIRM_TITLE_A: 将永久删除 -MANAGE_BUCKET_BATCH_DELETE_CONFIRM_TITLE_B: 个文件,是否继续? -MANAGE_BUCKET_BATCH_DELETE_CONFIRM_MSG: 提示 -MANAGE_BUCKET_BATCH_DELETE_CONFIRM_CONFIRM: 确定 -MANAGE_BUCKET_BATCH_DELETE_CONFIRM_CANCEL: 取消 -MANAGE_BUCKET_BATCH_DELETE_ERROR_MSG_TITLE: 提示 -MANAGE_BUCKET_BATCH_DELETE_ERROR_MSG_MSG: 删除失败 -MANAGE_BUCKET_BATCH_DELETE_ERROR_MSG_MSG2: 删除成功 -MANAGE_BUCKET_BATCH_DELETE_ERROR_MSG_MSG3: 失败 -MANAGE_BUCKET_BATCH_DELETE_CANCEL: 已取消删除 -MANAGE_BUCKET_DELETE_CONFIRM_TITLE: 将永久删除 -MANAGE_BUCKET_DELETE_CONFIRM_TITLE_FOLDER: 文件夹 -MANAGE_BUCKET_DELETE_CONFIRM_TITLE_FOLDER_A: 和该目录下的所有文件 -MANAGE_BUCKET_DELETE_CONFIRM_TITLE_FILE: 文件 -MANAGE_BUCKET_DELETE_CONFIRM_TITLE_C: 是否继续 -MANAGE_BUCKET_DELETE_CONFIRM_MSG: 提示 -MANAGE_BUCKET_DELETE_CONFIRM_CONFIRM: 确定 -MANAGE_BUCKET_DELETE_CONFIRM_CANCEL: 取消 -MANAGE_BUCKET_DELETE_ERROR_MSG_TITLE: 提示 -MANAGE_BUCKET_DELETE_ERROR_MSG_MSG: 删除文件夹可能需要一段时间,请耐心等待 -MANAGE_BUCKET_DELETE_SUCCESS: 刪除成功 -MANAGE_BUCKET_DELETE_FAIL: 刪除失敗 -MANAGE_BUCKET_DELETE_CANCEL: 已取消删除 -MANAGE_BUCKET_RENAME_INFO_MSG: 新文件名和原文件名相同,無需重命名 -MANAGE_BUCKET_RENAME_SUCCESS: 重命名成功 -MANAGE_BUCKET_RENAME_ERROR_MSG: 重命名失敗 -MANAGE_BUCKET_DOWNLOAD_COLUMN_FILENAME: 文件名 -MANAGE_BUCKET_DOWNLOAD_COLUMN_FINISHTIME: 完成時間 -MANAGE_BUCKET_DOWNLOAD_COLUMN_STATUS: 狀態 -MANAGE_BUCKET_DOWNLOAD_COLUMN_STATUS_SUCCESS: 成功 -MANAGE_BUCKET_DOWNLOAD_COLUMN_STATUS_FAIL: 失敗 -MANAGE_BUCKET_UPLOAD_COLUMN_FILENAME: 文件名 -MANAGE_BUCKET_UPLOAD_COLUMN_TARGETFILEPATH: 上傳路徑 -MANAGE_BUCKET_UPLOAD_COLUMN_FINISHTIME: 完成時間 -MANAGE_BUCKET_UPLOAD_COLUMN_STATUS: 狀態 -MANAGE_BUCKET_UPLOAD_COLUMN_STATUS_SUCCESS: 成功 -MANAGE_BUCKET_UPLOAD_COLUMN_STATUS_FAIL: 失敗 -MANAGE_BUCKET_DOWNLOADING_COLUMN_FILENAME: 文件名 -MANAGE_BUCKET_DOWNLOADING_COLUMN_PROGRESS: 進度 -MANAGE_BUCKET_UPLOADING_COLUMN_FILENAME: 文件名 -MANAGE_BUCKET_UPLOADING_COLUMN_PROGRESS: 進度 -MANAGE_BUCKET_UPLOADED_COLUMN_FILENAME: 文件名 -MANAGE_BUCKET_UPLOADED_COLUMN_FILESIZE: 大小 -MANAGE_BUCKET_UPLOADED_COLUMN_FILENUM: 文件數 -MANAGE_BUCKET_FILE_COLUMN_FILENAME: 文件名 -MANAGE_BUCKET_FILE_COLUMN_COPY_URL: 複製鏈接 -MANAGE_BUCKET_FILE_COLUMN_INFO: 文件信息 -MANAGE_BUCKET_FILE_COLUMN_FILESIZE: 大小 -MANAGE_BUCKET_FILE_COLUMN_TIME: 修改時間 - -MANAGE_NEW_BUCKET_TCYUN_NAME: 腾讯雲 -MANAGE_NEW_BUCKET_TCYUN_BUCKETNAME_DESC: Bucket名稱 -MANAGE_NEW_BUCKET_TCYUN_BUCKETNAME_PLACEHOLDER: 請輸入Bucket名稱 -MANAGE_NEW_BUCKET_TCYUN_BUCKETNAME_RULE_MSG_A: Bucket名稱不能為空 -MANAGE_NEW_BUCKET_TCYUN_BUCKETNAME_RULE_MSG_B: Bucket名稱長度不能超過23個字符 -MANAGE_NEW_BUCKET_TCYUN_BUCKETNAME_RULE_MSG_C: Bucket名稱只能包含小寫字母、數字和中橫線,且不能以中橫線開頭和結尾 -MANAGE_NEW_BUCKET_TCYUN_REGION: 區域 -MANAGE_NEW_BUCKET_TCYUN_ACL_DESC: 訪問權限 -MANAGE_NEW_BUCKET_TCYUN_ACL_PUBLIC_RW: 公共讀寫 -MANAGE_NEW_BUCKET_TCYUN_ACL_PUBLIC_R: 公共讀 -MANAGE_NEW_BUCKET_TCYUN_ACL_PRIVATE: 私有 -MANAGE_NEW_BUCKET_ALIYUN_NAME: 阿里雲 -MANAGE_NEW_BUCKET_ALIYUN_BUCKETNAME_DESC: Bucket名稱 -MANAGE_NEW_BUCKET_ALIYUN_BUCKETNAME_PLACEHOLDER: 請輸入Bucket名稱 -MANAGE_NEW_BUCKET_ALIYUN_BUCKETNAME_RULE_MSG_A: Bucket名稱不能為空 -MANAGE_NEW_BUCKET_ALIYUN_BUCKETNAME_RULE_MSG_B: Bucket名稱長度不能超過63個字符 -MANAGE_NEW_BUCKET_ALIYUN_BUCKETNAME_RULE_MSG_C: Bucket名稱只能包含小寫字母、數字和中橫線,且不能以中橫線開頭和結尾 -MANAGE_NEW_BUCKET_ALIYUN_REGION: 區域 -MANAGE_NEW_BUCKET_ALIYUN_ACL_DESC: 訪問權限 -MANAGE_NEW_BUCKET_ALIYUN_ACL_PUBLIC_RW: 公共讀寫 -MANAGE_NEW_BUCKET_ALIYUN_ACL_PUBLIC_R: 公共讀 -MANAGE_NEW_BUCKET_ALIYUN_ACL_PRIVATE: 私有 -MANAGE_NEW_BUCKET_QINIU_NAME: 七牛雲 -MANAGE_NEW_BUCKET_QINIU_BUCKETNAME_DESC: Bucket名稱 -MANAGE_NEW_BUCKET_QINIU_BUCKETNAME_PLACEHOLDER: 請輸入Bucket名稱 -MANAGE_NEW_BUCKET_QINIU_BUCKETNAME_RULE_MSG_A: Bucket名稱不能為空 -MANAGE_NEW_BUCKET_QINIU_BUCKETNAME_RULE_MSG_B: Bucket名稱長度不能超過63個字符 -MANAGE_NEW_BUCKET_QINIU_BUCKETNAME_RULE_MSG_C: Bucket名稱只能包含小寫字母、數字和中橫線,且不能以中橫線開頭和結尾 -MANAGE_NEW_BUCKET_QINIU_REGION: 區域 -MANAGE_NEW_BUCKET_QINIU_ACL_DESC: 公開訪問 -MANAGE_NEW_BUCKET_S3PLIST_NAME: S3兼容雲 -MANAGE_NEW_BUCKET_S3PLIST_BUCKETNAME_DESC: Bucket名稱 -MANAGE_NEW_BUCKET_S3PLIST_BUCKETNAME_PLACEHOLDER: 請輸入Bucket名稱 -MANAGE_NEW_BUCKET_S3PLIST_BUCKETNAME_RULE_MSG_A: Bucket名稱不能為空 -MANAGE_NEW_BUCKET_S3PLIST_REGION: 區域 -MANAGE_NEW_BUCKET_S3PLIST_ACL_DESC: 訪問權限 -MANAGE_NEW_BUCKET_S3PLIST_ACL_PUBLIC_RW: 公共讀寫 -MANAGE_NEW_BUCKET_S3PLIST_ACL_PUBLIC_R: 公共讀 -MANAGE_NEW_BUCKET_S3PLIST_ACL_PRIVATE: 私有 -MANAGE_NEW_BUCKET_S3PLIST_ACL_AUTHENTICATED_READ: 授權讀 -# ---renderer i18n end--- - -# plugins -PLUGIN_INSTALL_SUCCEED: 插件安裝成功 -PLUGIN_INSTALL_FAILED: 插件安裝失敗 -PLUGIN_UNINSTALL_SUCCEED: 插件卸載成功 -PLUGIN_UNINSTALL_FAILED: 插件卸載失敗 -PLUGIN_UPDATE_SUCCEED: 插件更新成功 -PLUGIN_UPDATE_FAILED: 插件更新失敗 -PLUGIN_IMPORT_SUCCEED: 插件導入成功 -PLUGIN_IMPORT_FAILED: 插件導入失敗 -ENABLE_PLUGIN: 啟用插件 -DISABLE_PLUGIN: 禁用插件 -UNINSTALL_PLUGIN: 卸載插件 -UPDATE_PLUGIN: 更新插件 - -# tips -TIPS_NOTICE: 注意 -TIPS_WARNING: 警告 -TIPS_ERROR: 發生錯誤 -TIPS_INSTALL_NODE_AND_RELOAD_PICGO: 請安裝Node.js並重新啟動PicList再繼續操作 -TIPS_PLUGIN_REMOVE_GALLERY_ITEM: 有插件正在試圖刪除一些相簿圖片,是否繼續? -TIPS_PLUGIN_OVERWRITE_GALLERY: 有插件正在試圖覆蓋相簿列表,是否繼續? -TIPS_UPLOAD_NOT_PICTURES: 剪貼簿最新的一條記錄不是圖片 -TIPS_PICGO_CONFIG_FILE_BROKEN_WITH_DEFAULT: PicList設定檔案已損壞,已經恢復為預設設定 -TIPS_PICGO_CONFIG_FILE_BROKEN_WITH_BACKUP: PicList 設定檔案已損壞,已經恢復為備份設定 -TIPS_PICGO_BACKUP_FILE_VERSION: '備份檔案版本: ${v}' -TIPS_CUSTOM_CONFIG_FILE_PATH_ERROR: 自訂設定檔案解析出錯,請檢查路徑內容是否正確 -TIPS_SHORTCUT_MODIFIED_SUCCEED: 快捷鍵已經修改成功 -TIPS_SHORTCUT_MODIFIED_CONFLICT: 快捷鍵衝突,請重新設定 -TIPS_CUSTOM_LINK_STYLE_MODIFIED_SUCCEED: 自訂連結格式已經修改成功 -TIPS_FIND_NEW_VERSION: 發現新版本${v},更新了很多功能,是否後台下載最新的版本? -UPDATE_DOWNLOADED: 更新已下載 -TIPS_UPDATE_DOWNLOADED: 更新已下載,将在下次啟動時安裝,是否立即重啟? -QUIT: 退出 +LANG_DISPLAY_LABEL: 繁體中文 +ABOUT: 關於 +OPEN_MAIN_WINDOW: 打開主視窗 +OPEN_MINI_WINDOW: 打開mini視窗 +HIDE_MINI_WINDOW: 隱藏mini視窗 +CHOOSE_DEFAULT_PICBED: 選擇預設圖床 +OPEN_UPDATE_HELPER: 開啟更新助手 +RELOAD_APP: 重啟程式 +UPLOAD_SUCCEED: 上傳成功 +UPLOAD_FAILED: 上傳失敗 +UPLOAD_PROGRESS: 上傳進度 +OPERATION_SUCCEED: 操作成功 +OPERATION_FAILED: 操作失敗 +UPLOADING: 正在上傳 +QUICK_UPLOAD: 快速上傳 +UPLOAD_BY_CLIPBOARD: 剪貼簿圖片上傳 +HIDE_WINDOW: 隱藏視窗 +SHOW_PICBED_QRCODE: 產生圖床配置 QRCODE +PICBED_QRCODE: 圖床配置 QRCODE +ENABLE: 啟用 +DISABLE: 禁用 +CONFIG_THING: 設定${c} +FIND_NEW_VERSION: 發現新版本 +NO_MORE_NOTICE: 以後不再提醒 +SHOW_DEVTOOLS: 開啟開發者工具 +FEEDBACK: 問題反饋 +CURRENT_PICBED: 當前圖床 +START_WATCH_CLIPBOARD: 開始監聽剪貼簿 +STOP_WATCH_CLIPBOARD: 停止監聽剪貼簿 +OPEN_TOOLBOX: 開啟修復工具箱 +TOOLBOX: 工具箱 +TOOLBOX_TITLE: 排查 PicList 執行時問題 +TOOLBOX_SUB_TITLE: 立即掃描以下項目,修復使用問題 +TOOLBOX_CHECK_CONFIG_FILE_BROKEN: 檢查配置文件是否損壞 +TOOLBOX_CHECK_GALLERY_FILE_BROKEN: 檢查相冊文件是否損壞 +TOOLBOX_CHECK_PROBLEM_WITH_CLIPBOARD_PIC_UPLOAD: 檢查剪貼板圖片上傳是否存在問題 +TOOLBOX_CHECK_PROBLEM_WITH_PROXY: 檢查代理設置是否正常 +TOOLBOX_FIX_DONE_NEED_RELOAD: 修復完成,需要重啓生效,是否重啓 +TOOLBOX_CANT_AUTO_FIX: 無法自動修復,請自行修復以下問題 +TOOLBOX_START_SCAN: 開始掃描 +TOOLBOX_RE_SCAN: 重新掃描 +TOOLBOX_START_FIX: 開始修復 +TOOLBOX_SUCCESS_TIPS: 恭喜你,沒有檢查出問題 +TOOLBOX_CHECK_CONFIG_FILE_PATH_TIPS: 配置文件路徑是:${path} +TOOLBOX_CHECK_CONFIG_FILE_BROKEN_TIPS: 配置文件已損壞 +TOOLBOX_CHECK_GALLERY_FILE_PATH_TIPS: 相冊文件路徑是:${path} +TOOLBOX_CHECK_GALLERY_FILE_BROKEN_TIPS: 相冊文件已損壞 +TOOLBOX_CHECK_PROXY_SUCCESS_TIPS: 代理設置正常 +TOOLBOX_CHECK_PROXY_NO_PROXY_TIPS: 無代理設置 +TOOLBOX_CHECK_PROXY_PROXY_IS_NOT_CORRECT: 代理設置不正確 +TOOLBOX_CHECK_PROXY_PROXY_IS_NOT_WORKING: 代理設置不可用 +TOOLBOX_CHECK_CLIPBOARD_FILE_PATH_TIPS: 剪貼板圖片臨時文件夾路徑是:${path} +TOOLBOX_CHECK_CLIPBOARD_FILE_PATH_NOT_EXIST_TIPS: 剪貼板圖片臨時文件夾不存在:${path} +TOOLBOX_CHECK_CLIPBOARD_FILE_PATH_ERROR_TIPS: 請自行創建文件夾:${path} +MANUAL_PAGE_OPEN_TIP: 請選擇打開方式 +MANUAL_PAGE_OPEN_TIP_TITLE: Tips +MANUAL_PAGE_OPEN_BY_BROWSER: 瀏覽器 +MANUAL_PAGE_OPEN_BY_BUILD_IN: 內置窗口 +MANUAL_PAGE_OPEN_SETTING_TIP: 選擇打開手冊方式 + +# ---renderer i18n begin--- + +CHOOSE_YOUR_DEFAULT_PICBED: 選擇 ${d} 作為你的預設圖床: +UPLOAD_AREA: 上傳 +UPLOAD_VIEW_HINT: 點擊打開圖床設定 +MANAGE_PAGE: 管理 +GALLERY: 相簿 +REFRESH: 刷新 +MANUAL: 手冊 +OPEN_MANUAL_LINK: 手冊 +OPEN_MANUAL_LINK_HINT: 即將打開PicList使用手冊網頁,是否繼續? +PICBEDS_SETTINGS: 圖床 +PICBEDS_MANAGE: 圖床管理 +PICLIST_SETTINGS: 設定 +PLUGIN_SETTINGS: 插件 +PICLIST_SPONSOR_TEXT: 如果你喜歡它,對你有幫助,不妨請我喝杯咖啡~ +CHOOSE_PICBED: 選擇圖床 +COPY_PICBED_CONFIG: 複製圖床設定 +COPY_PICBED_CONFIG_SUCCEED: 複製圖床設定成功 +INPUT: 輸入框 +CANCEL: 取消 +CONFIRM: 確定 +RESET_PICBED_CONFIG: 重置 +CHOOSE_SHOWED_PICBED: 請選擇顯示的圖床 +CHOOSE_PASTE_FORMAT: 請選擇貼上的格式 +SEARCH: 搜尋 +COPY: 複製 +DELETE: 刪除 +SELECT_ALL: 全選 +CHANGE_IMAGE_URL: 修改圖片URL +CHANGE_IMAGE_URL_SUCCEED: 修改圖片URL成功 +COPY_LINK_SUCCEED: 複製連結成功 +BATCH_COPY_LINK_SUCCEED: 批量複製連結成功 +FILE_RENAME: 檔案改名 +COPY_FILE_PATH: 複製檔案路徑 +OPEN_FILE_PATH: 打開檔案路徑 +GALLERY_SYNC_DELETE: 刪除雲端 +GALLERY_SYNC_DELETE_NOTICE_TITLE: 通知 +GALLERY_SYNC_DELETE_NOTICE_SUCCEED: 雲端刪除成功 +GALLERY_SYNC_DELETE_NOTICE_FAILED: 雲端刪除失敗 +GALLERY_CHANGE_URL: 修改 +GALLERY_CHANGE_URL_TITLE: 批量修改圖片URL +GALLERY_SEARCH_FILENAME: 搜尋文件名 +GALLERY_SEARCH_URL: 搜尋URL +GALLERY_MATCHED: ' 匹配到: ' + +UPLOAD_PAGE_COPY_UPLOAD_API: 複製上傳API +UPLOAD_PAGE_IMAGE_PROCESS_NAME: 圖片處理 +UPLOAD_PAGE_IMAGE_PROCESS_DIALOG_TITLE: 圖片處理設置 +UPLOAD_PAGE_IMAGE_PROCESS_ISADDWM: 是否添加水印 +UPLOAD_PAGE_IMAGE_PROCESS_WMTYPE: 水印類型 +UPLOAD_PAGE_IMAGE_PROCESS_WMTYPE_TEXT: 文字 +UPLOAD_PAGE_IMAGE_PROCESS_WMTYPE_IMAGE: 圖片 +UPLOAD_PAGE_IMAGE_PROCESS_ISFULLSCREEN_WM: 是否全屏水印 +UPLOAD_PAGE_IMAGE_PROCESS_WMDEGREE: 水印角度 +UPLOAD_PAGE_IMAGE_PROCESS_WMTEXT: 水印文字 +UPLOAD_PAGE_IMAGE_PROCESS_WMTEXT_FONT_PATH: 水印字體路徑(第一次需下載字體文件) +UPLOAD_PAGE_IMAGE_PROCESS_WMRATIO: 水印占原圖比例 +UPLOAD_PAGE_IMAGE_PROCESS_WMCOLOR: 水印顏色,請從取色器中選擇 +UPLOAD_PAGE_IMAGE_PROCESS_WMPATH: 水印圖片路徑(留空使用預設圖片) +UPLOAD_PAGE_IMAGE_PROCESS_WMPOSITION: 水印位置 +UPLOAD_PAGE_IMAGE_PROCESS_ISREMOVEEXIF: 是否移除EXIF信息 +UPLOAD_PAGE_IMAGE_PROCESS_QUALITY: 壓縮質量 +UPLOAD_PAGE_IMAGE_PROCESS_ISCONVERT: 是否轉換格式 +UPLOAD_PAGE_IMAGE_PROCESS_CONVERTFORMAT: 轉換目的格式 +UPLOAD_PAGE_IMAGE_PROCESS_CONVERTFORMAT_SPECIFIC: '指定格式, 请输入JSON格式配置,如{"jpg":"png"}' +UPLOAD_PAGE_IMAGE_PROCESS_ISFLIP: 是否進行垂直翻轉 +UPLOAD_PAGE_IMAGE_PROCESS_ISFLOP: 是否進行水平翻轉 +UPLOAD_PAGE_IMAGE_PROCESS_ISRESIZE: 是否按固定尺寸調整圖片 +UPLOAD_PAGE_IMAGE_PROCESS_RESIZEWIDTH: 調整尺寸寬度(設為0則按高度等比縮放) +UPLOAD_PAGE_IMAGE_PROCESS_RESIZEHEIGHT: 調整尺寸高度(設為0則按寬度等比縮放) +UPLOAD_PAGE_IMAGE_PROCESS_SKIPRESIZEOfSMALLIMG_HEIGHT: 當圖片高度小於設定高度時跳過縮放 +UPLOAD_PAGE_IMAGE_PROCESS_SKIPRESIZEOfSMALLIMG_WIDTH: 當圖片寬度小於設定寬度時跳過縮放 +UPLOAD_PAGE_IMAGE_PROCESS_ISRESIZEBYPERCENT: 是否按比例調整尺寸,優先級更高 +UPLOAD_PAGE_IMAGE_PROCESS_RESIZEPERCENT: 調整尺寸比例,輸入50表示50% +UPLOAD_PAGE_IMAGE_PROCESS_ISROTATE: 是否旋轉 +UPLOAD_PAGE_IMAGE_PROCESS_ROTATEDEGREE: 旋轉角度 +UPLOAD_PAGE_IMAGE_PROCESS_CONFIRM: 儲存 +UPLOAD_PAGE_IMAGE_PROCESS_CANCEL: 取消 +UPLOAD_PAGE_IMAGE_PROCESS_POSITION_TOP: 上 +UPLOAD_PAGE_IMAGE_PROCESS_POSITION_BOTTOM: 下 +UPLOAD_PAGE_IMAGE_PROCESS_POSITION_LEFT: 左 +UPLOAD_PAGE_IMAGE_PROCESS_POSITION_RIGHT: 右 +UPLOAD_PAGE_IMAGE_PROCESS_POSITION_TOP_LEFT: 左上 +UPLOAD_PAGE_IMAGE_PROCESS_POSITION_TOP_RIGHT: 右上 +UPLOAD_PAGE_IMAGE_PROCESS_POSITION_BOTTOM_LEFT: 左下 +UPLOAD_PAGE_IMAGE_PROCESS_POSITION_BOTTOM_RIGHT: 右下 +UPLOAD_PAGE_IMAGE_PROCESS_POSITION_CENTER: 中 +UPLOAD_SHORT_URL: 短連結 +UPLOAD_NORMAL_URL: 长連結 +# settings + +SETTINGS: 設定 +SETTINGS_OPEN_CONFIG_FILE: 打開設定檔案 +SETTINGS_MIGRATE_FROM_PICGO: 從PicGo導入設定 +SETTINGS_MIGRATE_FROM_PICGO_TITLE: 通知 +SETTINGS_MIGRATE_FROM_PICGO_CONTENT: 即將導入PicGo的設定文件和相冊, 這將會覆蓋當前的設定, 是否繼續? +SETTINGS_MIGRATE_FROM_PICGO_SUCCESS: 導入成功, 請重啟應用 +SETTINGS_MIGRATE_FROM_PICGO_FAILED: 導入失敗 +SETTINGS_START_MODE: 啟動模式 +SETTINGS_START_MODE_MINI: mini視窗 +SETTINGS_START_MODE_MAIN: 主視窗 +SETTINGS_START_MODE_QUIET: 靜默啟動 +SETTINGS_START_MODE_NO_TRAY: 隐藏托盘 +SETTINGS_CLICK_TO_OPEN: 點擊打開 +SETTINGS_SET_LOG_FILE: 設定記錄檔案 +SETTINGS_CLICK_TO_SET: 點擊設定 +SETTINGS_CLICK_TO_CHECK: 點擊檢查 +SETTINGS_SET_SHORTCUT: 設定快捷鍵 +SETTINGS_CUSTOM_LINK_FORMAT: 自訂連結格式 +SETTINGS_SET_PROXY_AND_MIRROR: 設定PROXY和鏡像地址 +SETTINGS_SET_SERVER: 設定Server +SETTINGS_CHECK_UPDATE: 檢查更新 +SETTINGS_OPEN_UPDATE_HELPER: 打開更新助手 +SETTINGS_OPEN: 開 +SETTINGS_CLOSE: 關 +SETTINGS_CLOSE_MINI_WINDOW_SYNC: 開主窗口同步關閉mini窗口 +SETTINGS_CLOSE_MAIN_WINDOW_SYNC: 關mini窗口同步關閉主窗口 +SETTINGS_ACCEPT_BETA_UPDATE: 接受Beta版本更新 +SETTINGS_LAUNCH_ON_BOOT: 開機時啟動 +SETTINGS_RENAME_BEFORE_UPLOAD: 手動重新命名 +SETTINGS_TIMESTAMP_RENAME: 以時間戳命名 +SETTINGS_ADVANCED_RENAME: 高級命名 +SETTINGS_ADVANCED_RENAME_ENABLE: 啟用高級命名 +SETTINGS_ADVANCED_RENAME_FORMAT: 高級命名格式 +SETTINGS_OPEN_UPLOAD_TIPS: 開啟上傳提示 +SETTINGS_OPEN_UPLOAD_RESULT_TIPS: 開啟上傳結果提示 +SETTINGS_MINI_WINDOW_ON_TOP: Mini視窗置頂 +SETTINGS_AUTO_COPY_URL_AFTER_UPLOAD: 上傳後自動複製URL +SETTINGS_TIPS_PLACEHOLDER_URL: 用佔位符 $url 來表示URL的位置 +SETTINGS_TIPS_PLACEHOLDER_FILENAME: 用佔位符 $fileName 來表示檔案名稱的位置 +SETTINGS_TIPS_PLACEHOLDER_EXTNAME: 用佔位符 $extName 來表示檔案格式的位置 +SETTINGS_TIPS_SUCH_AS: 如 +SETTINGS_UPLOAD_PROXY: 上傳PROXY +SETTINGS_PLUGIN_INSTALL_PROXY: 插件安裝PROXY +SETTINGS_PLUGIN_INSTALL_MIRROR: 插件安裝鏡像 +SETTINGS_CURRENT_VERSION: 當前版本 +SETTINGS_NEWEST_VERSION: 最新版本 +SETTINGS_GETING: 正在取得中 +SETTINGS_TIPS_HAS_NEW_VERSION: PicList更新啦,請點擊確定重启應用 +SETTINGS_LOG_FILE_PATH: 記錄檔案路徑 +SETTINGS_CONFIG_FILE_PATH: 設定檔案路徑 +SETTINGS_LOG_FILE: 記錄檔案 +SETTINGS_GUI_LOG_FILE: GUI記錄檔案 +SETTINGS_MANAGE_LOG_FILE: 管理記錄檔案 +SETTINGS_LOG_LEVEL: 記錄等级 +SETTINGS_LOG_FILE_SIZE: 記錄檔案大小 +SETTINGS_SET_PICGO_SERVER: 設定PicGo-Server +SETTINGS_TIPS_SERVER_NOTICE: 如果你不知道Server的作用,請閱讀文檔,或者不用修改設定。 +SETTINGS_ENABLE_SERVER: 是否開啟Server +SETTINGS_SET_SERVER_HOST: 設定監聽地址 +SETTINGS_SET_SERVER_PORT: 設定監聽端口 +SETTINGS_SET_SERVER_KEY: 設定鑒權密鑰 +SETTINGS_SET_WEB_SERVER: 設定Web服務 +SETTINGS_TIPS_WEB_SERVER_NOTICE: 如果你不知道Web服務的作用,請閱讀文檔,或者不用修改設定。 +SETTINGS_SET_ENABLE_WEB_SERVER: 是否開啟Web服務 +SETTINGS_SET_WEB_SERVER_HOST: 設定Web服務地 +SETTINGS_SET_WEB_SERVER_PORT: 設定Web服務端口 +SETTINGS_SET_WEB_SERVER_PATH: 設定Web服務路徑 +SETTINGS_TIP_PLACEHOLDER_WEB_HOST: 推薦預設地址:127.0.0.1 +SETTINGS_TIP_PLACEHOLDER_WEB_PORT: 推薦預設端口:37777 +SETTINGS_TIP_PLACEHOLDER_HOST: 推薦預設地址:127.0.0.1 +SETTINGS_TIP_PLACEHOLDER_PORT: 推薦預設端口:36677 +SETTINGS_TIP_PLACEHOLDER_KEY: 用於接口鑒權, 通過url參數添加'?key=xxx' +SETTINGS_SET_SERVER_AES_KEY: 設定AES加密密鑰 +SETTINGS_LOG_LEVEL_ALL: 全部-All +SETTINGS_LOG_LEVEL_SUCCESS: 成功-Success +SETTINGS_LOG_LEVEL_ERROR: 錯誤-Error +SETTINGS_LOG_LEVEL_INFO: 普通-Info +SETTINGS_LOG_LEVEL_WARN: 提醒-Warn +SETTINGS_LOG_LEVEL_NONE: 不記錄-None +SETTINGS_RESULT: 設定結果 +SETTINGS_DEFAULT_PICBED: 設定預設圖床 +SETTINGS_SET_DEFAULT_PICBED: 設為預設圖床 +SETTINGS_NOT_CONFIG_OPTIONS: 暫無設定選項 +SETTINGS_USE_BUILTIN_CLIPBOARD_UPLOAD: 使用內建剪貼簿上傳 +SETTINGS_CHOOSE_LANGUAGE: 選擇語言 +BUILTIN_CLIPBOARD_TIPS: 使用內建剪貼簿函數而不是調用腳本取得剪貼簿內的照片 +UPLOADER_CONFIG_NAME: 圖床配置名 +UPLOADER_CONFIG_PLACEHOLDER: 請輸入配置名稱 +SELECTED_SETTING_HINT: 已選中 +SETTINGS_MAIN_WINDOW_SIZE: 默認主視窗大小 +SETTINGS_MAIN_WINDOW_SIZE_WIDTH: 默認主視窗寬度 +SETTINGS_MAIN_WINDOW_WIDTH_HINT: '默認: 1200' +SETTINGS_MAIN_WINDOW_WIDTH_RULE: 窗口寬度必須大於100 +SETTINGS_MAIN_WINDOW_SIZE_HEIGHT: 默認主視窗高度 +SETTINGS_MAIN_WINDOW_HEIGHT_HINT: '默認: 800' +SETTINGS_MAIN_WINDOW_HEIGHT_RULE: 視窗高度必須大於100 +SETTINGS_RAW_PICGO_SIZE: 原PicGo大小 +SETTINGS_CUSTOM_MINI_ICON_PATH: 自訂Mini視窗圖示路徑 +SETTINGS_CUSTOM_MINI_ICON: 自訂Mini視窗圖示 +SETTINGS_COMPRESS_AND_WATERMARK: 設置圖片浮水印和壓縮-格式轉換等參數 +SETTINGS_SYNC_DELETE_CLOUD: 從相簿中刪除並同步從雲端刪除 +SETTINGS_ISHIDEDOCK: 是否隱藏dock圖示 +SETTINGS_ISHIDEDOCK_TIPS: 不支持同時隱藏dock和托盘 +SETTINGS_ENCODE_OUTPUT_URL: 輸出(複製) URL 時進行轉義 +SETTINGS_WATCH_CLIPBOARD: 軟體啟動時自動監聽剪貼簿上傳 +SETTINGS_SHORT_URL: 使用短網址 +SETTINGS_SHORT_URL_SERVER: 短網址服務 +SETTINGS_SHORT_URL_C1N_TOKEN: C1N Token +SETTINGS_SHORT_URL_YOURLS_DOMAIN: YOURLS域名 +SETTINGS_SHORT_URL_YOURLS_SIGNATURE: YOURLS signature +SETTINGS_SHORT_URL_CF_WORKER_HOST: Cloudflare Worker Host +SETTINGS_DELETE_LOCAL_FILE_AFTER_UPLOAD: 上傳後刪除本地檔案 +SETTINGS_SYNC_CONFIG: 設置同步配置 +SETTINGS_SYNC_CONFIG_TITLE: 同步設置 +SETTINGS_SYNC_CONFIG_NOTE: 同步的檔案为配置檔案 +SETTINGS_SYNC_CONFIG_SELECT_TYPE: 選擇同步方式 +SETTINGS_SYNC_CONFIG_SELECT_FILE: 選擇同步檔案 +SETTINGS_SYNC_CONFIG_SELECT_CONFIG: 僅配置檔案 +SETTINGS_SYNC_CONFIG_SELECT_GALLERY: 僅相簿檔案 +SETTINGS_SYNC_CONFIG_SELECT_BOTH: 配置檔案和相簿檔案 +SETTINGS_SYNC_CONFIG_GITEA_HOST: Gitea Host +SETTINGS_SYNC_CONFIG_GITHUB_USERNAME: 用戶名 +SETTINGS_SYNC_CONFIG_GITEA_USERNAME: 用戶名 +SETTINGS_SYNC_CONFIG_GITEE_USERNAME: 用戶名 +SETTINGS_SYNC_CONFIG_GITHUB_REPO: 儲存庫(私有) +SETTINGS_SYNC_CONFIG_GITEA_REPO: 儲存庫 +SETTINGS_SYNC_CONFIG_GITEE_REPO: 儲存庫路径 +SETTINGS_SYNC_CONFIG_GITHUB_BRANCH: GitHub 分支 +SETTINGS_SYNC_CONFIG_GITEA_BRANCH: Gitea 分支 +SETTINGS_SYNC_CONFIG_GITEE_BRANCH: Gitee 分支 +SETTINGS_SYNC_CONFIG_GITHUB_TOKEN: GitHub Token +SETTINGS_SYNC_CONFIG_GITEA_TOKEN: Gitea Token +SETTINGS_SYNC_CONFIG_GITEE_TOKEN: Gitee Token +SETTINGS_SYNC_CONFIG_PROXY: 代理 +SETTINGS_SYNC_CONFIG_INTERVAL: 間隔(分鐘) +SETTINGS_SYNC_CONFIG_GITHUB_USERNAME_PLACEHOLDER: 請輸入 GitHub 用戶名 +SETTINGS_SYNC_CONFIG_GITEA_USERNAME_PLACEHOLDER: 請輸入 Gitea 用戶名 +SETTINGS_SYNC_CONFIG_GITEE_USERNAME_PLACEHOLDER: 請輸入 Gitee 用戶名 +SETTINGS_SYNC_CONFIG_GITHUB_REPO_PLACEHOLDER: 請輸入 GitHub 儲存庫名稱 +SETTINGS_SYNC_CONFIG_GITEA_REPO_PLACEHOLDER: 請輸入 Gitea 儲存庫名稱 +SETTINGS_SYNC_CONFIG_GITEE_REPO_PLACEHOLDER: 請輸入 Gitee 儲存庫名稱 +SETTINGS_SYNC_CONFIG_GITHUB_BRANCH_PLACEHOLDER: 請輸入 GitHub 分支名稱 +SETTINGS_SYNC_CONFIG_GITEA_BRANCH_PLACEHOLDER: 請輸入 Gitea 分支名稱 +SETTINGS_SYNC_CONFIG_GITEE_BRANCH_PLACEHOLDER: 請輸入 Gitee 分支名稱 +SETTINGS_SYNC_CONFIG_GITHUB_TOKEN_PLACEHOLDER: 請輸入 GitHub Token +SETTINGS_SYNC_CONFIG_GITEA_TOKEN_PLACEHOLDER: 請輸入 Gitea Token +SETTINGS_SYNC_CONFIG_GITEE_TOKEN_PLACEHOLDER: 請輸入 Gitee Token +SETTINGS_SYNC_CONFIG_PROXY_PLACEHOLDER: 請輸入代理地址 +SETTINGS_UP_DOWN_DESC: 上傳和下載配置檔案 +SETTINGS_UP_DOWN_TITLE: 請在設置完同步配置後再使用 +SETTINGS_SYNC_UPLOAD: 上傳 +SETTINGS_SYNC_DOWNLOAD: 下載 +SETTINGS_SYNC_UPLOAD_ALL: 上傳全部 +SETTINGS_SYNC_DOWNLOAD_ALL: 下載全部 +SETTINGS_SYNC_UPLOAD_SUCCESS: 上傳成功 +SETTINGS_SYNC_UPLOAD_FAILED: 上傳失敗 +SETTINGS_SYNC_DOWNLOAD_SUCCESS: 下載成功 +SETTINGS_SYNC_DOWNLOAD_FAILED: 下載失敗 +SETTINGS_SYNC_COMMON_CONFIG: 通用配置 +SETTINGS_SYNC_MANAGE_CONFIG: 管理配置 +SETTINGS_AUTO_IMPORT: 管理頁面自動導入配置 +SETTINGS_AUTO_IMPORT_SELECT_PICBED: 選擇需要開啟自動導入的圖床 +SETTINGS_TAB_SYSTEM: 系統設置 +SETTINGS_TAB_SYNC_CONFIG: 同步與配置 +SETTINGS_TAB_UPLOAD: 上傳設置 +SETTINGS_TAB_ADVANCED: 高級設置 +SETTINGS_TAB_UPDATE: 更新 +# shortcut-page + +SHORTCUT_NAME: 快捷鍵名稱 +SHORTCUT_BIND: 快捷鍵綁定 +SHORTCUT_STATUS: 狀態 +SHORTCUT_ENABLED: 已啟用 +SHORTCUT_DISABLED: 已禁用 +SHORTCUT_SOURCE: 來源 +SHORTCUT_HANDLE: 操作 +SHORTCUT_ENABLE: 啟用 +SHORTCUT_DISABLE: 禁用 +SHORTCUT_EDIT: 編輯 +SHORTCUT_CHANGE_UPLOAD: 修改上傳快捷鍵 + +# tray-page + +WAIT_TO_UPLOAD: 等待上傳 +ALREADY_UPLOAD: 已上傳 + +# upload-page + +PICTURE_UPLOAD: 圖片上傳 +DRAG_FILE_TO_HERE: 將檔案拖曳到此處,或 +CLICK_TO_UPLOAD: 點擊上傳 +LINK_FORMAT: 連結格式 +CUSTOM: 自訂 +CLIPBOARD_PICTURE: 剪貼簿圖片 +TIPS_DRAG_VALID_PICTURE_OR_URL: 請拖入合法的圖片檔案或者圖片URL地址 +TIPS_INPUT_URL: 請輸入URL +TIPS_HTTP_PREFIX: http://或者https://開頭 +TIPS_INPUT_VALID_URL: 請輸入合法的URL + +# plugins + +PLUGIN_SEARCH_PLACEHOLDER: 搜尋npm上的PicGo插件,或者點擊上方按鈕查看優秀插件列表 +PLUGIN_INSTALL: 安裝 +PLUGIN_INSTALLING: 安裝中 +PLUGIN_INSTALLED: 已安裝 +PLUGIN_DOING_SOMETHING: 進行中 +PLUGIN_LIST: 插件列表 +PLUGIN_IMPORT_LOCAL: 導入本地插件 +PLUGIN_UPDATE_ALL: 更新全部插件 + +# tips + +TIPS_REMOVE_LINK: 此操作將在相簿中移除該圖片,是否繼續? +TIPS_WILL_REMOVE_CHOOSED_IMAGES: 將在相簿中移除剛才選中的 ${m} 張圖片,是否繼續? +TIPS_MUST_CONTAINS_URL: 必須含有$url 或 $fileName 或 $extName +TIPS_NETWORK_ERROR: 網路錯誤,暫時無法取得 +TIPS_NEED_RELOAD: 需要重新啟動生效 +TIPS_PLEASE_CHOOSE_LOG_LEVEL: 請選擇記錄等級 +TIPS_SET_SUCCEED: 設定成功 +TIPS_RESET_SUCCEED: 重置成功 +TIPS_PLUGIN_NOT_GUI_IMPLEMENT: 該插件未對GUI進行優化,是否繼續安裝? +TIPS_CLICK_NOTIFICATION_TO_RELOAD: 請點擊此通知重新啟動程式以生效 +TIPS_GET_PLUGIN_LIST_FAILED: 取得插件列表失敗 + +# manage page + +# manageSetting + +MANAGE_SETTING_TITLE: 管理設定 +MANAGE_SETTING_ISAUTOREFRESH_TITLE: 每次進入新目錄時,是否自動重新整理檔案列表 +MANAGE_SETTING_ISAUTOREFRESH_TIPS: 僅對不分頁模式有效,預設會在載入後自動快取至資料庫以提升下次載入速度 +MANAGE_SETTING_CLEAR_CACHE_TITLE: '清空檔案列表快取資料庫 已佔用:' +MANAGE_SETTING_CLEAR_CACHE_FREE_TITLE: '剩餘可用:' +MANAGE_SETTING_CLEAR_CACHE_TIPS: 清空後下次進入新目錄時將會重新載入檔案列表 +MANAGE_SETTING_CLEAR_CACHE_PROMPT: 確定要清空檔案列表快取資料庫嗎? +MANAGE_SETTING_CLEAR_CACHE_BUTTON: 清空 +MANAGE_SETTING_ISSHOWTHUMBNAIL_TITLE: 顯示圖片的原始圖像而非預設的檔案格式圖示(需要存儲桶公開訪問權限) +MANAGE_SETTING_ISSHOWLIST_TITLE: 檔案列表預設顯示方式 +MANAGE_SETTING_ISSHOWLIST_ON: 列表 +MANAGE_SETTING_ISSHOWLIST_OFF: 卡片 +MANAGE_SETTING_ISFORCECUSTOMURLHTTPS_TITLE: 自定義域名啟用強制 HTTPS +MANAGE_SETTING_ISFORCECUSTOMURLHTTPS_TIPS: 開啟後,複製鏈結等操作將會自動為自定義域名添加 HTTPS 前綴 +MANAGE_SETTING_ISUPLOADKEEPDIRSTRUCTURE_TITLE: 保留上傳時的目錄結構 +MANAGE_SETTING_ISUPLOADKEEPDIRSTRUCTURE_TIPS: 停用後,所有文件將會展開到指定目錄下 +MANAGE_SETTING_ISDOWNLOADFILEKEEPDIRSTRUCTURE_TITLE_A: 下載 +MANAGE_SETTING_ISDOWNLOADFILEKEEPDIRSTRUCTURE_TITLE_B: 文件 +MANAGE_SETTING_ISDOWNLOADFILEKEEPDIRSTRUCTURE_TITLE_C: 時保留目錄結構 +MANAGE_SETTING_ISDOWNLOADFOLDERKEEPDIRSTRUCTURE_TITLE_D: 目錄 +MANAGE_SETTING_ISDOWNLOADFILEKEEPDIRSTRUCTURE_TIPS: 啟用後,下載時會保留原始目錄結構 +MANAGE_SETTING_MAX_DOWNLOAD_FILE_SIZE_TITLE: 最大同時下載檔案數量(1-9999) +MANAGE_SETTING_MAX_DOWNLOAD_FILE_SIZE_TIPS: 由於後端實現方式不同,此設定在腾讯云上不生效 +MANAGE_SETTING_MAX_DOWNLOAD_FILE_SIZE_INPUT_TIPS: 請輸入最大同時下載檔案數量 +MANAGE_SETTING_ISIGNORECASE_TITLE: 搜尋檔案時,是否忽略大小寫 +MANAGE_SETTING_ISIGNORECASE_TIPS: 啟用後,搜尋時將會忽略大小寫 +MANAGE_SETTING_TIMESTAMPRENAME_TITLE: 上傳檔案時間戳重新命名--(最高優先級) +MANAGE_SETTING_TIMESTAMPRENAME_TIPS: 啟用後,上傳檔案時將會使用時間戳重新命名 +MANAGE_SETTING_RANDOMSTRINGRENAME_TITLE: 上傳檔案隨機字符串重新命名--(中優先級) +MANAGE_SETTING_RANDOMSTRINGRENAME_TIPS: 隨機字符串長度為20 +MANAGE_SETTING_CUSTOMRENAME_TITLE: 上傳檔案自定義重新命名--(最低優先級) +MANAGE_SETTING_CUSTOMRENAME_TIPS: 啟用後,上傳檔案時將會使用自定義重新命名 +MANAGE_SETTING_CUSTOM_PATTERN_TITLE: 自訂重新命名格式,占位符請參考下表,可自由組合 +MANAGE_SETTING_CUSTOM_PATTERN_TIPS: 請輸入自訂重新命名格式 +MANAGE_SETTING_CUSTOM_PATTERN_TABLE_TITLE: 占位符 +MANAGE_SETTING_CUSTOM_PATTERN_TABLE_TIPS: 說明 +MANAGE_SETTING_PRESIGNED_URL_EXPIRE_TITLE: 預設下載鏈結有效期(秒) +MANAGE_SETTING_PRESIGNED_URL_EXPIRE_TIPS: 請輸入下載鏈結有效期 +MANAGE_SETTING_CHOOSE_COPY_FORMAT_TITLE: 選擇預設複製的連結格式 +MANAGE_SETTING_CHOOSE_COPY_FORMAT_MARKDOWN: Markdown +MANAGE_SETTING_CHOOSE_COPY_FORMAT_MARKDOWN_WITH_LINK: Markdown(帶連結) +MANAGE_SETTING_CHOOSE_COPY_FORMAT_RAWURL: 原始鏈結 +MANAGE_SETTING_CHOOSE_COPY_FORMAT_HTML: HTML格式 +MANAGE_SETTING_CHOOSE_COPY_FORMAT_BBCODE: BBCode格式 +MANAGE_SETTING_CHOOSE_COPY_FORMAT_CUSTOM: 自定義格式 +MANAGE_SETTING_CUSTOM_COPY_FORMAT_TITLE: 自定義鏈結格式($url為原始鏈結,$fileName為檔案名稱) +MANAGE_SETTING_CUSTOM_COPY_FORMAT_TIPS: 請輸入自定義鏈結格式 +MANAGE_SETTING_CHOOSE_DOWNLOAD_FOLDER_TITLE: 選擇下載目錄 +MANAGE_SETTING_CHOOSE_DOWNLOAD_FOLDER_TIPS: 系統預設下載目錄 +MANAGE_SETTING_CHOOSE_DOWNLOAD_FOLDER_BUTTON: 選擇目錄 +MANAGE_SETTING_COPY_MESSAGE: 已複製 +MANAGE_SETTING_CLEAR_CACHE_SUCCESS: 清除成功 +MANAGE_SETTING_CLEAR_CACHE_FAILED: 清除失敗 +MANAGE_SETTING_ISENCODEURL_TITLE: 複製鏈結時編碼 +MANAGE_SETTING_ISENCODEURL_TIPS: 啟用後,複製鏈結時將會編碼 +# Empty +MANAGE_NO_DATA: 暫無數據 + +# Main Page +MANAGE_MAIN_PAGE_NEW_BUCKET: 新建存儲桶 +MANAGE_MAIN_PAGE_BACK_TO_HOME: 返回首頁 +MANAGE_MAIN_PAGE_SWITCH_PICBED: 切換圖床 +MANAGE_MAIN_PAGE_SETTING: 設定 +MANAGE_MAIN_PAGE_SUBMIT: 提交 +MANAGE_MAIN_PAGE_TIPS: 提示 +MANAGE_MAIN_PAGE_TIPS_SUCCESS: 創建成功 +MANAGE_MAIN_PAGE_TIPS_FAILED: 創建失敗 +MANAGE_MAIN_PAGE_BUCKET: 存儲桶 +MANAGE_MAIN_PAGE_GALLERY: 圖庫 +MANAGE_MAIN_PAGE_REPOSITORY: 倉庫 + +# manage constant +MANAGE_CONSTANT_BASE_RULE: 請輸入 +MANAGE_CONSTANT_ITEMS_PAGE_RULE_MESSAGE_A: 請輸入每頁顯示數量 +MANAGE_CONSTANT_ITEMS_PAGE_RULE_MESSAGE_B: 每頁顯示數量必須為數字 +MANAGE_CONSTANT_ITEMS_PAGE_RULE_MESSAGE_C: 每頁顯示數量必須在20-1000之間 +MANAGE_CONSTANT_ALIAS_RULE_MESSAGE_A: 請輸入別名,該配置的唯一標識 +MANAGE_CONSTANT_ALIAS_RULE_MESSAGE_B: 別名只能包含中文、英文、數字、下劃線和中劃線 +MANAGE_CONSTANT_ALIAS_TOOLTIP: 別名只能包含中文、英文、數字、下劃線和中劃線 +MANAGE_CONSTANT_ITEMS_PAGE_TOOLTIP: 每頁顯示數量必須在20-1000之間 +MANAGE_CONSTANT_PAGING_TOOLTIP: 關閉分頁時,目錄列表將使用數據庫緩存以優化性能 +MANAGE_CONSTANT_BUCKET_NAME_TOOLTIP: 英文逗號分隔,如:bucket1,bucket2,bucket3,和起始目錄順序一一對應 +MANAGE_CONSTANT_BASE_DIR_TOOLTIP: '英文逗號分隔,如:/dir1,/dir2,/dir3, 和存儲桶順序一一對應' +MANAGE_CONSTANT_IS_AUTO_CUSTOM_URL_TOOLTIP: 開啟時,將自動獲取存儲桶綁定的域名,關閉時可手動填寫 + +MANAGE_CONSTANT_SMMS_ALIAS_DESC: 配置別名-必需 +MANAGE_CONSTANT_SMMS_ALIAS_PLACEHOLDER: 該配置的唯一標識 +MANAGE_CONSTANT_SMMS_TOKEN_DESC: Token-必需 +MANAGE_CONSTANT_SMMS_TOKEN_PLACEHOLDER: 請填寫Token +MANAGE_CONSTANT_SMMS_PAGING_DESC: 是否開啟分頁 +MANAGE_CONSTANT_SMMS_EXPLAIN: '大陸地區請訪問備用域名https://smms.app,請勿大批量上傳圖片,否則API接口會被限制' +MANAGE_CONSTANT_SMMS_REFER_TEXT: '配置教程請參考:' + +MANAGE_CONSTANT_QINIU_NAME: 七牛雲 +MANAGE_CONSTANT_QINIU_ALIAS_DESC: 配置別名-必需 +MANAGE_CONSTANT_QINIU_ALIAS_PLACEHOLDER: 該配置的唯一標識 +MANAGE_CONSTANT_QINIU_ACCESS_KEY_DESC: accessKey-必需 +MANAGE_CONSTANT_QINIU_ACCESS_KEY_PLACEHOLDER: 請填寫 accessKey +MANAGE_CONSTANT_QINIU_SECRET_KEY_DESC: secretKey-必需 +MANAGE_CONSTANT_QINIU_SECRET_KEY_PLACEHOLDER: 請填寫 secretKey +MANAGE_CONSTANT_QINIU_BUCKET_DESC: 空間名-可選 +MANAGE_CONSTANT_QINIU_BUCKET_PLACEHOLDER: 英文逗號分隔,例如:bucket1,bucket2 +MANAGE_CONSTANT_QINIU_BASE_DIR_DESC: 起始目錄-可選 +MANAGE_CONSTANT_QINIU_BASE_DIR_PLACEHOLDER: 英文逗號分隔,例如:/dir1,/dir2 +MANAGE_CONSTANT_QINIU_IS_AUTO_CUSTOM_URL_DESC: 是否自動獲取綁定域名 +MANAGE_CONSTANT_QINIU_PAGING_DESC: 是否開啟分頁 +MANAGE_CONSTANT_QINIU_ITEMS_PAGE_DESC: 每頁顯示數量 +MANAGE_CONSTANT_QINIU_EXPLAIN: 空間名和起始目錄配置時可通過英文逗號分隔設置,順序必須一致,逗號間留空或缺失項使用默認值 +MANAGE_CONSTANT_QINIU_REFER_TEXT: '配置教程請參考: ' + +MANAGE_CONSTANT_GITHUB_ALIAS_DESC: 配置別名-必需 +MANAGE_CONSTANT_GITHUB_ALIAS_PLACEHOLDER: 該配置的唯一標識 +MANAGE_CONSTANT_GITHUB_TOKEN_DESC: Token-必需 +MANAGE_CONSTANT_GITHUB_TOKEN_PLACEHOLDER: 請填寫Token +MANAGE_CONSTANT_GITHUB_TOKEN_TIPS: 請提供具有完整repo權限的token,否則部分功能可能無法使用 +MANAGE_CONSTANT_GITHUB_USER_DESC: 用戶名-必需 +MANAGE_CONSTANT_GITHUB_USER_PLACEHOLDER: 請填寫用戶名 +MANAGE_CONSTANT_GITHUB_USER_RULE_MESSAGE: 用戶名 +MANAGE_CONSTANT_GITHUB_PROXY_DESC: 代理地址-可選 +MANAGE_CONSTANT_GITHUB_PROXY_PLACEHOLDER: '例如:http://127.0.0.1:1080' +MANAGE_CONSTANT_GITHUB_PROXY_TIPS: 如果訪問速度較慢,可以嘗試配置代理 +MANAGE_CONSTANT_GITHUB_PAGING_DESC: 是否開啟分頁 +MANAGE_CONSTANT_GITHUB_CUSTOM_URL_DESC: CDN加速域名-可選 +MANAGE_CONSTANT_GITHUB_CUSTOM_URL_PLACEHOLDER: '支持使用{username}、{repo}、{branch}和{path}作為替換占位符,用於適配不同倉庫和分支' +MANAGE_CONSTANT_GITHUB_CUSTOM_URL_TIPS: '例如: https://cdn.staticaly.com/gh/{username}/{repo}@{branch}/{path}' +MANAGE_CONSTANT_GITHUB_CUSTOM_URL_RULE_MESSAGE_A: '加速域名請以http://或https://開頭' +MANAGE_CONSTANT_GITHUB_CUSTOM_URL_RULE_MESSAGE_B: 加速域名中的大括號必須成對出現 +MANAGE_CONSTANT_GITHUB_EXPLAIN: API調用有每小時上限,此外不支持上傳超過100M的文件 +MANAGE_CONSTANT_GITHUB_REFER_TEXT: '配置教程請參考:' + +MANAGE_CONSTANT_ALIYUN_NAME: 阿里雲 +MANAGE_CONSTANT_ALIYUN_ALIAS_DESC: 配置別名-必需 +MANAGE_CONSTANT_ALIYUN_ALIAS_PLACEHOLDER: 該配置的唯一標識 +MANAGE_CONSTANT_ALIYUN_ACCESS_KEY_ID_DESC: accessKeyId-必需 +MANAGE_CONSTANT_ALIYUN_ACCESS_KEY_ID_PLACEHOLDER: 請填寫accessKeyId +MANAGE_CONSTANT_ALIYUN_ACCESS_KEY_SECRET_DESC: accessKeySecret-必需 +MANAGE_CONSTANT_ALIYUN_ACCESS_KEY_SECRET_PLACEHOLDER: 請填寫accessKeySecret +MANAGE_CONSTANT_ALIYUN_BUCKET_DESC: 儲存桶名-可選 +MANAGE_CONSTANT_ALIYUN_BUCKET_PLACEHOLDER: 英文逗號分隔,例如:bucket1,bucket2 +MANAGE_CONSTANT_ALIYUN_BASE_DIR_DESC: 起始目錄-可選 +MANAGE_CONSTANT_ALIYUN_BASE_DIR_PLACEHOLDER: 英文逗號分隔,例如:/dir1,/dir2 +MANAGE_CONSTANT_ALIYUN_IS_AUTO_CUSTOM_URL_DESC: 是否自動獲取綁定域名 +MANAGE_CONSTANT_ALIYUN_PAGING_DESC: 是否開啟分頁 +MANAGE_CONSTANT_ALIYUN_ITEMS_PAGE_DESC: 每頁顯示數量 +MANAGE_CONSTANT_ALIYUN_EXPLAIN: 儲存桶名和起始目錄配置時可通過英文逗號分隔不同儲存桶的設置,順序必須一致,逗號間留空或缺失項使用默認值 +MANAGE_CONSTANT_ALIYUN_REFER_TEXT: '配置教程請參考: ' + +MANAGE_CONSTANT_TENCENT_NAME: 腾讯雲 +MANAGE_CONSTANT_TENCENT_ALIAS_DESC: 配置别名-必需 +MANAGE_CONSTANT_TENCENT_ALIAS_PLACEHOLDER: 該配置的唯一標識 +MANAGE_CONSTANT_TENCENT_SECRET_ID_DESC: secretId-必需 +MANAGE_CONSTANT_TENCENT_SECRET_ID_PLACEHOLDER: 請填寫 secretId +MANAGE_CONSTANT_TENCENT_SECRET_KEY_DESC: secretKey-必需 +MANAGE_CONSTANT_TENCENT_SECRET_KEY_PLACEHOLDER: 請填寫 secretKey +MANAGE_CONSTANT_TENCENT_APPID_DESC: appId-必需 +MANAGE_CONSTANT_TENCENT_APPID_PLACEHOLDER: 請填寫 appId +MANAGE_CONSTANT_TENCENT_APPID_TOOLTIP: '例如:1250000000' +MANAGE_CONSTANT_TENCENT_BUCKET_DESC: 存儲桶名-可選(注意包含AppId) +MANAGE_CONSTANT_TENCENT_BUCKET_PLACEHOLDER: 英文逗號分隔,例如:bucket1-1250000000,bucket2-1250000000 +MANAGE_CONSTANT_TENCENT_BASE_DIR_DESC: 起始目錄-可選 +MANAGE_CONSTANT_TENCENT_BASE_DIR_PLACEHOLDER: 英文逗號分隔,例如:/dir1,/dir2 +MANAGE_CONSTANT_TENCENT_IS_AUTO_CUSTOM_URL_DESC: 是否自動獲取綁定域名 +MANAGE_CONSTANT_TENCENT_PAGING_DESC: 是否開啟分頁 +MANAGE_CONSTANT_TENCENT_ITEMS_PAGE_DESC: 每頁顯示數量 +MANAGE_CONSTANT_TENCENT_EXPLAIN: 存儲桶名和起始目錄配置時可通過英文逗號分隔不同存儲桶的設置,順序必須一致,逗號間留空或缺失項使用默認值 +MANAGE_CONSTANT_TENCENT_REFER_TEXT: '配置教程請參考: ' + +MANAGE_CONSTANT_UPYUN_NAME: 又拍雲 +MANAGE_CONSTANT_UPYUN_ALIAS_DESC: 配置別名-必需 +MANAGE_CONSTANT_UPYUN_ALIAS_PLACEHOLDER: 該配置的唯一標識 +MANAGE_CONSTANT_UPYUN_BUCKET_DESC: 服務名-必需 +MANAGE_CONSTANT_UPYUN_BUCKET_PLACEHOLDER: 對應其它對象存儲的存儲桶名 +MANAGE_CONSTANT_UPYUN_OPERATOR_NAME_DESC: 操作員名-必需 +MANAGE_CONSTANT_UPYUN_OPERATOR_NAME_PLACEHOLDER: 推薦使用具有讀取、寫入和刪除完整權限的操作員 +MANAGE_CONSTANT_UPYUN_OPERATOR_NAME_RULE: 操作員 +MANAGE_CONSTANT_UPYUN_OPERATOR_PWD_DESC: 操作員密碼-必需 +MANAGE_CONSTANT_UPYUN_OPERATOR_PWD_PLACEHOLDER: 請填寫密碼 +MANAGE_CONSTANT_UPYUN_OPERATOR_PWD_RULE: 操作員密碼 +MANAGE_CONSTANT_UPYUN_BASE_DIR_DESC: 起始目錄-可選 +MANAGE_CONSTANT_UPYUN_BASE_DIR_PLACEHOLDER: 讀取文件時的初始目錄 +MANAGE_CONSTANT_UPYUN_IS_AUTO_CUSTOM_URL_DESC: 加速域名-必需 +MANAGE_CONSTANT_UPYUN_IS_AUTO_CUSTOM_URL_PLACEHOLDER: '請以http://或https://開頭' +MANAGE_CONSTANT_UPYUN_IS_AUTO_CUSTOM_URL_RULE_MESSAGE_A: 加速域名不能為空 +MANAGE_CONSTANT_UPYUN_IS_AUTO_CUSTOM_URL_RULE_MESSAGE_B: '自定義域名請以http://或https://開頭' +MANAGE_CONSTANT_UPYUN_ANTI_LEECH_TOKEN_DESC: 防盗链密钥-可選 +MANAGE_CONSTANT_UPYUN_ANTI_LEECH_TOKEN_PLACEHOLDER: 請填寫防盗链密钥 +MANAGE_CONSTANT_UPYUN_ANTI_LEECH_TOKEN_TOOLTIP: 如果不填寫,則不啟用防盗链 +MANAGE_CONSTANT_UPYUN_EXPIRE_TIME_DESC: 防盗链有效期(秒)-可選 +MANAGE_CONSTANT_UPYUN_PAGING: 是否開啟分頁 +MANAGE_CONSTANT_UPYUN_ITEMS_PAGE: 每頁顯示數量 +MANAGE_CONSTANT_UPYUN_EXPLAIN: 又拍雲圖床必須填寫加速域名,否則無法正常使用 +MANAGE_CONSTANT_UPYUN_REFER_TEXT: '配置教程請參考: ' + +MANAGE_CONSTANT_IMGUR_NAME: Imgur +MANAGE_CONSTANT_IMGUR_ALIAS_DESC: 配置別名-必需 +MANAGE_CONSTANT_IMGUR_ALIAS_PLACEHOLDER: 該配置的唯一標識 +MANAGE_CONSTANT_IMGUR_USERNAME_DESC: Imgur用戶名-必需 +MANAGE_CONSTANT_IMGUR_USERNAME_PLACEHOLDER: 請填寫Imgur用戶名 +MANAGE_CONSTANT_IMGUR_ACCESS_TOKEN_DESC: Access Token-必需 +MANAGE_CONSTANT_IMGUR_ACCESS_TOKEN_PLACEHOLDER: 請填寫Access Token +MANAGE_CONSTANT_IMGUR_ACCESS_TOKEN_TOOLTIP: 不是client ID,請參考配置教程 +MANAGE_CONSTANT_IMGUR_PROXY_DESC: 代理-可選 +MANAGE_CONSTANT_IMGUR_PROXY_PLACEHOLDER: 例如:http://127.0.0.1:1080 +MANAGE_CONSTANT_IMGUR_PROXY_TOOLTIP: 大陸地區請使用代理,否則無法正常使用 +MANAGE_CONSTANT_IMGUR_EXPLAIN: 大陸地區請使用代理,API調用存在限制,請注意使用頻率 +MANAGE_CONSTANT_IMGUR_REFER_TEXT: '配置教程請參考:' + +MANAGE_CONSTANT_S3_NAME: S3兼容雲 +MANAGE_CONSTANT_S3_ALIAS_DESC: 配置別名-必需 +MANAGE_CONSTANT_S3_ALIAS_PLACEHOLDER: 該配置的唯一標識 +MANAGE_CONSTANT_S3_ACCESS_KEY_ID_DESC: accessKeyId-必需 +MANAGE_CONSTANT_S3_ACCESS_KEY_ID_PLACEHOLDER: 請填寫accessKeyId +MANAGE_CONSTANT_S3_SECRET_ACCESS_KEY_DESC: secretAccessKey-必需 +MANAGE_CONSTANT_S3_SECRET_ACCESS_KEY_PLACEHOLDER: 請填寫secretAccessKey +MANAGE_CONSTANT_S3_ENDPOINT_DESC: endpoint-可選 +MANAGE_CONSTANT_S3_ENDPOINT_PLACEHOLDER: '例如:s3.us-east-1.amazonaws.com' +MANAGE_CONSTANT_S3_ENDPOINT_TOOLTIP: 如果不填寫,默認訪問 AWS S3,請提供根API endpoint +MANAGE_CONSTANT_S3_SSLENABLED_DESC: 使用HTTPS連接 +MANAGE_CONSTANT_S3_SSLENABLED_TOOLTIP: 如果您的平臺不支持,請關閉該選項 +MANAGE_CONSTANT_S3_FORCE_PATH_STYLE_DESC: 啟用 S3 Path style +MANAGE_CONSTANT_S3_FORCE_PATH_STYLE_TOOLTIP: 例如使用 minio 時需要啟用 +MANAGE_CONSTANT_S3_PROXY_DESC: 代理-可選 +MANAGE_CONSTANT_S3_PROXY_PLACEHOLDER: '例如:http://127.0.0.1:1080' +MANAGE_CONSTANT_S3_PROXY_TOOLTIP: 如果部分平臺大陸地區無法訪問,請使用代理 +MANAGE_CONSTANT_S3_ACL_FOR_UPLOAD_DESC: 上傳文件的權限 +MANAGE_CONSTANT_S3_ACL_FOR_UPLOAD_OPTIONS_PRIVATE: 私有 +MANAGE_CONSTANT_S3_ACL_FOR_UPLOAD_OPTIONS_PUBLIC_READ: 公共讀 +MANAGE_CONSTANT_S3_ACL_FOR_UPLOAD_OPTIONS_PUBLIC_READ_WRITE: 公共讀寫 +MANAGE_CONSTANT_S3_ACL_FOR_UPLOAD_OPTIONS_AUTHENTICATED_READ: 授權讀 +MANAGE_CONSTANT_S3_ACL_FOR_UPLOAD_OPTIONS_BUCKET_OWNER_READ: 桶所有者讀 +MANAGE_CONSTANT_S3_ACL_FOR_UPLOAD_OPTIONS_BUCKET_OWNER_FULL_CONTROL: 桶所有者完全控制 +MANAGE_CONSTANT_S3_ACL_FOR_UPLOAD_OPTIONS_AWS_EXEC_READ: AWS執行讀 +MANAGE_CONSTANT_S3_ACL_FOR_UPLOAD_TOOLTIP: '上傳文件的權限,可選值:private、public-read、public-read-write、authenticated-read、bucket-owner-read、bucket-owner-full-control、aws-exec-read' +MANAGE_CONSTANT_S3_BUCKET_DESC: 存儲桶名-可選 +MANAGE_CONSTANT_S3_BUCKET_PLACEHOLDER: 英文逗號分隔,例如:bucket1,bucket2 +MANAGE_CONSTANT_S3_BASE_DIR_DESC: 起始目錄-可選 +MANAGE_CONSTANT_S3_BASE_DIR_PLACEHOLDER: '英文逗號分隔,例如:/dir1,/dir2' +MANAGE_CONSTANT_S3_DOGE_CLOUD_SUPPORT_DESC: 啟用 Doge Cloud 支援 +MANAGE_CONSTANT_S3_DOGE_CLOUD_SUPPORT_TOOLTIP: 啟用後,將會啟用Doge Cloud API +MANAGE_CONSTANT_S3_PAGING_DESC: 是否開啟分頁 +MANAGE_CONSTANT_S3_ITEMS_PAGE_DESC: 每頁顯示數量 +MANAGE_CONSTANT_S3_EXPLAIN: 存儲桶名和起始目錄配置時可通過英文逗號分隔不同存儲桶的設置,順序必須一致,逗號間留空或缺失項使用默認值 +MANAGE_CONSTANT_S3_REFER_TEXT: '配置教程請參考:' + +MANAGE_CONSTANT_WEBDAV_NAME: WebDAV +MANAGE_CONSTANT_WEBDAV_ALIAS_DESC: 配置別名-必需 +MANAGE_CONSTANT_WEBDAV_ALIAS_PLACEHOLDER: 該配置的唯一標識 +MANAGE_CONSTANT_WEBDAV_HOST_DESC: 地址-必需 +MANAGE_CONSTANT_WEBDAV_HOST_PLACEHOLDER: '例如:https://example.com/dav' +MANAGE_CONSTANT_WEBDAV_HOST_TOOLTIP: 請填寫完整的WebDAV地址 +MANAGE_CONSTANT_WEBDAV_USERNAME_DESC: 使用者名稱-必需 +MANAGE_CONSTANT_WEBDAV_USERNAME_PLACEHOLDER: 請填寫使用者名稱 +MANAGE_CONSTANT_WEBDAV_BUCKET_DESC: 特殊配置 +MANAGE_CONSTANT_WEBDAV_BUCKET_PLACEHOLDER: '例如:bucket1' +MANAGE_CONSTANT_WEBDAV_BUCKET_TOOLTIP: 此處不可修改,僅為軟體相容性考量 +MANAGE_CONSTANT_WEBDAV_PASSWORD_DESC: 密碼-必需 +MANAGE_CONSTANT_WEBDAV_PASSWORD_PLACEHOLDER: 請填寫密碼 +MANAGE_CONSTANT_WEBDAV_BASE_DIR_DESC: 起始目錄-可選 +MANAGE_CONSTANT_WEBDAV_BASE_DIR_PLACEHOLDER: '例如:/dir1' +MANAGE_CONSTANT_WEBDAV_CUSTOM_URL_DESC: 自訂網域名稱-可選 +MANAGE_CONSTANT_WEBDAV_CUSTOM_URL_PLACEHOLDER: '例如:https://example.com' +MANAGE_CONSTANT_WEBDAV_CUSTOM_URL_TOOLTIP: 如果您的WebDAV伺服器支援自訂網域名稱,請填寫 +MANAGE_CONSTANT_WEBDAV_CUSTOM_URL_RULE_MESSAGE: '自訂網域名稱請以http://或https://開頭' +MANAGE_CONSTANT_WEBDAV_WEB_PATH: WebDAV網路路徑-可選 +MANAGE_CONSTANT_WEBDAV_WEB_PATH_PLACEHOLDER: '例如:test/ttc' +MANAGE_CONSTANT_WEBDAV_WEB_PATH_TOOLTIP: '用於拼接網址' +MANAGE_CONSTANT_WEBDAV_PROXY_DESC: 代理-可選 +MANAGE_CONSTANT_WEBDAV_PROXY_PLACEHOLDER: '例如:http://127.0.0.1:1080' +MANAGE_CONSTANT_WEBDAV_PROXY_TOOLTIP: 如果需要特殊網路環境才能訪問,請使用代理 +MANAGE_CONSTANT_WEBDAV_SSL_DESC: 使用HTTPS連線 +MANAGE_CONSTANT_WEBDAV_SSL_TOOLTIP: 根據WebDAV伺服器的配置,如果您的伺服器不支援HTTPS,請關閉該選項 +MANAGE_CONSTANT_WEBDAV_AUTH_TYPE_DESC: 認證類型 +MANAGE_CONSTANT_WEBDAV_EXPLAIN: 'WebDAV配置' +MANAGE_CONSTANT_WEBDAV_REFER_TEXT: '配置教程請參考: ' + +MANAGE_CONSTANT_LOCAL_NAME: 本地 +MANAGE_CONSTANT_LOCAL_ALIAS_DESC: 配置別名-必需 +MANAGE_CONSTANT_LOCAL_ALIAS_PLACEHOLDER: 該配置的唯一標識 +MANAGE_CONSTANT_LOCAL_BASE_DIR_DESC: 起始目錄-必需 +MANAGE_CONSTANT_LOCAL_BASE_DIR_PLACEHOLDER: 請填寫起始目錄 +MANAGE_CONSTANT_LOCAL_CUSTOM_URL_DESC: 自定義網域-可選 +MANAGE_CONSTANT_LOCAL_CUSTOM_URL_PLACEHOLDER: '例如:https://example.com' +MANAGE_CONSTANT_LOCAL_CUSTOM_URL_TOOLTIP: 如果您的目錄支援自定義網域,請填寫 +MANAGE_CONSTANT_LOCAL_WEB_PATH: 網路路徑-可選 +MANAGE_CONSTANT_LOCAL_WEB_PATH_PLACEHOLDER: '例如:test/ttc' +MANAGE_CONSTANT_LOCAL_WEB_PATH_TOOLTIP: '用於拼接網址' +MANAGE_CONSTANT_LOCAL_EXPLAIN: '本地配置' +MANAGE_CONSTANT_LOCAL_REFER_TEXT: '配置教程請參考: ' +MANAGE_CONSTANT_LOCAL_BASE_DIR_RULE_MESSAGE: 起始目錄不能為空 +MANAGE_CONSTANT_LOCAL_BUCKET_DESC: 特殊配置 +MANAGE_CONSTANT_LOCAL_BUCKET_PLACEHOLDER: '例如:bucket1' +MANAGE_CONSTANT_LOCAL_BUCKET_TOOLTIP: 此處不可修改,僅為軟體相容性考量 + +MANAGE_CONSTANT_SFTP_NAME: SFTP +MANAGE_CONSTANT_SFTP_ALIAS_DESC: 配置別名-必需 +MANAGE_CONSTANT_SFTP_ALIAS_PLACEHOLDER: 該配置的唯一標識 +MANAGE_CONSTANT_SFTP_HOST_DESC: 地址-必需 +MANAGE_CONSTANT_SFTP_HOST_PLACEHOLDER: '例如:233.233.233.233' +MANAGE_CONSTANT_SFTP_PORT_DESC: 端口-必需 +MANAGE_CONSTANT_SFTP_PORT_PLACEHOLDER: '例如:22' +MANAGE_CONSTANT_SFTP_USERNAME_DESC: 用戶名 +MANAGE_CONSTANT_SFTP_USERNAME_PLACEHOLDER: 請填寫用戶名 +MANAGE_CONSTANT_SFTP_PASSWORD_DESC: 密碼 +MANAGE_CONSTANT_SFTP_PASSWORD_PLACEHOLDER: 請填寫密碼 +MANAGE_CONSTANT_SFTP_PRIVATE_KEY_DESC: 私鑰地址 +MANAGE_CONSTANT_SFTP_PRIVATE_KEY_PLACEHOLDER: 請填寫私鑰地址 +MANAGE_CONSTANT_SFTP_PRIVATE_KEY_TOOLTIP: '例如:/home/user/.ssh/id_rsa' +MANAGE_CONSTANT_SFTP_PASSPHRASE_DESC: 私鑰密碼 +MANAGE_CONSTANT_SFTP_PASSPHRASE_PLACEHOLDER: 請填寫私鑰密碼 +MANAGE_CONSTANT_SFTP_BASE_DIR_DESC: 起始目錄-可選 +MANAGE_CONSTANT_SFTP_BASE_DIR_PLACEHOLDER: '例如:/dir1' +MANAGE_CONSTANT_SFTP_CUSTOM_URL_DESC: 自定義網域-可選 +MANAGE_CONSTANT_SFTP_CUSTOM_URL_PLACEHOLDER: '例如:https://example.com' +MANAGE_CONSTANT_SFTP_CUSTOM_URL_TOOLTIP: 如果您的目錄支援自定義網域,請填寫 +MANAGE_CONSTANT_SFTP_WEB_PATH: 網路路徑-可選 +MANAGE_CONSTANT_SFTP_WEB_PATH_PLACEHOLDER: '例如:test/ttc' +MANAGE_CONSTANT_SFTP_WEB_PATH_TOOLTIP: '用於拼接網址' +MANAGE_CONSTANT_SFTP_FILE_PERMISSIONS_DESC: 文件權限 +MANAGE_CONSTANT_SFTP_FILE_PERMISSIONS_PLACEHOLDER: '例如:0644' +MANAGE_CONSTANT_SFTP_FILE_PERMISSIONS_TOOLTIP: '用於設置上傳文件的權限' +MANAGE_CONSTANT_SFTP_DIR_PERMISSIONS_DESC: 目錄權限 +MANAGE_CONSTANT_SFTP_DIR_PERMISSIONS_PLACEHOLDER: '例如:0755' +MANAGE_CONSTANT_SFTP_DIR_PERMISSIONS_TOOLTIP: '用於設置上傳目錄的權限' +MANAGE_CONSTANT_SFTP_EXPLAIN: 'SFTP配置' +MANAGE_CONSTANT_SFTP_REFER_TEXT: '配置教程請參考: ' +MANAGE_CONSTANT_SFTP_BASE_DIR_RULE_MESSAGE: 起始目錄不能為空 +MANAGE_CONSTANT_SFTP_BUCKET_DESC: 特殊配置 +MANAGE_CONSTANT_SFTP_BUCKET_PLACEHOLDER: '例如:bucket1' +MANAGE_CONSTANT_SFTP_BUCKET_TOOLTIP: 此處不可修改,僅為軟體相容性考量 + +MANAGE_LOGIN_PAGE_PANE_NAME: 已保存配置 +MANAGE_LOGIN_PAGE_PANE_DESC: 點擊圖標和別名可查看詳情 +MANAGE_LOGIN_PAGE_PANE_LOADING: 導入配置... +MANAGE_LOGIN_PAGE_PANE_KEY_NAME: 配置項 +MANAGE_LOGIN_PAGE_PANE_KEY_VALUE: 值 +MANAGE_LOGIN_PAGE_PANE_ENTER: 進入 +MANAGE_LOGIN_PAGE_PANE_DELETE: 刪除 +MANAGE_LOGIN_PAGE_PANE_SELECT_PLACEHOLDER: 請選擇 +MANAGE_LOGIN_PAGE_PANE_IMPORT: 導入 +MANAGE_LOGIN_PAGE_PANE_SAVE: 保存 +MANAGE_LOGIN_PAGE_PANE_RESET: 重置 +MANAGE_LOGIN_PAGE_PANE_TABLE_TITLE: 已有配置,單擊可複製對應儲存格資料 +MANAGE_LOGIN_PAGE_PANE_CONFIG_CHANGE_MESSAGE_A: 請填寫 +MANAGE_LOGIN_PAGE_PANE_CONFIG_CHANGE_ALIAS_MESSAGE: 別名只能包含中文、英文、數字、下劃線和中劃線 +MANAGE_LOGIN_PAGE_PANE_CONFIG_CHANGE_ITEMS_PER_PAGE_MESSAGE: 每頁數量必須在20-1000之間 +MANAGE_LOGIN_PAGE_PANE_CONFIG_CHANGE_CUSTOM_URL_MESSAGE: 自定義網域請以http://或https://開頭 +MANAGE_LOGIN_PAGE_PANE_CONFIG_CHANGE_NOTICE_NAME: 通知 +MANAGE_LOGIN_PAGE_PANE_CONFIG_CHANGE_NOTICE_MESSAGE: 已覆蓋別名 +MANAGE_LOGIN_PAGE_PANE_CONFIG_CHANGE_NOTICE_MESSAGE_B: 已保存別名 +MANAGE_LOGIN_PAGE_PANE_CONFIG_CHANGE_NOTICE_MESSAGE_C: 已刪除別名 +MANAGE_LOGIN_PAGE_PANE_CONFIG_CHANGE_NOTICE_MESSAGE_D: 刪除別名為 +MANAGE_LOGIN_PAGE_PANE_CONFIG_CHANGE_NOTICE_MESSAGE_E: 的配置失敗 +MANAGE_LOGIN_PAGE_PANE_CONFIG_CHANGE_COPY_SUCCESS: 已複製 +MANAGE_LOGIN_PAGE_PANE_DELETE_CONFIG_TITLE: 確定要删除嗎?? +MANAGE_LOGIN_PAGE_PANE_DELETE_CONFIG_TIP: 提示 +MANAGE_LOGIN_PAGE_PANE_DELETE_CONFIG_CONFIRM: 確定 +MANAGE_LOGIN_PAGE_PANE_DELETE_CONFIG_CANCEL: 取消 + +MANAGE_BUCKET_PAGE_LOADING_TEXT: 載入檔案中... +MANAGE_BUCKET_PAGE_CUSTOM_URL_SELECT_PLACEHOLDER: 請選擇自訂域名 +MANAGE_BUCKET_PAGE_CUSTOM_URL_INPUT_PLACEHOLDER: 請輸入自訂域名 +MANAGE_BUCKET_PAGE_UPLOAD_FILES_TOOLTIP: 檔案上傳(支援多選) +MANAGE_BUCKET_PAGE_UPLOAD_FROM_URL_TOOLTIP: 從 URL 上傳 +MANAGE_BUCKET_PAGE_CREATE_FOLDER_TOOLTIP: 建立資料夾 +MANAGE_BUCKET_PAGE_DOWNLOAD_TOOLTIP: 下載頁面 +MANAGE_BUCKET_PAGE_BATCH_RENAME_TOOLTIP: 批次重新命名 +MANAGE_BUCKET_PAGE_BATCH_COPY_URL_TOOLTIP: 批次複製 URL +MANAGE_BUCKET_PAGE_COPY_FILE_INFO_TOOLTIP: 複製檔案資訊 +MANAGE_BUCKET_PAGE_FORCE_REFRESH_TOOLTIP: 強制重新整理檔案列表 +MANAGE_BUCKET_PAGE_SEARCH_PLACEHOLDER: 搜尋檔案 +MANAGE_BUCKET_PAGE_ROOT_FOLDER: 根目錄 +MANAGE_BUCKET_PAGE_FILE_NUMBER: '檔案數:' +MANAGE_BUCKET_PAGE_FILE_SIZE: '總大小:' +MANAGE_BUCKET_PAGE_SELECT_ALL: 全選 +MANAGE_BUCKET_PAGE_SELECT_NONE: 取消選擇 +MANAGE_BUCKET_PAGE_SELECT_INVERT: 反選 +MANAGE_BUCKET_DOWNLOAD_BTN: 下載 +MANAGE_BUCKET_DELETE_BTN: 刪除 +MANAGE_BUCKET_SORT_TITLE: 排序 +MANAGE_BUCKET_SORT_NAME: 檔案名稱 +MANAGE_BUCKET_SORT_SIZE: 大小 +MANAGE_BUCKET_SORT_EXT: 類型 +MANAGE_BUCKET_SORT_TIME: 時間 +MANAGE_BUCKET_SORT_CHECK: 選取狀態 +MANAGE_BUCKET_SORT_INIT: 初始化 +MANAGE_BUCKET_URL_UPLOAD_DIALOG_TITLE: 請輸入 URL,支援多個 URL,以換行分隔 +MANAGE_BUCKET_URL_UPLOAD_DIALOG_CONFIRM: 確定 +MANAGE_BUCKET_URL_UPLOAD_DIALOG_CANCEL: 取消 +MANAGE_BUCKET_URL_FORMAT_MARKDOWN: Markdown +MANAGE_BUCKET_URL_FORMAT_MARKDOWN_WITH_LINK: Markdown-link +MANAGE_BUCKET_URL_FORMAT_URL: Url +MANAGE_BUCKET_URL_FORMAT_HTML: Html +MANAGE_BUCKET_URL_FORMAT_BBCODE: BBCode +MANAGE_BUCKET_URL_FORMAT_CUSTOM: 自訂 +MANAGE_BUCKET_URL_FORMAT_PRESIGN: 預簽名連結 +MANAGE_BUCKET_FILE_INFO_TITLE: 檔案資訊 +MANAGE_BUCKET_FILE_INFO_COPY_TIPS: 複製 JSON 格式資訊 +MANAGE_BUCKET_FILE_LIST_LOADING: 載入中,點擊取消 +MANAGE_BUCKET_FILE_LIST_DOWNLOAD_PRE: 準備下載中,點擊取消 +MANAGE_BUCKET_KEEP_FOLDER_STRUCTURE: 保持目錄結構 +MANAGE_BUCKET_NOT_KEEP_FOLDER_STRUCTURE: 不保持目錄結構 +MANAGE_BUCKET_UPLOAD_AREA_TITLE: 拖放上傳支援遞歸上傳資料夾 +MANAGE_BUCKET_UPLOAD_AREA_TEXT: 或:點選選擇檔案(不支援資料夾) +MANAGE_BUCKET_UPLOAD_AREA_BTN_LOADING: 讀取檔案中 +MANAGE_BUCKET_UPLOAD_AREA_BTN: 上傳 +MANAGE_BUCKET_UPLOAD_AREA_CLEAR: 清空 +MANAGE_BUCKET_UPLOAD_AREA_STATUS_UPLOADING: 上傳中 +MANAGE_BUCKET_UPLOAD_AREA_COPY_TASK: 複製上傳任務資訊 +MANAGE_BUCKET_UPLOAD_AREA_CLEAR_UPLOADED_TASK: 清空已完成任務 +MANAGE_BUCKET_UPLOAD_AREA_CLEAR_ALL_TASK: 清空所有任務 +MANAGE_BUCKET_UPLOAD_AREA_SUCCESS: 成功 +MANAGE_BUCKET_UPLOAD_AREA_FAILED: 失敗 +MANAGE_BUCKET_DOWNLOAD_PAGE_TITLE: 下載頁面 +MANAGE_BUCKET_DOWNLOADING: 下載中 +MANAGE_BUCKET_DOWNLOAD_COPY_TASK: 複製下載任務資訊 +MANAGE_BUCKET_DOWNLOAD_CLEAR_DOWNLOADED_TASK: 清空已完成任務 +MANAGE_BUCKET_DOWNLOAD_CLEAR_ALL_TASK: 清空所有任務 +MANAGE_BUCKET_DOWNLOAD_OPEN_FOLDER: 開啟下載目錄 +MANAGE_BUCKET_DOWNLOAD_SUCCESS: 成功 +MANAGE_BUCKET_DOWNLOAD_FAILED: 失敗 +MANAGE_BUCKET_MARKDOWN_PREVIEW: 預覽 +MANAGE_BUCKET_PLAY: 播放 +MANAGE_BUCKET_RENAME_FILE: 檔案重新命名 +MANAGE_BUCKET_RENAME_FILE_INPUT_A: 進行替換時匹配的字串或 JS 正則表達式 +MANAGE_BUCKET_RENAME_FILE_INPUT_A_TIPS: 正則表達式請直接輸入,不需要加上 / +MANAGE_BUCKET_RENAME_FILE_INPUT_A_PLACEHOLDER: 例如:^\d{4}-\d{2}-\d{2} +MANAGE_BUCKET_RENAME_FILE_INPUT_B: 需要替換的字串,可使用自訂重新命名規則中的佔位符 +MANAGE_BUCKET_RENAME_FILE_TABLE_IID: 自增數字 +MANAGE_BUCKET_RENAME_FILE_EXT: 是否匹配副檔名進行替換 +MANAGE_BUCKET_RENAME_FILE_EXT_TIPS: 如果希望修改副檔名,請勾選此項 +MANAGE_BUCKET_RENAME_FILE_EXT_YES: 是 +MANAGE_BUCKET_RENAME_FILE_EXT_NO: 否 +MANAGE_BUCKET_RENAME_FILE_CANCEL: 取消 +MANAGE_BUCKET_RENAME_FILE_CONFIRM: 確定 +MANAGE_BUCKET_COPY_SUCCESS: 複製成功 +MANAGE_BUCKET_START_LOADING_MESSAGE: 開始取得檔案 +MANAGE_BUCKET_END_LOADING_MESSAGE_FAIL: 取得檔案內容失敗 +MANAGE_BUCKET_CHANGE_CUSTOM_URL_TITLE: 提示 +MANAGE_BUCKET_CHANGE_CUSTOM_URL_MSG: 正在載入檔案列表,請稍後再試 +MANAGE_BUCKET_LAST_PAGE_TITLE: 提示 +MANAGE_BUCKET_LAST_PAGE_MSG: 已經是最後一頁了 +MANAGE_BUCKET_GET_LIST_FAIL_TITLE: 提示 +MANAGE_BUCKET_GET_LIST_FAIL_MSG: 獲取檔案列表失敗 +MANAGE_BUCKET_GET_LIST_FAIL_MSG2: 正在後台獲取檔案列表,請勿切換頁面 +MANAGE_BUCKET_GET_LIST_FAIL_MSG3: 正在載入檔案列表,請稍後再試 +MANAGE_BUCKET_DOWNLOAD_FOLDER_BOX_TITLE: '確定要下載該資料夾嗎?' +MANAGE_BUCKET_DOWNLOAD_FOLDER_BOX_TIP: 提示 +MANAGE_BUCKET_DOWNLOAD_FOLDER_BOX_CONFIRM: 確定 +MANAGE_BUCKET_DOWNLOAD_FOLDER_BOX_CANCEL: 取消 +MANAGE_BUCKET_DOWNLOAD_FOLDER_SUCCESS: 獲取下載列表成功 +MANAGE_BUCKET_DOWNLOAD_FOLDER_FAIL: 獲取失敗 +MANAGE_BUCKET_DOWNLOAD_FOLDER_CANCEL: 已取消 +MANAGE_BUCKET_CREATE_FOLDER_BOX_TITLE: 請輸入資料夾名稱 +MANAGE_BUCKET_CREATE_FOLDER_BOX_TIP: 新建資料夾 +MANAGE_BUCKET_CREATE_FOLDER_BOX_CONFIRM: 確定 +MANAGE_BUCKET_CREATE_FOLDER_BOX_CANCEL: 取消 +MANAGE_BUCKET_CREATE_FOLDER_ERROR_MSG: 資料夾名稱只能包含中文、英文、數字、下劃線和斜線 +MANAGE_BUCKET_CREATE_FOLDER_SUCCESS: 創建成功,請刷新 +MANAGE_BUCKET_CREATE_FOLDER_FAIL: 創建失敗 +MANAGE_BUCKET_UPLOAD_URL_ERROR_MSQ: 請輸入有效的URL +MANAGE_BUCKET_UPLOAD_URL_NOT_TITLE: 提示 +MANAGE_BUCKET_UPLOAD_URL_NOT_MSG: 開始後台下載,成功後自動上傳 +MANAGE_BUCKET_BATCH_RENAME_ERROR_MSG: 請輸入匹配字串 +MANAGE_BUCKET_BATCH_RENAME_ERROR_MSG2: 沒有匹配到檔案 +MANAGE_BUCKET_BATCH_RENAME_ERROR_MSG3: 沒有需要重命名的檔案 +MANAGE_BUCKET_BATCH_RENAME_REPEATED_MSG_A: 檢測到有 +MANAGE_BUCKET_BATCH_RENAME_REPEATED_MSG_B: 個檔案重複,是否繼續 +MANAGE_BUCKET_BATCH_RENAME_REPEATED_MSG_C: 提示 +MANAGE_BUCKET_BATCH_RENAME_REPEATED_CONFIRM: 確定 +MANAGE_BUCKET_BATCH_RENAME_REPEATED_CANCEL: 取消 +MANAGE_BUCKET_BATCH_RENAME_RESULT_MSG_A: 重命名成功 +MANAGE_BUCKET_BATCH_RENAME_RESULT_MSG_B: 失敗 +MANAGE_BUCKET_BATCH_RENAME_CANCEL: 已取消 +MANAGE_BUCKET_BATCH_COPY_INFO_ERROR_MSG: 請先選擇檔案 +MANAGE_BUCKET_BATCH_COPY_INFO_MSG_A: 已複製 +MANAGE_BUCKET_BATCH_COPY_INFO_MSG_B: 個檔案資訊 +MANAGE_BUCKET_BATCH_COPY_URL_ERROR_MSG: 請先選擇檔案 +MANAGE_BUCKET_BATCH_COPY_URL_MSG_A: 已複製 +MANAGE_BUCKET_BATCH_COPY_URL_MSG_B: 個連結 +MANAGE_BUCKET_CANCEL_LOADING_TITLE: 是否停止獲取檔案列表? +MANAGE_BUCKET_CANCEL_LOADING_MSG: 提示 +MANAGE_BUCKET_CANCEL_LOADING_CONFIRM: 确定 +MANAGE_BUCKET_CANCEL_LOADING_CANCEL: 取消 +MANAGE_BUCKET_CANCEL_LOADING_SUCCESS: 文件列表获取已停止 +MANAGE_BUCKET_CANCEL_DOWNLOAD_LOADING_TITLE: 是否停止下载文件获取? +MANAGE_BUCKET_CANCEL_DOWNLOAD_LOADING_MSG: 提示 +MANAGE_BUCKET_CANCEL_DOWNLOAD_LOADING_CONFIRM: 确定 +MANAGE_BUCKET_CANCEL_DOWNLOAD_LOADING_CANCEL: 取消 +MANAGE_BUCKET_CANCEL_DOWNLOAD_LOADING_SUCCESS: 下载文件获取已停止 +MANAGE_BUCKET_GET_FILE_BS_NOT_TITLE: 提示 +MANAGE_BUCKET_GET_FILE_BS_NOT_MSG: 获取文件列表成功 +MANAGE_BUCKET_GET_FILE_BS_NOT_MSG2: 部分文件获取失败 +MANAGE_BUCKET_BATCH_DELETE_CONFIRM_TITLE_A: 将永久删除 +MANAGE_BUCKET_BATCH_DELETE_CONFIRM_TITLE_B: 个文件,是否继续? +MANAGE_BUCKET_BATCH_DELETE_CONFIRM_MSG: 提示 +MANAGE_BUCKET_BATCH_DELETE_CONFIRM_CONFIRM: 确定 +MANAGE_BUCKET_BATCH_DELETE_CONFIRM_CANCEL: 取消 +MANAGE_BUCKET_BATCH_DELETE_ERROR_MSG_TITLE: 提示 +MANAGE_BUCKET_BATCH_DELETE_ERROR_MSG_MSG: 删除失败 +MANAGE_BUCKET_BATCH_DELETE_ERROR_MSG_MSG2: 删除成功 +MANAGE_BUCKET_BATCH_DELETE_ERROR_MSG_MSG3: 失败 +MANAGE_BUCKET_BATCH_DELETE_CANCEL: 已取消删除 +MANAGE_BUCKET_DELETE_CONFIRM_TITLE: 将永久删除 +MANAGE_BUCKET_DELETE_CONFIRM_TITLE_FOLDER: 文件夹 +MANAGE_BUCKET_DELETE_CONFIRM_TITLE_FOLDER_A: 和该目录下的所有文件 +MANAGE_BUCKET_DELETE_CONFIRM_TITLE_FILE: 文件 +MANAGE_BUCKET_DELETE_CONFIRM_TITLE_C: 是否继续 +MANAGE_BUCKET_DELETE_CONFIRM_MSG: 提示 +MANAGE_BUCKET_DELETE_CONFIRM_CONFIRM: 确定 +MANAGE_BUCKET_DELETE_CONFIRM_CANCEL: 取消 +MANAGE_BUCKET_DELETE_ERROR_MSG_TITLE: 提示 +MANAGE_BUCKET_DELETE_ERROR_MSG_MSG: 删除文件夹可能需要一段时间,请耐心等待 +MANAGE_BUCKET_DELETE_SUCCESS: 刪除成功 +MANAGE_BUCKET_DELETE_FAIL: 刪除失敗 +MANAGE_BUCKET_DELETE_CANCEL: 已取消删除 +MANAGE_BUCKET_RENAME_INFO_MSG: 新文件名和原文件名相同,無需重命名 +MANAGE_BUCKET_RENAME_SUCCESS: 重命名成功 +MANAGE_BUCKET_RENAME_ERROR_MSG: 重命名失敗 +MANAGE_BUCKET_DOWNLOAD_COLUMN_FILENAME: 文件名 +MANAGE_BUCKET_DOWNLOAD_COLUMN_FINISHTIME: 完成時間 +MANAGE_BUCKET_DOWNLOAD_COLUMN_STATUS: 狀態 +MANAGE_BUCKET_DOWNLOAD_COLUMN_STATUS_SUCCESS: 成功 +MANAGE_BUCKET_DOWNLOAD_COLUMN_STATUS_FAIL: 失敗 +MANAGE_BUCKET_UPLOAD_COLUMN_FILENAME: 文件名 +MANAGE_BUCKET_UPLOAD_COLUMN_TARGETFILEPATH: 上傳路徑 +MANAGE_BUCKET_UPLOAD_COLUMN_FINISHTIME: 完成時間 +MANAGE_BUCKET_UPLOAD_COLUMN_STATUS: 狀態 +MANAGE_BUCKET_UPLOAD_COLUMN_STATUS_SUCCESS: 成功 +MANAGE_BUCKET_UPLOAD_COLUMN_STATUS_FAIL: 失敗 +MANAGE_BUCKET_DOWNLOADING_COLUMN_FILENAME: 文件名 +MANAGE_BUCKET_DOWNLOADING_COLUMN_PROGRESS: 進度 +MANAGE_BUCKET_UPLOADING_COLUMN_FILENAME: 文件名 +MANAGE_BUCKET_UPLOADING_COLUMN_PROGRESS: 進度 +MANAGE_BUCKET_UPLOADED_COLUMN_FILENAME: 文件名 +MANAGE_BUCKET_UPLOADED_COLUMN_FILESIZE: 大小 +MANAGE_BUCKET_UPLOADED_COLUMN_FILENUM: 文件數 +MANAGE_BUCKET_FILE_COLUMN_FILENAME: 文件名 +MANAGE_BUCKET_FILE_COLUMN_COPY_URL: 複製鏈接 +MANAGE_BUCKET_FILE_COLUMN_INFO: 文件信息 +MANAGE_BUCKET_FILE_COLUMN_FILESIZE: 大小 +MANAGE_BUCKET_FILE_COLUMN_TIME: 修改時間 + +MANAGE_NEW_BUCKET_TCYUN_NAME: 腾讯雲 +MANAGE_NEW_BUCKET_TCYUN_BUCKETNAME_DESC: Bucket名稱 +MANAGE_NEW_BUCKET_TCYUN_BUCKETNAME_PLACEHOLDER: 請輸入Bucket名稱 +MANAGE_NEW_BUCKET_TCYUN_BUCKETNAME_RULE_MSG_A: Bucket名稱不能為空 +MANAGE_NEW_BUCKET_TCYUN_BUCKETNAME_RULE_MSG_B: Bucket名稱長度不能超過23個字符 +MANAGE_NEW_BUCKET_TCYUN_BUCKETNAME_RULE_MSG_C: Bucket名稱只能包含小寫字母、數字和中橫線,且不能以中橫線開頭和結尾 +MANAGE_NEW_BUCKET_TCYUN_REGION: 區域 +MANAGE_NEW_BUCKET_TCYUN_ACL_DESC: 訪問權限 +MANAGE_NEW_BUCKET_TCYUN_ACL_PUBLIC_RW: 公共讀寫 +MANAGE_NEW_BUCKET_TCYUN_ACL_PUBLIC_R: 公共讀 +MANAGE_NEW_BUCKET_TCYUN_ACL_PRIVATE: 私有 +MANAGE_NEW_BUCKET_ALIYUN_NAME: 阿里雲 +MANAGE_NEW_BUCKET_ALIYUN_BUCKETNAME_DESC: Bucket名稱 +MANAGE_NEW_BUCKET_ALIYUN_BUCKETNAME_PLACEHOLDER: 請輸入Bucket名稱 +MANAGE_NEW_BUCKET_ALIYUN_BUCKETNAME_RULE_MSG_A: Bucket名稱不能為空 +MANAGE_NEW_BUCKET_ALIYUN_BUCKETNAME_RULE_MSG_B: Bucket名稱長度不能超過63個字符 +MANAGE_NEW_BUCKET_ALIYUN_BUCKETNAME_RULE_MSG_C: Bucket名稱只能包含小寫字母、數字和中橫線,且不能以中橫線開頭和結尾 +MANAGE_NEW_BUCKET_ALIYUN_REGION: 區域 +MANAGE_NEW_BUCKET_ALIYUN_ACL_DESC: 訪問權限 +MANAGE_NEW_BUCKET_ALIYUN_ACL_PUBLIC_RW: 公共讀寫 +MANAGE_NEW_BUCKET_ALIYUN_ACL_PUBLIC_R: 公共讀 +MANAGE_NEW_BUCKET_ALIYUN_ACL_PRIVATE: 私有 +MANAGE_NEW_BUCKET_QINIU_NAME: 七牛雲 +MANAGE_NEW_BUCKET_QINIU_BUCKETNAME_DESC: Bucket名稱 +MANAGE_NEW_BUCKET_QINIU_BUCKETNAME_PLACEHOLDER: 請輸入Bucket名稱 +MANAGE_NEW_BUCKET_QINIU_BUCKETNAME_RULE_MSG_A: Bucket名稱不能為空 +MANAGE_NEW_BUCKET_QINIU_BUCKETNAME_RULE_MSG_B: Bucket名稱長度不能超過63個字符 +MANAGE_NEW_BUCKET_QINIU_BUCKETNAME_RULE_MSG_C: Bucket名稱只能包含小寫字母、數字和中橫線,且不能以中橫線開頭和結尾 +MANAGE_NEW_BUCKET_QINIU_REGION: 區域 +MANAGE_NEW_BUCKET_QINIU_ACL_DESC: 公開訪問 +MANAGE_NEW_BUCKET_S3PLIST_NAME: S3兼容雲 +MANAGE_NEW_BUCKET_S3PLIST_BUCKETNAME_DESC: Bucket名稱 +MANAGE_NEW_BUCKET_S3PLIST_BUCKETNAME_PLACEHOLDER: 請輸入Bucket名稱 +MANAGE_NEW_BUCKET_S3PLIST_BUCKETNAME_RULE_MSG_A: Bucket名稱不能為空 +MANAGE_NEW_BUCKET_S3PLIST_REGION: 區域 +MANAGE_NEW_BUCKET_S3PLIST_ACL_DESC: 訪問權限 +MANAGE_NEW_BUCKET_S3PLIST_ACL_PUBLIC_RW: 公共讀寫 +MANAGE_NEW_BUCKET_S3PLIST_ACL_PUBLIC_R: 公共讀 +MANAGE_NEW_BUCKET_S3PLIST_ACL_PRIVATE: 私有 +MANAGE_NEW_BUCKET_S3PLIST_ACL_AUTHENTICATED_READ: 授權讀 +# ---renderer i18n end--- + +# plugins +PLUGIN_INSTALL_SUCCEED: 插件安裝成功 +PLUGIN_INSTALL_FAILED: 插件安裝失敗 +PLUGIN_UNINSTALL_SUCCEED: 插件卸載成功 +PLUGIN_UNINSTALL_FAILED: 插件卸載失敗 +PLUGIN_UPDATE_SUCCEED: 插件更新成功 +PLUGIN_UPDATE_FAILED: 插件更新失敗 +PLUGIN_IMPORT_SUCCEED: 插件導入成功 +PLUGIN_IMPORT_FAILED: 插件導入失敗 +ENABLE_PLUGIN: 啟用插件 +DISABLE_PLUGIN: 禁用插件 +UNINSTALL_PLUGIN: 卸載插件 +UPDATE_PLUGIN: 更新插件 + +# tips +TIPS_NOTICE: 注意 +TIPS_WARNING: 警告 +TIPS_ERROR: 發生錯誤 +TIPS_INSTALL_NODE_AND_RELOAD_PICGO: 請安裝Node.js並重新啟動PicList再繼續操作 +TIPS_PLUGIN_REMOVE_GALLERY_ITEM: 有插件正在試圖刪除一些相簿圖片,是否繼續? +TIPS_PLUGIN_OVERWRITE_GALLERY: 有插件正在試圖覆蓋相簿列表,是否繼續? +TIPS_UPLOAD_NOT_PICTURES: 剪貼簿最新的一條記錄不是圖片 +TIPS_PICGO_CONFIG_FILE_BROKEN_WITH_DEFAULT: PicList設定檔案已損壞,已經恢復為預設設定 +TIPS_PICGO_CONFIG_FILE_BROKEN_WITH_BACKUP: PicList 設定檔案已損壞,已經恢復為備份設定 +TIPS_PICGO_BACKUP_FILE_VERSION: '備份檔案版本: ${v}' +TIPS_CUSTOM_CONFIG_FILE_PATH_ERROR: 自訂設定檔案解析出錯,請檢查路徑內容是否正確 +TIPS_SHORTCUT_MODIFIED_SUCCEED: 快捷鍵已經修改成功 +TIPS_SHORTCUT_MODIFIED_CONFLICT: 快捷鍵衝突,請重新設定 +TIPS_CUSTOM_LINK_STYLE_MODIFIED_SUCCEED: 自訂連結格式已經修改成功 +TIPS_FIND_NEW_VERSION: 發現新版本${v},更新了很多功能,是否後台下載最新的版本? +UPDATE_DOWNLOADED: 更新已下載 +TIPS_UPDATE_DOWNLOADED: 更新已下載,将在下次啟動時安裝,是否立即重啟? +QUIT: 退出 diff --git a/src/main.ts b/src/main.ts index 911de3d8..a7865d73 100644 --- a/src/main.ts +++ b/src/main.ts @@ -51,4 +51,5 @@ app.use(pinia) app.use(hljsVuePlugin) app.use(VueVideoPlayer) app.mount('#app') + initTalkingData() diff --git a/src/main/apis/app/remoteNotice/index.ts b/src/main/apis/app/remoteNotice/index.ts index ab6ba2f6..1076f1ea 100644 --- a/src/main/apis/app/remoteNotice/index.ts +++ b/src/main/apis/app/remoteNotice/index.ts @@ -1,21 +1,12 @@ import axios from 'axios' -import { - app, - clipboard, - dialog, - shell -} from 'electron' +import { app, clipboard, dialog, shell } from 'electron' import fs from 'fs-extra' import path from 'path' import { gte, lte } from 'semver' import windowManager from 'apis/app/window/windowManager' import { showNotification } from '~/utils/common' -import { - IRemoteNoticeActionType, - IRemoteNoticeTriggerCount, - IRemoteNoticeTriggerHook -} from '#/types/enum' +import { IRemoteNoticeActionType, IRemoteNoticeTriggerCount, IRemoteNoticeTriggerHook } from '#/types/enum' // for test const REMOTE_NOTICE_URL = 'https://release.piclist.cn/remote-notice.json' @@ -30,38 +21,41 @@ class RemoteNoticeHandler { private remoteNotice: IRemoteNotice | null = null private remoteNoticeLocalCountStorage: IRemoteNoticeLocalCountStorage | null = null - async init () { + async init() { this.remoteNotice = await this.getRemoteNoticeInfo() this.initLocalCountStorage() } - private initLocalCountStorage () { + private initLocalCountStorage() { const localCountStorage = {} if (!fs.existsSync(REMOTE_NOTICE_LOCAL_STORAGE_PATH)) { fs.writeFileSync(REMOTE_NOTICE_LOCAL_STORAGE_PATH, JSON.stringify({})) } try { - const localCountStorage: IRemoteNoticeLocalCountStorage = fs.readJSONSync(REMOTE_NOTICE_LOCAL_STORAGE_PATH, 'utf8') + const localCountStorage: IRemoteNoticeLocalCountStorage = fs.readJSONSync( + REMOTE_NOTICE_LOCAL_STORAGE_PATH, + 'utf8' + ) this.remoteNoticeLocalCountStorage = localCountStorage } catch (e) { this.remoteNoticeLocalCountStorage = localCountStorage } } - private saveLocalCountStorage (newData?: IRemoteNoticeLocalCountStorage) { + private saveLocalCountStorage(newData?: IRemoteNoticeLocalCountStorage) { if (newData) { this.remoteNoticeLocalCountStorage = newData } fs.writeFileSync(REMOTE_NOTICE_LOCAL_STORAGE_PATH, JSON.stringify(this.remoteNoticeLocalCountStorage)) } - private async getRemoteNoticeInfo (): Promise