Repository: Quilljou/transmart Branch: main Commit: 012411f14183 Files: 73 Total size: 349.2 KB Directory structure: gitextract_t6167sma/ ├── .editorconfig ├── .eslintignore ├── .eslintrc ├── .github/ │ └── ISSUE_TEMPLATE/ │ ├── bug_report.md │ ├── custom.md │ └── feature_request.md ├── .gitignore ├── .prettierrc.js ├── CONTRIBUTING.md ├── LICENSE ├── README-zh_CN.md ├── README.md ├── commitlint.config.js ├── examples/ │ ├── README.md │ ├── chrome-extension/ │ │ ├── README.md │ │ ├── _locales/ │ │ │ └── en/ │ │ │ └── messages.json │ │ ├── feed.html │ │ ├── manifest.json │ │ ├── package.json │ │ └── transmart.config.js │ └── next.js/ │ ├── @types/ │ │ └── i18next.d.ts │ ├── components/ │ │ ├── Footer.tsx │ │ └── Header.tsx │ ├── next-env.d.ts │ ├── next-i18next.config.js │ ├── next-utils.config.js │ ├── next.config.js │ ├── package.json │ ├── pages/ │ │ ├── _app.tsx │ │ ├── _document.tsx │ │ ├── index.tsx │ │ └── second-page.tsx │ ├── public/ │ │ ├── app.css │ │ └── locales/ │ │ └── en/ │ │ ├── common.json │ │ ├── footer.json │ │ └── second-page.json │ ├── transmart.config.js │ ├── tsconfig.json │ └── vercel.json ├── lerna.json ├── package.json ├── packages/ │ ├── cli/ │ │ ├── README.md │ │ ├── bin/ │ │ │ └── transmart.js │ │ ├── package.json │ │ ├── src/ │ │ │ ├── cli.ts │ │ │ ├── index.ts │ │ │ ├── options.ts │ │ │ └── types.ts │ │ └── tsconfig.build.json │ └── core/ │ ├── README.md │ ├── package.json │ ├── src/ │ │ ├── index.ts │ │ ├── language.ts │ │ ├── limit.ts │ │ ├── split.ts │ │ ├── task.ts │ │ ├── translate.ts │ │ ├── transmart.ts │ │ ├── types.ts │ │ └── util.ts │ ├── test/ │ │ └── locales/ │ │ ├── de/ │ │ │ ├── common.json │ │ │ └── tos.json │ │ ├── en/ │ │ │ ├── common.json │ │ │ ├── large-file.json │ │ │ └── tos.json │ │ ├── jp/ │ │ │ └── common.json │ │ ├── zh-CN/ │ │ │ ├── common.json │ │ │ ├── large-file.json │ │ │ └── tos.json │ │ └── zh-TW/ │ │ ├── common.json │ │ └── tos.json │ └── tsconfig.build.json └── tsconfig.json ================================================ FILE CONTENTS ================================================ ================================================ FILE: .editorconfig ================================================ # http://editorconfig.org root = true [*] indent_style = space indent_size = 2 end_of_line = lf charset = utf-8 trim_trailing_whitespace = true insert_final_newline = true # Use 4 spaces for the Python and HTML files [*.py, *.html] indent_size = 4 # The JSON files contain newlines inconsistently [*.json] insert_final_newline = ignore # Minified JavaScript files shouldn't be changed [**.min.js] indent_style = ignore insert_final_newline = ignore # Makefiles always use tabs for indentation [Makefile] indent_style = tab # Batch files use tabs for indentation [*.bat] indent_style = tab [*.md] trim_trailing_whitespace = false ================================================ FILE: .eslintignore ================================================ examples ================================================ FILE: .eslintrc ================================================ { "root": true, "parser": "@typescript-eslint/parser", "env": { "browser": true, "node": true, "es6": true }, "ignorePatterns": ["lib"], "plugins": [ "@typescript-eslint", "prettier" ], "extends": [ "eslint:recommended", "plugin:@typescript-eslint/eslint-recommended", "plugin:@typescript-eslint/recommended", "plugin:prettier/recommended", "prettier" ] } ================================================ FILE: .github/ISSUE_TEMPLATE/bug_report.md ================================================ --- name: Bug report about: Create a report to help us improve title: '' labels: '' assignees: '' --- **Describe the bug** A clear and concise description of what the bug is. **To Reproduce** Steps to reproduce the behavior: 1. Go to '...' 2. Click on '....' 3. Scroll down to '....' 4. See error **Expected behavior** A clear and concise description of what you expected to happen. **Screenshots** If applicable, add screenshots to help explain your problem. **Desktop (please complete the following information):** - OS: [e.g. iOS] - Browser [e.g. chrome, safari] - Version [e.g. 22] **Smartphone (please complete the following information):** - Device: [e.g. iPhone6] - OS: [e.g. iOS8.1] - Browser [e.g. stock browser, safari] - Version [e.g. 22] **Additional context** Add any other context about the problem here. ================================================ FILE: .github/ISSUE_TEMPLATE/custom.md ================================================ --- name: Custom issue template about: Describe this issue template's purpose here. title: '' labels: '' assignees: '' --- ================================================ FILE: .github/ISSUE_TEMPLATE/feature_request.md ================================================ --- name: Feature request about: Suggest an idea for this project title: '' labels: '' assignees: '' --- **Is your feature request related to a problem? Please describe.** A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] **Describe the solution you'd like** A clear and concise description of what you want to happen. **Describe alternatives you've considered** A clear and concise description of any alternative solutions or features you've considered. **Additional context** Add any other context or screenshots about the feature request here. ================================================ FILE: .gitignore ================================================ # Created by https://www.toptal.com/developers/gitignore/api/node,macOS # Edit at https://www.toptal.com/developers/gitignore?templates=node,macOS ### macOS ### # General .DS_Store .AppleDouble .LSOverride # Icon must end with two \r Icon # Thumbnails ._* # Files that might appear in the root of a volume .DocumentRevisions-V100 .fseventsd .Spotlight-V100 .TemporaryItems .Trashes .VolumeIcon.icns .com.apple.timemachine.donotpresent # Directories potentially created on remote AFP share .AppleDB .AppleDesktop Network Trash Folder Temporary Items .apdisk ### macOS Patch ### # iCloud generated files *.icloud ### Node ### # Logs logs *.log npm-debug.log* yarn-debug.log* yarn-error.log* lerna-debug.log* .pnpm-debug.log* # Diagnostic reports (https://nodejs.org/api/report.html) report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json # Runtime data pids *.pid *.seed *.pid.lock # Directory for instrumented libs generated by jscoverage/JSCover lib-cov # Coverage directory used by tools like istanbul coverage *.lcov # nyc test coverage .nyc_output # Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files) .grunt # Bower dependency directory (https://bower.io/) bower_components # node-waf configuration .lock-wscript # Compiled binary addons (https://nodejs.org/api/addons.html) build/Release # Dependency directories node_modules/ jspm_packages/ # Snowpack dependency directory (https://snowpack.dev/) web_modules/ # TypeScript cache *.tsbuildinfo # Optional npm cache directory .npm # Optional eslint cache .eslintcache # Optional stylelint cache .stylelintcache # Microbundle cache .rpt2_cache/ .rts2_cache_cjs/ .rts2_cache_es/ .rts2_cache_umd/ # Optional REPL history .node_repl_history # Output of 'npm pack' *.tgz # Yarn Integrity file .yarn-integrity # dotenv environment variable files .env .env.development.local .env.test.local .env.production.local .env.local # parcel-bundler cache (https://parceljs.org/) .cache .parcel-cache # Next.js build output .next out # Nuxt.js build / generate output .nuxt dist # Gatsby files .cache/ # Comment in the public line in if your project uses Gatsby and not Next.js # https://nextjs.org/blog/next-9-1#public-directory-support # public # vuepress build output .vuepress/dist # vuepress v2.x temp and cache directory .temp # Docusaurus cache and generated files .docusaurus # Serverless directories .serverless/ # FuseBox cache .fusebox/ # DynamoDB Local files .dynamodb/ # TernJS port file .tern-port # Stores VSCode versions used for testing VSCode extensions .vscode-test # yarn v2 .yarn/cache .yarn/unplugged .yarn/build-state.yml .yarn/install-state.gz .pnp.* ### Node Patch ### # Serverless Webpack directories .webpack/ # Optional stylelint cache # SvelteKit build / generate output .svelte-kit # End of https://www.toptal.com/developers/gitignore/api/node,macOS n lib package-lock.json # for testing packages/core/transmart.config.js examples/**/locales/* !examples/**/locales/en examples/**/_locales/* !examples/**/_locales/en ================================================ FILE: .prettierrc.js ================================================ module.exports = { printWidth: 120, tabWidth: 2, useTabs: false, semi: false, singleQuote: true, quoteProps: 'as-needed', trailingComma: 'all', bracketSpacing: true, arrowParens: 'always', requirePragma: false, insertPragma: false, proseWrap: 'preserve', htmlWhitespaceSensitivity: 'ignore', endOfLine: 'auto', embeddedLanguageFormatting: 'auto', singleAttributePerLine: false } ================================================ FILE: CONTRIBUTING.md ================================================ # Contributing to Transmart 1. Fork this repo 2. Clone your forked repo 3. Run it ``` npm install npm run build:watch ``` 4. Make changes, pass linters, push to your repo 5. Create a pull request ================================================ FILE: LICENSE ================================================ MIT License Copyright (c) 2023 Quill Zhou Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ================================================ FILE: README-zh_CN.md ================================================
Transmart - 利用 AI 自动化您的 i18n
简体中文 | [English](./README.md)   [](https://codesandbox.io/p/sandbox/v12-12v2h6?file=%2FREADME.md) Transmart 是一个开源的开发者工具,利用 ChatGPT 实现 i18n 翻译自动化。给定一个基础语言并指定需要输出的所有语言,运行它将生成所有 i18n 区域设置文件。 它由两部分组成:Cli 和 Core。Core 是 Transmart 的 NodeJS 核心实现,而 Cli 是封装了 Core 的命令行工具。在大多数情况下,只使用 Cli 就足够了。 该项目目前正在积极开发中,欢迎 PR,也可以在[Twitter](https://twitter.com/quillzhou)上联系我 ## 特征 - [x] 支持大型文件,不必担心 4096 个标记限制 - [x] 支持使用[Intl.DisplayNames](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/DisplayNames/DisplayNames)显示的所有语言,以及可以通过 ChatGPT 处理的所有语言。 - [x] 支持覆盖 AI 翻译值 - [x] 支持[i18next](https://www.i18next.com/) - [ ] 支持[vue-i18n](https://kazupon.github.io/vue-i18n/) - [x] 支持[Chrome.i18n](https://developer.chrome.com/docs/webstore/i18n/#choosing-locales-to-support) - [x] 支持 Glob 名称空间匹配 - [x] 支持自定义 OpenAI 模型、API 端点 - [ ] 支持自定义区域设置文件结构 - [ ] 支持 iOS - [ ] 支持 Android ## 设置 > Transmart 要求 Node 版本 13 或更高。 ### 1. 安装 要安装 Transmart,请运行: ````sh npm install @transmart/cli -D # or yarn add @transmart/cli ### 2. 项目配置 首先,在项目根目录中创建一个transmart.config.js文件,或任何其他文件格式 `cosmiconfig` 可以搜索到的 transmart.config.js ```js module.exports = { baseLocale: 'en', locales: ['fr', 'jp', 'de'], localePath: 'public/locales', openAIApiKey: 'your-own-openai-api-key', overrides: { 'zh-CN': { common: { create_app: 'Create my Application', }, }, }, } ```` 所有选项可 [参考](#选项) ### 3. 翻译。 向您的 npm 脚本添加 transmart 命 令 ```json { "translate": "transmart" } ``` 然后执行 ```sh npm run translate ``` 或者您可以在命令行中直接使用 npx 前缀执行 ```sh npx transmart ``` 如果对 AI 翻译的结果不满意,请使用 [overrides](#选项) 选项部分覆盖生成的 JSON 享受 i18n 吧 🎉🎉 ## 选项 | 名称 | 类型 | 描述 | 是否必须 | | ---------------- | ----------------------------------------------------- | ------------------------------------------------------------------------------ | :------: | | baseLocale | string | Transmart 将用作翻译参考的语言。 | 是 | | locales | string[] | 所有需要翻译的语言 | 是 | | localePath | string | 存储国际化文件的位置 | 是 | | openAIApiKey | string | OpenAI API 密钥 | 是 | | context | string | 提供一些上下文让翻译更准确 | 否 | | openAIApiModel | string | OpenAI API 模型,默认为“gpt-3.5-turbo-16k-0613” | 否 | | overrides | `Record
Transmart - Automate your i18n localization with AI.
English | [简体中文](./README-zh_CN.md)   [](https://codesandbox.io/p/sandbox/v12-12v2h6?file=%2FREADME.md) Transmart is an open-source developer tool that utilizes ChatGPT to automate i18n translation. Given a base language and specifying all the languages that need to be output, running it will generate all i18n locale files. It consists of two parts: Cli and Core. Core is the NodeJS core implementation of Transmart, while Cli is a command-line tool that encapsulates Core. In most cases, only Cli is used. This project is currently under active development,PRs are welcome,reach me at [Twitter](https://twitter.com/quillzhou) ## Features - [x] Supports large size files,don't worry about the 4096 tokens limit - [x] Supports all languages that can be displayed using [Intl.DisplayNames](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/DisplayNames/DisplayNames) and can be processed by ChatGPT. - [x] Supports override AI translated values - [x] Supports [i18next](https://www.i18next.com/) - [ ] Supports [vue-i18n](https://kazupon.github.io/vue-i18n/) - [x] Supports [Chrome.i18n](https://developer.chrome.com/docs/webstore/i18n/#choosing-locales-to-support) - [x] Supports Glob namespace matching - [x] Supports customizing OpenAI Model、API endpoint - [ ] Supports custom locale file structure - [ ] Supports iOS - [ ] Supports Android ## Setup > Transmart requires Node version 13 or higher. ### 1. Installation To install Transmart, run: ```sh npm install @transmart/cli -D # or yarn add @transmart/cli ``` ### 2. Project setup First, create a transmart.config.js file in the root of your project. or any others file format [cosmiconfig](https://www.npmjs.com/package/cosmiconfig?activeTab=readme) can search for `transmart.config.js` ```js module.exports = { baseLocale: 'en', locales: ['fr', 'jp', 'de'], localePath: 'public/locales', openAIApiKey: 'your-own-openai-api-key', overrides: { 'zh-CN': { common: { create_app: 'Create my Application', }, }, }, } ``` All Options [Reference](#options) ### 3. Translate. Add transmart command to your npm scripts ```sh { "translate": "transmart" } ``` And then execute ```sh npm run translate ``` Or you can execute directly with `npx` prefix in command line ``` npx transmart ``` If you are not satisfied with the result of AI translation,use [`overrides`](#options) option to overwrite the generated JSON partially 🎉🎉 Enjoy i18n ## Examples - [next.js](./examples/next.js) - [chrome extension](./examples/chrome-extension/) ## Options | Name | Type | Description | Required | |-------------------------|------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| :------: | | baseLocale | string | The language that Transmart will use as translation ref. | Yes | | locales | string[] | All languages that need to be translated | Yes | | localePath | string | Where you store your locale files | Yes | | openAIApiKey | string | The OpenAI API Key. | Yes | | context | string | Provide some context for a more accurate translation. | No | | openAIApiModel | string | OpenAI API model, default to `gpt-3.5-turbo-16k-0613` | No | | overrides | `Record{name}",
"example": "{name}"
},
"syntax_2": {
"content": "{NaMe}",
"example": "{NaMe}"
},
"syntax_3": {
"content": "{#name}...{/NaMe}",
"example": "{#name}...{/NaMe}"
}
}
},
"opt_guide_introduction_dot_notation_header": {
"message": "Dot Notation",
"description": "Header for the Dot Notation area on the Guide tab of the Options page under the Introduction section."
},
"opt_guide_introduction_dot_notation_text": {
"message": "Nested properties of objects can also be accessed using dot notation like $SYNTAX$ which would get the $O_EMPH$nested$C_EMPH$ property of the $O_EMPH$name$C_EMPH$ object. These expressions can be even chained to access properties of nested properties and so on.",
"description": "Text for the Dot Notation area on the Guide tab of the Options page under the Introduction section.",
"placeholders": {
"c_emph": {
"content": "",
"example": ""
},
"o_emph": {
"content": "",
"example": ""
},
"syntax": {
"content": "{name.nested}",
"example": "{name.nested}"
}
}
},
"opt_guide_introduction_header": {
"message": "Introduction",
"description": "Header for the Introductions section on the Guide tab of the Options page."
},
"opt_guide_introduction_inverted_section_access_text": {
"message": "$O_BOLD$Access$C_BOLD$ - Only renders the contents if the value is an empty object",
"description": "Text for the Access item in the list within the Inverted Section area on the Guide tab of the Options page under the Introduction section.",
"placeholders": {
"c_bold": {
"content": "",
"example": ""
},
"o_bold": {
"content": "",
"example": ""
}
}
},
"opt_guide_introduction_inverted_section_conditions_text": {
"message": "$O_BOLD$Conditions$C_BOLD$ - Only renders the contents if the value is $O_EMPH$falsey$C_EMPH$",
"description": "Text for the Conditions item in the list within the Inverted Section area on the Guide tab of the Options page under the Introduction section.",
"placeholders": {
"c_bold": {
"content": "",
"example": ""
},
"c_emph": {
"content": "",
"example": ""
},
"o_bold": {
"content": "",
"example": ""
},
"o_emph": {
"content": "",
"example": ""
}
}
},
"opt_guide_introduction_inverted_section_header": {
"message": "Inverted Section",
"description": "Header for the Inverted Section area on the Guide tab of the Options page under the Introduction section."
},
"opt_guide_introduction_inverted_section_iterating_text": {
"message": "$O_BOLD$Iterating$C_BOLD$ - Only renders the contents if the value is an empty list",
"description": "Text for the Iterating item in the list within the Inverted Section area on the Guide tab of the Options page under the Introduction section.",
"placeholders": {
"c_bold": {
"content": "",
"example": ""
},
"o_bold": {
"content": "",
"example": ""
}
}
},
"opt_guide_introduction_inverted_section_text": {
"message": "Inverted sections are very similar to normal sections but are written like this $SYNTAX$ and can be used in for the following purposes;",
"description": "Text for the Inverted Section area on the Guide tab of the Options page under the Introduction section.",
"placeholders": {
"syntax": {
"content": "{^name}...{/name}",
"example": "{^name}...{/name}"
}
}
},
"opt_guide_introduction_notes_text_1": {
"message": "If you are having problems with understanding this guide please $O_LINK_HELP_DESK$let us know$C_LINK$ and we will try to help you and take your comments on board, updating the documentation if required.",
"description": "1st paragraph for the Notes area on the Guide tab of the Options page under the Introduction section.",
"placeholders": {
"c_link": {
"content": "",
"example": ""
},
"o_link_help_desk": {
"content": "",
"example": ""
}
}
},
"opt_guide_introduction_notes_text_2": {
"message": "If you encounter any problems while using $O_BOLD$Template$C_BOLD$ and/or would like to see a change or addition, please $O_LINK_HELP_DESK$raise a ticket$C_LINK$ and we will have a look at it.",
"description": "2nd paragraph for the Notes area on the Guide tab of the Options page under the Introduction section.",
"placeholders": {
"c_bold": {
"content": "",
"example": ""
},
"c_link": {
"content": "",
"example": ""
},
"o_bold": {
"content": "",
"example": ""
},
"o_link_help_desk": {
"content": "",
"example": ""
}
}
},
"opt_guide_introduction_notes_text_3": {
"message": "For more examples, try looking at the predefined templates.",
"description": "3rd paragraph for the Notes area on the Guide tab of the Options page under the Introduction section."
},
"opt_guide_introduction_section_access_text": {
"message": "$O_BOLD$Access$C_BOLD$ - If the value is an object it will render the contents while exposing the properties of that object as variables",
"description": "Text for the Access item in the list within the Section area on the Guide tab of the Options page under the Introduction section.",
"placeholders": {
"c_bold": {
"content": "",
"example": ""
},
"o_bold": {
"content": "",
"example": ""
}
}
},
"opt_guide_introduction_section_conditions_text": {
"message": "$O_BOLD$Conditions$C_BOLD$ - Only renders the contents if the value is $O_EMPH$truey$C_EMPH$",
"description": "Text for the Conditions item in the list within the Section area on the Guide tab of the Options page under the Introduction section.",
"placeholders": {
"c_bold": {
"content": "",
"example": ""
},
"c_emph": {
"content": "",
"example": ""
},
"o_bold": {
"content": "",
"example": ""
},
"o_emph": {
"content": "",
"example": ""
}
}
},
"opt_guide_introduction_section_header": {
"message": "Section",
"description": "Header for the Section area on the Guide tab of the Options page under the Introduction section."
},
"opt_guide_introduction_section_iterating_text": {
"message": "$O_BOLD$Iterating$C_BOLD$ - If the value is an array it will render the contents for each enumerable item of that value",
"description": "Text for the Iteration item in the list within the Section area on the Guide tab of the Options page under the Introduction section.",
"placeholders": {
"c_bold": {
"content": "",
"example": ""
},
"o_bold": {
"content": "",
"example": ""
}
}
},
"opt_guide_introduction_section_operations_text": {
"message": "$O_BOLD$Operations$C_BOLD$ - Renders the outcome of the operation, passing the contents as the argument",
"description": "Text for the Operations item in the list within the Section area on the Guide tab of the Options page under the Introduction section.",
"placeholders": {
"c_bold": {
"content": "",
"example": ""
},
"o_bold": {
"content": "",
"example": ""
}
}
},
"opt_guide_introduction_section_text": {
"message": "Sections are always surrounded by opening and closing tags like this $SYNTAX$ and can be used for the following purposes;",
"description": "Text for the Section area on the Guide tab of the Options page under the Introduction section.",
"placeholders": {
"syntax": {
"content": "{#name}...{/name}",
"example": "{#name}...{/name}"
}
}
},
"opt_guide_introduction_simple_tag_header": {
"message": "Simple Tag",
"description": "Header for the Simple Tag area on the Guide tab of the Options page under the Introduction section."
},
"opt_guide_introduction_simple_tag_text_1": {
"message": "Tags are always surrounded by curly braces like this $SYNTAX$ and output the value of the named variable. If that value is undefined or $O_EMPH$falsey$C_EMPH$ it will simply be deleted.",
"description": "1st paragraph for the Simple Tag area on the Guide tab of the Options page under the Introduction section.",
"placeholders": {
"c_emph": {
"content": "",
"example": ""
},
"o_emph": {
"content": "",
"example": ""
},
"syntax": {
"content": "{name}",
"example": "{name}"
}
}
},
"opt_guide_introduction_simple_tag_text_2": {
"message": "Values are not escaped by default and, in order to do so, you must either use double braces like $SYNTAX_DOUBLE$ or a leading ampersand like $SYNTAX_AMP$. This will escape $CHARACTERS$ characters so that the final output can be safely copied in to $O_ABBR_1$Extensible Markup Language$O_ABBR_2$XML$C_ABBR$ and $O_ABBR_1$Hyper Text Markup Language$O_ABBR_2$HTML$C_ABBR$.",
"description": "2nd paragraph for the Simple Tag area on the Guide tab of the Options page under the Introduction section.",
"placeholders": {
"c_abbr": {
"content": "",
"example": ""
},
"characters": {
"content": "& < > " '",
"example": "& < > \" '"
},
"o_abbr_1": {
"content": "",
"example": "\">"
},
"syntax_amp": {
"content": "{&name}",
"example": "{&name}"
},
"syntax_double": {
"content": "{{name}}",
"example": "{{name}}"
}
}
},
"opt_guide_introduction_text": {
"message": "$O_BOLD$Template$C_BOLD$ uses an advanced, yet simple, template system to allows you to create and modify the content to be copied to the clipboard. The syntax is really straight-forward and consists of the following categories;",
"description": "Header for the Introductions section on the Guide tab of the Options page.",
"placeholders": {
"c_bold": {
"content": "",
"example": ""
},
"o_bold": {
"content": "",
"example": ""
}
}
},
"opt_guide_lists_objects_cookies_text": {
"message": "The names of all cookies associated with the page",
"description": "Description of the cookies variable on the Guide tab of the Options page under the Lists & Objects section."
},
"opt_guide_lists_objects_coords_text": {
"message": "The properties of your current physical location (e.g. $EXAMPLE_1$, $EXAMPLE_2$ and many more)",
"description": "Description of the coords variable on the Guide tab of the Options page under the Lists & Objects section.",
"placeholders": {
"example_1": {
"content": "latitude",
"example": "latitude"
},
"example_2": {
"content": "longitude",
"example": "longitude"
}
}
},
"opt_guide_lists_objects_examples_code_1": {
"message": "$URL$",
"description": "Text for the 1st code block in the Examples area on the Guide tab of the Options page under the Lists & Objects section.",
"placeholders": {
"url": {
"content": "http://example.com/test/index.html?foo=bar&fu=baz",
"example": "http://example.com/test/index.html?foo=bar&fu=baz"
}
}
},
"opt_guide_lists_objects_examples_code_2": {
"message": "Follow the breadcrumbs;\n$SYNTAX$",
"description": "Text for the 2nd code block in the Examples area on the Guide tab of the Options page under the Lists & Objects section.",
"placeholders": {
"syntax": {
"content": "{#segments}\n * {.}\n{/segments}",
"example": "{#segments}\n * {.}\n{/segments}"
}
}
},
"opt_guide_lists_objects_examples_code_3": {
"message": "Follow the breadcrumbs;\n$LIST$",
"description": "Text for the 3rd code block in the Examples area on the Guide tab of the Options page under the Lists & Objects section.",
"placeholders": {
"list": {
"content": " * test\n * index.html",
"example": " * test\n * index.html"
}
}
},
"opt_guide_lists_objects_examples_code_4": {
"message": "$SYNTAX_1$$PARAM_1$ is "{$PARAM_1$}" and $PARAM_2$ is "{$PARAM_2$}".$SYNTAX_3$\n$SYNTAX_2$No parameters could be found!$SYNTAX_3$",
"description": "Text for the 4th code block in the Examples area on the Guide tab of the Options page under the Lists & Objects section.",
"placeholders": {
"param_1": {
"content": "foo",
"example": "foo"
},
"param_2": {
"content": "fu",
"example": "fu"
},
"syntax_1": {
"content": "{#params}",
"example": "{#params}"
},
"syntax_2": {
"content": "{^params}",
"example": "{^params}"
},
"syntax_3": {
"content": "{/params}",
"example": "{/params}"
}
}
},
"opt_guide_lists_objects_examples_code_5": {
"message": "$PARAM_1$ is "$VALUE_1$" and $PARAM_2$ is "$VALUE_2$".",
"description": "Text for the 5th code block in the Examples area on the Guide tab of the Options page under the Lists & Objects section.",
"placeholders": {
"param_1": {
"content": "foo",
"example": "foo"
},
"param_2": {
"content": "fu",
"example": "fu"
},
"value_1": {
"content": "bar",
"example": "bar"
},
"value_2": {
"content": "baz",
"example": "baz"
}
}
},
"opt_guide_lists_objects_examples_code_6": {
"message": "$PARAM_1$ is "{$SYNTAX$$PARAM_1$}" and $PARAM_2$ is "{$SYNTAX$$PARAM_2$}".",
"description": "Text for the 6th code block in the Examples area on the Guide tab of the Options page under the Lists & Objects section.",
"placeholders": {
"param_1": {
"content": "foo",
"example": "foo"
},
"param_2": {
"content": "fu",
"example": "fu"
},
"syntax": {
"content": "params.",
"example": "params."
}
}
},
"opt_guide_lists_objects_examples_code_7": {
"message": "No parameters could be found!",
"description": "Text for the 7th code block in the Examples area on the Guide tab of the Options page under the Lists & Objects section."
},
"opt_guide_lists_objects_examples_code_8": {
"message": "The site has following information stored;\n$SYNTAX$",
"description": "Text for the 8th code block in the Examples area on the Guide tab of the Options page under the Lists & Objects section.",
"placeholders": {
"syntax": {
"content": "{#cookies}\n * {.} = "{#cookie}{.}{/cookie}"\n{/cookies}",
"example": "{#cookies}\n * {.} = \"{#cookie}{.}{/cookie}\"\n{/cookies}"
}
}
},
"opt_guide_lists_objects_examples_code_9": {
"message": "The site has following information stored;\n$LIST$",
"description": "Text for the 9th code block in the Examples area on the Guide tab of the Options page under the Lists & Objects section.",
"placeholders": {
"list": {
"content": " * JSESSIONID = "2pkffy9ivmpfwntf12y6o4cgu"\n * __utmc = "224978569"",
"example": " * JSESSIONID = \"2pkffy9ivmpfwntf12y6o4cgu\"\n * __utmc = \"224978569\""
}
}
},
"opt_guide_lists_objects_examples_code_10": {
"message": "$SYNTAX_1$View Larger Map$SYNTAX_2$",
"description": "Text for the 10th code block in the Examples area on the Guide tab of the Options page under the Lists & Objects section.",
"placeholders": {
"syntax_1": {
"content": "{#coords}\n<iframe width="425" height="350" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="http://maps.google.com/maps?ll={latitude},{longitude}&output=embed"></iframe>\n<br>\n<small><a href="http://maps.google.com/maps?ll={latitude},{longitude}&source=embed">",
"example": "{#coords}\n\nfoo=bar&fu=baz",
"example": "foo=bar&fu=baz"
},
"example_2": {
"content": "foo",
"example": "foo"
},
"example_3": {
"content": "fu",
"example": "fu"
}
}
},
"opt_guide_lists_objects_fsegments_text": {
"message": "The segments from the hash fragment's path",
"description": "Description of the fsegments variable on the Guide tab of the Options page under the Lists & Objects section."
},
"opt_guide_lists_objects_header": {
"message": "Lists & Objects",
"description": "Header for the Lists & Objects section on the Guide tab of the Options page."
},
"opt_guide_lists_objects_images_text": {
"message": "The $O_ABBR_1$Uniform Resource Locator$O_ABBR_2$URL$C_ABBR$s of all images on the page",
"description": "Description of the images variable on the Guide tab of the Options page under the Lists & Objects section.",
"placeholders": {
"c_abbr": {
"content": "",
"example": ""
},
"o_abbr_1": {
"content": "",
"example": "\">"
}
}
},
"opt_guide_lists_objects_keywords_text": {
"message": "The keywords from the page's meta information",
"description": "Description of the keywords variable on the Guide tab of the Options page under the Lists & Objects section."
},
"opt_guide_lists_objects_links_text": {
"message": "The $O_ABBR_1$Uniform Resource Locator$O_ABBR_2$URL$C_ABBR$s of all links on the page",
"description": "Description of the links variable on the Guide tab of the Options page under the Lists & Objects section.",
"placeholders": {
"c_abbr": {
"content": "",
"example": ""
},
"o_abbr_1": {
"content": "",
"example": "\">"
}
}
},
"opt_guide_lists_objects_local_storage_text": {
"message": "The items stored in the $LOCAL_STORAGE$ of the page",
"description": "Description of the localStorage variable on the Guide tab of the Options page under the Lists & Objects section.",
"placeholders": {
"local_storage": {
"content": "localStorage",
"example": "localStorage"
}
}
},
"opt_guide_lists_objects_params_text": {
"message": "The key/value pairs of all parameters (e.g. query $EXAMPLE_1$ contains $EXAMPLE_2$ and $EXAMPLE_3$)",
"description": "Description of the params variable on the Guide tab of the Options page under the Lists & Objects section.",
"placeholders": {
"example_1": {
"content": "foo=bar&fu=baz",
"example": "foo=bar&fu=baz"
},
"example_2": {
"content": "foo",
"example": "foo"
},
"example_3": {
"content": "fu",
"example": "fu"
}
}
},
"opt_guide_lists_objects_plugins_text": {
"message": "The names of all enabled browser plugins (e.g. $EXAMPLE$)",
"description": "Description of the plugins variable on the Guide tab of the Options page under the Lists & Objects section.",
"placeholders": {
"example": {
"content": "Shockwave Flash",
"example": "Shockwave Flash"
}
}
},
"opt_guide_lists_objects_popular_text": {
"message": "The properties of your most popular template (e.g. $EXAMPLE_1$, $EXAMPLE_2$, $EXAMPLE_3$ and many more)",
"description": "Description of the popular variable on the Guide tab of the Options page under the Lists & Objects section.",
"placeholders": {
"example_1": {
"content": "title",
"example": "title"
},
"example_2": {
"content": "content",
"example": "content"
},
"example_3": {
"content": "shortcut",
"example": "shortcut"
}
}
},
"opt_guide_lists_objects_scripts_text": {
"message": "The $O_ABBR_1$Uniform Resource Locator$O_ABBR_2$URL$C_ABBR$s of all external script used by the page",
"description": "Description of the scripts variable on the Guide tab of the Options page under the Lists & Objects section.",
"placeholders": {
"c_abbr": {
"content": "",
"example": ""
},
"o_abbr_1": {
"content": "",
"example": "\">"
}
}
},
"opt_guide_lists_objects_segments_text": {
"message": "The segments from the $O_ABBR_1$Uniform Resource Locator$O_ABBR_2$URL$C_ABBR$'s path",
"description": "Description of the segments variable on the Guide tab of the Options page under the Lists & Objects section.",
"placeholders": {
"c_abbr": {
"content": "",
"example": ""
},
"o_abbr_1": {
"content": "",
"example": "\">"
}
}
},
"opt_guide_lists_objects_selected_images_text": {
"message": "The $O_ABBR_1$Uniform Resource Locator$O_ABBR_2$URL$C_ABBR$s of all images within the current selection",
"description": "Description of the selectedImages variable on the Guide tab of the Options page under the Lists & Objects section.",
"placeholders": {
"c_abbr": {
"content": "",
"example": ""
},
"o_abbr_1": {
"content": "",
"example": "\">"
}
}
},
"opt_guide_lists_objects_selected_links_text": {
"message": "The $O_ABBR_1$Uniform Resource Locator$O_ABBR_2$URL$C_ABBR$s of all links within the current selection",
"description": "Description of the selectedLinks variable on the Guide tab of the Options page under the Lists & Objects section.",
"placeholders": {
"c_abbr": {
"content": "",
"example": ""
},
"o_abbr_1": {
"content": "",
"example": "\">"
}
}
},
"opt_guide_lists_objects_session_storage_text": {
"message": "The items stored in the $SESSION_STORAGE$ of the page",
"description": "Description of the sessionStorage variable on the Guide tab of the Options page under the Lists & Objects section.",
"placeholders": {
"session_storage": {
"content": "sessionStorage",
"example": "sessionStorage"
}
}
},
"opt_guide_lists_objects_style_sheets_text": {
"message": "The $O_ABBR_1$Uniform Resource Locator$O_ABBR_2$URL$C_ABBR$s of all external $O_ABBR_1$Cascading Style Sheets$O_ABBR_2$CSS$C_ABBR$ resources used by the page",
"description": "Description of the styleSheets variable on the Guide tab of the Options page under the Lists & Objects section.",
"placeholders": {
"c_abbr": {
"content": "",
"example": ""
},
"o_abbr_1": {
"content": "",
"example": "\">"
}
}
},
"opt_guide_lists_objects_tabs_text": {
"message": "The $O_ABBR_1$Uniform Resource Locator$O_ABBR_2$URL$C_ABBR$s of all tabs open in the current window",
"description": "Description of the tabs variable on the Guide tab of the Options page under the Lists & Objects section.",
"placeholders": {
"c_abbr": {
"content": "",
"example": ""
},
"o_abbr_1": {
"content": "",
"example": "\">"
}
}
},
"opt_guide_lists_objects_template_text": {
"message": "The properties of the activated template (e.g. $EXAMPLE_1$, $EXAMPLE_2$, $EXAMPLE_3$ and many more)",
"description": "Description of the template variable on the Guide tab of the Options page under the Lists & Objects section.",
"placeholders": {
"example_1": {
"content": "title",
"example": "title"
},
"example_2": {
"content": "image",
"example": "image"
},
"example_3": {
"content": "usage",
"example": "usage"
}
}
},
"opt_guide_lists_objects_text": {
"message": "$O_BOLD$Lists & Objects$C_BOLD$ are generally accessed using sections (including inverted) to iterate over and access properties respectively. However, simple tags can be used to output the contents of a list or the properties of an object in $O_ABBR_1$Comma-Separated Values$O_ABBR_2$CSV$C_ABBR$ format.",
"description": "Text for the Lists & Objects section on the Guide tab of the Options page.",
"placeholders": {
"c_abbr": {
"content": "",
"example": ""
},
"c_bold": {
"content": "",
"example": ""
},
"o_abbr_1": {
"content": "",
"example": "\">"
},
"o_bold": {
"content": "",
"example": ""
}
}
},
"opt_guide_name_header": {
"message": "Name",
"description": "Header for the Name column on the Guide tab of the Options page under all of the specific sections."
},
"opt_guide_new_text": {
"message": "New",
"description": "Label for new variables on the Guide tab of the Options page under all of the specific sections."
},
"opt_guide_notes_header": {
"message": "Notes",
"description": "Header for the Notes area on the Guide tab of the Options page under some sections."
},
"opt_guide_operations_capitalise_name": {
"message": "capitalise",
"description": "Name of the capitalise variable on the Guide tab of the Options page under the Operations section."
},
"opt_guide_operations_capitalise_text": {
"message": "Transform the text provided into title case",
"description": "Description of the capitalise variable on the Guide tab of the Options page under the Operations section."
},
"opt_guide_operations_cookie_text": {
"message": "Get the value for the cookie with the name provided",
"description": "Description of the cookie variable on the Guide tab of the Options page under the Operations section."
},
"opt_guide_operations_date_time_text_1": {
"message": "Format the current date & time using the pattern provided",
"description": "1st line of the description of the dateTime variable on the Guide tab of the Options page under the Operations section."
},
"opt_guide_operations_date_time_text_2": {
"message": "(see $O_LINK_PHP_DATE$$O_ABBR_1$Hypertext Preprocessor$O_ABBR_2$PHP$C_ABBR$s date$C_LINK$ for more details)",
"description": "2nd line of the description of the dateTime variable on the Guide tab of the Options page under the Operations section.",
"placeholders": {
"c_abbr": {
"content": "",
"example": ""
},
"c_link": {
"content": "",
"example": ""
},
"o_abbr_1": {
"content": "",
"example": "\">"
},
"o_link_php_date": {
"content": "",
"example": ""
}
}
},
"opt_guide_operations_decode_text": {
"message": "Decode the previously encoded text provided",
"description": "Description of the decode variable on the Guide tab of the Options page under the Operations section."
},
"opt_guide_operations_encode_text": {
"message": "Encode the text provided so that it can be safely used in a query string",
"description": "Description of the encode variable on the Guide tab of the Options page under the Operations section."
},
"opt_guide_operations_escape_text": {
"message": "Escape the text provided so that it can be safely inserted into $O_ABBR_1$HyperText Markup Language$O_ABBR_2$HTML$C_ABBR$",
"description": "Description of the escape variable on the Guide tab of the Options page under the Operations section.",
"placeholders": {
"c_abbr": {
"content": "",
"example": ""
},
"o_abbr_1": {
"content": "",
"example": "\">"
}
}
},
"opt_guide_operations_examples_code_1": {
"message": "$URL$",
"description": "Text for the 1st code block in the Examples area on the Guide tab of the Options page under the Operations section.",
"placeholders": {
"url": {
"content": "http://example.com/test/index.html?foo=bar&fu=baz",
"example": "http://example.com/test/index.html?foo=bar&fu=baz"
}
}
},
"opt_guide_operations_examples_code_2": {
"message": "Today is $SYNTAX$.",
"description": "Text for the 2nd code block in the Examples area on the Guide tab of the Options page under the Operations section.",
"placeholders": {
"syntax": {
"content": "{#dateTime}Y-m-d\\TH:i:sP{/dateTime}",
"example": "{#dateTime}Y-m-d\\TH:i:sP{/dateTime}"
}
}
},
"opt_guide_operations_examples_code_3": {
"message": "$URL$",
"description": "Text for the 3rd code block in the Examples area on the Guide tab of the Options page under the Operations section.",
"placeholders": {
"url": {
"content": "http://example.com/something.do?url={#encode}{url}{/encode}",
"example": "http://example.com/something.do?url={#encode}{url}{/encode}"
}
}
},
"opt_guide_operations_examples_code_4": {
"message": "$URL$",
"description": "Text for the 4th code block in the Examples area on the Guide tab of the Options page under the Operations section.",
"placeholders": {
"url": {
"content": "http://example.com/something.do?url=http%3A%2F%2Fexample.com%2Ftest%2Findex.html%3Ffoo%3Dbar%26fu%3Dbaz",
"example": "http://example.com/something.do?url=http%3A%2F%2Fexample.com%2Ftest%2Findex.html%3Ffoo%3Dbar%26fu%3Dbaz"
}
}
},
"opt_guide_operations_examples_code_5": {
"message": "I am currently viewing $SYNTAX$.",
"description": "Text for the 5th code block in the Examples area on the Guide tab of the Options page under the Operations section.",
"placeholders": {
"syntax": {
"content": ""{#segment}-1{/segment}"",
"example": "\"{#segment}-1{/segment}\""
}
}
},
"opt_guide_operations_examples_code_6": {
"message": "I am currently viewing $SYNTAX$.",
"description": "Text for the 6th code block in the Examples area on the Guide tab of the Options page under the Operations section.",
"placeholders": {
"syntax": {
"content": ""index.html"",
"example": "\"index.html\""
}
}
},
"opt_guide_operations_examples_code_7": {
"message": "The value of $PARAM$ is $SYNTAX_1$$PARAM$$SYNTAX_2$.",
"description": "Text for the 7th code block in the Examples area on the Guide tab of the Options page under the Operations section.",
"placeholders": {
"param": {
"content": "foo",
"example": "foo"
},
"syntax_1": {
"content": ""{#param}",
"example": "\"{#param}"
},
"syntax_2": {
"content": "{/param}"",
"example": "{/param}\""
}
}
},
"opt_guide_operations_examples_code_8": {
"message": "The value of $PARAM$ is $SYNTAX$.",
"description": "Text for the 8th code block in the Examples area on the Guide tab of the Options page under the Operations section.",
"placeholders": {
"param": {
"content": "foo",
"example": "foo"
},
"syntax": {
"content": ""bar"",
"example": "\"bar\""
}
}
},
"opt_guide_operations_examples_text_1": {
"message": "These examples will be using the following $O_ABBR_1$Uniform Resource Locator$O_ABBR_2$URL$C_ABBR$;",
"description": "Text for the 1st paragraph in the Examples area on the Guide tab of the Options page under the Operations section.",
"placeholders": {
"c_abbr": {
"content": "",
"example": ""
},
"o_abbr_1": {
"content": "",
"example": "\">"
}
}
},
"opt_guide_operations_examples_text_2": {
"message": "To output the current date & time in $O_LINK_ISO_8601$ISO 8601$C_LINK$ format you would use;",
"description": "Text for the 2nd paragraph in the Examples area on the Guide tab of the Options page under the Operations section.",
"placeholders": {
"c_link": {
"content": "",
"example": ""
},
"o_link_iso_8601": {
"content": "",
"example": ""
}
}
},
"opt_guide_operations_examples_text_3": {
"message": "Also, the $O_EMPH$c$C_EMPH$ parameter would also have the same outcome in this case. If you wanted to safely pass the whole $O_ABBR_1$Uniform Resource Locator$O_ABBR_2$URL$C_ABBR$ as a parameter in a query string;",
"description": "Text for the 3rd paragraph in the Examples area on the Guide tab of the Options page under the Operations section.",
"placeholders": {
"c_abbr": {
"content": "",
"example": ""
},
"c_emph": {
"content": "",
"example": ""
},
"o_abbr_1": {
"content": "",
"example": "\">"
},
"o_emph": {
"content": "",
"example": ""
}
}
},
"opt_guide_operations_examples_text_4": {
"message": "This escapes all of the necessary characters within $O_ABBR_1$Uniform Resource Locator$O_ABBR_2$URL$C_ABBR$ and outputs the following;",
"description": "Text for the 4th paragraph in the Examples area on the Guide tab of the Options page under the Operations section.",
"placeholders": {
"c_abbr": {
"content": "",
"example": ""
},
"o_abbr_1": {
"content": "",
"example": "\">"
}
}
},
"opt_guide_operations_examples_text_5": {
"message": "To access the last segment of the $O_ABBR_1$Uniform Resource Locator$O_ABBR_2$URL$C_ABBR$'s path;",
"description": "Text for the 5th paragraph in the Examples area on the Guide tab of the Options page under the Operations section.",
"placeholders": {
"c_abbr": {
"content": "",
"example": ""
},
"o_abbr_1": {
"content": "",
"example": "\">"
}
}
},
"opt_guide_operations_examples_text_6": {
"message": "Would render the following output;",
"description": "Text for the 6th paragraph in the Examples area on the Guide tab of the Options page under the Operations section."
},
"opt_guide_operations_examples_text_7": {
"message": "Accessing the value of the $PARAM$ parameter is as simple as the following;",
"description": "Text for the 7th paragraph in the Examples area on the Guide tab of the Options page under the Operations section.",
"placeholders": {
"param": {
"content": "foo",
"example": "foo"
}
}
},
"opt_guide_operations_examples_text_8": {
"message": "This would cause the following output to be rendered;",
"description": "Text for the 8th paragraph in the Examples area on the Guide tab of the Options page under the Operations section."
},
"opt_guide_operations_fparam_text": {
"message": "Get the value of the parameter provided from within the hash fragment",
"description": "Description of the fparam variable on the Guide tab of the Options page under the Operations section."
},
"opt_guide_operations_fsegment_text": {
"message": "Get the segment at the index provided from within the hash fragment",
"description": "Description of the fsegment variable on the Guide tab of the Options page under the Operations section."
},
"opt_guide_operations_header": {
"message": "Operations",
"description": "Header for the Operations section on the Guide tab of the Options page."
},
"opt_guide_operations_last_modified_text_1": {
"message": "Format the last modified date & time of the page using the pattern provided",
"description": "1st line of the description of the lastModified variable on the Guide tab of the Options page under the Operations section."
},
"opt_guide_operations_last_modified_text_2": {
"message": "(see $O_LINK_PHP_DATE$$O_ABBR_1$Hypertext Preprocessor$O_ABBR_2$PHP$C_ABBR$s date$C_LINK$ for more details)",
"description": "2nd line of the description of the lastModified variable on the Guide tab of the Options page under the Operations section.",
"placeholders": {
"c_abbr": {
"content": "",
"example": ""
},
"c_link": {
"content": "",
"example": ""
},
"o_abbr_1": {
"content": "",
"example": "\">"
},
"o_link_php_date": {
"content": "",
"example": ""
}
}
},
"opt_guide_operations_length_text": {
"message": "Get the character length of the text provided",
"description": "Description of the length variable on the Guide tab of the Options page under the Operations section."
},
"opt_guide_operations_lower_case_text": {
"message": "Transform the text provided into lower case",
"description": "Description of the lowerCase variable on the Guide tab of the Options page under the Operations section."
},
"opt_guide_operations_meta_text": {
"message": "Get the content of the page's meta information with the text provided",
"description": "Description of the meta variable on the Guide tab of the Options page under the Operations section."
},
"opt_guide_operations_notes_text_1": {
"message": "The following notes only apply to $SEGMENT_LABEL$ and $FSEGMENT_LABEL$ operations;",
"description": "1st paragraph for the Notes area on the Guide tab of the Options page under the Operations section.",
"placeholders": {
"fsegment_label": {
"content": "fsegment",
"example": "fsegment"
},
"segment_label": {
"content": "segment",
"example": "segment"
}
}
},
"opt_guide_operations_notes_text_2": {
"message": "The count is not zero-indexed like an array (e.g. $SYNTAX$ returns the first segment)",
"description": "Text for the 1st list item in the Notes area on the Guide tab of the Options page under the Operations section.",
"placeholders": {
"syntax": {
"content": "{#segment}1{/segment}",
"example": "{#segment}1{/segment}"
}
}
},
"opt_guide_operations_notes_text_3": {
"message": "The argument can be negative values, in which case it will count back from the end of the path rather than forwards from the start",
"description": "Text for the 2nd list item in the Notes area on the Guide tab of the Options page under the Operations section."
},
"opt_guide_operations_param_text": {
"message": "Get the value of the parameter provided",
"description": "Description of the param variable on the Guide tab of the Options page under the Operations section."
},
"opt_guide_operations_segment_text": {
"message": "Get the segment at the index provided",
"description": "Description of the segment variable on the Guide tab of the Options page under the Operations section."
},
"opt_guide_operations_select_all_html_text": {
"message": "Concatenate the $O_ABBR_1$HyperText Markup Language$O_ABBR_2$HTML$C_ABBR$ contents of all matching elements",
"description": "Description of the selectAllHTML variable on the Guide tab of the Options page under the Operations section.",
"placeholders": {
"c_abbr": {
"content": "",
"example": ""
},
"o_abbr_1": {
"content": "",
"example": "\">"
}
}
},
"opt_guide_operations_select_all_markdown_text": {
"message": "Concatenate the contents of all matching elements as $O_LINK_MARKDOWN$Markdown$C_LINK$",
"description": "Description of the selectAllMarkdown variable on the Guide tab of the Options page under the Operations section.",
"placeholders": {
"c_link": {
"content": "",
"example": ""
},
"o_link_markdown": {
"content": "",
"example": ""
}
}
},
"opt_guide_operations_select_all_text": {
"message": "Concatenate the text of all matching elements",
"description": "Description of the selectAll variable on the Guide tab of the Options page under the Operations section."
},
"opt_guide_operations_select_html_text": {
"message": "Get the $O_ABBR_1$HyperText Markup Language$O_ABBR_2$HTML$C_ABBR$ contents of the first matching element",
"description": "Description of the selectHTML variable on the Guide tab of the Options page under the Operations section.",
"placeholders": {
"c_abbr": {
"content": "",
"example": ""
},
"o_abbr_1": {
"content": "",
"example": "\">"
}
}
},
"opt_guide_operations_select_markdown_text": {
"message": "Get the contents of the first matching element as $O_LINK_MARKDOWN$Markdown$C_LINK$",
"description": "Description of the selectMarkdown variable on the Guide tab of the Options page under the Operations section.",
"placeholders": {
"c_link": {
"content": "",
"example": ""
},
"o_link_markdown": {
"content": "",
"example": ""
}
}
},
"opt_guide_operations_select_text": {
"message": "Get the text of first matching element",
"description": "Description of the select variable on the Guide tab of the Options page under the Operations section."
},
"opt_guide_operations_shorten_text": {
"message": "Shorten the $O_ABBR_1$Uniform Resource Locator$O_ABBR_2$URL$C_ABBR$ provided using the active $O_ABBR_1$Uniform Resource Locator$O_ABBR_2$URL$C_ABBR$ shortener",
"description": "Description of the shorten variable on the Guide tab of the Options page under the Operations section.",
"placeholders": {
"c_abbr": {
"content": "",
"example": ""
},
"o_abbr_1": {
"content": "",
"example": "\">"
}
}
},
"opt_guide_operations_text": {
"message": "$O_BOLD$Operations$C_BOLD$ are performed using sections, accepting its rendered contents as an argument.",
"description": "Text for the Operations section on the Guide tab of the Options page.",
"placeholders": {
"c_bold": {
"content": "",
"example": ""
},
"o_bold": {
"content": "",
"example": ""
}
}
},
"opt_guide_operations_tidy_text": {
"message": "Reduce all of the joined spaces and tabs into single spaces within the text provided before removing all leading and trailing whitespace",
"description": "Description of the tidy variable on the Guide tab of the Options page under the Operations section."
},
"opt_guide_operations_trim_text": {
"message": "Remove all leading and trailing whitespace from the text provided",
"description": "Description of the trim variable on the Guide tab of the Options page under the Operations section."
},
"opt_guide_operations_trim_left_text": {
"message": "Remove all leading whitespace from the text provided",
"description": "Description of the trimLeft variable on the Guide tab of the Options page under the Operations section."
},
"opt_guide_operations_trim_right_text": {
"message": "Remove all trailing whitespace from the text provided",
"description": "Description of the trimRight variable on the Guide tab of the Options page under the Operations section."
},
"opt_guide_operations_unescape_text": {
"message": "The opposite of $ESCAPE_LABEL$; Replace escaped characters in text provided with their unescaped counterparts",
"description": "Description of the unescape variable on the Guide tab of the Options page under the Operations section.",
"placeholders": {
"escape_label": {
"content": "escape",
"example": "escape"
}
}
},
"opt_guide_operations_upper_case_text": {
"message": "Transform the text provided into upper case",
"description": "Description of the upperCase variable on the Guide tab of the Options page under the Operations section."
},
"opt_guide_operations_word_count_text": {
"message": "Get the number of words in the text provided",
"description": "Description of the wordCount variable on the Guide tab of the Options page under the Operations section."
},
"opt_guide_operations_xpath_all_html_text": {
"message": "Concatenate the $O_ABBR_1$HyperText Markup Language$O_ABBR_2$HTML$C_ABBR$ contents of all results for the $O_LINK_XPATH$XPath$C_LINK$ expression",
"description": "Description of the xpathAllHTML variable on the Guide tab of the Options page under the Operations section.",
"placeholders": {
"c_abbr": {
"content": "",
"example": ""
},
"c_link": {
"content": "",
"example": ""
},
"o_abbr_1": {
"content": "",
"example": "\">"
},
"o_link_xpath": {
"content": "",
"example": ""
}
}
},
"opt_guide_operations_xpath_all_markdown_text": {
"message": "Concatenate the contents of all results for the $O_LINK_XPATH$XPath$C_LINK$ expression as $O_LINK_MARKDOWN$Markdown$C_LINK$",
"description": "Description of the xpathAllMarkdown variable on the Guide tab of the Options page under the Operations section.",
"placeholders": {
"c_link": {
"content": "",
"example": ""
},
"o_link_markdown": {
"content": "",
"example": ""
},
"o_link_xpath": {
"content": "",
"example": ""
}
}
},
"opt_guide_operations_xpath_all_text": {
"message": "Concatenate all results for the $O_LINK_XPATH$XPath$C_LINK$ expression",
"description": "Description of the xpathAll variable on the Guide tab of the Options page under the Operations section.",
"placeholders": {
"c_link": {
"content": "",
"example": ""
},
"o_link_xpath": {
"content": "",
"example": ""
}
}
},
"opt_guide_operations_xpath_html_text": {
"message": "Get the $O_ABBR_1$HyperText Markup Language$O_ABBR_2$HTML$C_ABBR$ contents of the first result for the $O_LINK_XPATH$XPath$C_LINK$ expression",
"description": "Description of the xpathHTML variable on the Guide tab of the Options page under the Operations section.",
"placeholders": {
"c_abbr": {
"content": "",
"example": ""
},
"c_link": {
"content": "",
"example": ""
},
"o_abbr_1": {
"content": "",
"example": "\">"
},
"o_link_xpath": {
"content": "",
"example": ""
}
}
},
"opt_guide_operations_xpath_markdown_text": {
"message": "Get the contents of the first result for the $O_LINK_XPATH$XPath$C_LINK$ expression as $O_LINK_MARKDOWN$Markdown$C_LINK$",
"description": "Description of the xpathMarkdown variable on the Guide tab of the Options page under the Operations section.",
"placeholders": {
"c_link": {
"content": "",
"example": ""
},
"o_link_markdown": {
"content": "",
"example": ""
},
"o_link_xpath": {
"content": "",
"example": ""
}
}
},
"opt_guide_operations_xpath_text": {
"message": "Get the first result for the $O_LINK_XPATH$XPath$C_LINK$ expression as text",
"description": "Description of the xpath variable on the Guide tab of the Options page under the Operations section.",
"placeholders": {
"c_link": {
"content": "",
"example": ""
},
"o_link_xpath": {
"content": "",
"example": ""
}
}
},
"opt_guide_options_header": {
"message": "Options",
"description": "Header for the Options section on the Guide tab of the Options page."
},
"opt_guide_options_bitly_account_text": {
"message": "Whether or not you are currently logged in to your $O_LINK_BITLY$bit.ly$C_LINK$ account",
"description": "Description of the bitlyAccount variable on the Guide tab of the Options page under the Options section.",
"placeholders": {
"c_link": {
"content": "",
"example": ""
},
"o_link_bitly": {
"content": "",
"example": ""
}
}
},
"opt_guide_options_bitly_text": {
"message": "Whether or not $O_LINK_BITLY$bit.ly$C_LINK$ is the enabled $O_ABBR_1$Uniform Resource Locator$O_ABBR_2$URL$C_ABBR$ shortener",
"description": "Description of the bitly variable on the Guide tab of the Options page under the Options section.",
"placeholders": {
"c_abbr": {
"content": "",
"example": ""
},
"c_link": {
"content": "",
"example": ""
},
"o_abbr_1": {
"content": "",
"example": "\">"
},
"o_link_bitly": {
"content": "",
"example": ""
}
}
},
"opt_guide_options_examples_code_1": {
"message": "$URL$",
"description": "Text for the 1st code block in the Examples area on the Guide tab of the Options page under the Options section.",
"placeholders": {
"url": {
"content": "http://example.com/test/index.html",
"example": "http://example.com/test/index.html"
}
}
},
"opt_guide_options_examples_code_2": {
"message": "$SYNTAX_1$This is a test!$SYNTAX_2$",
"description": "Text for the 2nd code block in the Examples area on the Guide tab of the Options page under the Options section.",
"placeholders": {
"syntax_1": {
"content": "<a href="{url}"{#linksTitle} title="{{title}}"{/linksTitle}>",
"example": ""
},
"syntax_2": {
"content": "</a>",
"example": ""
}
}
},
"opt_guide_options_examples_code_3": {
"message": "$SYNTAX_1$Test$SYNTAX_2$This is a test!$SYNTAX_3$",
"description": "Text for the 3rd code block in the Examples area on the Guide tab of the Options page under the Options section.",
"placeholders": {
"syntax_1": {
"content": "<a href="http://example.com/test/index.html" title="",
"example": ""
},
"syntax_3": {
"content": "</a>",
"example": ""
}
}
},
"opt_guide_options_examples_code_4": {
"message": "$SYNTAX_1$This is a test!$SYNTAX_2$",
"description": "Text for the 4th code block in the Examples area on the Guide tab of the Options page under the Options section.",
"placeholders": {
"syntax_1": {
"content": "<a href="http://example.com/test/index.html">",
"example": ""
},
"syntax_2": {
"content": "</a>",
"example": ""
}
}
},
"opt_guide_options_examples_text_1": {
"message": "These examples will be using the following $O_ABBR_1$Uniform Resource Locator$O_ABBR_2$URL$C_ABBR$;",
"description": "Text for the 1st paragraph in the Examples area on the Guide tab of the Options page under the Options section.",
"placeholders": {
"c_abbr": {
"content": "",
"example": ""
},
"o_abbr_1": {
"content": "",
"example": "\">"
}
}
},
"opt_guide_options_examples_text_2": {
"message": "To include the $SYNTAX$ attribute in an anchor tag only if you have enabled the corresponding option;",
"description": "Text for the 2nd paragraph in the Examples area on the Guide tab of the Options page under the Options section.",
"placeholders": {
"syntax": {
"content": "title",
"example": "title"
}
}
},
"opt_guide_options_examples_text_3": {
"message": "This would output the following if you've enabled the option;",
"description": "Text for the 3rd paragraph in the Examples area on the Guide tab of the Options page under the Options section."
},
"opt_guide_options_examples_text_4": {
"message": "However, if you have disabled the option it will output this;",
"description": "Text for the 4th paragraph in the Examples area on the Guide tab of the Options page under the Options section."
},
"opt_guide_options_googl_account_text": {
"message": "Whether or not you are currently logged in to your $O_LINK_GOOGL$goo.gl$C_LINK$ account",
"description": "Description of the googlAccount variable on the Guide tab of the Options page under the Options section.",
"placeholders": {
"c_link": {
"content": "",
"example": ""
},
"o_link_googl": {
"content": "",
"example": ""
}
}
},
"opt_guide_options_googl_text": {
"message": "Whether or not $O_LINK_GOOGL$goo.gl$C_LINK$ is the enabled $O_ABBR_1$Uniform Resource Locator$O_ABBR_2$URL$C_ABBR$ shortener",
"description": "Description of the googl variable on the Guide tab of the Options page under the Options section.",
"placeholders": {
"c_abbr": {
"content": "",
"example": ""
},
"c_link": {
"content": "",
"example": ""
},
"o_abbr_1": {
"content": "",
"example": "\">"
},
"o_link_googl": {
"content": "",
"example": ""
}
}
},
"opt_guide_options_links_target_text": {
"message": "Whether or not the option to render links with instructions to open them in a new tab/window is enabled",
"description": "Description of the linksTarget variable on the Guide tab of the Options page under the Options section."
},
"opt_guide_options_links_title_text": {
"message": "Whether or not the option to render links with hover text is enabled",
"description": "Description of the linksTitle variable on the Guide tab of the Options page under the Options section."
},
"opt_guide_options_markdown_inline_text": {
"message": "Whether or not the option to render $O_LINK_MARKDOWN$Markdown$C_LINK$ links using the inline style is enabled",
"description": "Description of the markdownInline variable on the Guide tab of the Options page under the Options section.",
"placeholders": {
"c_link": {
"content": "",
"example": ""
},
"o_link_markdown": {
"content": "",
"example": ""
}
}
},
"opt_guide_options_menu_text": {
"message": "Whether or not the option to show the context (right-click) menu is enabled",
"description": "Description of the menu variable on the Guide tab of the Options page under the Options section."
},
"opt_guide_options_menu_options_text": {
"message": "Whether or not the $O_EMPH$Options$C_EMPH$ item is displayed at the bottom of the context (right-click) menu",
"description": "Description of the menuOptions variable on the Guide tab of the Options page under the Options section.",
"placeholders": {
"c_emph": {
"content": "",
"example": ""
},
"o_emph": {
"content": "",
"example": ""
}
}
},
"opt_guide_options_menu_paste_text": {
"message": "Whether or not the Template output is automatically pasted into the field where the context (right-click) menu was activated",
"description": "Description of the menuPaste variable on the Guide tab of the Options page under the Options section."
},
"opt_guide_options_notifications_text": {
"message": "Whether or not the option to show desktop notifications is enabled",
"description": "Description of the notifications variable on the Guide tab of the Options page under the Options section."
},
"opt_guide_options_shortcuts_paste_text": {
"message": "Whether or not the Template output is automatically pasted into the field where the keyboard shortcut was detected",
"description": "Description of the shortcutsPaste variable on the Guide tab of the Options page under the Options section."
},
"opt_guide_options_shortcuts_text": {
"message": "Whether or not the option to allow keyboard shortcuts is enabled",
"description": "Description of the shortcuts variable on the Guide tab of the Options page under the Options section."
},
"opt_guide_options_text": {
"message": "$O_BOLD$Options$C_BOLD$ are variables that represent your current $O_BOLD$Template$C_BOLD$ settings and are generally accessed in the same way as standard variables.",
"description": "Text for the Options section on the Guide tab of the Options page.",
"placeholders": {
"c_bold": {
"content": "",
"example": ""
},
"o_bold": {
"content": "",
"example": ""
}
}
},
"opt_guide_options_toolbar_close_text": {
"message": "Whether or not the popup is closed immediately after a template is selected",
"description": "Description of the toolbarClose variable on the Guide tab of the Options page under the Options section."
},
"opt_guide_options_toolbar_key_text": {
"message": "The unique key of the template activated when the toolbar button is clicked",
"description": "Description of the toolbarKey variable on the Guide tab of the Options page under the Options section."
},
"opt_guide_options_toolbar_options_text": {
"message": "Whether or not the $O_EMPH$Options$C_EMPH$ link is displayed at the bottom of the popup",
"description": "Description of the toolbarOptions variable on the Guide tab of the Options page under the Options section.",
"placeholders": {
"c_emph": {
"content": "",
"example": ""
},
"o_emph": {
"content": "",
"example": ""
}
}
},
"opt_guide_options_toolbar_popup_text": {
"message": "Whether or not the popup is shown when the toolbar button is clicked",
"description": "Description of the toolbarPopup variable on the Guide tab of the Options page under the Options section."
},
"opt_guide_options_yourls_authentication_text": {
"message": "The authentication used for the $O_LINK_YOURLS$YOURLS$C_LINK$ service (e.g. $EXAMPLE_1$, $EXAMPLE_2$, or nothing if $EXAMPLE_3$)",
"description": "Description of the yourlsAuthentication variable on the Guide tab of the Options page under the Options section.",
"placeholders": {
"c_link": {
"content": "",
"example": ""
},
"example_1": {
"content": "advanced",
"example": "advanced"
},
"example_2": {
"content": "basic",
"example": "basic"
},
"example_3": {
"content": "none",
"example": "none"
},
"o_link_yourls": {
"content": "",
"example": ""
}
}
},
"opt_guide_options_yourls_password_text": {
"message": "The password for the $O_LINK_YOURLS$YOURLS$C_LINK$ service",
"description": "Description of the yourlsPassword variable on the Guide tab of the Options page under the Options section.",
"placeholders": {
"c_link": {
"content": "",
"example": ""
},
"o_link_yourls": {
"content": "",
"example": ""
}
}
},
"opt_guide_options_yourls_signature_text": {
"message": "The signature for the $O_LINK_YOURLS$YOURLS$C_LINK$ service (e.g. $EXAMPLE$)",
"description": "Description of the yourlsSignature variable on the Guide tab of the Options page under the Options section.",
"placeholders": {
"c_link": {
"content": "",
"example": ""
},
"example": {
"content": "3002a61584",
"example": "3002a61584"
},
"o_link_yourls": {
"content": "",
"example": ""
}
}
},
"opt_guide_options_yourls_text": {
"message": "Whether or not $O_LINK_YOURLS$YOURLS$C_LINK$ is the enabled $O_ABBR_1$Uniform Resource Locator$O_ABBR_2$URL$C_ABBR$ shortener",
"description": "Description of the yourls variable on the Guide tab of the Options page under the Options section.",
"placeholders": {
"c_abbr": {
"content": "",
"example": ""
},
"c_link": {
"content": "",
"example": ""
},
"o_abbr_1": {
"content": "",
"example": "\">"
},
"o_link_yourls": {
"content": "",
"example": ""
}
}
},
"opt_guide_options_yourls_url_text": {
"message": "The $O_ABBR_1$Uniform Resource Locator$O_ABBR_2$URL$C_ABBR$ of the $O_LINK_YOURLS$YOURLS$C_LINK$ service (e.g. $EXAMPLE$)",
"description": "Description of the yourlsUrl variable on the Guide tab of the Options page under the Options section.",
"placeholders": {
"c_abbr": {
"content": "",
"example": ""
},
"c_link": {
"content": "",
"example": ""
},
"example": {
"content": "http://example.com/yourls-api.php",
"example": "http://example.com/yourls-api.php"
},
"o_abbr_1": {
"content": "",
"example": "\">"
},
"o_link_yourls": {
"content": "",
"example": ""
}
}
},
"opt_guide_options_yourls_username_text": {
"message": "The username for the $O_LINK_YOURLS$YOURLS$C_LINK$ service",
"description": "Description of the yourlsUsername variable on the Guide tab of the Options page under the Options section.",
"placeholders": {
"c_link": {
"content": "",
"example": ""
},
"o_link_yourls": {
"content": "",
"example": ""
}
}
},
"opt_guide_standard_author_text": {
"message": "The author from the page's meta information",
"description": "Description of the author variable on the Guide tab of the Options page under the Standard section."
},
"opt_guide_standard_base_text": {
"message": "The base domain (e.g. $EXAMPLE$)",
"description": "Description of the base variable on the Guide tab of the Options page under the Standard section.",
"placeholders": {
"example": {
"content": "https://www.example.com:443",
"example": "https://www.example.com:443"
}
}
},
"opt_guide_standard_browser_text": {
"message": "The name of the browser (i.e. $O_EMPH$Chrome$C_EMPH$)",
"description": "Description of the browser variable on the Guide tab of the Options page under the Standard section.",
"placeholders": {
"c_emph": {
"content": "",
"example": ""
},
"o_emph": {
"content": "",
"example": ""
}
}
},
"opt_guide_standard_browser_version_text": {
"message": "The current version of the browser (e.g. $EXAMPLE$)",
"description": "Description of the browserVersion variable on the Guide tab of the Options page under the Standard section.",
"placeholders": {
"example": {
"content": "16.0.912.77",
"example": "16.0.912.77"
}
}
},
"opt_guide_standard_character_set_text": {
"message": "The $O_LINK_CHAR_SET$character set$C_LINK$ used by the page (e.g. $EXAMPLE$)",
"description": "Description of the characterSet variable on the Guide tab of the Options page under the Standard section.",
"placeholders": {
"c_link": {
"content": "",
"example": ""
},
"example": {
"content": "UTF-8",
"example": "UTF-8"
},
"o_link_char_set": {
"content": "",
"example": ""
}
}
},
"opt_guide_standard_cookies_enabled_text": {
"message": "Whether or not cookies are enabled",
"description": "Description of the cookiesEnabled variable on the Guide tab of the Options page under the Standard section."
},
"opt_guide_standard_count_text": {
"message": "The total number of templates",
"description": "Description of the count variable on the Guide tab of the Options page under the Standard section."
},
"opt_guide_standard_custom_count_text": {
"message": "The total number of user-defined templates",
"description": "Description of the customCount variable on the Guide tab of the Options page under the Standard section."
},
"opt_guide_standard_date_time_text": {
"message": "The current date & time in $O_LINK_RFC_2822$RFC 2822$C_LINK$ format",
"description": "Description of the dateTime variable on the Guide tab of the Options page under the Standard section.",
"placeholders": {
"c_link": {
"content": "",
"example": ""
},
"o_link_rfc_2822": {
"content": "",
"example": ""
}
}
},
"opt_guide_standard_depth_text": {
"message": "The colour depth in bits (e.g. $EXAMPLE$)",
"description": "Description of the depth variable on the Guide tab of the Options page under the Standard section.",
"placeholders": {
"example": {
"content": "24",
"example": "24"
}
}
},
"opt_guide_standard_description_text": {
"message": "The description from the page's meta information",
"description": "Description of the description variable on the Guide tab of the Options page under the Standard section."
},
"opt_guide_standard_directory_text": {
"message": "The directory part of the path (e.g. $EXAMPLE$)",
"description": "Description of the directory variable on the Guide tab of the Options page under the Standard section.",
"placeholders": {
"example": {
"content": "/folder/dir/",
"example": "/folder/dir/"
}
}
},
"opt_guide_standard_examples_code_1": {
"message": "$URL$",
"description": "Text for the 1st code block in the Examples area on the Guide tab of the Options page under the Standard section.",
"placeholders": {
"url": {
"content": "http://example.com/test/index.html",
"example": "http://example.com/test/index.html"
}
}
},
"opt_guide_standard_examples_code_2": {
"message": "Title:\n$SYNTAX_1$\nDescription:\n$SYNTAX_2$\n$SYNTAX_3$N/A$SYNTAX_4$",
"description": "Text for the 2nd code block in the Examples area on the Guide tab of the Options page under the Standard section.",
"placeholders": {
"syntax_1": {
"content": "{title}",
"example": "{title}"
},
"syntax_2": {
"content": "{#description}{description}{/description}",
"example": "{#description}{description}{/description}"
},
"syntax_3": {
"content": "{^description}",
"example": "{^description}"
},
"syntax_4": {
"content": "{/description}",
"example": "{/description}"
}
}
},
"opt_guide_standard_examples_code_3": {
"message": "Title:\nTest\nDescription:\nThis is a test!",
"description": "Text for the 3rd code block in the Examples area on the Guide tab of the Options page under the Standard section."
},
"opt_guide_standard_examples_code_4": {
"message": "Title:\nTest\nDescription:\nN/A",
"description": "Text for the 4th code block in the Examples area on the Guide tab of the Options page under the Standard section."
},
"opt_guide_standard_examples_text_1": {
"message": "These examples will be using the following $O_ABBR_1$Uniform Resource Locator$O_ABBR_2$URL$C_ABBR$;",
"description": "Text for the 1st paragraph in the Examples area on the Guide tab of the Options page under the Standard section.",
"placeholders": {
"c_abbr": {
"content": "",
"example": ""
},
"o_abbr_1": {
"content": "",
"example": "\">"
}
}
},
"opt_guide_standard_examples_text_2": {
"message": "A great of example of using standard variables is showing the title of the current page along with its meta description, where possible;",
"description": "Text for the 2nd paragraph in the Examples area on the Guide tab of the Options page under the Standard section."
},
"opt_guide_standard_examples_text_3": {
"message": "If the page contains a meta description this would output something like this;",
"description": "Text for the 3rd paragraph in the Examples area on the Guide tab of the Options page under the Standard section."
},
"opt_guide_standard_examples_text_4": {
"message": "Otherwise, you can expect to the see the following;",
"description": "Text for the 4th paragraph in the Examples area on the Guide tab of the Options page under the Standard section."
},
"opt_guide_standard_favicon_text": {
"message": "The whole $O_ABBR_1$Uniform Resource Locator$O_ABBR_2$URL$C_ABBR$ of the page's favicon",
"description": "Description of the favicon variable on the Guide tab of the Options page under the Standard section.",
"placeholders": {
"c_abbr": {
"content": "",
"example": ""
},
"o_abbr_1": {
"content": "",
"example": "\">"
}
}
},
"opt_guide_standard_file_text": {
"message": "The basename of the file (e.g. $EXAMPLE$)",
"description": "Description of the file variable on the Guide tab of the Options page under the Standard section.",
"placeholders": {
"example": {
"content": "index.html",
"example": "index.html"
}
}
},
"opt_guide_standard_fragment_anchor_text": {
"message": "The entire string after the hash (#) symbol",
"description": "Description of the fragment and anchor variables on the Guide tab of the Options page under the Standard section."
},
"opt_guide_standard_header": {
"message": "Standard",
"description": "Header for the Standard section on the Guide tab of the Options page."
},
"opt_guide_standard_host_text": {
"message": "For example; $EXAMPLE_1$, $EXAMPLE_2$",
"description": "Description of the host variable on the Guide tab of the Options page under the Standard section.",
"placeholders": {
"example_1": {
"content": "www.example.com",
"example": "www.example.com"
},
"example_2": {
"content": "localhost",
"example": "localhost"
}
}
},
"opt_guide_standard_html_text": {
"message": "The entire $O_ABBR_1$HyperText Markup Language$O_ABBR_2$HTML$C_ABBR$ contents of the page",
"description": "Description of the html variable on the Guide tab of the Options page under the Standard section.",
"placeholders": {
"c_abbr": {
"content": "",
"example": ""
},
"o_abbr_1": {
"content": "",
"example": "\">"
}
}
},
"opt_guide_standard_java_text": {
"message": "Whether or not $O_LINK_JAVA$Java$C_LINK$ is enabled",
"description": "Description of the java variable on the Guide tab of the Options page under the Standard section.",
"placeholders": {
"c_link": {
"content": "",
"example": ""
},
"o_link_java": {
"content": "",
"example": ""
}
}
},
"opt_guide_standard_last_modified_text": {
"message": "The last modified date & time of the page in $O_LINK_RFC_2822$RFC 2822$C_LINK$ format",
"description": "Description of the lastModified variable on the Guide tab of the Options page under the Standard section.",
"placeholders": {
"c_link": {
"content": "",
"example": ""
},
"o_link_rfc_2822": {
"content": "",
"example": ""
}
}
},
"opt_guide_standard_link_html_text": {
"message": "The $O_ABBR_1$Hypertext Markup Language$O_ABBR_2$HTML$C_ABBR$ behind the contextual (right-clicked) link",
"description": "Description of the linkHTML variable on the Guide tab of the Options page under the Standard section.",
"placeholders": {
"c_abbr": {
"content": "",
"example": ""
},
"o_abbr_1": {
"content": "",
"example": "\">"
}
}
},
"opt_guide_standard_link_markdown_text": {
"message": "The contents of the contextual (right-clicked) link formatted as $O_LINK_MARKDOWN$Markdown$C_LINK$",
"description": "Description of the linkMarkdown variable on the Guide tab of the Options page under the Standard section.",
"placeholders": {
"c_link": {
"content": "",
"example": ""
},
"o_link_markdown": {
"content": "",
"example": ""
}
}
},
"opt_guide_standard_link_text_text": {
"message": "The contextual (right-clicked) link text",
"description": "Description of the linkText variable on the Guide tab of the Options page under the Standard section."
},
"opt_guide_standard_locale_text": {
"message": "The $O_LINK_ISO_639$ISO 639$C_LINK$ code for the detected page language",
"description": "Description of the locale variable on the Guide tab of the Options page under the Standard section.",
"placeholders": {
"c_link": {
"content": "",
"example": ""
},
"o_link_iso_639": {
"content": "",
"example": ""
}
}
},
"opt_guide_standard_markdown_text": {
"message": "The entire contents of the page as $O_LINK_MARKDOWN$Markdown$C_LINK$",
"description": "Description of the markdown variable on the Guide tab of the Options page under the Standard section.",
"placeholders": {
"c_link": {
"content": "",
"example": ""
},
"o_link_markdown": {
"content": "",
"example": ""
}
}
},
"opt_guide_standard_offline_text": {
"message": "Whether or not you are currently offline",
"description": "Description of the offline variable on the Guide tab of the Options page under the Standard section."
},
"opt_guide_standard_original_title_text": {
"message": "The original title of the page (may be different than $TITLE_LABEL$ if a supported extension was detected and the value of $TITLE_LABEL$ was extracted from this)",
"description": "Description of the originalTitle variable on the Guide tab of the Options page under the Standard section.",
"placeholders": {
"title_label": {
"content": "title",
"example": "title"
}
}
},
"opt_guide_standard_original_url_text": {
"message": "The original whole $O_ABBR_1$Uniform Resource Locator$O_ABBR_2$URL$C_ABBR$ being parsed (may be different than $URL_LABEL$ if a supported extension was detected and the value of $URL_LABEL$ was extracted from this)",
"description": "Description of the originalUrl variable on the Guide tab of the Options page under the Standard section.",
"placeholders": {
"c_abbr": {
"content": "",
"example": ""
},
"o_abbr_1": {
"content": "",
"example": "\">"
},
"url_label": {
"content": "url",
"example": "url"
}
}
},
"opt_guide_standard_os_text": {
"message": "The family of your operating system (i.e. $O_EMPH$Windows$C_EMPH$, $O_EMPH$Mac$C_EMPH$, $O_EMPH$Linux$C_EMPH$)",
"description": "Description of the os variable on the Guide tab of the Options page under the Standard section.",
"placeholders": {
"c_emph": {
"content": "",
"example": ""
},
"o_emph": {
"content": "",
"example": ""
}
}
},
"opt_guide_standard_page_height_text": {
"message": "The height of the page",
"description": "Description of the pageHeight variable on the Guide tab of the Options page under the Standard section."
},
"opt_guide_standard_page_width_text": {
"message": "The width of the page",
"description": "Description of the pageWidth variable on the Guide tab of the Options page under the Standard section."
},
"opt_guide_standard_path_text": {
"message": "The path to the file (e.g. $EXAMPLE$)",
"description": "Description of the path variable on the Guide tab of the Options page under the Standard section.",
"placeholders": {
"example": {
"content": "/folder/dir/index.html",
"example": "/folder/dir/index.html"
}
}
},
"opt_guide_standard_port_text": {
"message": "For example; $EXAMPLE_1$, $EXAMPLE_2$",
"description": "Description of the port variable on the Guide tab of the Options page under the Standard section.",
"placeholders": {
"example_1": {
"content": "80",
"example": "80"
},
"example_2": {
"content": "443",
"example": "443"
}
}
},
"opt_guide_standard_protocol_text": {
"message": "For example; $EXAMPLE_1$, $EXAMPLE_2$, $EXAMPLE_3$",
"description": "Description of the protocol variable on the Guide tab of the Options page under the Standard section.",
"placeholders": {
"example_1": {
"content": "http",
"example": "http"
},
"example_2": {
"content": "https",
"example": "https"
},
"example_3": {
"content": "file",
"example": "file"
}
}
},
"opt_guide_standard_query_text": {
"message": "The entire query string if it exists (e.g. $EXAMPLE$)",
"description": "Description of the query variable on the Guide tab of the Options page under the Standard section.",
"placeholders": {
"example": {
"content": "item=value&item2=value2",
"example": "item=value&item2=value2"
}
}
},
"opt_guide_standard_referrer_text": {
"message": "The $O_ABBR_1$Uniform Resource Locator$O_ABBR_2$URL$C_ABBR$ of the referring page",
"description": "Description of the referrer variable on the Guide tab of the Options page under the Standard section.",
"placeholders": {
"c_abbr": {
"content": "",
"example": ""
},
"o_abbr_1": {
"content": "",
"example": "\">"
}
}
},
"opt_guide_standard_relative_text": {
"message": "The relative path to the file including the query string (e.g. $EXAMPLE$)",
"description": "Description of the relative variable on the Guide tab of the Options page under the Standard section.",
"placeholders": {
"example": {
"content": "/folder/dir/index.html?item=value",
"example": "/folder/dir/index.html?item=value"
}
}
},
"opt_guide_standard_screen_height_text": {
"message": "The height of the screen",
"description": "Description of the screenHeight variable on the Guide tab of the Options page under the Standard section."
},
"opt_guide_standard_screen_width_text": {
"message": "The width of the screen",
"description": "Description of the screenWidth variable on the Guide tab of the Options page under the Standard section."
},
"opt_guide_standard_selection_html_text": {
"message": "The $O_ABBR_1$Hypertext Markup Language$O_ABBR_2$HTML$C_ABBR$ behind the current selection",
"description": "Description of the selectionHTML variable on the Guide tab of the Options page under the Standard section.",
"placeholders": {
"c_abbr": {
"content": "",
"example": ""
},
"o_abbr_1": {
"content": "",
"example": "\">"
}
}
},
"opt_guide_standard_selection_markdown_text": {
"message": "The current selection formatted as $O_LINK_MARKDOWN$Markdown$C_LINK$",
"description": "Description of the selectionMarkdown variable on the Guide tab of the Options page under the Standard section.",
"placeholders": {
"c_link": {
"content": "",
"example": ""
},
"o_link_markdown": {
"content": "",
"example": ""
}
}
},
"opt_guide_standard_selection_text": {
"message": "The currently selected text",
"description": "Description of the selection variable on the Guide tab of the Options page under the Standard section."
},
"opt_guide_standard_text": {
"message": "$O_BOLD$Standard$c_BOLD$ variables are generally accessed using simple tags. However, sections (including inverted) can also be used to add conditions.",
"description": "Text for the Standard section on the Guide tab of the Options page.",
"placeholders": {
"c_bold": {
"content": "",
"example": ""
},
"o_bold": {
"content": "",
"example": ""
}
}
},
"opt_guide_standard_text_text": {
"message": "The entire text of the page",
"description": "Description of the text variable on the Guide tab of the Options page under the Standard section."
},
"opt_guide_standard_title_text": {
"message": "The title of the page or $URL_LABEL$ if the title could not be detected (e.g. page had not finished loading)",
"description": "Description of the title variable on the Guide tab of the Options page under the Standard section.",
"placeholders": {
"url_label": {
"content": "url",
"example": "url"
}
}
},
"opt_guide_standard_url_text": {
"message": "The whole $O_ABBR_1$Uniform Resource Locator$O_ABBR_2$URL$C_ABBR$ being parsed",
"description": "Description of the url variable on the Guide tab of the Options page under the Standard section.",
"placeholders": {
"c_abbr": {
"content": "",
"example": ""
},
"o_abbr_1": {
"content": "",
"example": "\">"
}
}
},
"opt_guide_standard_version_text": {
"message": "The installed version of $O_BOLD$Template$C_BOLD$ (i.e. $VERSION$)",
"description": "Description of the version variable on the Guide tab of the Options page under the Standard section.",
"placeholders": {
"c_bold": {
"content": "",
"example": ""
},
"o_bold": {
"content": "",
"example": ""
},
"version": {
"content": "$1",
"example": "1.0.0"
}
}
},
"opt_guide_type_header": {
"message": "Type",
"description": "Header for the Type column on the Guide tab of the Options page under the Lists & Objects section."
},
"opt_guide_type_list_text": {
"message": "List",
"description": "Text displayed for lists in the Type column on the Guide tab of the Options page under the Lists & Objects section."
},
"opt_guide_type_object_text": {
"message": "Object",
"description": "Text displayed for objects in the Type column on the Guide tab of the Options page under the Lists & Objects section."
},
"opt_import_button_text": {
"message": "$ICON$ Import",
"description": "Text for the Import button on the Templates tab of the Options page.",
"placeholders": {
"icon": {
"content": "",
"example": ""
}
}
},
"opt_import_button_title": {
"message": "Import templates into your browser",
"description": "Hover text for the Import button on the Templates tab of the Options page."
},
"opt_import_wizard_header": {
"message": "Import",
"description": "Header for the Import dialog."
},
"opt_import_wizard_import_button": {
"message": "Import",
"description": "Text for the Import button in the Import dialog."
},
"opt_import_wizard_paste_alt_button": {
"message": "Pasted!",
"description": "Text for the Paste button in the Import dialog. This is used for a short duration after the user clicks the button."
},
"opt_import_wizard_paste_button": {
"message": "Paste",
"description": "Text for the Paste button in the Import dialog."
},
"opt_import_wizard_stage_1_text": {
"message": "Paste or upload the template data.",
"description": "Text for the initial step of the Import dialog."
},
"opt_import_wizard_stage_2_text_1": {
"message": "valid template(s) were found.",
"description": "1st paragraph for the final successful step of the Import dialog."
},
"opt_import_wizard_stage_2_text_2": {
"message": "Select those to be imported;",
"description": "2nd paragraph for the final successful step of the Import dialog."
},
"opt_links_header": {
"message": "Links",
"description": "Header for the Links section."
},
"opt_links_target_label": {
"message": "New Tab/Window",
"description": "Label for the New Tab/Window field."
},
"opt_links_target_text": {
"message": "Links open in a new browser tab/window when clicked",
"description": "Text for the New Tab/Window field."
},
"opt_links_text": {
"message": "This section refers to links that are rendered by the templates. These options only apply to templates that implement logic using the corresponding template options (see the $O_LINK_GUIDE$Guide$C_LINK$ for more information) and not all markup languages support the functionality that these options represent.",
"description": "Text for the Links section.",
"placeholders": {
"c_link": {
"content": "",
"example": ""
},
"o_link_guide": {
"content": "",
"example": ""
}
}
},
"opt_links_title_label": {
"message": "Hover Text",
"description": "Label for the Hover Text field."
},
"opt_links_title_text": {
"message": "Links show the contextual title when hovered over",
"description": "Text for the Hover Text field."
},
"opt_logger_enabled_label": {
"message": "Enabled",
"description": "Label for the Enabled field in the Developer Tools dialog on the Options page under the Logging section."
},
"opt_logger_enabled_text": {
"message": "Output logs to the JavaScript console",
"description": "Text for the Enabled field in the Developer Tools dialog on the Options page under the Logging section."
},
"opt_logger_header": {
"message": "Logging",
"description": "Header for the Logging section in the Developer Tools dialog on the Options page."
},
"opt_logger_help": {
"message": "$O_PARA$Follow these steps if you would like to view the logs;$C_PARA$$O_LIST$$O_ITEM$Bring up the extensions management page by clicking the wrench icon and choosing $O_BOLD$Tools > Extensions$C_BOLD$$C_ITEM$$O_ITEM$Ensure $O_BOLD$Developer mode$C_BOLD$ is checked in the top right of the page$C_ITEM$$O_ITEM$Expand the listing for $O_BOLD$Template$C_BOLD$ and click the $FILE$ link$C_ITEM$$O_ITEM$Select the $O_BOLD$Console$C_BOLD$ tab in the new $O_BOLD$Developer Tools$C_BOLD$ window$C_ITEM$$C_LIST$",
"description": "Help text for the Logging section in the Developer Tools dialog on the Options page.",
"placeholders": {
"c_bold": {
"content": "",
"example": ""
},
"c_item": {
"content": "",
"example": ""
},
"c_list": {
"content": "",
"example": ""
},
"c_para": {
"content": "",
"example": ""
},
"file": {
"content": "pages/background.html",
"example": "pages/background.html"
},
"o_bold": {
"content": "",
"example": ""
},
"o_item": {
"content": "", "example": "
" } } }, "opt_logger_help_label": { "message": "How can I view the logs?", "description": "Help label for the Logging section in the Developer Tools dialog on the Options page." }, "opt_logger_level_debug_text": { "message": "Debug", "description": "Text for the Debug option for the Level field in the Developer Tools dialog on the Options page under the Logging section." }, "opt_logger_level_error_text": { "message": "Error (Highest)", "description": "Text for the Error option for the Level field in the Developer Tools dialog on the Options page under the Logging section." }, "opt_logger_level_information_text": { "message": "Information", "description": "Text for the Information option for the Level field in the Developer Tools dialog on the Options page under the Logging section." }, "opt_logger_level_label": { "message": "Level", "description": "Label for the Level field in the Developer Tools dialog on the Options page under the Logging section." }, "opt_logger_level_sub_text": { "message": "Only logs at this level or above will be shown", "description": "Help text for the Level field in the Developer Tools dialog on the Options page under the Logging section." }, "opt_logger_level_text": { "message": "Select the level of logging to be performed", "description": "Text for the Level field in the Developer Tools dialog on the Options page under the Logging section." }, "opt_logger_level_trace_text": { "message": "Trace (Lowest)", "description": "Text for the Trace option for the Level field in the Developer Tools dialog on the Options page under the Logging section." }, "opt_logger_level_warning_text": { "message": "Warning", "description": "Text for the Warning option for the Level field in the Developer Tools dialog on the Options page under the Logging section." }, "opt_markdown_header": { "message": "Markdown", "description": "Header for the Markdown section." }, "opt_markdown_text": { "message": "This section refers to content that is converted to $O_LINK_MARKDOWN$Markdown$C_LINK$ from $O_ABBR_1$HyperText Markup Language$O_ABBR_2$HTML$C_ABBR$.", "description": "Text for the Markdown section.", "placeholders": { "c_abbr": { "content": "
[text](url)",
"example": "[title](url)"
}
}
},
"opt_markdown_inline_text": {
"message": "Link references no longer listed at the end of the output",
"description": "Text for the Inline Links field."
},
"opt_menu_header": {
"message": "Context Menu",
"description": "Header for the Context Menu section on the General tab of the Options page."
},
"opt_menu_enabled_label": {
"message": "Right-Click",
"description": "Label for the Right-Click field on the General tab of the Options page under the Context Menu section."
},
"opt_menu_enabled_text": {
"message": "Templates are accessible from the context menu",
"description": "Text for the Right-Click field on the General tab of the Options page under the Context Menu section."
},
"opt_menu_options_label": {
"message": "Options Link",
"description": "Label for the Options Link field on the General tab of the Options page under the Context Menu section."
},
"opt_menu_options_text": {
"message": "Display an item to open the Options page at the bottom of the menu",
"description": "Text for the Options Link field on the General tab of the Options page under the Context Menu section."
},
"opt_menu_paste_label": {
"message": "Automatically Paste",
"description": "Label for the Automatically Paste field on the General tab of the Options page under the Context Menu section."
},
"opt_menu_paste_text": {
"message": "Paste the Template result into the right-clicked editable field",
"description": "Text for the Automatically Paste field on the General tab of the Options page under the Context Menu section."
},
"opt_message_error_header": {
"message": "Oh snap!",
"description": "Header for standard error alert message."
},
"opt_message_header": {
"message": "Heads up!",
"description": "Header for standard informative alert message."
},
"opt_message_success_header": {
"message": "Well done!",
"description": "Header for standard success alert message."
},
"opt_message_warning_header": {
"message": "Warning!",
"description": "Header for standard warning alert message."
},
"opt_misc_header": {
"message": "Miscellaneous",
"description": "Header for the Miscellaneous section on the General tab of the Options page."
},
"opt_no_templates_found_text": {
"message": "No templates found...",
"description": "Text for table when no templates could be found."
},
"opt_notification_header": {
"message": "Desktop Notifications",
"description": "Header for the Desktop Notifications section on the General tab of the Options page."
},
"opt_notification_label": {
"message": "Notifications",
"description": "Label for the Notifications field on the General tab of the Options page under the Desktop Notifications section."
},
"opt_notification_sub_text": {
"message": "These will also be used to notify you of any errors that occur",
"description": "Help text for the Notifications field on the General tab of the Options page under the Desktop Notifications section."
},
"opt_notification_text": {
"message": "Show desktop notifications to display the outcome of using a template",
"description": "Text for the Notifications field on the General tab of the Options page under the Desktop Notifications section."
},
"opt_protected_sub_text": {
"message": "This is not available on internal Chrome pages or the $O_LINK_WEBSTORE$Chrome Web Store$C_LINK$",
"description": "Help text for fields on the Options page whose functionality does not work on protected pages.",
"placeholders": {
"c_link": {
"content": "",
"example": ""
},
"o_link_webstore": {
"content": "",
"example": ""
}
}
},
"opt_reset_text": {
"message": "Reset",
"description": "Text for a Reset button."
},
"opt_search_placeholder_text": {
"message": "Search...",
"description": "Placeholder text for a Search field."
},
"opt_select_all_box": {
"message": "Select All",
"description": "Title for the Select All checkbox."
},
"opt_select_all_box_checked": {
"message": "Deselect All",
"description": "Title for the Select All checkbox when checked."
},
"opt_select_box": {
"message": "Select",
"description": "Title for the Select checkbox."
},
"opt_select_box_checked": {
"message": "Deselect",
"description": "Title for the Select checkbox when checked."
},
"opt_shortcuts_header": {
"message": "Keyboard Shortcuts",
"description": "Header for the Keyboard Shortcuts section on the General tab of the Options page."
},
"opt_shortcuts_enabled_label": {
"message": "Hotkeys",
"description": "Label for the Hotkeys field on the General tab of the Options page under the Keyboard Shortcuts section."
},
"opt_shortcuts_enabled_text": {
"message": "Templates are accessible using keyboard shortcuts",
"description": "Text for the Hotkeys field on the General tab of the Options page under the Keyboard Shortcuts section."
},
"opt_shortcuts_paste_label": {
"message": "Automatically Paste",
"description": "Label for the Automatically Paste field on the General tab of the Options page under the Keyboard Shortcuts section."
},
"opt_shortcuts_paste_text": {
"message": "Paste the Template result into the editable field where the hotkey was used",
"description": "Text for the Automatically Paste field on the General tab of the Options page under the Keyboard Shortcuts section."
},
"opt_show_all_text": {
"message": "All",
"description": "Text for the All option in a selection of limits for visible results."
},
"opt_show_label": {
"message": "Show:",
"description": "Label for a selection of limits for visible results."
},
"opt_template_content_label": {
"message": "Content",
"description": "Label for the Content field on the Templates tab of the Options page."
},
"opt_template_content_sub_text": {
"message": "Need help writing templates? Try $O_LINK_GUIDE$reading the guide$C_LINK$",
"description": "Help text for the Content field on the Templates tab of the Options page.",
"placeholders": {
"c_link": {
"content": "",
"example": ""
},
"o_link_guide": {
"content": "",
"example": ""
}
}
},
"opt_template_delete_multiple_predefined_error_1": {
"message": "The following templates cannot be deleted as they are predefined:",
"description": "First paragraph of the error message displayed when a user attempts to delete multiple predefined templates."
},
"opt_template_delete_multiple_predefined_error_2": {
"message": "Deselect all of these templates and try again.",
"description": "Second paragraph of the error message displayed when a user attempts to delete multiple predefined templates."
},
"opt_template_delete_predefined_error_1": {
"message": "The following template cannot be deleted as it is predefined:",
"description": "First paragraph of the error message displayed when a user attempts to delete a single predefined template."
},
"opt_template_delete_predefined_error_2": {
"message": "Deselect this template and try again.",
"description": "Second paragraph of the error message displayed when a user attempts to delete a single predefined template."
},
"opt_template_enabled_label": {
"message": "Enabled",
"description": "Label for the Enabled field on the Templates tab of the Options page."
},
"opt_template_enabled_text": {
"message": "Allow access to this template",
"description": "Text for the Enabled field on the Templates tab of the Options page."
},
"opt_template_header": {
"message": "Templates",
"description": "Header of the Templates tab of the Options page. This is also displayed in the page's navigation."
},
"opt_template_image_label": {
"message": "Image",
"description": "Label for the Image field on the Templates tab of the Options page."
},
"opt_template_modify_title": {
"message": "Modify $TEMPLATE$",
"description": "Hover text for a template link on the Templates tab of the Options page.",
"placeholders": {
"template": {
"content": "$1",
"example": "URL"
}
}
},
"opt_template_move_title": {
"message": "Drag and drop $TEMPLATE$ to change its order",
"description": "Hover text for a drag and drop indicator on the Templates tab of the Options page.",
"placeholders": {
"template": {
"content": "$1",
"example": "URL"
}
}
},
"opt_template_new_header": {
"message": "New Template",
"description": "Header for the template wizard when creating a new template."
},
"opt_template_disabled_selected_title": {
"message": "Selected templates are already disabled",
"description": "Hover text for dynamic buttons when only disabled templates are selected."
},
"opt_template_enabled_selected_title": {
"message": "Selected templates are already enabled",
"description": "Hover text for dynamic buttons when only enabled templates are selected."
},
"opt_template_no_predefined_delete_title": {
"message": "Predefined templates cannot be deleted",
"description": "Hover text for dynamic Delete buttons when predefined templates are selected or in context."
},
"opt_template_none_selected_title": {
"message": "One or more templates must be selected",
"description": "Hover text for dynamic buttons when no templates are selected."
},
"opt_template_shortcut_help": {
"message": "$O_PARA$The following rules apply to this field;$C_PARA$$O_LIST$$O_ITEM$Must be an alphanumeric key$C_ITEM$$O_ITEM$Where duplicated, the first template will be activated$C_ITEM$$O_ITEM$When blank, the template cannot be activated using keyboard shortcuts$C_ITEM$$C_LIST$",
"description": "Help text for the Shortcut field on the Templates tab of the Options page.",
"placeholders": {
"break": {
"content": "", "example": "
" } } }, "opt_template_shortcut_invalid": { "message": "Keyboard shortcut uses invalid key", "description": "Error message displayed when a user attempts to assign an invalid keyboard shortcut to a template." }, "opt_template_shortcut_label": { "message": "Shortcut", "description": "Label for the Shortcut field on the Templates tab of the Options page." }, "opt_template_title_invalid": { "message": "Title is missing", "description": "Error message displayed when a user attempts to assign a blank title to a template." }, "opt_template_title_label": { "message": "Title", "description": "Label for the Title field on the Templates tab of the Options page." }, "opt_toolbar_behaviour_header": { "message": "Toolbar Behaviour", "description": "Header for the Toolbar Behaviour section on the General tab of the Options page." }, "opt_toolbar_behaviour_label": { "message": "Action", "description": "Label for the Action field on the General tab of the Options page under the Toolbar Behaviour section." }, "opt_toolbar_behaviour_sub_text": { "message": "Configure what happens when you click the toolbar icon", "description": "Help text for the Action field on the General tab of the Options page under the Toolbar Behaviour section." }, "opt_toolbar_close_label": { "message": "Closing", "description": "Label for the Closing field on the General tab of the Options page under the Toolbar Behaviour section. This is only visible when Popup is the selected Action." }, "opt_toolbar_close_sub_text": { "message": "This does not apply to the $O_EMPH$Options$C_EMPH$ link, which will always cause the popup to close once clicked", "description": "Help text for the Action field on the General tab of the Options page under the Toolbar Behaviour section. This is only visible when Popup is the selected Action.", "placeholders": { "c_emph": { "content": "", "example": "" }, "o_emph": { "content": "", "example": "" } } }, "opt_toolbar_close_text": { "message": "Automatically close the popup after using a template", "description": "Text for the Action field on the General tab of the Options page under the Toolbar Behaviour section. This is only visible when Popup is the selected Action." }, "opt_toolbar_key_label": { "message": "Template", "description": "Label for the Template field on the General tab of the Options page under the Toolbar Behaviour section. This is only visible when Template is the selected Action." }, "opt_toolbar_key_text": { "message": "Select the template to be used", "description": "Text for the Template field on the General tab of the Options page under the Toolbar Behaviour section. This is only visible when Template is the selected Action." }, "opt_toolbar_options_label": { "message": "Options Link", "description": "Label for the Options Link field on the General tab of the Options page under the Toolbar Behaviour section. This is only visible when Popup is the selected Action." }, "opt_toolbar_options_text": { "message": "Display a link to the Options page at the bottom of the popup", "description": "Text for the Options Link field on the General tab of the Options page under the Toolbar Behaviour section. This is only visible when Popup is the selected Action." }, "opt_toolbar_popup_no_button": { "message": "$ICON$ Template", "description": "Text for the Template button in the Action field on the General tab of the Options page under the Toolbar Behaviour section.", "placeholders": { "icon": { "content": "", "example": "" } } }, "opt_toolbar_popup_no_title": { "message": "Use a template when the toolbar icon is clicked", "description": "Hover text for the Template button in the Action field on the General tab of the Options page under the Toolbar Behaviour section." }, "opt_toolbar_popup_yes_button": { "message": "$ICON$ Popup", "description": "Text for the Popup button in the Action field on the General tab of the Options page under the Toolbar Behaviour section.", "placeholders": { "icon": { "content": "", "example": "" } } }, "opt_toolbar_popup_yes_title": { "message": "Show a popup when the toolbar icon is clicked", "description": "Hover text for the Popup button in the Action field on the General tab of the Options page under the Toolbar Behaviour section." }, "opt_tools_header": { "message": "Developer Tools", "description": "Header for the Developer Tools dialog on the Options page. This is also displayed as a hover text for the cog symbol in the page's navigation." }, "opt_tools_text": { "message": "These settings are normally only used during development but can also be used to create debug information to provide developers with if you're experiencing an issue.", "description": "Text for the Developer Tools dialog on the Options page." }, "opt_top_button": { "message": "Back to top", "description": "Text for the link in the footer of the Options page that takes the user to the top of the page." }, "opt_undo_button": { "message": "Undo", "description": "Text for a Undo button." }, "opt_url_shortener_account_label": { "message": "Account", "description": "Label for the Account field in the Configuration column on the URL Shorteners tab of the Options page." }, "opt_url_shortener_account_title": { "message": "Associate links shortened by $SERVICE$ with your account", "description": "Hover text for the Login/Logout button within the Account field in the Configuration column on the URL Shorteners tab of the Options page.", "placeholders": { "service": { "content": "$1", "example": "bit.ly" } } }, "opt_url_shortener_authentication_basic_button": { "message": "$ICON$ Basic", "description": "Text for the Basic button within the Authentication field in the Configuration column on the URL Shorteners tab of the Options page.", "placeholders": { "icon": { "content": "", "example": "" } } }, "opt_url_shortener_authentication_label": { "message": "Authentication", "description": "Label for the Authentication field in the Configuration column on the URL Shorteners tab of the Options page." }, "opt_url_shortener_authentication_none_button": { "message": "$ICON$ None", "description": "Text for the None button within the Authentication field in the Configuration column on the URL Shorteners tab of the Options page.", "placeholders": { "icon": { "content": "", "example": "" } } }, "opt_url_shortener_authentication_advanced_button": { "message": "$ICON$ Advanced", "description": "Text for the Advanced button within the Authentication field in the Configuration column on the URL Shorteners tab of the Options page.", "placeholders": { "icon": { "content": "", "example": "" } } }, "opt_url_shortener_config_header": { "message": "Configuration", "description": "Header for the Configuration column on the URL Shorteners tab of the Options page." }, "opt_url_shortener_header": { "message": "URL Shorteners", "description": "Header of the URL Shorteners tab of the Options page. This is also displayed in the page's navigation." }, "opt_url_shortener_login_button": { "message": "$ICON$ Login", "description": "Text for the Login button within the Account field in the Configuration column on the URL Shorteners tab of the Options page.", "placeholders": { "icon": { "content": "", "example": "" } } }, "opt_url_shortener_logout_button": { "message": "$ICON$ Logout", "description": "Text for the Logout button within the Account field in the Configuration column on the URL Shorteners tab of the Options page.", "placeholders": { "icon": { "content": "", "example": "" } } }, "opt_url_shortener_password_label": { "message": "Password", "description": "Label for the Password field in the Configuration column on the URL Shorteners tab of the Options page." }, "opt_url_shortener_password_yourls_sub_text": { "message": "This is stored and sent in plain text as is required by the $O_ABBR_1$Application Programming Interface$O_ABBR_2$API$C_ABBR$", "description": "Help text for the Password field in the Configuration column on the URL Shorteners tab of the Options page under the YOURLS section.", "placeholders": { "c_abbr": { "content": "
{name}",
"example": "{name}"
},
"syntax_2": {
"content": "{NaMe}",
"example": "{NaMe}"
},
"syntax_3": {
"content": "{#name}...{/NaMe}",
"example": "{#name}...{/NaMe}"
}
}
},
"opt_guide_introduction_dot_notation_header": {
"message": "点表示法",
"description": "选项页面上指南选项卡下介绍部分中点表示法区域的标题。"
},
"opt_guide_introduction_dot_notation_text": {
"message": "对象的嵌套属性也可以使用点表示法访问,例如 $SYNTAX$ 将获取 $O_EMPH$name$C_EMPH$ 对象的 $O_EMPH$nested$C_EMPH$ 属性。这些表达式甚至可以链接以访问嵌套属性的属性等。",
"description": "选项页面上指南选项卡下介绍部分中点表示法区域的文本。",
"placeholders": {
"c_emph": {
"content": "",
"example": ""
},
"o_emph": {
"content": "",
"example": ""
},
"syntax": {
"content": "{name.nested}",
"example": "{name.nested}"
}
}
},
"opt_guide_introduction_header": {
"message": "介绍",
"description": "选项页面上指南选项卡下介绍部分的标题。"
},
"opt_guide_introduction_inverted_section_access_text": {
"message": "$O_BOLD$访问$C_BOLD$ - 仅在值为空对象时呈现内容",
"description": "选项页面上指南选项卡下介绍部分中反向部分区域列表中访问项的文本。",
"placeholders": {
"c_bold": {
"content": "",
"example": ""
},
"o_bold": {
"content": "",
"example": ""
}
}
},
"opt_guide_introduction_inverted_section_conditions_text": {
"message": "$O_BOLD$条件$C_BOLD$ - 仅在值为$O_EMPH$假值$C_EMPH$时呈现内容",
"description": "选项页面引导选项卡下介绍部分中反向区域列表中条件项的文本。",
"placeholders": {
"c_bold": {
"content": "",
"example": ""
},
"c_emph": {
"content": "",
"example": ""
},
"o_bold": {
"content": "",
"example": ""
},
"o_emph": {
"content": "",
"example": ""
}
}
},
"opt_guide_introduction_inverted_section_header": {
"message": "反向区域",
"description": "选项页面引导选项卡下介绍部分中反向区域的标题。"
},
"opt_guide_introduction_inverted_section_iterating_text": {
"message": "$O_BOLD$迭代$C_BOLD$ - 仅在值为一个空列表时呈现内容",
"description": "选项页面引导选项卡下介绍部分中反向区域列表中迭代项的文本。",
"placeholders": {
"c_bold": {
"content": "",
"example": ""
},
"o_bold": {
"content": "",
"example": ""
}
}
},
"opt_guide_introduction_inverted_section_text": {
"message": "反向区域与普通区域非常相似,但是写法如下 $SYNTAX$,可以用于以下目的;",
"description": "选项页面引导选项卡下介绍部分中反向区域的文本。",
"placeholders": {
"syntax": {
"content": "{^name}...{/name}",
"example": "{^name}...{/name}"
}
}
},
"opt_guide_introduction_notes_text_1": {
"message": "如果您在理解本指南方面遇到问题,请$O_LINK_HELP_DESK$告诉我们$C_LINK$,我们将尽力帮助您并考虑您的意见,必要时更新文档。",
"description": "选项页面引导选项卡下介绍部分中注释区域的第一段。",
"placeholders": {
"c_link": {
"content": "",
"example": ""
},
"o_link_help_desk": {
"content": "",
"example": ""
}
}
},
"opt_guide_introduction_notes_text_2": {
"message": "如果您在使用$O_BOLD$模板$C_BOLD$时遇到任何问题或想要进行更改或添加,请$O_LINK_HELP_DESK$提交工单$C_LINK$,我们将查看它。",
"description": "选项页面引导选项卡下介绍部分中注释区域的第二段。",
"placeholders": {
"c_bold": {
"content": "",
"example": ""
},
"c_link": {
"content": "",
"example": ""
},
"o_bold": {
"content": "",
"example": ""
},
"o_link_help_desk": {
"content": "",
"example": ""
}
}
},
"opt_guide_introduction_notes_text_3": {
"message": "要获取更多示例,请尝试查看预定义模板。",
"description": "选项页面引导选项卡下介绍部分中注释区域的第三段。"
},
"opt_guide_introduction_section_access_text": {
"message": "$O_BOLD$访问$C_BOLD$ - 如果值是一个对象,则呈现内容并将该对象的属性公开为变量",
"description": "选项页面引导选项卡下介绍部分中区域列表中访问项的文本。",
"placeholders": {
"c_bold": {
"content": "",
"example": ""
},
"o_bold": {
"content": "",
"example": ""
}
}
},
"opt_guide_introduction_section_conditions_text": {
"message": "$O_BOLD$条件$C_BOLD$ - 仅在值为$O_EMPH$真值$C_EMPH$时呈现内容",
"description": "选项页面引导选项卡下介绍部分中区域列表中条件项的文本。",
"placeholders": {
"c_bold": {
"content": "",
"example": ""
},
"c_emph": {
"content": "",
"example": ""
},
"o_bold": {
"content": "",
"example": ""
},
"o_emph": {
"content": "",
"example": ""
}
}
},
"opt_guide_introduction_section_header": {
"message": "区域",
"description": "选项页面引导选项卡下介绍部分中区域的标题。"
},
"opt_guide_introduction_section_iterating_text": {
"message": "$O_BOLD$迭代$C_BOLD$ - 如果值是一个数组,它将为该值的每个可枚举项呈现内容",
"description": "选项页面引导选项卡下介绍部分中的列表中迭代项的文本。",
"placeholders": {
"c_bold": {
"content": "",
"example": ""
},
"o_bold": {
"content": "",
"example": ""
}
}
},
"opt_guide_introduction_section_operations_text": {
"message": "$O_BOLD$操作$C_BOLD$ - 渲染操作的结果,将内容作为参数传递",
"description": "选项页面引导选项卡下介绍部分中的列表中操作项的文本。",
"placeholders": {
"c_bold": {
"content": "",
"example": ""
},
"o_bold": {
"content": "",
"example": ""
}
}
},
"opt_guide_introduction_section_text": {
"message": "部分始终由打开和关闭标记包围,如此 $SYNTAX$,可用于以下目的;",
"description": "选项页面引导选项卡下介绍部分的部分区域的文本。",
"placeholders": {
"syntax": {
"content": "{#name}...{/name}",
"example": "{#name}...{/name}"
}
}
},
"opt_guide_introduction_simple_tag_header": {
"message": "简单标记",
"description": "选项页面引导选项卡下介绍部分中简单标记区域的标题。"
},
"opt_guide_introduction_simple_tag_text_1": {
"message": "标记始终由花括号包围,如此 $SYNTAX$,输出命名变量的值。如果该值未定义或为 $O_EMPH$falsey$C_EMPH$,则将其删除。",
"description": "选项页面引导选项卡下介绍部分中简单标记区域的第一段。",
"placeholders": {
"c_emph": {
"content": "",
"example": ""
},
"o_emph": {
"content": "",
"example": ""
},
"syntax": {
"content": "{name}",
"example": "{name}"
}
}
},
"opt_guide_introduction_simple_tag_text_2": {
"message": "默认情况下不对值进行转义,为了进行转义,必须使用双括号 $SYNTAX_DOUBLE$ 或前导和号 $SYNTAX_AMP$。这将转义 $CHARACTERS$ 字符,以便最终输出可以安全地复制到 $O_ABBR_1$可扩展标记语言$O_ABBR_2$XML$C_ABBR$ 和 $O_ABBR_1$超文本标记语言$O_ABBR_2$HTML$C_ABBR$ 中。",
"description": "选项页面引导选项卡下介绍部分中简单标记区域的第二段。",
"placeholders": {
"c_abbr": {
"content": "",
"example": ""
},
"characters": {
"content": "& < > " '",
"example": "& < > \" '"
},
"o_abbr_1": {
"content": "",
"example": "\">"
},
"syntax_amp": {
"content": "{&name}",
"example": "{&name}"
},
"syntax_double": {
"content": "{{name}}",
"example": "{{name}}"
}
}
},
"opt_guide_introduction_text": {
"message": "$O_BOLD$模板$C_BOLD$ 使用先进而简单的模板系统,允许您创建和修改要复制到剪贴板的内容。语法非常简单,包括以下类别;",
"description": "选项页面引导选项卡下介绍部分的标题。",
"placeholders": {
"c_bold": {
"content": "",
"example": ""
},
"o_bold": {
"content": "",
"example": ""
}
}
},
"opt_guide_lists_objects_cookies_text": {
"message": "与页面关联的所有 cookie 的名称",
"description": "选项页面引导选项卡下列表和对象部分中 cookie 变量的描述。"
},
"opt_guide_lists_objects_coords_text": {
"message": "您当前的物理位置的属性(例如 $EXAMPLE_1$,$EXAMPLE_2$ 等等)",
"description": "选项页面引导选项卡下列表和对象部分中 coords 变量的描述。",
"placeholders": {
"example_1": {
"content": "纬度",
"example": "纬度"
},
"example_2": {
"content": "经度",
"example": "经度"
}
}
},
"opt_guide_lists_objects_examples_code_1": {
"message": "$URL$",
"description": "选项页面中列表和对象部分下的指南选项卡中示例区域中第1个代码块的文本。",
"placeholders": {
"url": {
"content": "http://example.com/test/index.html?foo=bar&fu=baz",
"example": "http://example.com/test/index.html?foo=bar&fu=baz"
}
}
},
"opt_guide_lists_objects_examples_code_2": {
"message": "跟随面包屑;\n$SYNTAX$",
"description": "选项页面中列表和对象部分下的指南选项卡中示例区域中第2个代码块的文本。",
"placeholders": {
"syntax": {
"content": "{#segments}\n * {.}\n{/segments}",
"example": "{#segments}\n * {.}\n{/segments}"
}
}
},
"opt_guide_lists_objects_examples_code_3": {
"message": "跟随面包屑;\n$LIST$",
"description": "选项页面中列表和对象部分下的指南选项卡中示例区域中第3个代码块的文本。",
"placeholders": {
"list": {
"content": " * test\n * index.html",
"example": " * test\n * index.html"
}
}
},
"opt_guide_lists_objects_examples_code_4": {
"message": "$SYNTAX_1$$PARAM_1$是“{$PARAM_1$}”,$PARAM_2$是“{$PARAM_2$}”。$SYNTAX_3$\n$SYNTAX_2$找不到任何参数!$SYNTAX_3$",
"description": "选项页面中列表和对象部分下的指南选项卡中示例区域中第4个代码块的文本。",
"placeholders": {
"param_1": {
"content": "foo",
"example": "foo"
},
"param_2": {
"content": "fu",
"example": "fu"
},
"syntax_1": {
"content": "{#params}",
"example": "{#params}"
},
"syntax_2": {
"content": "{^params}",
"example": "{^params}"
},
"syntax_3": {
"content": "{/params}",
"example": "{/params}"
}
}
},
"opt_guide_lists_objects_examples_code_5": {
"message": "$PARAM_1$是“$VALUE_1$”,$PARAM_2$是“$VALUE_2$”。",
"description": "选项页面中列表和对象部分下的指南选项卡中示例区域中第5个代码块的文本。",
"placeholders": {
"param_1": {
"content": "foo",
"example": "foo"
},
"param_2": {
"content": "fu",
"example": "fu"
},
"value_1": {
"content": "bar",
"example": "bar"
},
"value_2": {
"content": "baz",
"example": "baz"
}
}
},
"opt_guide_lists_objects_examples_code_6": {
"message": "$PARAM_1$是“{$SYNTAX$$PARAM_1$}”,$PARAM_2$是“{$SYNTAX$$PARAM_2$}”。",
"description": "选项页面中列表和对象部分下的指南选项卡中示例区域中第6个代码块的文本。",
"placeholders": {
"param_1": {
"content": "foo",
"example": "foo"
},
"param_2": {
"content": "fu",
"example": "fu"
},
"syntax": {
"content": "params.",
"example": "params."
}
}
},
"opt_guide_lists_objects_examples_code_7": {
"message": "找不到任何参数!",
"description": "选项页面中列表和对象部分下的指南选项卡中示例区域中第7个代码块的文本。"
},
"opt_guide_lists_objects_examples_code_8": {
"message": "该网站存储了以下信息;\n$SYNTAX$",
"description": "选项页面中列表和对象部分下的指南选项卡中示例区域中第8个代码块的文本。",
"placeholders": {
"syntax": {
"content": "{#cookies}\n * {.} = “{#cookie}{.}{/cookie}”\n{/cookies}",
"example": "{#cookies}\n * {.} = “{#cookie}{.}{/cookie}”\n{/cookies}"
}
}
},
"opt_guide_lists_objects_examples_code_9": {
"message": "该网站存储了以下信息;\n$LIST$",
"description": "选项页面中列表和对象部分下的指南选项卡中示例区域中第9个代码块的文本。",
"placeholders": {
"list": {
"content": " * JSESSIONID = “2pkffy9ivmpfwntf12y6o4cgu”\n * __utmc = “224978569”",
"example": " * JSESSIONID = “2pkffy9ivmpfwntf12y6o4cgu”\n * __utmc = “224978569”"
}
}
},
"opt_guide_lists_objects_examples_code_10": {
"message": "$SYNTAX_1$查看更大的地图$SYNTAX_2$",
"description": "选项页面列表和对象部分下指南选项卡中示例区域第10个代码块的文本。",
"placeholders": {
"syntax_1": {
"content": "{#coords}\n<iframe width="425" height="350" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="http://maps.google.com/maps?ll={latitude},{longitude}&output=embed"></iframe>\n<br>\n<small><a href="http://maps.google.com/maps?ll={latitude},{longitude}&source=embed">",
"example": "{#coords}\n\nfoo=bar&fu=baz",
"example": "foo=bar&fu=baz"
},
"example_2": {
"content": "foo",
"example": "foo"
},
"example_3": {
"content": "fu",
"example": "fu"
}
}
},
"opt_guide_lists_objects_fsegments_text": {
"message": "哈希片段路径中的段",
"description": "选项页面列表和对象部分下指南选项卡中fsegments变量的描述。"
},
"opt_guide_lists_objects_header": {
"message": "列表和对象",
"description": "选项页面列表和对象部分指南选项卡的标题。"
},
"opt_guide_lists_objects_images_text": {
"message": "页面上所有图片的$O_ABBR_1$统一资源定位符$O_ABBR_2$URL$C_ABBR$",
"description": "选项页面中列表和对象部分下的指南选项卡中图片变量的描述。",
"placeholders": {
"c_abbr": {
"content": "",
"example": ""
},
"o_abbr_1": {
"content": "",
"example": "\">"
}
}
},
"opt_guide_lists_objects_keywords_text": {
"message": "页面元信息中的关键字",
"description": "选项页面中列表和对象部分下的指南选项卡中关键字变量的描述。"
},
"opt_guide_lists_objects_links_text": {
"message": "页面上所有链接的$O_ABBR_1$统一资源定位符$O_ABBR_2$URL$C_ABBR$",
"description": "选项页面中列表和对象部分下的指南选项卡中链接变量的描述。",
"placeholders": {
"c_abbr": {
"content": "",
"example": ""
},
"o_abbr_1": {
"content": "",
"example": "\">"
}
}
},
"opt_guide_lists_objects_local_storage_text": {
"message": "页面的$LOCAL_STORAGE$中存储的项目",
"description": "选项页面中列表和对象部分下的指南选项卡中localStorage变量的描述。",
"placeholders": {
"local_storage": {
"content": "localStorage",
"example": "localStorage"
}
}
},
"opt_guide_lists_objects_params_text": {
"message": "所有参数的键/值对(例如,查询$EXAMPLE_1$包含$EXAMPLE_2$和$EXAMPLE_3$)",
"description": "选项页面中列表和对象部分下的指南选项卡中params变量的描述。",
"placeholders": {
"example_1": {
"content": "foo=bar&fu=baz",
"example": "foo=bar&fu=baz"
},
"example_2": {
"content": "foo",
"example": "foo"
},
"example_3": {
"content": "fu",
"example": "fu"
}
}
},
"opt_guide_lists_objects_plugins_text": {
"message": "所有启用的浏览器插件的名称(例如$EXAMPLE$)",
"description": "选项页面中列表和对象部分下的指南选项卡中插件变量的描述。",
"placeholders": {
"example": {
"content": "Shockwave Flash",
"example": "Shockwave Flash"
}
}
},
"opt_guide_lists_objects_popular_text": {
"message": "您最受欢迎的模板的属性(例如$EXAMPLE_1$,$EXAMPLE_2$,$EXAMPLE_3$等等)",
"description": "选项页面中列表和对象部分下的指南选项卡中流行变量的描述。",
"placeholders": {
"example_1": {
"content": "title",
"example": "title"
},
"example_2": {
"content": "content",
"example": "content"
},
"example_3": {
"content": "shortcut",
"example": "shortcut"
}
}
},
"opt_guide_lists_objects_scripts_text": {
"message": "页面使用的所有外部脚本的$O_ABBR_1$统一资源定位符$O_ABBR_2$URL$C_ABBR$",
"description": "选项页面中列表和对象部分下的指南选项卡中脚本变量的描述。",
"placeholders": {
"c_abbr": {
"content": "",
"example": ""
},
"o_abbr_1": {
"content": "",
"example": "\">"
}
}
},
"opt_guide_lists_objects_segments_text": {
"message": "$O_ABBR_1$统一资源定位符$O_ABBR_2$URL$C_ABBR$路径中的所有段",
"description": "选项页面中列表和对象部分下的指南选项卡中segments变量的描述。",
"placeholders": {
"c_abbr": {
"content": "",
"example": ""
},
"o_abbr_1": {
"content": "",
"example": "\">"
}
}
},
"opt_guide_lists_objects_selected_images_text": {
"message": "当前选择中所有图像的$O_ABBR_1$统一资源定位符$O_ABBR_2$URL$C_ABBR$",
"description": "在选项页面的列表和对象部分的指南选项卡上,关于selectedImages变量的描述。",
"placeholders": {
"c_abbr": {
"content": "",
"example": ""
},
"o_abbr_1": {
"content": "",
"example": "\">"
}
}
},
"opt_guide_lists_objects_selected_links_text": {
"message": "当前选择中所有链接的$O_ABBR_1$统一资源定位符$O_ABBR_2$URL$C_ABBR$",
"description": "在选项页面的列表和对象部分的指南选项卡上,关于selectedLinks变量的描述。",
"placeholders": {
"c_abbr": {
"content": "",
"example": ""
},
"o_abbr_1": {
"content": "",
"example": "\">"
}
}
},
"opt_guide_lists_objects_session_storage_text": {
"message": "页面$SESSION_STORAGE$中存储的项目",
"description": "在选项页面的列表和对象部分的指南选项卡上,关于sessionStorage变量的描述。",
"placeholders": {
"session_storage": {
"content": "sessionStorage",
"example": "sessionStorage"
}
}
},
"opt_guide_lists_objects_style_sheets_text": {
"message": "页面使用的所有外部$O_ABBR_1$级联样式表$O_ABBR_2$CSS$C_ABBR$资源的$O_ABBR_1$统一资源定位符$O_ABBR_2$URL$C_ABBR$",
"description": "在选项页面的列表和对象部分的指南选项卡上,关于styleSheets变量的描述。",
"placeholders": {
"c_abbr": {
"content": "",
"example": ""
},
"o_abbr_1": {
"content": "",
"example": "\">"
}
}
},
"opt_guide_lists_objects_tabs_text": {
"message": "当前窗口中所有选项卡的$O_ABBR_1$统一资源定位符$O_ABBR_2$URL$C_ABBR$",
"description": "在选项页面的列表和对象部分的指南选项卡上,关于tabs变量的描述。",
"placeholders": {
"c_abbr": {
"content": "",
"example": ""
},
"o_abbr_1": {
"content": "",
"example": "\">"
}
}
},
"opt_guide_lists_objects_template_text": {
"message": "已激活模板的属性(例如$EXAMPLE_1$,$EXAMPLE_2$,$EXAMPLE_3$等)",
"description": "在选项页面的列表和对象部分的指南选项卡上,关于template变量的描述。",
"placeholders": {
"example_1": {
"content": "标题",
"example": "标题"
},
"example_2": {
"content": "图像",
"example": "图像"
},
"example_3": {
"content": "用途",
"example": "用途"
}
}
},
"opt_guide_lists_objects_text": {
"message": "$O_BOLD$列表和对象$C_BOLD$通常使用部分(包括反转)进行迭代和访问属性。但是,可以使用简单的标记以$O_ABBR_1$逗号分隔值$O_ABBR_2$CSV$C_ABBR$格式输出列表的内容或对象的属性。",
"description": "在选项页面的列表和对象部分的指南选项卡上的文本。",
"placeholders": {
"c_abbr": {
"content": "",
"example": ""
},
"c_bold": {
"content": "",
"example": ""
},
"o_abbr_1": {
"content": "",
"example": "\">"
},
"o_bold": {
"content": "",
"example": ""
}
}
},
"opt_guide_name_header": {
"message": "名称",
"description": "在选项页面的所有特定部分下的指南选项卡上名称列的标题。"
},
"opt_guide_new_text": {
"message": "新",
"description": "在选项页面的所有特定部分下的指南选项卡上新变量的标签。"
},
"opt_guide_notes_header": {
"message": "笔记",
"description": "选项页面下某些部分的指南选项卡中笔记区域的标题。"
},
"opt_guide_operations_capitalise_name": {
"message": "大写",
"description": "操作部分下选项页面指南选项卡中大写变量的名称。"
},
"opt_guide_operations_capitalise_text": {
"message": "将提供的文本转换为标题大小写。",
"description": "操作部分下选项页面指南选项卡中大写变量的描述。"
},
"opt_guide_operations_cookie_text": {
"message": "获取名称为提供的 cookie 的值。",
"description": "操作部分下选项页面指南选项卡中 cookie 变量的描述。"
},
"opt_guide_operations_date_time_text_1": {
"message": "使用提供的模式格式化当前日期和时间。",
"description": "操作部分下选项页面指南选项卡中 dateTime 变量的第一行描述。"
},
"opt_guide_operations_date_time_text_2": {
"message": "(有关更多详细信息,请参见 $O_LINK_PHP_DATE$$O_ABBR_1$超文本预处理器$O_ABBR_2$PHP$C_ABBR$ 的日期$C_LINK$)",
"description": "操作部分下选项页面指南选项卡中 dateTime 变量的第二行描述。",
"placeholders": {
"c_abbr": {
"content": "",
"example": ""
},
"c_link": {
"content": "",
"example": ""
},
"o_abbr_1": {
"content": "",
"example": "\">"
},
"o_link_php_date": {
"content": "",
"example": ""
}
}
},
"opt_guide_operations_decode_text": {
"message": "解码先前编码的文本。",
"description": "操作部分下选项页面指南选项卡中解码变量的描述。"
},
"opt_guide_operations_encode_text": {
"message": "对提供的文本进行编码,以便可以安全地在查询字符串中使用。",
"description": "操作部分下选项页面指南选项卡中编码变量的描述。"
},
"opt_guide_operations_escape_text": {
"message": "转义提供的文本,以便可以安全地插入到 $O_ABBR_1$超文本标记语言$O_ABBR_2$HTML$C_ABBR$ 中。",
"description": "操作部分下选项页面指南选项卡中转义变量的描述。",
"placeholders": {
"c_abbr": {
"content": "",
"example": ""
},
"o_abbr_1": {
"content": "",
"example": "\">"
}
}
},
"opt_guide_operations_examples_code_1": {
"message": "$URL$",
"description": "操作部分下选项页面指南选项卡中示例区域中第一个代码块的文本。",
"placeholders": {
"url": {
"content": "http://example.com/test/index.html?foo=bar&fu=baz",
"example": "http://example.com/test/index.html?foo=bar&fu=baz"
}
}
},
"opt_guide_operations_examples_code_2": {
"message": "今天是 $SYNTAX$。",
"description": "操作部分下选项页面指南选项卡中示例区域中第二个代码块的文本。",
"placeholders": {
"syntax": {
"content": "{#dateTime}Y-m-d\\TH:i:sP{/dateTime}",
"example": "{#dateTime}Y-m-d\\TH:i:sP{/dateTime}"
}
}
},
"opt_guide_operations_examples_code_3": {
"message": "$URL$",
"description": "操作部分下选项页面指南选项卡中示例区域中第三个代码块的文本。",
"placeholders": {
"url": {
"content": "http://example.com/something.do?url={#encode}{url}{/encode}",
"example": "http://example.com/something.do?url={#encode}{url}{/encode}"
}
}
},
"opt_guide_operations_examples_code_4": {
"message": "$URL$",
"description": "操作部分下选项页面指南选项卡中示例区域中第四个代码块的文本。",
"placeholders": {
"url": {
"content": "http://example.com/something.do?url=http%3A%2F%2Fexample.com%2Ftest%2Findex.html%3Ffoo%3Dbar%26fu%3Dbaz",
"example": "http://example.com/something.do?url=http%3A%2F%2Fexample.com%2Ftest%2Findex.html%3Ffoo%3Dbar%26fu%3Dbaz"
}
}
},
"opt_guide_operations_examples_code_5": {
"message": "我当前正在查看$SYNTAX$。",
"description": "选项页面操作部分下指南选项卡中示例区域第5个代码块的文本。",
"placeholders": {
"syntax": {
"content": ""{#segment}-1{/segment}"",
"example": "\"{#segment}-1{/segment}\""
}
}
},
"opt_guide_operations_examples_code_6": {
"message": "我当前正在查看$SYNTAX$。",
"description": "选项页面操作部分下指南选项卡中示例区域第6个代码块的文本。",
"placeholders": {
"syntax": {
"content": ""index.html"",
"example": "\"index.html\""
}
}
},
"opt_guide_operations_examples_code_7": {
"message": "$PARAM$的值为$SYNTAX_1$$PARAM$$SYNTAX_2$。",
"description": "选项页面操作部分下指南选项卡中示例区域第7个代码块的文本。",
"placeholders": {
"param": {
"content": "foo",
"example": "foo"
},
"syntax_1": {
"content": ""{#param}",
"example": "\"{#param}"
},
"syntax_2": {
"content": "{/param}"",
"example": "{/param}\""
}
}
},
"opt_guide_operations_examples_code_8": {
"message": "$PARAM$的值为$SYNTAX$。",
"description": "选项页面操作部分下指南选项卡中示例区域第8个代码块的文本。",
"placeholders": {
"param": {
"content": "foo",
"example": "foo"
},
"syntax": {
"content": ""bar"",
"example": "\"bar\""
}
}
},
"opt_guide_operations_examples_text_1": {
"message": "这些示例将使用以下$O_ABBR_1$统一资源定位符$O_ABBR_2$URL$C_ABBR$;",
"description": "选项页面操作部分下指南选项卡中示例区域第1段文本。",
"placeholders": {
"c_abbr": {
"content": "",
"example": ""
},
"o_abbr_1": {
"content": "",
"example": "\">"
}
}
},
"opt_guide_operations_examples_text_2": {
"message": "要以$O_LINK_ISO_8601$ISO 8601$C_LINK$格式输出当前日期和时间,您可以使用以下代码;",
"description": "选项页面操作部分下指南选项卡中示例区域第2段文本。",
"placeholders": {
"c_link": {
"content": "",
"example": ""
},
"o_link_iso_8601": {
"content": "",
"example": ""
}
}
},
"opt_guide_operations_examples_text_3": {
"message": "此外,在这种情况下,$O_EMPH$c$C_EMPH$参数也会产生相同的结果。如果您想要安全地将整个$O_ABBR_1$统一资源定位符$O_ABBR_2$URL$C_ABBR$作为查询字符串参数传递;",
"description": "选项页面操作部分下指南选项卡中示例区域第3段文本。",
"placeholders": {
"c_abbr": {
"content": "",
"example": ""
},
"c_emph": {
"content": "",
"example": ""
},
"o_abbr_1": {
"content": "",
"example": "\">"
},
"o_emph": {
"content": "",
"example": ""
}
}
},
"opt_guide_operations_examples_text_4": {
"message": "这将转义$O_ABBR_1$统一资源定位符$O_ABBR_2$URL$C_ABBR$中的所有必要字符,并输出以下内容;",
"description": "选项页面操作部分下指南选项卡中示例区域第4段文本。",
"placeholders": {
"c_abbr": {
"content": "",
"example": ""
},
"o_abbr_1": {
"content": "",
"example": "\">"
}
}
},
"opt_guide_operations_examples_text_5": {
"message": "要访问$O_ABBR_1$统一资源定位符$O_ABBR_2$(URL)路径的最后一段:",
"description": "选项页面操作部分指南选项卡示例区域第5段的文本。",
"placeholders": {
"c_abbr": {
"content": "",
"example": ""
},
"o_abbr_1": {
"content": "",
"example": "\">"
}
}
},
"opt_guide_operations_examples_text_6": {
"message": "将呈现以下输出:",
"description": "选项页面操作部分指南选项卡示例区域第6段的文本。"
},
"opt_guide_operations_examples_text_7": {
"message": "获取$PARAM$参数的值就像以下这样简单:",
"description": "选项页面操作部分指南选项卡示例区域第7段的文本。",
"placeholders": {
"param": {
"content": "foo",
"example": "foo"
}
}
},
"opt_guide_operations_examples_text_8": {
"message": "这将导致呈现以下输出:",
"description": "选项页面操作部分指南选项卡示例区域第8段的文本。"
},
"opt_guide_operations_fparam_text": {
"message": "从哈希片段中获取提供的参数的值",
"description": "选项页面操作部分指南选项卡中fparam变量的描述。"
},
"opt_guide_operations_fsegment_text": {
"message": "从哈希片段中获取提供的索引处的段",
"description": "选项页面操作部分指南选项卡中fsegment变量的描述。"
},
"opt_guide_operations_header": {
"message": "操作",
"description": "选项页面指南选项卡中操作部分的标题。"
},
"opt_guide_operations_last_modified_text_1": {
"message": "使用提供的模式格式化页面的上次修改日期和时间",
"description": "选项页面操作部分指南选项卡中lastModified变量的描述的第1行。"
},
"opt_guide_operations_last_modified_text_2": {
"message": "(有关更多详细信息,请参见$O_LINK_PHP_DATE$$O_ABBR_1$超文本预处理器$O_ABBR_2$PHP$C_ABBR$的日期$C_LINK$)",
"description": "选项页面操作部分指南选项卡中lastModified变量的描述的第2行。",
"placeholders": {
"c_abbr": {
"content": "",
"example": ""
},
"c_link": {
"content": "",
"example": ""
},
"o_abbr_1": {
"content": "",
"example": "\">"
},
"o_link_php_date": {
"content": "",
"example": ""
}
}
},
"opt_guide_operations_length_text": {
"message": "获取提供的文本的字符长度",
"description": "选项页面操作部分指南选项卡中length变量的描述。"
},
"opt_guide_operations_lower_case_text": {
"message": "将提供的文本转换为小写",
"description": "选项页面操作部分指南选项卡中lowerCase变量的描述。"
},
"opt_guide_operations_meta_text": {
"message": "获取页面的元信息内容与提供的文本相匹配",
"description": "选项页面操作部分指南选项卡中meta变量的描述。"
},
"opt_guide_operations_notes_text_1": {
"message": "以下注释仅适用于$SEGMENT_LABEL$和$FSEGMENT_LABEL$操作;",
"description": "选项页面操作部分指南选项卡中注释区域的第1段文本。",
"placeholders": {
"fsegment_label": {
"content": "fsegment",
"example": "fsegment"
},
"segment_label": {
"content": "segment",
"example": "segment"
}
}
},
"opt_guide_operations_notes_text_2": {
"message": "计数不像数组一样从零开始(例如,$SYNTAX$返回第一个段)",
"description": "选项页面操作部分指南选项卡中注释区域的第1个列表项的文本。",
"placeholders": {
"syntax": {
"content": "{#segment}1{/segment}",
"example": "{#segment}1{/segment}"
}
}
},
"opt_guide_operations_notes_text_3": {
"message": "参数可以是负值,在这种情况下,它将从路径的末尾向后计数,而不是从开头向前计数",
"description": "选项页面操作部分指南选项卡中注释区域的第2个列表项的文本。"
},
"opt_guide_operations_param_text": {
"message": "获取提供的参数的值",
"description": "选项页面操作部分指南选项卡中param变量的描述。"
},
"opt_guide_operations_segment_text": {
"message": "获取提供的索引处的段",
"description": "选项页面操作部分下的指南选项卡上的段变量的描述。"
},
"opt_guide_operations_select_all_html_text": {
"message": "连接所有匹配元素的$O_ABBR_1$超文本标记语言$O_ABBR_2$HTML$C_ABBR$内容",
"description": "选项页面操作部分下的指南选项卡上的selectAllHTML变量的描述。",
"placeholders": {
"c_abbr": {
"content": "",
"example": ""
},
"o_abbr_1": {
"content": "",
"example": "\">"
}
}
},
"opt_guide_operations_select_all_markdown_text": {
"message": "将所有匹配元素的内容连接为$O_LINK_MARKDOWN$Markdown$C_LINK$",
"description": "选项页面操作部分下的指南选项卡上的selectAllMarkdown变量的描述。",
"placeholders": {
"c_link": {
"content": "",
"example": ""
},
"o_link_markdown": {
"content": "",
"example": ""
}
}
},
"opt_guide_operations_select_all_text": {
"message": "连接所有匹配元素的文本",
"description": "选项页面操作部分下的指南选项卡上的selectAll变量的描述。"
},
"opt_guide_operations_select_html_text": {
"message": "获取第一个匹配元素的$O_ABBR_1$超文本标记语言$O_ABBR_2$HTML$C_ABBR$内容",
"description": "选项页面操作部分下的指南选项卡上的selectHTML变量的描述。",
"placeholders": {
"c_abbr": {
"content": "",
"example": ""
},
"o_abbr_1": {
"content": "",
"example": "\">"
}
}
},
"opt_guide_operations_select_markdown_text": {
"message": "将第一个匹配元素的内容作为$O_LINK_MARKDOWN$Markdown$C_LINK$获取",
"description": "选项页面操作部分下的指南选项卡上的selectMarkdown变量的描述。",
"placeholders": {
"c_link": {
"content": "",
"example": ""
},
"o_link_markdown": {
"content": "",
"example": ""
}
}
},
"opt_guide_operations_select_text": {
"message": "获取第一个匹配元素的文本",
"description": "选项页面操作部分下的指南选项卡上的select变量的描述。"
},
"opt_guide_operations_shorten_text": {
"message": "使用活动的$O_ABBR_1$统一资源定位符$O_ABBR_2$URL$C_ABBR$缩短器缩短提供的$O_ABBR_1$统一资源定位符$O_ABBR_2$URL$C_ABBR$",
"description": "选项页面操作部分下的指南选项卡上的shorten变量的描述。",
"placeholders": {
"c_abbr": {
"content": "",
"example": ""
},
"o_abbr_1": {
"content": "",
"example": "\">"
}
}
},
"opt_guide_operations_text": {
"message": "$O_BOLD$操作$C_BOLD$使用部分,接受其呈现的内容作为参数。",
"description": "选项页面指南选项卡上操作部分的文本。",
"placeholders": {
"c_bold": {
"content": "",
"example": ""
},
"o_bold": {
"content": "",
"example": ""
}
}
},
"opt_guide_operations_tidy_text": {
"message": "将提供的文本中所有连接的空格和制表符缩减为单个空格,然后删除所有前导和尾随空格",
"description": "选项页面操作部分下的指南选项卡上的tidy变量的描述。"
},
"opt_guide_operations_trim_text": {
"message": "从提供的文本中删除所有前导和尾随空格",
"description": "选项页面操作部分下的指南选项卡上的trim变量的描述。"
},
"opt_guide_operations_trim_left_text": {
"message": "从提供的文本中删除所有前导空格",
"description": "选项页面操作部分下的指南选项卡上的trimLeft变量的描述。"
},
"opt_guide_operations_trim_right_text": {
"message": "从提供的文本中删除所有尾随空格",
"description": "选项页面操作部分下的指南选项卡上的trimRight变量的描述。"
},
"opt_guide_operations_unescape_text": {
"message": "与$ESCAPE_LABEL$相反;将提供的文本中的转义字符替换为其未转义的对应项",
"description": "选项页面操作部分的指南选项卡上的unescape变量的描述。",
"placeholders": {
"escape_label": {
"content": "转义",
"example": "转义"
}
}
},
"opt_guide_operations_upper_case_text": {
"message": "将提供的文本转换为大写",
"description": "选项页面操作部分的指南选项卡上的upperCase变量的描述。"
},
"opt_guide_operations_word_count_text": {
"message": "获取提供的文本中的单词数",
"description": "选项页面操作部分的指南选项卡上的wordCount变量的描述。"
},
"opt_guide_operations_xpath_all_html_text": {
"message": "将$O_LINK_XPATH$XPath$C_LINK$表达式的所有结果的$O_ABBR_1$超文本标记语言$O_ABBR_2$HTML$C_ABBR$内容连接起来",
"description": "选项页面操作部分的指南选项卡上的xpathAllHTML变量的描述。",
"placeholders": {
"c_abbr": {
"content": "",
"example": ""
},
"c_link": {
"content": "",
"example": ""
},
"o_abbr_1": {
"content": "",
"example": "\">"
},
"o_link_xpath": {
"content": "",
"example": ""
}
}
},
"opt_guide_operations_xpath_all_markdown_text": {
"message": "将$O_LINK_XPATH$XPath$C_LINK$表达式的所有结果的内容作为$O_LINK_MARKDOWN$Markdown$C_LINK$连接起来",
"description": "选项页面操作部分的指南选项卡上的xpathAllMarkdown变量的描述。",
"placeholders": {
"c_link": {
"content": "",
"example": ""
},
"o_link_markdown": {
"content": "",
"example": ""
},
"o_link_xpath": {
"content": "",
"example": ""
}
}
},
"opt_guide_operations_xpath_all_text": {
"message": "将$O_LINK_XPATH$XPath$C_LINK$表达式的所有结果连接起来",
"description": "选项页面操作部分的指南选项卡上的xpathAll变量的描述。",
"placeholders": {
"c_link": {
"content": "",
"example": ""
},
"o_link_xpath": {
"content": "",
"example": ""
}
}
},
"opt_guide_operations_xpath_html_text": {
"message": "获取$O_LINK_XPATH$XPath$C_LINK$表达式的第一个结果的$O_ABBR_1$超文本标记语言$O_ABBR_2$HTML$C_ABBR$内容",
"description": "选项页面操作部分的指南选项卡上的xpathHTML变量的描述。",
"placeholders": {
"c_abbr": {
"content": "",
"example": ""
},
"c_link": {
"content": "",
"example": ""
},
"o_abbr_1": {
"content": "",
"example": "\">"
},
"o_link_xpath": {
"content": "",
"example": ""
}
}
},
"opt_guide_operations_xpath_markdown_text": {
"message": "将$O_LINK_XPATH$XPath$C_LINK$表达式的第一个结果的内容作为$O_LINK_MARKDOWN$Markdown$C_LINK$获取",
"description": "选项页面操作部分的指南选项卡上的xpathMarkdown变量的描述。",
"placeholders": {
"c_link": {
"content": "",
"example": ""
},
"o_link_markdown": {
"content": "",
"example": ""
},
"o_link_xpath": {
"content": "",
"example": ""
}
}
},
"opt_guide_operations_xpath_text": {
"message": "获取$O_LINK_XPATH$XPath$C_LINK$表达式的第一个结果作为文本",
"description": "选项页面操作部分下的指南选项卡上xpath变量的描述。",
"placeholders": {
"c_link": {
"content": "",
"example": ""
},
"o_link_xpath": {
"content": "",
"example": ""
}
}
},
"opt_guide_options_header": {
"message": "选项",
"description": "选项页面指南选项卡上选项部分的标题。"
},
"opt_guide_options_bitly_account_text": {
"message": "您当前是否已登录到您的$O_LINK_BITLY$bit.ly$C_LINK$帐户",
"description": "选项页面选项部分下的bitlyAccount变量的描述。",
"placeholders": {
"c_link": {
"content": "",
"example": ""
},
"o_link_bitly": {
"content": "",
"example": ""
}
}
},
"opt_guide_options_bitly_text": {
"message": "$O_LINK_BITLY$bit.ly$C_LINK$是否为启用的$O_ABBR_1$统一资源定位符$O_ABBR_2$URL$C_ABBR$缩短器",
"description": "选项页面选项部分下的bitly变量的描述。",
"placeholders": {
"c_abbr": {
"content": "",
"example": ""
},
"c_link": {
"content": "",
"example": ""
},
"o_abbr_1": {
"content": "",
"example": "\">"
},
"o_link_bitly": {
"content": "",
"example": ""
}
}
},
"opt_guide_options_examples_code_1": {
"message": "$URL$",
"description": "选项页面选项部分下示例区域中第1个代码块的文本。",
"placeholders": {
"url": {
"content": "http://example.com/test/index.html",
"example": "http://example.com/test/index.html"
}
}
},
"opt_guide_options_examples_code_2": {
"message": "$SYNTAX_1$这是一个测试!$SYNTAX_2$",
"description": "选项页面选项部分下示例区域中第2个代码块的文本。",
"placeholders": {
"syntax_1": {
"content": "<a href="{url}"{#linksTitle} title="{{title}}"{/linksTitle}>",
"example": ""
},
"syntax_2": {
"content": "</a>",
"example": ""
}
}
},
"opt_guide_options_examples_code_3": {
"message": "$SYNTAX_1$测试$SYNTAX_2$这是一个测试!$SYNTAX_3$",
"description": "选项页面选项部分下示例区域中第3个代码块的文本。",
"placeholders": {
"syntax_1": {
"content": "<a href="http://example.com/test/index.html" title="",
"example": ""
},
"syntax_3": {
"content": "</a>",
"example": ""
}
}
},
"opt_guide_options_examples_code_4": {
"message": "$SYNTAX_1$这是一个测试!$SYNTAX_2$",
"description": "选项页面选项部分下示例区域中第4个代码块的文本。",
"placeholders": {
"syntax_1": {
"content": "<a href="http://example.com/test/index.html">",
"example": ""
},
"syntax_2": {
"content": "</a>",
"example": ""
}
}
},
"opt_guide_options_examples_text_1": {
"message": "这些示例将使用以下 $O_ABBR_1$统一资源定位符$O_ABBR_2$URL$C_ABBR$;",
"description": "选项部分下选项页面上指南选项卡中示例区域第一段的文本。",
"placeholders": {
"c_abbr": {
"content": "",
"example": ""
},
"o_abbr_1": {
"content": "",
"example": "\">"
}
}
},
"opt_guide_options_examples_text_2": {
"message": "仅在启用相应选项时才在锚标记中包含 $SYNTAX$ 属性;",
"description": "选项部分下选项页面上指南选项卡中示例区域第二段的文本。",
"placeholders": {
"syntax": {
"content": "标题",
"example": "标题"
}
}
},
"opt_guide_options_examples_text_3": {
"message": "如果您已启用该选项,则会输出以下内容;",
"description": "选项部分下选项页面上指南选项卡中示例区域第三段的文本。"
},
"opt_guide_options_examples_text_4": {
"message": "但是,如果您已禁用该选项,则会输出此内容;",
"description": "选项部分下选项页面上指南选项卡中示例区域第四段的文本。"
},
"opt_guide_options_googl_account_text": {
"message": "您当前是否已登录到您的 $O_LINK_GOOGL$goo.gl$C_LINK$ 帐户",
"description": "选项部分下选项页面上指南选项卡中 googlAccount 变量的描述。",
"placeholders": {
"c_link": {
"content": "",
"example": ""
},
"o_link_googl": {
"content": "",
"example": ""
}
}
},
"opt_guide_options_googl_text": {
"message": "是否启用了 $O_LINK_GOOGL$goo.gl$C_LINK$ 作为启用的 $O_ABBR_1$统一资源定位符$O_ABBR_2$URL$C_ABBR$ 缩短器",
"description": "选项部分下选项页面上指南选项卡中 googl 变量的描述。",
"placeholders": {
"c_abbr": {
"content": "",
"example": ""
},
"c_link": {
"content": "",
"example": ""
},
"o_abbr_1": {
"content": "",
"example": "\">"
},
"o_link_googl": {
"content": "",
"example": ""
}
}
},
"opt_guide_options_links_target_text": {
"message": "是否启用了将链接呈现为在新标签页/窗口中打开的说明的选项",
"description": "选项部分下选项页面上指南选项卡中 linksTarget 变量的描述。"
},
"opt_guide_options_links_title_text": {
"message": "是否启用了将链接呈现为悬停文本的选项",
"description": "选项部分下选项页面上指南选项卡中 linksTitle 变量的描述。"
},
"opt_guide_options_markdown_inline_text": {
"message": "是否启用了使用内联样式呈现 $O_LINK_MARKDOWN$Markdown$C_LINK$ 链接的选项",
"description": "选项部分下选项页面上指南选项卡中 markdownInline 变量的描述。",
"placeholders": {
"c_link": {
"content": "",
"example": ""
},
"o_link_markdown": {
"content": "",
"example": ""
}
}
},
"opt_guide_options_menu_text": {
"message": "是否启用了显示上下文(右键单击)菜单的选项",
"description": "选项部分下选项页面上指南选项卡中 menu 变量的描述。"
},
"opt_guide_options_menu_options_text": {
"message": "是否在上下文(右键单击)菜单底部显示 $O_EMPH$选项$C_EMPH$ 项目",
"description": "选项部分下选项页面上指南选项卡中 menuOptions 变量的描述。",
"placeholders": {
"c_emph": {
"content": "",
"example": ""
},
"o_emph": {
"content": "",
"example": ""
}
}
},
"opt_guide_options_menu_paste_text": {
"message": "是否自动将模板输出粘贴到激活上下文(右键单击)菜单的字段中",
"description": "选项部分下选项页面上指南选项卡中 menuPaste 变量的描述。"
},
"opt_guide_options_notifications_text": {
"message": "是否启用了显示桌面通知的选项",
"description": "选项部分下选项页面上指南选项卡中 notifications 变量的描述。"
},
"opt_guide_options_shortcuts_paste_text": {
"message": "是否自动将模板输出粘贴到检测到键盘快捷键的字段中",
"description": "选项页面下选项部分的指南标签上shortcutsPaste变量的描述。"
},
"opt_guide_options_shortcuts_text": {
"message": "是否启用允许键盘快捷键的选项",
"description": "选项页面下选项部分的指南标签上shortcuts变量的描述。"
},
"opt_guide_options_text": {
"message": "$O_BOLD$选项$C_BOLD$是代表您当前$O_BOLD$模板$C_BOLD$设置的变量,通常以与标准变量相同的方式访问。",
"description": "选项页面指南标签上选项部分的文本。",
"placeholders": {
"c_bold": {
"content": "",
"example": ""
},
"o_bold": {
"content": "",
"example": ""
}
}
},
"opt_guide_options_toolbar_close_text": {
"message": "是否在选择模板后立即关闭弹出窗口",
"description": "选项页面下选项部分的指南标签上toolbarClose变量的描述。"
},
"opt_guide_options_toolbar_key_text": {
"message": "单击工具栏按钮时激活的模板的唯一键",
"description": "选项页面下选项部分的指南标签上toolbarKey变量的描述。"
},
"opt_guide_options_toolbar_options_text": {
"message": "是否在弹出窗口底部显示$O_EMPH$选项$C_EMPH$链接",
"description": "选项页面下选项部分的指南标签上toolbarOptions变量的描述。",
"placeholders": {
"c_emph": {
"content": "",
"example": ""
},
"o_emph": {
"content": "",
"example": ""
}
}
},
"opt_guide_options_toolbar_popup_text": {
"message": "单击工具栏按钮时是否显示弹出窗口",
"description": "选项页面下选项部分的指南标签上toolbarPopup变量的描述。"
},
"opt_guide_options_yourls_authentication_text": {
"message": "$O_LINK_YOURLS$YOURLS$C_LINK$服务的身份验证(例如$EXAMPLE_1$,$EXAMPLE_2$或$EXAMPLE_3$(如果没有))",
"description": "选项页面下选项部分的指南标签上yourlsAuthentication变量的描述。",
"placeholders": {
"c_link": {
"content": "",
"example": ""
},
"example_1": {
"content": "高级",
"example": "高级"
},
"example_2": {
"content": "基本",
"example": "基本"
},
"example_3": {
"content": "无",
"example": "无"
},
"o_link_yourls": {
"content": "",
"example": ""
}
}
},
"opt_guide_options_yourls_password_text": {
"message": "$O_LINK_YOURLS$YOURLS$C_LINK$服务的密码",
"description": "选项页面下选项部分的指南标签上yourlsPassword变量的描述。",
"placeholders": {
"c_link": {
"content": "",
"example": ""
},
"o_link_yourls": {
"content": "",
"example": ""
}
}
},
"opt_guide_options_yourls_signature_text": {
"message": "$O_LINK_YOURLS$YOURLS$C_LINK$服务的签名(例如$EXAMPLE$)",
"description": "选项页面下选项部分的指南标签上yourlsSignature变量的描述。",
"placeholders": {
"c_link": {
"content": "",
"example": ""
},
"example": {
"content": "3002a61584",
"example": "3002a61584"
},
"o_link_yourls": {
"content": "",
"example": ""
}
}
},
"opt_guide_options_yourls_text": {
"message": "是否启用$O_LINK_YOURLS$YOURLS$C_LINK$作为短链接服务",
"description": "选项页面选项部分下指南选项标签页中yourls变量的描述。",
"placeholders": {
"c_abbr": {
"content": "",
"example": ""
},
"c_link": {
"content": "",
"example": ""
},
"o_abbr_1": {
"content": "",
"example": "\">"
},
"o_link_yourls": {
"content": "",
"example": ""
}
}
},
"opt_guide_options_yourls_url_text": {
"message": "$O_LINK_YOURLS$YOURLS$C_LINK$服务的$O_ABBR_1$统一资源定位符$O_ABBR_2$URL$C_ABBR$(例如$EXAMPLE$)",
"description": "选项页面选项部分下指南选项标签页中yourlsUrl变量的描述。",
"placeholders": {
"c_abbr": {
"content": "",
"example": ""
},
"c_link": {
"content": "",
"example": ""
},
"example": {
"content": "http://example.com/yourls-api.php",
"example": "http://example.com/yourls-api.php"
},
"o_abbr_1": {
"content": "",
"example": "\">"
},
"o_link_yourls": {
"content": "",
"example": ""
}
}
},
"opt_guide_options_yourls_username_text": {
"message": "$O_LINK_YOURLS$YOURLS$C_LINK$服务的用户名",
"description": "选项页面选项部分下指南选项标签页中yourlsUsername变量的描述。",
"placeholders": {
"c_link": {
"content": "",
"example": ""
},
"o_link_yourls": {
"content": "",
"example": ""
}
}
},
"opt_guide_standard_author_text": {
"message": "页面元信息中的作者",
"description": "选项页面标准部分下指南选项标签页中author变量的描述。"
},
"opt_guide_standard_base_text": {
"message": "基础域名(例如$EXAMPLE$)",
"description": "选项页面标准部分下指南选项标签页中base变量的描述。",
"placeholders": {
"example": {
"content": "https://www.example.com:443",
"example": "https://www.example.com:443"
}
}
},
"opt_guide_standard_browser_text": {
"message": "浏览器名称(即$O_EMPH$Chrome$C_EMPH$)",
"description": "选项页面标准部分下指南选项标签页中browser变量的描述。",
"placeholders": {
"c_emph": {
"content": "",
"example": ""
},
"o_emph": {
"content": "",
"example": ""
}
}
},
"opt_guide_standard_browser_version_text": {
"message": "浏览器的当前版本(例如$EXAMPLE$)",
"description": "选项页面标准部分下指南选项标签页中browserVersion变量的描述。",
"placeholders": {
"example": {
"content": "16.0.912.77",
"example": "16.0.912.77"
}
}
},
"opt_guide_standard_character_set_text": {
"message": "页面使用的$O_LINK_CHAR_SET$字符集$C_LINK$(例如$EXAMPLE$)",
"description": "选项页面标准部分下指南选项标签页中characterSet变量的描述。",
"placeholders": {
"c_link": {
"content": "",
"example": ""
},
"example": {
"content": "UTF-8",
"example": "UTF-8"
},
"o_link_char_set": {
"content": "",
"example": ""
}
}
},
"opt_guide_standard_cookies_enabled_text": {
"message": "是否启用cookie",
"description": "选项页面标准部分下指南选项标签页中cookiesEnabled变量的描述。"
},
"opt_guide_standard_count_text": {
"message": "模板的总数",
"description": "选项页面标准部分下的指南选项卡上计数变量的描述。"
},
"opt_guide_standard_custom_count_text": {
"message": "用户定义模板的总数",
"description": "选项页面标准部分下的指南选项卡上自定义计数变量的描述。"
},
"opt_guide_standard_date_time_text": {
"message": "当前日期和时间,格式为$O_LINK_RFC_2822$RFC 2822$C_LINK$",
"description": "选项页面标准部分下的指南选项卡上日期时间变量的描述。",
"placeholders": {
"c_link": {
"content": "",
"example": ""
},
"o_link_rfc_2822": {
"content": "",
"example": ""
}
}
},
"opt_guide_standard_depth_text": {
"message": "颜色深度(以位为单位)(例如$EXAMPLE$)",
"description": "选项页面标准部分下的指南选项卡上深度变量的描述。",
"placeholders": {
"example": {
"content": "24",
"example": "24"
}
}
},
"opt_guide_standard_description_text": {
"message": "页面元信息中的描述",
"description": "选项页面标准部分下的指南选项卡上描述变量的描述。"
},
"opt_guide_standard_directory_text": {
"message": "路径的目录部分(例如$EXAMPLE$)",
"description": "选项页面标准部分下的指南选项卡上目录变量的描述。",
"placeholders": {
"example": {
"content": "/folder/dir/",
"example": "/folder/dir/"
}
}
},
"opt_guide_standard_examples_code_1": {
"message": "$URL$",
"description": "选项页面标准部分下的指南选项卡上示例区域中第1个代码块的文本。",
"placeholders": {
"url": {
"content": "http://example.com/test/index.html",
"example": "http://example.com/test/index.html"
}
}
},
"opt_guide_standard_examples_code_2": {
"message": "标题:\n$SYNTAX_1$\n描述:\n$SYNTAX_2$\n$SYNTAX_3$N/A$SYNTAX_4$",
"description": "选项页面标准部分下的指南选项卡上示例区域中第2个代码块的文本。",
"placeholders": {
"syntax_1": {
"content": "{title}",
"example": "{title}"
},
"syntax_2": {
"content": "{#description}{description}{/description}",
"example": "{#description}{description}{/description}"
},
"syntax_3": {
"content": "{^description}",
"example": "{^description}"
},
"syntax_4": {
"content": "{/description}",
"example": "{/description}"
}
}
},
"opt_guide_standard_examples_code_3": {
"message": "标题:\n测试\n描述:\n这是一个测试!",
"description": "选项页面标准部分下的指南选项卡上示例区域中第3个代码块的文本。"
},
"opt_guide_standard_examples_code_4": {
"message": "标题:\n测试\n描述:\nN/A",
"description": "选项页面标准部分下的指南选项卡上示例区域中第4个代码块的文本。"
},
"opt_guide_standard_examples_text_1": {
"message": "这些示例将使用以下$O_ABBR_1$统一资源定位符$O_ABBR_2$URL$C_ABBR$;",
"description": "选项页面标准部分下的指南选项卡上示例区域中第1段文本。",
"placeholders": {
"c_abbr": {
"content": "",
"example": ""
},
"o_abbr_1": {
"content": "",
"example": "\">"
}
}
},
"opt_guide_standard_examples_text_2": {
"message": "使用标准变量的一个很好的例子是显示当前页面的标题以及其元描述(如果有的话);",
"description": "选项页面标准部分下的指南选项卡上示例区域中第2段文本。"
},
"opt_guide_standard_examples_text_3": {
"message": "如果页面包含元描述,则会输出类似于以下内容;",
"description": "选项页面标准部分下的指南选项卡上示例区域中第3段文本。"
},
"opt_guide_standard_examples_text_4": {
"message": "否则,您可以期望看到以下内容;",
"description": "选项页面标准部分下的指南选项卡上示例区域中第4段文本。"
},
"opt_guide_standard_favicon_text": {
"message": "页面图标的完整$O_ABBR_1$统一资源定位符$O_ABBR_2$URL$C_ABBR$",
"description": "选项页面标准部分下指南选项卡中图标变量的描述。",
"placeholders": {
"c_abbr": {
"content": "",
"example": ""
},
"o_abbr_1": {
"content": "",
"example": "\">"
}
}
},
"opt_guide_standard_file_text": {
"message": "文件的基本名称(例如$EXAMPLE$)",
"description": "选项页面标准部分下指南选项卡中文件变量的描述。",
"placeholders": {
"example": {
"content": "index.html",
"example": "index.html"
}
}
},
"opt_guide_standard_fragment_anchor_text": {
"message": "井号(#)符号后的整个字符串",
"description": "选项页面标准部分下指南选项卡中片段和锚变量的描述。"
},
"opt_guide_standard_header": {
"message": "标准",
"description": "选项页面标准部分下指南选项卡的标题。"
},
"opt_guide_standard_host_text": {
"message": "例如:$EXAMPLE_1$,$EXAMPLE_2$",
"description": "选项页面标准部分下指南选项卡中主机变量的描述。",
"placeholders": {
"example_1": {
"content": "www.example.com",
"example": "www.example.com"
},
"example_2": {
"content": "localhost",
"example": "localhost"
}
}
},
"opt_guide_standard_html_text": {
"message": "页面的整个$O_ABBR_1$超文本标记语言$O_ABBR_2$HTML$C_ABBR$内容",
"description": "选项页面标准部分下指南选项卡中HTML变量的描述。",
"placeholders": {
"c_abbr": {
"content": "",
"example": ""
},
"o_abbr_1": {
"content": "",
"example": "\">"
}
}
},
"opt_guide_standard_java_text": {
"message": "是否启用$O_LINK_JAVA$Java$C_LINK$",
"description": "选项页面标准部分下指南选项卡中Java变量的描述。",
"placeholders": {
"c_link": {
"content": "",
"example": ""
},
"o_link_java": {
"content": "",
"example": ""
}
}
},
"opt_guide_standard_last_modified_text": {
"message": "页面的最后修改日期和时间,以$O_LINK_RFC_2822$RFC 2822$C_LINK$格式显示",
"description": "选项页面标准部分下指南选项卡中lastModified变量的描述。",
"placeholders": {
"c_link": {
"content": "",
"example": ""
},
"o_link_rfc_2822": {
"content": "",
"example": ""
}
}
},
"opt_guide_standard_link_html_text": {
"message": "上下文(右键单击)链接的$O_ABBR_1$超文本标记语言$O_ABBR_2$HTML$C_ABBR$",
"description": "选项页面标准部分下指南选项卡中linkHTML变量的描述。",
"placeholders": {
"c_abbr": {
"content": "",
"example": ""
},
"o_abbr_1": {
"content": "",
"example": "\">"
}
}
},
"opt_guide_standard_link_markdown_text": {
"message": "上下文(右键单击)链接的内容,格式为$O_LINK_MARKDOWN$Markdown$C_LINK$",
"description": "选项页面标准部分下指南选项卡中linkMarkdown变量的描述。",
"placeholders": {
"c_link": {
"content": "",
"example": ""
},
"o_link_markdown": {
"content": "",
"example": ""
}
}
},
"opt_guide_standard_link_text_text": {
"message": "上下文(右键单击)链接的文本",
"description": "选项页面标准部分下指南选项卡中linkText变量的描述。"
},
"opt_guide_standard_locale_text": {
"message": "检测到页面语言的 $O_LINK_ISO_639$ISO 639$C_LINK$ 代码",
"description": "选项页面标准部分下的指南选项卡上的区域变量的描述。",
"placeholders": {
"c_link": {
"content": "",
"example": ""
},
"o_link_iso_639": {
"content": "",
"example": ""
}
}
},
"opt_guide_standard_markdown_text": {
"message": "页面的全部内容,以 $O_LINK_MARKDOWN$Markdown$C_LINK$ 形式呈现",
"description": "选项页面标准部分下的指南选项卡上的 markdown 变量的描述。",
"placeholders": {
"c_link": {
"content": "",
"example": ""
},
"o_link_markdown": {
"content": "",
"example": ""
}
}
},
"opt_guide_standard_offline_text": {
"message": "当前是否离线",
"description": "选项页面标准部分下的指南选项卡上的离线变量的描述。"
},
"opt_guide_standard_original_title_text": {
"message": "页面的原始标题(如果检测到支持的扩展名并从中提取了 $TITLE_LABEL$ 的值,则可能与 $TITLE_LABEL$ 不同)",
"description": "选项页面标准部分下的指南选项卡上的 originalTitle 变量的描述。",
"placeholders": {
"title_label": {
"content": "title",
"example": "title"
}
}
},
"opt_guide_standard_original_url_text": {
"message": "正在解析的原始 $O_ABBR_1$统一资源定位符$O_ABBR_2$URL$C_ABBR$(如果检测到支持的扩展名并从中提取了 $URL_LABEL$ 的值,则可能与 $URL_LABEL$ 不同)",
"description": "选项页面标准部分下的指南选项卡上的 originalUrl 变量的描述。",
"placeholders": {
"c_abbr": {
"content": "",
"example": ""
},
"o_abbr_1": {
"content": "",
"example": "\">"
},
"url_label": {
"content": "url",
"example": "url"
}
}
},
"opt_guide_standard_os_text": {
"message": "您的操作系统系列(例如 $O_EMPH$Windows$C_EMPH$、$O_EMPH$Mac$C_EMPH$、$O_EMPH$Linux$C_EMPH$)",
"description": "选项页面标准部分下的指南选项卡上的操作系统变量的描述。",
"placeholders": {
"c_emph": {
"content": "",
"example": ""
},
"o_emph": {
"content": "",
"example": ""
}
}
},
"opt_guide_standard_page_height_text": {
"message": "页面的高度",
"description": "选项页面标准部分下的指南选项卡上的 pageHeight 变量的描述。"
},
"opt_guide_standard_page_width_text": {
"message": "页面的宽度",
"description": "选项页面标准部分下的指南选项卡上的 pageWidth 变量的描述。"
},
"opt_guide_standard_path_text": {
"message": "文件的路径(例如 $EXAMPLE$)",
"description": "选项页面标准部分下的指南选项卡上的路径变量的描述。",
"placeholders": {
"example": {
"content": "/folder/dir/index.html",
"example": "/folder/dir/index.html"
}
}
},
"opt_guide_standard_port_text": {
"message": "例如:$EXAMPLE_1$、$EXAMPLE_2$",
"description": "选项页面标准部分下的指南选项卡上的端口变量的描述。",
"placeholders": {
"example_1": {
"content": "80",
"example": "80"
},
"example_2": {
"content": "443",
"example": "443"
}
}
},
"opt_guide_standard_protocol_text": {
"message": "例如:$EXAMPLE_1$、$EXAMPLE_2$、$EXAMPLE_3$",
"description": "选项页面标准部分下的指南选项卡上的协议变量的描述。",
"placeholders": {
"example_1": {
"content": "http",
"example": "http"
},
"example_2": {
"content": "https",
"example": "https"
},
"example_3": {
"content": "file",
"example": "file"
}
}
},
"opt_guide_standard_query_text": {
"message": "如果存在整个查询字符串(例如$EXAMPLE$)",
"description": "选项页面标准部分下的指南选项卡上查询变量的描述。",
"placeholders": {
"example": {
"content": "item=value&item2=value2",
"example": "item=value&item2=value2"
}
}
},
"opt_guide_standard_referrer_text": {
"message": "引用页面的$O_ABBR_1$统一资源定位符$O_ABBR_2$URL$C_ABBR$",
"description": "选项页面标准部分下的指南选项卡上引用变量的描述。",
"placeholders": {
"c_abbr": {
"content": "",
"example": ""
},
"o_abbr_1": {
"content": "",
"example": "\">"
}
}
},
"opt_guide_standard_relative_text": {
"message": "包括查询字符串的文件的相对路径(例如$EXAMPLE$)",
"description": "选项页面标准部分下的指南选项卡上相对变量的描述。",
"placeholders": {
"example": {
"content": "/folder/dir/index.html?item=value",
"example": "/folder/dir/index.html?item=value"
}
}
},
"opt_guide_standard_screen_height_text": {
"message": "屏幕的高度",
"description": "选项页面标准部分下的指南选项卡上screenHeight变量的描述。"
},
"opt_guide_standard_screen_width_text": {
"message": "屏幕的宽度",
"description": "选项页面标准部分下的指南选项卡上screenWidth变量的描述。"
},
"opt_guide_standard_selection_html_text": {
"message": "当前选择的$O_ABBR_1$超文本标记语言$O_ABBR_2$HTML$C_ABBR$",
"description": "选项页面标准部分下的指南选项卡上selectionHTML变量的描述。",
"placeholders": {
"c_abbr": {
"content": "",
"example": ""
},
"o_abbr_1": {
"content": "",
"example": "\">"
}
}
},
"opt_guide_standard_selection_markdown_text": {
"message": "当前选择的文本格式为$O_LINK_MARKDOWN$Markdown$C_LINK$",
"description": "选项页面标准部分下的指南选项卡上selectionMarkdown变量的描述。",
"placeholders": {
"c_link": {
"content": "",
"example": ""
},
"o_link_markdown": {
"content": "",
"example": ""
}
}
},
"opt_guide_standard_selection_text": {
"message": "当前选择的文本",
"description": "选项页面标准部分下的指南选项卡上selection变量的描述。"
},
"opt_guide_standard_text": {
"message": "$O_BOLD$标准$c_BOLD$变量通常使用简单标记访问。但是,还可以使用部分(包括反转)来添加条件。",
"description": "选项页面指南选项卡上标准部分的文本。",
"placeholders": {
"c_bold": {
"content": "",
"example": ""
},
"o_bold": {
"content": "",
"example": ""
}
}
},
"opt_guide_standard_text_text": {
"message": "页面的全部文本",
"description": "选项页面标准部分下的指南选项卡上text变量的描述。"
},
"opt_guide_standard_title_text": {
"message": "页面的标题或$URL_LABEL$(例如页面尚未完成加载)",
"description": "选项页面标准部分下的指南选项卡上title变量的描述。",
"placeholders": {
"url_label": {
"content": "url",
"example": "url"
}
}
},
"opt_guide_standard_url_text": {
"message": "正在解析的整个$O_ABBR_1$统一资源定位符$O_ABBR_2$URL$C_ABBR$",
"description": "选项页面标准部分下的指南选项卡上url变量的描述。",
"placeholders": {
"c_abbr": {
"content": "",
"example": ""
},
"o_abbr_1": {
"content": "",
"example": "\">"
}
}
},
"opt_guide_standard_version_text": {
"message": "已安装的 $O_BOLD$模板$C_BOLD$ 版本(即 $VERSION$)",
"description": "选项页面标准部分下的指南选项卡上版本变量的描述。",
"placeholders": {
"c_bold": {
"content": "",
"example": ""
},
"o_bold": {
"content": "",
"example": ""
},
"version": {
"content": "$1",
"example": "1.0.0"
}
}
},
"opt_guide_type_header": {
"message": "类型",
"description": "选项页面列表和对象部分下指南选项卡上类型列的标题。"
},
"opt_guide_type_list_text": {
"message": "列表",
"description": "选项页面列表和对象部分下指南选项卡上类型列中列表的显示文本。"
},
"opt_guide_type_object_text": {
"message": "对象",
"description": "选项页面列表和对象部分下指南选项卡上类型列中对象的显示文本。"
},
"opt_import_button_text": {
"message": "$ICON$ 导入",
"description": "选项页面模板选项卡上导入按钮的文本。",
"placeholders": {
"icon": {
"content": "",
"example": ""
}
}
},
"opt_import_button_title": {
"message": "将模板导入您的浏览器",
"description": "选项页面模板选项卡上导入按钮的悬停文本。"
},
"opt_import_wizard_header": {
"message": "导入",
"description": "导入对话框的标题。"
},
"opt_import_wizard_import_button": {
"message": "导入",
"description": "导入对话框中导入按钮的文本。"
},
"opt_import_wizard_paste_alt_button": {
"message": "已粘贴!",
"description": "导入对话框中粘贴按钮的文本。这是用户单击按钮后短暂使用的。"
},
"opt_import_wizard_paste_button": {
"message": "粘贴",
"description": "导入对话框中粘贴按钮的文本。"
},
"opt_import_wizard_stage_1_text": {
"message": "粘贴或上传模板数据。",
"description": "导入对话框的初始步骤的文本。"
},
"opt_import_wizard_stage_2_text_1": {
"message": "找到 $1 个有效的模板。",
"description": "导入对话框的最终成功步骤的第一段。"
},
"opt_import_wizard_stage_2_text_2": {
"message": "选择要导入的模板;",
"description": "导入对话框的最终成功步骤的第二段。"
},
"opt_links_header": {
"message": "链接",
"description": "链接部分的标题。"
},
"opt_links_target_label": {
"message": "新标签页/窗口",
"description": "新标签页/窗口字段的标签。"
},
"opt_links_target_text": {
"message": "单击链接时在新的浏览器标签页/窗口中打开",
"description": "新标签页/窗口字段的文本。"
},
"opt_links_text": {
"message": "此部分涉及由模板呈现的链接。这些选项仅适用于实现使用相应模板选项的逻辑的模板(有关更多信息,请参见$O_LINK_GUIDE$指南$C_LINK$),并非所有标记语言都支持这些选项所代表的功能。",
"description": "链接部分的文本。",
"placeholders": {
"c_link": {
"content": "",
"example": ""
},
"o_link_guide": {
"content": "",
"example": ""
}
}
},
"opt_links_title_label": {
"message": "悬停文本",
"description": "悬停文本字段的标签。"
},
"opt_links_title_text": {
"message": "悬停链接时显示上下文标题",
"description": "悬停文本字段的文本。"
},
"opt_logger_enabled_label": {
"message": "已启用",
"description": "选项页面日志记录部分中开发人员工具对话框中已启用字段的标签。"
},
"opt_logger_enabled_text": {
"message": "将日志输出到 JavaScript 控制台",
"description": "选项页面日志记录部分中开发人员工具对话框中已启用字段的文本。"
},
"opt_logger_header": {
"message": "日志记录",
"description": "选项页面开发人员工具对话框中日志记录部分的标题。"
},
"opt_logger_help": {
"message": "$O_PARA$如果您想查看日志,请按照以下步骤操作:$C_PARA$$O_LIST$$O_ITEM$通过单击扳手图标并选择 $O_BOLD$工具 > 扩展程序$C_BOLD$,打开扩展程序管理页面$C_ITEM$$O_ITEM$确保页面右上角的 $O_BOLD$开发者模式$C_BOLD$ 已选中$C_ITEM$$O_ITEM$展开 $O_BOLD$Template$C_BOLD$ 的列表并单击 $FILE$ 链接$C_ITEM$$O_ITEM$在新的 $O_BOLD$开发者工具$C_BOLD$ 窗口中选择 $O_BOLD$Console$C_BOLD$ 选项卡$C_ITEM$$C_LIST$",
"description": "选项页面上开发者工具对话框中日志部分的帮助文本。",
"placeholders": {
"c_bold": {
"content": "",
"example": ""
},
"c_item": {
"content": "",
"example": ""
},
"c_list": {
"content": "",
"example": ""
},
"c_para": {
"content": "",
"example": ""
},
"file": {
"content": "pages/background.html",
"example": "pages/background.html"
},
"o_bold": {
"content": "",
"example": ""
},
"o_item": {
"content": "", "example": "
" } } }, "opt_logger_help_label": { "message": "如何查看日志?", "description": "选项页面上开发者工具对话框中日志部分的帮助标签。" }, "opt_logger_level_debug_text": { "message": "调试", "description": "选项页面上开发者工具对话框中日志部分级别字段的调试选项的文本。" }, "opt_logger_level_error_text": { "message": "错误(最高)", "description": "选项页面上开发者工具对话框中日志部分级别字段的错误选项的文本。" }, "opt_logger_level_information_text": { "message": "信息", "description": "选项页面上开发者工具对话框中日志部分级别字段的信息选项的文本。" }, "opt_logger_level_label": { "message": "级别", "description": "选项页面上开发者工具对话框中日志部分级别字段的标签。" }, "opt_logger_level_sub_text": { "message": "仅显示此级别或更高级别的日志", "description": "选项页面上开发者工具对话框中日志部分级别字段的帮助文本。" }, "opt_logger_level_text": { "message": "选择要执行的日志记录级别", "description": "选项页面上开发者工具对话框中日志部分级别字段的文本。" }, "opt_logger_level_trace_text": { "message": "跟踪(最低)", "description": "选项页面上开发者工具对话框中日志部分级别字段的跟踪选项的文本。" }, "opt_logger_level_warning_text": { "message": "警告", "description": "选项页面上开发者工具对话框中日志部分级别字段的警告选项的文本。" }, "opt_markdown_header": { "message": "Markdown", "description": "Markdown 部分的标题。" }, "opt_markdown_text": { "message": "此部分涉及从 $O_ABBR_1$超文本标记语言$O_ABBR_2$HTML$C_ABBR$ 转换为 $O_LINK_MARKDOWN$Markdown$C_LINK$ 的内容。", "description": "Markdown 部分的文本。", "placeholders": { "c_abbr": { "content": "
[text](url)",
"example": "[title](url)"
}
}
},
"opt_markdown_inline_text": {
"message": "不再在输出末尾列出链接引用",
"description": "内联链接字段的文本。"
},
"opt_menu_header": {
"message": "上下文菜单",
"description": "选项页面上通用选项卡下上下文菜单部分的标题。"
},
"opt_menu_enabled_label": {
"message": "右键单击",
"description": "选项页面上通用选项卡下上下文菜单部分右键单击字段的标签。"
},
"opt_menu_enabled_text": {
"message": "模板可以从上下文菜单中访问",
"description": "选项页面通用选项卡下上下文菜单部分右键单击字段的文本。"
},
"opt_menu_options_label": {
"message": "选项链接",
"description": "选项页面通用选项卡下上下文菜单部分选项链接字段的标签。"
},
"opt_menu_options_text": {
"message": "在菜单底部显示一个项目,以打开选项页面",
"description": "选项页面通用选项卡下上下文菜单部分选项链接字段的文本。"
},
"opt_menu_paste_label": {
"message": "自动粘贴",
"description": "选项页面通用选项卡下上下文菜单部分自动粘贴字段的标签。"
},
"opt_menu_paste_text": {
"message": "将模板结果粘贴到右键单击的可编辑字段中",
"description": "选项页面通用选项卡下上下文菜单部分自动粘贴字段的文本。"
},
"opt_message_error_header": {
"message": "糟糕!",
"description": "标准错误警报消息的标题。"
},
"opt_message_header": {
"message": "注意!",
"description": "标准信息警报消息的标题。"
},
"opt_message_success_header": {
"message": "干得好!",
"description": "标准成功警报消息的标题。"
},
"opt_message_warning_header": {
"message": "警告!",
"description": "标准警告警报消息的标题。"
},
"opt_misc_header": {
"message": "杂项",
"description": "选项页面通用选项卡下杂项部分的标题。"
},
"opt_no_templates_found_text": {
"message": "未找到模板...",
"description": "当找不到模板时,表格的文本。"
},
"opt_notification_header": {
"message": "桌面通知",
"description": "选项页面通用选项卡下桌面通知部分的标题。"
},
"opt_notification_label": {
"message": "通知",
"description": "选项页面通用选项卡下桌面通知部分通知字段的标签。"
},
"opt_notification_sub_text": {
"message": "这些通知也将用于通知您发生的任何错误",
"description": "选项页面通用选项卡下桌面通知部分通知字段的帮助文本。"
},
"opt_notification_text": {
"message": "显示桌面通知以显示使用模板的结果",
"description": "选项页面通用选项卡下桌面通知部分通知字段的文本。"
},
"opt_protected_sub_text": {
"message": "此功能在内部 Chrome 页面或 $O_LINK_WEBSTORE$Chrome 网上应用店$C_LINK$ 上不可用",
"description": "选项页面上的字段的帮助文本,其功能在受保护的页面上不起作用。",
"placeholders": {
"c_link": {
"content": "",
"example": ""
},
"o_link_webstore": {
"content": "",
"example": ""
}
}
},
"opt_reset_text": {
"message": "重置",
"description": "重置按钮的文本。"
},
"opt_search_placeholder_text": {
"message": "搜索...",
"description": "搜索字段的占位符文本。"
},
"opt_select_all_box": {
"message": "全选",
"description": "全选复选框的标题。"
},
"opt_select_all_box_checked": {
"message": "取消全选",
"description": "选中全选复选框的标题。"
},
"opt_select_box": {
"message": "选择",
"description": "选择复选框的标题。"
},
"opt_select_box_checked": {
"message": "取消选择",
"description": "选中选择复选框的标题。"
},
"opt_shortcuts_header": {
"message": "键盘快捷键",
"description": "选项页面通用选项卡下键盘快捷键部分的标题。"
},
"opt_shortcuts_enabled_label": {
"message": "热键",
"description": "选项页面通用选项卡下键盘快捷键部分热键字段的标签。"
},
"opt_shortcuts_enabled_text": {
"message": "可以使用键盘快捷键访问模板",
"description": "选项页面通用选项卡下键盘快捷键部分热键字段的文本。"
},
"opt_shortcuts_paste_label": {
"message": "自动粘贴",
"description": "选项页面通用选项卡下键盘快捷键部分自动粘贴字段的标签。"
},
"opt_shortcuts_paste_text": {
"message": "将模板结果粘贴到使用热键的可编辑字段中",
"description": "选项页面通用选项卡下键盘快捷键部分自动粘贴字段的文本。"
},
"opt_show_all_text": {
"message": "全部",
"description": "可见结果限制选择中的全部选项的文本。"
},
"opt_show_label": {
"message": "显示:",
"description": "可见结果限制选择的标签。"
},
"opt_template_content_label": {
"message": "内容",
"description": "选项页面模板选项卡下内容字段的标签。"
},
"opt_template_content_sub_text": {
"message": "需要帮助编写模板?尝试$O_LINK_GUIDE$阅读指南$C_LINK$",
"description": "选项页面模板选项卡下内容字段的帮助文本。",
"placeholders": {
"c_link": {
"content": "",
"example": ""
},
"o_link_guide": {
"content": "",
"example": ""
}
}
},
"opt_template_delete_multiple_predefined_error_1": {
"message": "以下模板是预定义的,无法删除:",
"description": "当用户尝试删除多个预定义模板时显示的错误消息的第一段。"
},
"opt_template_delete_multiple_predefined_error_2": {
"message": "取消选择所有这些模板,然后重试。",
"description": "当用户尝试删除多个预定义模板时显示的错误消息的第二段。"
},
"opt_template_delete_predefined_error_1": {
"message": "以下模板是预定义模板,无法删除:",
"description": "当用户尝试删除单个预定义模板时显示的错误消息的第一段。"
},
"opt_template_delete_predefined_error_2": {
"message": "取消选择此模板,然后重试。",
"description": "当用户尝试删除单个预定义模板时显示的错误消息的第二段。"
},
"opt_template_enabled_label": {
"message": "已启用",
"description": "选项页面模板选项卡上“已启用”字段的标签。"
},
"opt_template_enabled_text": {
"message": "允许访问此模板",
"description": "选项页面模板选项卡上“已启用”字段的文本。"
},
"opt_template_header": {
"message": "模板",
"description": "选项页面模板选项卡的标题。这也显示在页面的导航中。"
},
"opt_template_image_label": {
"message": "图像",
"description": "选项页面模板选项卡上“图像”字段的标签。"
},
"opt_template_modify_title": {
"message": "修改$TEMPLATE$",
"description": "选项页面模板选项卡上模板链接的悬停文本。",
"placeholders": {
"template": {
"content": "$1",
"example": "URL"
}
}
},
"opt_template_move_title": {
"message": "拖放$TEMPLATE$以更改其顺序",
"description": "选项页面模板选项卡上拖放指示器的悬停文本。",
"placeholders": {
"template": {
"content": "$1",
"example": "URL"
}
}
},
"opt_template_new_header": {
"message": "新模板",
"description": "创建新模板时模板向导的标题。"
},
"opt_template_disabled_selected_title": {
"message": "所选模板已禁用",
"description": "仅选择禁用模板时动态按钮的悬停文本。"
},
"opt_template_enabled_selected_title": {
"message": "所选模板已启用",
"description": "仅选择启用模板时动态按钮的悬停文本。"
},
"opt_template_no_predefined_delete_title": {
"message": "无法删除预定义模板",
"description": "选择或上下文中选择预定义模板时动态删除按钮的悬停文本。"
},
"opt_template_none_selected_title": {
"message": "必须选择一个或多个模板",
"description": "未选择模板时动态按钮的悬停文本。"
},
"opt_template_shortcut_help": {
"message": "$O_PARA$此字段的以下规则适用:$C_PARA$$O_LIST$$O_ITEM$必须是字母数字键$C_ITEM$$O_ITEM$重复时,将激活第一个模板$C_ITEM$$O_ITEM$为空时,无法使用键盘快捷键激活模板$C_ITEM$$C_LIST$",
"description": "选项页面模板选项卡上“快捷键”字段的帮助文本。",
"placeholders": {
"break": {
"content": "", "example": "
" } } }, "opt_template_shortcut_invalid": { "message": "键盘快捷键使用无效键", "description": "当用户尝试将无效的键盘快捷键分配给模板时显示的错误消息。" }, "opt_template_shortcut_label": { "message": "快捷键", "description": "选项页面模板选项卡上“快捷键”字段的标签。" }, "opt_template_title_invalid": { "message": "标题缺失", "description": "当用户尝试将空标题分配给模板时显示的错误消息。" }, "opt_template_title_label": { "message": "标题", "description": "选项页面模板选项卡上“标题”字段的标签。" }, "opt_toolbar_behaviour_header": { "message": "工具栏行为", "description": "选项页面常规选项卡上工具栏行为部分的标题。" }, "opt_toolbar_behaviour_label": { "message": "操作", "description": "选项页面常规选项卡上工具栏行为部分中操作字段的标签。" }, "opt_toolbar_behaviour_sub_text": { "message": "配置单击工具栏图标时发生的情况", "description": "选项页面常规选项卡上工具栏行为部分中操作字段的帮助文本。" }, "opt_toolbar_close_label": { "message": "关闭", "description": "选项页面常规选项卡上工具栏行为部分中关闭字段的标签。仅在选择弹出时可见。" }, "opt_toolbar_close_sub_text": { "message": "这不适用于$O_EMPH$选项$C_EMPH$链接,该链接始终会在单击后关闭弹出窗口", "description": "工具栏行为部分选项页面通用标签下的常规选项标签的操作字段的帮助文本。仅在选择弹出窗口时才可见。", "placeholders": { "c_emph": { "content": "", "example": "" }, "o_emph": { "content": "", "example": "" } } }, "opt_toolbar_close_text": { "message": "在使用模板后自动关闭弹出窗口", "description": "工具栏行为部分选项页面通用标签下的常规选项标签的操作字段的文本。仅在选择弹出窗口时才可见。" }, "opt_toolbar_key_label": { "message": "模板", "description": "工具栏行为部分选项页面通用标签下的常规选项标签的模板字段的标签。仅在选择模板时才可见。" }, "opt_toolbar_key_text": { "message": "选择要使用的模板", "description": "工具栏行为部分选项页面通用标签下的常规选项标签的模板字段的文本。仅在选择模板时才可见。" }, "opt_toolbar_options_label": { "message": "选项链接", "description": "工具栏行为部分选项页面通用标签下的常规选项标签的选项链接字段的标签。仅在选择弹出窗口时才可见。" }, "opt_toolbar_options_text": { "message": "在弹出窗口底部显示链接到选项页面", "description": "工具栏行为部分选项页面通用标签下的常规选项标签的选项链接字段的文本。仅在选择弹出窗口时才可见。" }, "opt_toolbar_popup_no_button": { "message": "$ICON$ 模板", "description": "工具栏行为部分选项页面通用标签下的常规选项标签的操作字段的模板按钮的文本。", "placeholders": { "icon": { "content": "", "example": "" } } }, "opt_toolbar_popup_no_title": { "message": "单击工具栏图标时使用模板", "description": "工具栏行为部分选项页面通用标签下的常规选项标签的操作字段的模板按钮的悬停文本。" }, "opt_toolbar_popup_yes_button": { "message": "$ICON$ 弹出窗口", "description": "工具栏行为部分选项页面通用标签下的常规选项标签的操作字段的弹出窗口按钮的文本。", "placeholders": { "icon": { "content": "", "example": "" } } }, "opt_toolbar_popup_yes_title": { "message": "单击工具栏图标时显示弹出窗口", "description": "工具栏行为部分选项页面通用标签下的常规选项标签的操作字段的弹出窗口按钮的悬停文本。" }, "opt_tools_header": { "message": "开发者工具", "description": "选项页面上开发者工具对话框的标题。这也显示为页面导航中齿轮符号的悬停文本。" }, "opt_tools_text": { "message": "这些设置通常仅在开发过程中使用,但也可用于创建调试信息,以便在遇到问题时向开发人员提供。", "description": "选项页面上开发者工具对话框的文本。" }, "opt_top_button": { "message": "返回顶部", "description": "选项页面页脚中将用户带回页面顶部的链接的文本。" }, "opt_undo_button": { "message": "撤销", "description": "撤销按钮的文本。" }, "opt_url_shortener_account_label": { "message": "账户", "description": "选项页面上URL缩短器选项卡中配置列中账户字段的标签。" }, "opt_url_shortener_account_title": { "message": "将由$SERVICE$缩短的链接与您的账户关联", "description": "选项页面上URL缩短器选项卡中配置列中账户字段内的登录/注销按钮的悬停文本。", "placeholders": { "service": { "content": "$1", "example": "bit.ly" } } }, "opt_url_shortener_authentication_basic_button": { "message": "$ICON$ 基本", "description": "选项页面上URL缩短器选项卡中配置列中身份验证字段内的基本按钮的文本。", "placeholders": { "icon": { "content": "", "example": "" } } }, "opt_url_shortener_authentication_label": { "message": "身份验证", "description": "选项页面上URL缩短器选项卡中配置列中身份验证字段的标签。" }, "opt_url_shortener_authentication_none_button": { "message": "$ICON$ 无", "description": "选项页面上URL缩短器选项卡中配置列中身份验证字段内的无按钮的文本。", "placeholders": { "icon": { "content": "", "example": "" } } }, "opt_url_shortener_authentication_advanced_button": { "message": "$ICON$ 高级", "description": "选项页面上URL缩短器选项卡中配置列中身份验证字段内的高级按钮的文本。", "placeholders": { "icon": { "content": "", "example": "" } } }, "opt_url_shortener_config_header": { "message": "配置", "description": "选项页面上URL缩短器选项卡中配置列的标题。" }, "opt_url_shortener_header": { "message": "网址缩短", "description": "选项页面中网址缩短选项卡的标题。也会显示在页面导航中。" }, "opt_url_shortener_login_button": { "message": "$ICON$ 登录", "description": "选项页面中网址缩短选项卡中配置列中帐户字段中登录按钮的文本。", "placeholders": { "icon": { "content": "", "example": "" } } }, "opt_url_shortener_logout_button": { "message": "$ICON$ 登出", "description": "选项页面中网址缩短选项卡中配置列中帐户字段中登出按钮的文本。", "placeholders": { "icon": { "content": "", "example": "" } } }, "opt_url_shortener_password_label": { "message": "密码", "description": "选项页面中网址缩短选项卡中配置列中密码字段的标签。" }, "opt_url_shortener_password_yourls_sub_text": { "message": "这将以明文形式存储和发送,因为这是 $O_ABBR_1$应用程序编程接口$O_ABBR_2$API$C_ABBR$ 所要求的。", "description": "选项页面中网址缩短选项卡中 YOURLS 部分下密码字段的帮助文本。", "placeholders": { "c_abbr": { "content": "