├── languages ├── git-updater-pro-zh_TW.mo ├── git-updater-pro.pot └── git-updater-pro-zh_TW.po ├── packages └── git-updater-pro-zh_TW.zip ├── language-pack.json ├── CONTRIBUTING.md ├── composer.json ├── LICENSE ├── README.md └── composer.lock /languages/git-updater-pro-zh_TW.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afragen/git-updater-pro-translations/master/languages/git-updater-pro-zh_TW.mo -------------------------------------------------------------------------------- /packages/git-updater-pro-zh_TW.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afragen/git-updater-pro-translations/master/packages/git-updater-pro-zh_TW.zip -------------------------------------------------------------------------------- /language-pack.json: -------------------------------------------------------------------------------- 1 | {"zh_TW":{"slug":"git-updater-pro","language":"zh_TW","updated":"2021-05-19 01:39-0700","package":"\/packages\/git-updater-pro-zh_TW.zip","autoupdate":"1"}} -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | ## Translators 2 | 3 | Please only make a PR for the .po files. 4 | 5 | In order to complete the language pack the owner (me) will run the [`Language_Pack_Maker`](https://github.com/afragen/language-pack-maker) to create the .mo files and zipfiles and the `language-pack.json`. 6 | 7 | Thanks! 8 | -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "afragen/git-updater-pro-translations", 3 | "description": "Translation language packs for Git Updater PRO plugin", 4 | "type": "library", 5 | "keywords": [ 6 | "git-updater-pro", 7 | "language packs", 8 | "translations" 9 | ], 10 | "license": "MIT", 11 | "authors": [ 12 | { 13 | "name": "Andy Fragen", 14 | "email": "andy@thefragens.com", 15 | "homepage": "https://thefragens.com", 16 | "role": "Developer" 17 | } 18 | ], 19 | "repositories": [ 20 | { 21 | "type": "vcs", 22 | "url": "https://github.com/afragen/git-updater-pro-translations" 23 | } 24 | ], 25 | "support": { 26 | "issues": "https://github.com/afragen/git-updater-pro-translations/issues", 27 | "source": "https://github.com/afragen/git-updater-pro-translations" 28 | }, 29 | "prefer-stable": true, 30 | "require": { 31 | "afragen/language-pack-maker": "dev-master" 32 | }, 33 | "scripts": { 34 | "post-update-cmd": [ 35 | "php ./vendor/autoload.php" 36 | ] 37 | } 38 | } 39 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2021 Andy Fragen 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Git Updater PRO Translations 2 | 3 | **Official Language Pack Repository for Git Updater PRO plugin** 4 | 5 | Translators, please make PRs here. You only need to submit PRs for the .po files, .mo files will be generated automatically. Please add the .po files to the `languages` folder. Thanks. 6 | 7 | Uses [`Language_Pack_Maker`](https://github.com/afragen/language-pack-maker) installed via composer to create a directory of zip archives of translation .mo/.po/.json files and a `language-pack.json` file containing data to pass to GitHub Updater. 8 | 9 | The format of the generated JSON file is as follows. 10 | 11 | ```json 12 | [ 13 | { 14 | "translations": [ 15 | { 16 | "type": "(plugin|theme) from Git Updater", 17 | "slug": "{$slug}", 18 | "language": "en_US", 19 | "version": "from Git Updater", 20 | "updated": "PO-Revision-Date from .po file header", 21 | "package": "/packages/git-updater-en_US.zip", 22 | "autoupdate": "1" 23 | } 24 | ] 25 | } 26 | ] 27 | ``` 28 | 29 | The update transient expects the `$transient->translations` in the following format. 30 | 31 | ```php 32 | $transient->translations( array( 33 | 0 => array( 34 | 'type' => 'plugin', 35 | 'slug' => 'akismet', 36 | 'language' => 'de_CH', 37 | 'version' => '3.1.11', 38 | 'updated' => '2016-05-12 18:04:38', 39 | 'package' => 'https://downloads.wordpress.org/translation/plugin/akismet/3.1.11/de_CH.zip', 40 | 'autoupdate' => 1, 41 | 42 | ), 43 | ) ); 44 | ``` 45 | 46 | [Git Updater](https://github.com/afragen/git-updater) merges the correlative plugin or theme data with the data retrieved from the `language-pack.json` to add data to the update transient. 47 | -------------------------------------------------------------------------------- /languages/git-updater-pro.pot: -------------------------------------------------------------------------------- 1 | # Copyright (C) 2021 Andy Fragen 2 | # This file is distributed under the same license as the Git Updater PRO plugin. 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: Git Updater PRO 1.0.0\n" 6 | "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/git-updater-pro\n" 7 | "Last-Translator: FULL NAME \n" 8 | "Language-Team: LANGUAGE \n" 9 | "MIME-Version: 1.0\n" 10 | "Content-Type: text/plain; charset=UTF-8\n" 11 | "Content-Transfer-Encoding: 8bit\n" 12 | "POT-Creation-Date: 2021-05-11T23:34:08+00:00\n" 13 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 14 | "X-Generator: WP-CLI 2.4.0\n" 15 | "X-Domain: git-updater-pro\n" 16 | 17 | #. Plugin Name of the plugin 18 | msgid "Git Updater PRO" 19 | msgstr "" 20 | 21 | #. Plugin URI of the plugin 22 | msgid "https://github.com/afragen/git-updater-pro" 23 | msgstr "" 24 | 25 | #. Description of the plugin 26 | msgid "A Git Updater add-on plugin that unlocks PRO features of branch switching, remote installation of plugins and themes, REST API, Webhooks, WP-CLI, and more." 27 | msgstr "" 28 | 29 | #. Author of the plugin 30 | msgid "Andy Fragen" 31 | msgstr "" 32 | 33 | #. translators: 1: branch name, 2: jQuery dropdown, 3: closing tag 34 | #: src/Git_Updater_PRO/Branch.php:307 35 | #: src/Git_Updater_PRO/Branch.php:409 36 | msgid "Current branch is `%1$s`, try %2$sanother version%3$s" 37 | msgstr "" 38 | 39 | #: src/Git_Updater_PRO/Branch.php:315 40 | msgid "Choose a Version" 41 | msgstr "" 42 | 43 | #: src/Git_Updater_PRO/Branch.php:358 44 | #: src/Git_Updater_PRO/Branch.php:516 45 | msgid "No previous tags to rollback to." 46 | msgstr "" 47 | 48 | #: src/Git_Updater_PRO/Branch.php:362 49 | msgid "Install" 50 | msgstr "" 51 | 52 | #: src/Git_Updater_PRO/Branch.php:448 53 | msgid "Switch to branch " 54 | msgstr "" 55 | 56 | #: src/Git_Updater_PRO/Branch.php:508 57 | msgid "Switch to release " 58 | msgstr "" 59 | 60 | #: src/Git_Updater_PRO/Install.php:104 61 | #: src/Git_Updater_PRO/Install.php:318 62 | msgid "Install Plugin" 63 | msgstr "" 64 | 65 | #: src/Git_Updater_PRO/Install.php:107 66 | #: src/Git_Updater_PRO/Install.php:321 67 | msgid "Install Theme" 68 | msgstr "" 69 | 70 | #: src/Git_Updater_PRO/Install.php:163 71 | msgid "A repository URI is required." 72 | msgstr "" 73 | 74 | #: src/Git_Updater_PRO/Install.php:338 75 | msgid "Plugin" 76 | msgstr "" 77 | 78 | #: src/Git_Updater_PRO/Install.php:341 79 | msgid "Theme" 80 | msgstr "" 81 | 82 | #. translators: variable is 'Plugin' or 'Theme' 83 | #: src/Git_Updater_PRO/Install.php:353 84 | msgid "Git Updater Install %s" 85 | msgstr "" 86 | 87 | #. translators: variable is 'Plugin' or 'Theme' 88 | #: src/Git_Updater_PRO/Install.php:361 89 | msgid "%s URI" 90 | msgstr "" 91 | 92 | #: src/Git_Updater_PRO/Install.php:369 93 | msgid "Repository Branch" 94 | msgstr "" 95 | 96 | #: src/Git_Updater_PRO/Install.php:377 97 | msgid "Remote Repository Host" 98 | msgstr "" 99 | 100 | #: src/Git_Updater_PRO/Install.php:412 101 | msgid "URI is case sensitive." 102 | msgstr "" 103 | 104 | #: src/Git_Updater_PRO/Install.php:427 105 | msgid "Enter branch name or leave empty for `master`" 106 | msgstr "" 107 | 108 | #: src/Git_Updater_PRO/Install.php:477 109 | msgid "Activate" 110 | msgstr "" 111 | 112 | #: src/Git_Updater_PRO/Install.php:489 113 | msgctxt "This refers to a network activation in a multisite installation" 114 | msgid "Network Enable" 115 | msgstr "" 116 | 117 | #: src/Git_Updater_PRO/Remote_Management.php:58 118 | #: src/Git_Updater_PRO/Remote_Management.php:123 119 | msgid "Remote Management" 120 | msgstr "" 121 | 122 | #: src/Git_Updater_PRO/Remote_Management.php:92 123 | msgid "Reset REST API key" 124 | msgstr "" 125 | 126 | #: src/Git_Updater_PRO/Remote_Management.php:106 127 | msgid "REST API key reset." 128 | msgstr "" 129 | 130 | #: src/Git_Updater_PRO/Remote_Management.php:142 131 | msgid "Remote Management services should just work for plugins like MainWP, ManageWP, InfiniteWP, iThemes Sync and others." 132 | msgstr "" 133 | 134 | #. translators: %s: Link to Git Remote Updater repository 135 | #: src/Git_Updater_PRO/Remote_Management.php:149 136 | msgid "The Git Remote Updater plugin was specifically created to make the remote management of Git Updater supported plugins and themes much simpler. You will need the Site URL and REST API key to use with Git Remote Updater settings." 137 | msgstr "" 138 | 139 | #. translators: 1: home URL, 2: REST API key 140 | #: src/Git_Updater_PRO/Remote_Management.php:159 141 | msgid "Site URL: %1$s
REST API key: %2$s" 142 | msgstr "" 143 | 144 | #. translators: 1: Link to wiki, 2: RESTful API URL 145 | #: src/Git_Updater_PRO/Remote_Management.php:170 146 | msgid "Please refer to the wiki for complete list of attributes. REST API endpoints for webhook updating begin at: %2$s" 147 | msgstr "" 148 | -------------------------------------------------------------------------------- /languages/git-updater-pro-zh_TW.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: Git Updater\n" 4 | "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/git-updater-pro\n" 5 | "POT-Creation-Date: 2021-05-11T23:34:08+00:00\n" 6 | "PO-Revision-Date: 2021-05-19 01:39-0700\n" 7 | "Last-Translator: Alex Lion \n" 8 | "Language-Team: Alex Lion \n" 9 | "Language: zh_TW\n" 10 | "MIME-Version: 1.0\n" 11 | "Content-Type: text/plain; charset=UTF-8\n" 12 | "Content-Transfer-Encoding: 8bit\n" 13 | "Plural-Forms: nplurals=1; plural=0;\n" 14 | "X-Generator: Poedit 2.4.3\n" 15 | "X-Poedit-Basepath: ..\n" 16 | "X-Poedit-Flags-xgettext: --add-comments=translators:\n" 17 | "X-Poedit-WPHeader: github-updater.php\n" 18 | "X-Poedit-SourceCharset: UTF-8\n" 19 | "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;" 20 | "esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;" 21 | "_nx_noop:3c,1,2;__ngettext_noop:1,2\n" 22 | "X-Poedit-SearchPath-0: .\n" 23 | "X-Poedit-SearchPathExcluded-0: *.js\n" 24 | 25 | #. Plugin Name of the plugin 26 | msgid "Git Updater PRO" 27 | msgstr "Git Updater PRO" 28 | 29 | #. Plugin URI of the plugin 30 | msgid "https://github.com/afragen/git-updater-pro" 31 | msgstr "https://github.com/afragen/git-updater-pro" 32 | 33 | #. Description of the plugin 34 | msgid "" 35 | "A Git Updater add-on plugin that unlocks PRO features of branch switching, " 36 | "remote installation of plugins and themes, REST API, Webhooks, WP-CLI, and " 37 | "more." 38 | msgstr "" 39 | "Git Updater 其中一個附加元件,能提供切換分支版本、遠端安裝外掛及佈景主題、" 40 | "REST API、Webhooks 及 WP-CLI 等 Pro 版功能。" 41 | 42 | #. Author of the plugin 43 | msgid "Andy Fragen" 44 | msgstr "Andy Fragen" 45 | 46 | #. translators: 1: branch name, 2: jQuery dropdown, 3: closing tag 47 | #: src/Git_Updater_PRO/Branch.php:307 src/Git_Updater_PRO/Branch.php:409 48 | msgid "Current branch is `%1$s`, try %2$sanother version%3$s" 49 | msgstr "目前分支版本為 %1$s,試試%2$s其他版本%3$s" 50 | 51 | #: src/Git_Updater_PRO/Branch.php:315 52 | msgid "Choose a Version" 53 | msgstr "選取版本" 54 | 55 | #: src/Git_Updater_PRO/Branch.php:358 src/Git_Updater_PRO/Branch.php:516 56 | msgid "No previous tags to rollback to." 57 | msgstr "沒有前版標籤可供復原。" 58 | 59 | #: src/Git_Updater_PRO/Branch.php:362 60 | msgid "Install" 61 | msgstr "安裝" 62 | 63 | #: src/Git_Updater_PRO/Branch.php:448 64 | msgid "Switch to branch " 65 | msgstr "切換至分支版本 " 66 | 67 | #: src/Git_Updater_PRO/Branch.php:508 68 | msgid "Switch to release " 69 | msgstr "切換至正式版本 " 70 | 71 | #: src/Git_Updater_PRO/Install.php:104 src/Git_Updater_PRO/Install.php:318 72 | msgid "Install Plugin" 73 | msgstr "安裝外掛" 74 | 75 | #: src/Git_Updater_PRO/Install.php:107 src/Git_Updater_PRO/Install.php:321 76 | msgid "Install Theme" 77 | msgstr "安裝佈景主題" 78 | 79 | #: src/Git_Updater_PRO/Install.php:163 80 | msgid "A repository URI is required." 81 | msgstr "存放庫 URI 為必要資料。" 82 | 83 | #: src/Git_Updater_PRO/Install.php:338 84 | msgid "Plugin" 85 | msgstr "外掛" 86 | 87 | #: src/Git_Updater_PRO/Install.php:341 88 | msgid "Theme" 89 | msgstr "佈景主題" 90 | 91 | #. translators: variable is 'Plugin' or 'Theme' 92 | #: src/Git_Updater_PRO/Install.php:353 93 | msgid "Git Updater Install %s" 94 | msgstr "透過 Git Updater 安裝%s" 95 | 96 | #. translators: variable is 'Plugin' or 'Theme' 97 | #: src/Git_Updater_PRO/Install.php:361 98 | msgid "%s URI" 99 | msgstr "%s的 URI" 100 | 101 | #: src/Git_Updater_PRO/Install.php:369 102 | msgid "Repository Branch" 103 | msgstr "存放庫分支" 104 | 105 | #: src/Git_Updater_PRO/Install.php:377 106 | msgid "Remote Repository Host" 107 | msgstr "遠端存放庫主機" 108 | 109 | #: src/Git_Updater_PRO/Install.php:412 110 | msgid "URI is case sensitive." 111 | msgstr "URI 為區分大小寫。" 112 | 113 | #: src/Git_Updater_PRO/Install.php:427 114 | msgid "Enter branch name or leave empty for `master`" 115 | msgstr "輸入分支版本名稱,留空則代表 master 版本。" 116 | 117 | #: src/Git_Updater_PRO/Install.php:477 118 | msgid "Activate" 119 | msgstr "啟用" 120 | 121 | #: src/Git_Updater_PRO/Install.php:489 122 | msgctxt "This refers to a network activation in a multisite installation" 123 | msgid "Network Enable" 124 | msgstr "啟用多站網路支援" 125 | 126 | #: src/Git_Updater_PRO/Remote_Management.php:58 127 | #: src/Git_Updater_PRO/Remote_Management.php:123 128 | msgid "Remote Management" 129 | msgstr "遠端管理" 130 | 131 | #: src/Git_Updater_PRO/Remote_Management.php:92 132 | msgid "Reset REST API key" 133 | msgstr "重設 REST API 金鑰" 134 | 135 | #: src/Git_Updater_PRO/Remote_Management.php:106 136 | msgid "REST API key reset." 137 | msgstr "REST API 金鑰已重設。" 138 | 139 | #: src/Git_Updater_PRO/Remote_Management.php:142 140 | msgid "" 141 | "Remote Management services should just work for plugins like MainWP, " 142 | "ManageWP, InfiniteWP, iThemes Sync and others." 143 | msgstr "" 144 | "遠端管理服務僅適用於 MainWP、ManageWP、InfiniteWP 及 iThemes Sync 等同類外" 145 | "掛。" 146 | 147 | #. translators: %s: Link to Git Remote Updater repository 148 | #: src/Git_Updater_PRO/Remote_Management.php:149 149 | msgid "" 150 | "The Git Remote Updater plugin was specifically created to " 151 | "make the remote management of Git Updater supported plugins and themes much " 152 | "simpler. You will need the Site URL and REST API key to use with Git Remote " 153 | "Updater settings." 154 | msgstr "" 155 | "開發 Git Remote Updater 外掛的目的,在於" 156 | "讓 Git Updater 支援的外掛及佈景主題遠端管理更加簡單。Git Remote Updater 需要" 157 | "使用這個網站提供的 [網站網址] 及 [REST API 金鑰] 進行設定。" 158 | 159 | #. translators: 1: home URL, 2: REST API key 160 | #: src/Git_Updater_PRO/Remote_Management.php:159 161 | msgid "Site URL: %1$s
REST API key: %2$s" 162 | msgstr "網站網址: %1$s
REST API 金鑰: %2$s" 163 | 164 | #. translators: 1: Link to wiki, 2: RESTful API URL 165 | #: src/Git_Updater_PRO/Remote_Management.php:170 166 | msgid "" 167 | "Please refer to the wiki for complete list of " 168 | "attributes. REST API endpoints for webhook updating begin at: %2$s" 169 | msgstr "" 170 | "請參閱這份外掛 Wiki 以了解完整的屬性清" 171 | "單。用於 Webhook 更新的 REST API 端點開始於: %2$s" 172 | 173 | #~ msgid "Activated as mu-plugin" 174 | #~ msgstr "啟用為 [強制使用] 外掛" 175 | 176 | #~ msgid "GitHub Personal Access Token" 177 | #~ msgstr "GitHub Personal 存取權杖" 178 | 179 | #~ msgid "GitHub.com Access Token" 180 | #~ msgstr "GitHub.com 存取權杖" 181 | 182 | #~ msgid "GitHub Private Settings" 183 | #~ msgstr "GitHub Private 設定" 184 | 185 | #~ msgid "Enter your GitHub Access Token. Leave empty for public repositories." 186 | #~ msgstr "輸入 GitHub 存取權杖。欄位留空僅能存取公開存放庫。" 187 | 188 | #~ msgid "" 189 | #~ "Enter your personal GitHub.com or GitHub Enterprise Access Token to avoid " 190 | #~ "API access limits." 191 | #~ msgstr "" 192 | #~ "輸入個人 GitHub.com 或 GitHub Enterprise 存取權杖以避免 API 存取限制。" 193 | 194 | #~ msgid "GitHub Access Token" 195 | #~ msgstr "GitHub 存取權杖" 196 | 197 | #~ msgid "GitHub" 198 | #~ msgstr "GitHub" 199 | 200 | #~ msgid "Enter GitHub Access Token for private GitHub repositories." 201 | #~ msgstr "輸入 GitHub 私有存放庫的 GitHub 存取權杖。" 202 | 203 | #~ msgid "Zipfile Slug" 204 | #~ msgstr "壓縮檔代稱" 205 | 206 | #~ msgid "Enter plugin or theme slug." 207 | #~ msgstr "輸入外掛或佈景主題代稱。" 208 | 209 | #~ msgid "Git Updater - Gist" 210 | #~ msgstr "Git Updater - Gist" 211 | 212 | #~ msgid "Git Updater - Bitbucket" 213 | #~ msgstr "Git Updater - Bitbucket" 214 | 215 | #~ msgid "Git Updater - GitLab" 216 | #~ msgstr "Git Updater - GitLab" 217 | 218 | #~ msgid "Git Updater - Gitea" 219 | #~ msgstr "Git Updater - Gitea" 220 | 221 | #~ msgid "Git Updater Additions" 222 | #~ msgstr "Git Updater Additions" 223 | 224 | #~ msgid "" 225 | #~ "A Git Updater add-on plugin that will add the appropriate data via hooks " 226 | #~ "in Git Updater so that repositories that are not correctly configured to " 227 | #~ "use Git Updater may be added to Git Updater without modifying the " 228 | #~ "repository." 229 | #~ msgstr "" 230 | #~ "Git Updater 其中一個附加元件,它透過 Git Updater 提供的勾點加入適當資料," 231 | #~ "以便將使用 Git Updater 卻未進行正確組態的存放庫新增至 Git Updater,而不須" 232 | #~ "修改存放庫。" 233 | 234 | #~ msgid "Git Remote Updater" 235 | #~ msgstr "Git Remote Updater" 236 | 237 | #~ msgid "" 238 | #~ "A Git Updater add-on plugin that allows you to easily update Git Updater " 239 | #~ "repositories in bulk via REST API endpoint updating. Requires Git Updater " 240 | #~ "PRO." 241 | #~ msgstr "" 242 | #~ "Git Updater 其中一個附加元件,它讓網站管理員透過 REST API 端點更新對 Git " 243 | #~ "Updater 存放庫進行批次更新。必須搭配 Git Updater PRO。" 244 | 245 | #~ msgid "Add-Ons" 246 | #~ msgstr "附加元件" 247 | 248 | #~ msgid "Git Updater API plugin installed." 249 | #~ msgstr "Git Updater API 外掛已安裝。" 250 | 251 | #~ msgid "Premium Add-Ons" 252 | #~ msgstr "付費附加元件" 253 | 254 | #~ msgid "API Add-Ons" 255 | #~ msgstr "API 附加元件" 256 | 257 | #~ msgid "Install additional API plugins." 258 | #~ msgstr "安裝其他 API 附加元件。" 259 | 260 | #~ msgid "Install premium plugins." 261 | #~ msgstr "安裝付費外掛。" 262 | 263 | #~ msgid "Install & Activate" 264 | #~ msgstr "安裝並啟用" 265 | 266 | #~ msgid "Free Trial" 267 | #~ msgstr "免費試用版" 268 | 269 | #, php-format 270 | #~ msgid "" 271 | #~ "Git Updater is missing required composer dependencies. Learn more." 273 | #~ msgstr "" 274 | #~ "Git Updater 缺少必要的撰寫程式相依性。進一步了解" 276 | 277 | #, php-format 278 | #~ msgid "Git Updater cannot run on PHP versions older than %1$s." 279 | #~ msgstr "Git Updater 無法執行於比 PHP %1$s 版更舊的環境。" 280 | 281 | #~ msgid "Git Updater Error Code:" 282 | #~ msgstr "Git Updater 錯誤代碼:" 283 | 284 | #, php-format 285 | #~ msgid "GitHub API’s rate limit will reset in %s minutes." 286 | #~ msgstr "GitHub API 的使用量限制將在 %s 分鐘後重設。" 287 | 288 | #, php-format 289 | #~ msgid "" 290 | #~ "It looks like you are running into GitHub API rate limits. Be sure and " 291 | #~ "configure a Personal Access Token to avoid this issue." 292 | #~ msgstr "" 293 | #~ "你的 GitHub API 使用量限制接近上限。請設定個人存取權杖以避免發生這個狀況。" 295 | 296 | #~ msgid "" 297 | #~ "There is probably an access token or password error on the Git Updater " 298 | #~ "Settings page." 299 | #~ msgstr "在 Git Updater 設定頁面中,發生存取權杖或密碼設定錯誤。" 300 | 301 | #~ msgid "Git Updater Information" 302 | #~ msgstr "Git Updater 資訊" 303 | 304 | #~ msgid "Please be patient while WP-Cron finishes making API calls." 305 | #~ msgstr "請耐心等候 WP-Cron 完成 API 呼叫。" 306 | 307 | #~ msgid "Settings" 308 | #~ msgstr "設定" 309 | 310 | #~ msgid "Git Updater" 311 | #~ msgstr "Git Updater" 312 | 313 | #~ msgid "Git Updater Settings" 314 | #~ msgstr "Git Updater 設定" 315 | 316 | #~ msgctxt "Menu item" 317 | #~ msgid "Git Updater" 318 | #~ msgstr "Git Updater" 319 | 320 | #~ msgid "Refresh Cache" 321 | #~ msgstr "重新整理快取" 322 | 323 | #~ msgid "Settings saved." 324 | #~ msgstr "設定已儲存。" 325 | 326 | #~ msgid "Cache refreshed." 327 | #~ msgstr "快取已重新整理。" 328 | 329 | #~ msgid "Enable Branch Switching" 330 | #~ msgstr "啟用分支版本切換" 331 | 332 | #~ msgid "Bypass WP-Cron Background Processing for Debugging" 333 | #~ msgstr "略過 WP-Cron 背景處理程序進行偵錯" 334 | 335 | #~ msgid "Display `deprecated hook` messaging in debug.log" 336 | #~ msgstr "在 debug.log 中顯示淘汰不用的勾點相關訊息" 337 | 338 | #~ msgid "Check to enable." 339 | #~ msgstr "點擊以啟用。" 340 | 341 | #~ msgid "Overridden Plugins and Themes" 342 | #~ msgstr "覆寫外掛及佈景主題" 343 | 344 | #~ msgid "" 345 | #~ "The following plugins or themes might exist on wp.org, but any updates " 346 | #~ "will be downloaded from their respective git repositories." 347 | #~ msgstr "" 348 | #~ "下列外掛或佈景主題並未上架至 WordPress.org 目錄,但可從各自所屬的 git 存放" 349 | #~ "庫進行更新。" 350 | 351 | #~ msgid "This is a private repository." 352 | #~ msgstr "這是私有存放庫。" 353 | 354 | #~ msgid "" 355 | #~ "This repository has not connected to the API or was unable to connect." 356 | #~ msgstr "這個存放庫無法連線至 API 或無法進行連線。" 357 | 358 | #~ msgid "This repository is hosted on WordPress.org." 359 | #~ msgstr "這個存放庫託管於 WordPress.org。" 360 | 361 | #~ msgid "Installed Plugins and Themes" 362 | #~ msgstr "已安裝的外掛和佈景主題" 363 | 364 | #, php-format 365 | #~ msgid "There is a new version of %s available." 366 | #~ msgstr "%s 有新版本可供下載安裝。" 367 | 368 | #, php-format 369 | #~ msgid "View version %s details." 370 | #~ msgstr "檢視 %s 版的詳細資料。" 371 | 372 | #~ msgid "Automatic update is unavailable for this theme." 373 | #~ msgstr "這個佈景主題無法使用自動更新。" 374 | 375 | #, php-format 376 | #~ msgid "View version %1$s details%2$s or %3$supdate now%2$s." 377 | #~ msgstr "檢視 %1$s 版的詳細資料%2$s或%3$s立即更新%2$s。" 378 | 379 | #, php-format 380 | #~ msgid "Update %s now" 381 | #~ msgstr "立即更新 %s" 382 | 383 | #, php-format 384 | #~ msgid "View version %1$s details%2$s." 385 | #~ msgstr "檢視 %1$s 版的詳細資料%2$s。" 386 | 387 | #, php-format 388 | #~ msgid "%1$sAutomatic update is unavailable for this theme.%2$s" 389 | #~ msgstr "%1$s這個佈景主題不提供自動更新功能%2$s。" 390 | 391 | #~ msgid "" 392 | #~ "There may be a problem with WP-Cron. A Git Updater WP-Cron event is " 393 | #~ "overdue." 394 | #~ msgstr "WP-Cron 執行時發生問題。Git Updater 的 WP-Cron 事件已逾期。" 395 | 396 | #~ msgid "Plugin download failed" 397 | #~ msgstr "外掛下載失敗" 398 | 399 | #, php-format 400 | #~ msgid "%s has been installed and activated." 401 | #~ msgstr "%s 已安裝並啟用。" 402 | 403 | #, php-format 404 | #~ msgid "%s has been installed." 405 | #~ msgstr "%s 已安裝。" 406 | 407 | #, php-format 408 | #~ msgid "The %s plugin is recommended." 409 | #~ msgstr "%s 為建議安裝的外掛。" 410 | 411 | #, php-format 412 | #~ msgid "%s has been activated." 413 | #~ msgstr "%s 已啟用。" 414 | 415 | #, php-format 416 | #~ msgid "Please activate the %s plugin." 417 | #~ msgstr "請啟用 %s 外掛。" 418 | 419 | #~ msgid "Dependency" 420 | #~ msgstr "相依性" 421 | 422 | #, php-format 423 | #~ msgid "%1$sRequired Plugin%2$s" 424 | #~ msgstr "%1$s必須安裝的外掛%2$s" 425 | 426 | #~ msgid "Required by:" 427 | #~ msgstr "提出要求的外掛:" 428 | 429 | #~ msgid "Bitbucket Pseudo-Token" 430 | #~ msgstr "Bitbucket 虛擬權杖" 431 | 432 | #~ msgid "Bitbucket Username" 433 | #~ msgstr "Bitbucket 使用者名稱" 434 | 435 | #~ msgid "Bitbucket Password" 436 | #~ msgstr "Bitbucket 密碼" 437 | 438 | #~ msgid "Bitbucket Private Repositories" 439 | #~ msgstr "Bitbucket 私有存放庫" 440 | 441 | #~ msgid "Bitbucket" 442 | #~ msgstr "Bitbucket" 443 | 444 | #~ msgid "" 445 | #~ "Enter `username:password` if private repository. Don't forget the colon `:" 446 | #~ "`." 447 | #~ msgstr "" 448 | #~ "針對私有存放庫,請輸入「使用者名稱:密碼」、請注意,這兩者間必須以冒號分" 449 | #~ "隔。" 450 | 451 | #~ msgid "" 452 | #~ "Enter your personal Bitbucket username and password. It will " 453 | #~ "automatically be converted to a pseudo-token." 454 | #~ msgstr "" 455 | #~ "請為 Bitbucket 私有存放庫輸入使用者名稱及密碼,這會自動轉換為虛擬權杖。" 456 | 457 | #~ msgid "Enter Bitbucket username." 458 | #~ msgstr "輸入 Bitbucket 使用者名稱。" 459 | 460 | #~ msgid "Enter Bitbucket password." 461 | #~ msgstr "輸入 Bitbucket 密碼。" 462 | 463 | #~ msgid "Bitbucket Server Private Settings" 464 | #~ msgstr "Bitbucket Server 私有設定" 465 | 466 | #~ msgid "Bitbucket Server Username" 467 | #~ msgstr "Bitbucket Server 使用者名稱" 468 | 469 | #~ msgid "Bitbucket Server Password" 470 | #~ msgstr "Bitbucket Server 密碼" 471 | 472 | #~ msgid "Bitbucket Server Pseudo-Token" 473 | #~ msgstr "Bitbucket Server 虛擬權杖" 474 | 475 | #~ msgid "Bitbucket Server Private Repositories" 476 | #~ msgstr "Bitbucket Server 私有存放庫" 477 | 478 | #~ msgid "Bitbucket Server" 479 | #~ msgstr "Bitbucket Server" 480 | 481 | #~ msgid "GitHub Gist Settings" 482 | #~ msgstr "GitHub Gist 設定" 483 | 484 | #~ msgid "Gist Private Settings" 485 | #~ msgstr "Gist 私有設定" 486 | 487 | #~ msgid "Gist" 488 | #~ msgstr "Gist" 489 | 490 | #~ msgid "GitLab Personal Access Token" 491 | #~ msgstr "GitLab Personal 存取權杖" 492 | 493 | #~ msgid "GitLab Private Settings" 494 | #~ msgstr "GitLab 私有設定" 495 | 496 | #~ msgid "GitLab.com Access Token" 497 | #~ msgstr "GitLab.com 存取權杖" 498 | 499 | #~ msgid "GitLab" 500 | #~ msgstr "GitLab" 501 | 502 | #~ msgid "Enter your repository specific GitLab Access Token." 503 | #~ msgstr "輸入存放庫指定的 GitLab 存取權杖。" 504 | 505 | #~ msgid "Enter your GitLab.com Access Token." 506 | #~ msgstr "輸入 GitLab.com 存取權杖。" 507 | 508 | #~ msgid "GitLab Access Token" 509 | #~ msgstr "GitLab 存取權杖" 510 | 511 | #~ msgid "Enter GitLab Access Token for private GitLab repositories." 512 | #~ msgstr "輸入 GitLab 私有存放庫的 GitLab 存取權杖。" 513 | 514 | #~ msgid "You must set a GitLab Access Token." 515 | #~ msgstr "網站管理員必須設定 GitLab 存取權杖。" 516 | 517 | #~ msgid "Gitea Access Token" 518 | #~ msgstr "Gitea 存取權杖" 519 | 520 | #~ msgid "Gitea Private Settings" 521 | #~ msgstr "Gitea 私有設定" 522 | 523 | #~ msgid "Gitea" 524 | #~ msgstr "Gitea" 525 | 526 | #~ msgid "Enter your repository specific Gitea Access Token." 527 | #~ msgstr "輸入存放庫指定的 Gitea 存取權杖。" 528 | 529 | #~ msgid "Enter your Gitea Access Token." 530 | #~ msgstr "輸入 Gitea 存取權杖。" 531 | 532 | #~ msgid "Enter Gitea Access Token for private Gitea repositories." 533 | #~ msgstr "為 Gitea 私有存放庫輸入 Gitea 存取權杖。" 534 | 535 | #~ msgid "You must set a Gitea Access Token." 536 | #~ msgstr "網站管理員必須設定 Gitea 存取權杖。" 537 | 538 | #, php-format 539 | #~ msgid "" 540 | #~ "GitHub Updater is missing required composer dependencies. Learn more." 542 | #~ msgstr "" 543 | #~ "GitHub Updater 缺少必要的組態相依性。進一步瞭解" 545 | 546 | #, php-format 547 | #~ msgid "GitHub Updater cannot run on PHP versions older than %1$s." 548 | #~ msgstr "GitHub Updater 無法執行於比 PHP %1$s 版更舊的環境。" 549 | 550 | #, php-format 551 | #~ msgid "GitHub Updater Install %s" 552 | #~ msgstr "透過 GitHub Updater 安裝%s" 553 | 554 | #~ msgid "GitHub Updater Error Code:" 555 | #~ msgstr "GitHub Updater 錯誤代碼:" 556 | 557 | #~ msgid "" 558 | #~ "There is probably an access token or password error on the GitHub Updater " 559 | #~ "Settings page." 560 | #~ msgstr "在 GitHub Updater 設定頁面中,發生存取權杖或密碼設定錯誤。" 561 | 562 | #~ msgid "GitHub Updater Information" 563 | #~ msgstr "GitHub Updater 資訊" 564 | 565 | #, php-format 566 | #~ msgid "" 567 | #~ "The Git Remote Updater plugin was specifically created " 568 | #~ "to make the remote management of GitHub Updater supported plugins and " 569 | #~ "themes much simpler. You will need the Site URL and REST API key to use " 570 | #~ "with Git Remote Updater settings." 571 | #~ msgstr "" 572 | #~ "開發 Git Remote Updater 外掛的目的," 573 | #~ "在於讓 GitHub Updater 支援的外掛及佈景主題遠端管理更加簡單。Git Remote " 574 | #~ "Updater 需要使用這個網站提供的 [網站網址] 及 [REST API 金鑰] 進行設定。" 575 | 576 | #~ msgid "GitHub Updater" 577 | #~ msgstr "GitHub Updater" 578 | 579 | #~ msgid "GitHub Updater Settings" 580 | #~ msgstr "GitHub Updater 設定" 581 | 582 | #~ msgctxt "Menu item" 583 | #~ msgid "GitHub Updater" 584 | #~ msgstr "GitHub Updater" 585 | 586 | #~ msgid "RESTful key reset." 587 | #~ msgstr "RESTful 金鑰已重設。" 588 | 589 | #~ msgid "" 590 | #~ "Check to enable branch switching from the Plugins or Themes page or to " 591 | #~ "bypass WP-Cron background processing." 592 | #~ msgstr "" 593 | #~ "在這裡可以為外掛或佈景主題頁面的項目啟用分支版本切換,或啟用略過 WP-Cron " 594 | #~ "背景處理程序功能。" 595 | 596 | #~ msgid "" 597 | #~ "There may be a problem with WP-Cron. A GitHub Updater WP-Cron event is " 598 | #~ "overdue." 599 | #~ msgstr "WP-Cron 執行時發生問題。GitHub Updater 的 WP-Cron 事件已逾期。" 600 | 601 | #~ msgid "https://github.com/afragen/github-updater" 602 | #~ msgstr "https://github.com/afragen/github-updater" 603 | 604 | #~ msgid "" 605 | #~ "A plugin to automatically update GitHub, Bitbucket, GitLab, or Gitea " 606 | #~ "hosted plugins, themes, and language packs. It also allows for remote " 607 | #~ "installation of plugins or themes into WordPress." 608 | #~ msgstr "" 609 | #~ "GitHub Updater 能協助網站管理員將託管於 GitHub、Bitbucket、GitLab 或 " 610 | #~ "Gitea 的外掛、佈景主題和語言套件進行自動更新,還能配合遠端管理服務將位於 " 611 | #~ "git 存放庫的外掛或佈景主題檔案安裝至 WordPress 網站中。" 612 | 613 | #~ msgid "Bitbucket Private Settings" 614 | #~ msgstr "Bitbucket 私有設定" 615 | 616 | #~ msgid "" 617 | #~ "Check box if private repository. Leave unchecked for public repositories." 618 | #~ msgstr "" 619 | #~ "如需存取私有存放庫,請啟用這項設定。未啟用這項設定則代表存取目標為公開存放" 620 | #~ "庫。" 621 | 622 | #~ msgid "Enter your personal Bitbucket username and password." 623 | #~ msgstr "輸入個人的 Bitbucket 使用者名稱和密碼。" 624 | 625 | #~ msgid "Private Bitbucket Repository" 626 | #~ msgstr "Bitbucket 私有存放庫" 627 | 628 | #~ msgid "Check for private Bitbucket repositories." 629 | #~ msgstr "檢查 Bitbucket 私有存放庫。" 630 | 631 | #~ msgid "View details" 632 | #~ msgstr "檢視詳細資料" 633 | 634 | #~ msgid "GitHub Enterprise Access Token" 635 | #~ msgstr "GitHub Enterprise 存取權杖" 636 | 637 | #~ msgid "GitLab CE or GitLab Enterprise Personal Access Token" 638 | #~ msgstr "GitLab CE 或 GitLab Enterprise 個人存取權杖" 639 | 640 | #~ msgid "Enter your GitLab.com, GitLab CE, or GitLab Enterprise Access Token." 641 | #~ msgstr "輸入 GitLab.com、GitLab CE 或 GitLab Enterprise 存取權杖。" 642 | 643 | #~ msgid "" 644 | #~ "You must set a GitLab.com, GitLab CE, or GitLab Enterprise Access Token." 645 | #~ msgstr "" 646 | #~ "網站管理員必須設定 GitLab.com、GitLab CE 或 GitLab Enterprise 的存取權杖。" 647 | 648 | #~ msgid "Check to enable branch switching from the Plugins or Themes page." 649 | #~ msgstr "啟用這項設定後,便可在外掛或佈景主題頁面中啟用分支版本切換。" 650 | 651 | #~ msgid "Reset RESTful key" 652 | #~ msgstr "重設 RESTful 金鑰" 653 | 654 | #~ msgid "Make JSON file" 655 | #~ msgstr "產生 JSON 檔案" 656 | 657 | #, php-format 658 | #~ msgid "" 659 | #~ "The Git Remote Updater plugin was specifically created " 660 | #~ "to make the remote management of GitHub Updater supported plugins and " 661 | #~ "themes much simpler." 662 | #~ msgstr "" 663 | #~ "開發 Git Remote Updater 外掛的目的," 664 | #~ "在於讓 GitHub Updater 支援的外掛及佈景主題遠端管理更加簡單。" 665 | 666 | #, php-format 667 | #~ msgid "" 668 | #~ "Please refer to the wiki for complete list of " 669 | #~ "attributes. REST API endpoints begin at: %2$s" 670 | #~ msgstr "" 671 | #~ "請參閱這份外掛 Wiki 以瞭解完整的屬" 672 | #~ "性清單。REST API 端點開始於: %2$s" 673 | 674 | #~ msgid "" 675 | #~ "Use of Remote Management services may result increase some page load " 676 | #~ "speeds only for `admin` level users in the dashboard." 677 | #~ msgstr "" 678 | #~ "使用遠端管理服務,會增加 [網站管理員] 角色使用者在 [控制台] 中的頁面載入時" 679 | #~ "間。" 680 | 681 | #, php-format 682 | #~ msgid "" 683 | #~ "GitHub Updater cannot run on PHP versions older than %1$s. Learn about updating your PHP." 685 | #~ msgstr "" 686 | #~ "GitHub Updater 無法執行於比 PHP %s 版更舊的環境。進一步瞭解如何為網站主機升級 PHP。" 688 | 689 | #~ msgid "https://wordpress.org/support/update-php/" 690 | #~ msgstr "https://wordpress.org/support/update-php/" 691 | 692 | #, php-format 693 | #~ msgid "" 694 | #~ "The Git Bulk Updater plugin was specifically created " 695 | #~ "to make the remote management of GitHub Updater supported plugins and " 696 | #~ "themes much simpler." 697 | #~ msgstr "" 698 | #~ "開發 Git Bulk Updater 外掛的目的,在" 699 | #~ "於讓 GitHub Updater 支援的外掛及佈景主題遠端管理更加簡單。" 700 | 701 | #, php-format 702 | #~ msgid "" 703 | #~ "Please refer to the wiki for complete list of " 704 | #~ "attributes. RESTful endpoints begin at: %2$s" 705 | #~ msgstr "" 706 | #~ "請參閱這份外掛 Wiki 以瞭解完整的屬" 707 | #~ "性清單。RESTful 端點開始於: %2$s" 708 | 709 | #, php-format 710 | #~ msgid "" 711 | #~ "Please refer to the wiki for complete list of " 712 | #~ "attributes. RESTful endpoints begin at:" 713 | #~ msgstr "" 714 | #~ "請參閱這份外掛 Wiki 以瞭解完整的屬性" 715 | #~ "清單。RESTful 端點開始於:" 716 | 717 | #~ msgid "" 718 | #~ "GitHub Updater cannot run on PHP versions older than %1$s. Learn about upgrading your PHP." 720 | #~ msgstr "" 721 | #~ "GitHub Updater 無法執行於比 PHP %s 版更舊的環境。瞭解如何為網站主機升級 PHP。" 723 | 724 | #~ msgid "https://wordpress.org/support/upgrade-php/" 725 | #~ msgstr "https://wordpress.org/support/upgrade-php/" 726 | 727 | #~ msgid "" 728 | #~ "Please refer to README for complete list of attributes. RESTful endpoints " 729 | #~ "begin at:" 730 | #~ msgstr "請參閱 README 檔案以取得完整的屬性清單。RESTful 端點起始位置如下:" 731 | 732 | #~ msgid "Override Dot Org is active." 733 | #~ msgstr "[覆寫 WordPress.org 設定] 已啟用。" 734 | 735 | #~ msgid "Override Dot Org is not active." 736 | #~ msgstr "[覆寫 WordPress.org 設定] 尚未啟用。" 737 | 738 | #~ msgid "" 739 | #~ "Override Dot Org will skip any updates from wordpress.org for plugins " 740 | #~ "with identical slugs." 741 | #~ msgstr "" 742 | #~ "[覆寫 WordPress.org 設定] 會略過來自 WordPress.org 且外掛代稱完全相同的更" 743 | #~ "新。" 744 | 745 | #~ msgid "Activate Override Dot Org by setting %s" 746 | #~ msgstr "在 wp-config.php 內加入 %s 以啟用 [覆寫 WordPress.org 設定]。" 747 | 748 | #~ msgid "Installation Instructions" 749 | #~ msgstr "安裝指南" 750 | 751 | #~ msgid "Waiting for WP-Cron to finish." 752 | #~ msgstr "等待 WP-Cron 完成工作。" 753 | 754 | #~ msgid "GitHub Updater cache has been cleared." 755 | #~ msgstr "GitHub Updater 快取已清除。" 756 | 757 | #~ msgid "Incorrect command syntax, see %s for proper syntax." 758 | #~ msgstr "不正確的命令語法,請參閱 %s 取得正確語法。" 759 | 760 | #~ msgid "GitHub Updater REST API key has been reset." 761 | #~ msgstr "GitHub Updater REST API 金鑰已重設。" 762 | 763 | #~ msgid "The current RESTful endpoint is `%s`" 764 | #~ msgstr "目前的 RESTful 端點為 %s" 765 | 766 | #~ msgid "Plugin %s installed." 767 | #~ msgstr "%s 外掛已安裝。" 768 | 769 | #~ msgid "Theme %s installed." 770 | #~ msgstr "佈景主題 %s 已安裝。" 771 | 772 | #~ msgid "Rename successful using extended name to %1$s" 773 | #~ msgstr "成功使用延伸名稱重新命名為 %1$s" 774 | 775 | #~ msgid "" 776 | #~ "Extended Naming renames plugin directories %s to prevent possible " 777 | #~ "conflicts with WP.org plugins." 778 | #~ msgstr "" 779 | #~ "[延伸命名] 會將外掛目錄重新命名為 %s,以防止與 WordPress.org 上的外掛發生" 780 | #~ "衝突。" 781 | -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- 1 | { 2 | "_readme": [ 3 | "This file locks the dependencies of your project to a known state", 4 | "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", 5 | "This file is @generated automatically" 6 | ], 7 | "content-hash": "c7159c64fd5be69e9d8e94a279e00daa", 8 | "packages": [ 9 | { 10 | "name": "afragen/language-pack-maker", 11 | "version": "dev-master", 12 | "source": { 13 | "type": "git", 14 | "url": "https://github.com/afragen/language-pack-maker.git", 15 | "reference": "eda99b37905b0b125a111b6698793ded8a90a55f" 16 | }, 17 | "dist": { 18 | "type": "zip", 19 | "url": "https://api.github.com/repos/afragen/language-pack-maker/zipball/eda99b37905b0b125a111b6698793ded8a90a55f", 20 | "reference": "eda99b37905b0b125a111b6698793ded8a90a55f", 21 | "shasum": "" 22 | }, 23 | "require": { 24 | "afragen/wp-cli-runner": "^0.1", 25 | "gettext/gettext": "^4.8", 26 | "php": ">=7.0", 27 | "wp-cli/i18n-command": "^2" 28 | }, 29 | "default-branch": true, 30 | "type": "library", 31 | "autoload": { 32 | "psr-4": { 33 | "Fragen\\Language_Pack_Maker\\": "src/" 34 | }, 35 | "files": [ 36 | "index.php" 37 | ] 38 | }, 39 | "notification-url": "https://packagist.org/downloads/", 40 | "license": [ 41 | "MIT" 42 | ], 43 | "authors": [ 44 | { 45 | "name": "Andy Fragen", 46 | "email": "andy@thefragens.com", 47 | "homepage": "https://thefragens.com", 48 | "role": "Developer" 49 | } 50 | ], 51 | "description": "Library that helps create git sourced WordPress Language Packs from po files.", 52 | "keywords": [ 53 | "language packs", 54 | "translations", 55 | "wordpress" 56 | ], 57 | "support": { 58 | "issues": "https://github.com/afragen/language-pack-maker/issues", 59 | "source": "https://github.com/afragen/language-pack-maker" 60 | }, 61 | "time": "2020-06-04T19:55:10+00:00" 62 | }, 63 | { 64 | "name": "afragen/wp-cli-runner", 65 | "version": "0.1.2", 66 | "source": { 67 | "type": "git", 68 | "url": "https://github.com/afragen/wp-cli-runner.git", 69 | "reference": "87ee6ef715d36f6d7983ce49d03d12ffdcbe46a9" 70 | }, 71 | "dist": { 72 | "type": "zip", 73 | "url": "https://api.github.com/repos/afragen/wp-cli-runner/zipball/87ee6ef715d36f6d7983ce49d03d12ffdcbe46a9", 74 | "reference": "87ee6ef715d36f6d7983ce49d03d12ffdcbe46a9", 75 | "shasum": "" 76 | }, 77 | "require": { 78 | "wp-cli/wp-cli": "^2" 79 | }, 80 | "type": "library", 81 | "autoload": { 82 | "psr-4": { 83 | "Fragen\\WP_CLI_Runner\\": "src" 84 | } 85 | }, 86 | "notification-url": "https://packagist.org/downloads/", 87 | "license": [ 88 | "GPL-2.0-or-later" 89 | ], 90 | "description": "Helper to test custom WP-CLI commands by bootstrapping WP-CLI", 91 | "homepage": "https://github.com/afragen/wp-cli-runner", 92 | "keywords": [ 93 | "testing", 94 | "wp-cli" 95 | ], 96 | "support": { 97 | "source": "https://github.com/afragen/wp-cli-runner/tree/0.1.2" 98 | }, 99 | "time": "2021-05-21T15:31:14+00:00" 100 | }, 101 | { 102 | "name": "gettext/gettext", 103 | "version": "v4.8.4", 104 | "source": { 105 | "type": "git", 106 | "url": "https://github.com/php-gettext/Gettext.git", 107 | "reference": "58bc0f7f37e78efb0f9758f93d4a0f669f0f84a1" 108 | }, 109 | "dist": { 110 | "type": "zip", 111 | "url": "https://api.github.com/repos/php-gettext/Gettext/zipball/58bc0f7f37e78efb0f9758f93d4a0f669f0f84a1", 112 | "reference": "58bc0f7f37e78efb0f9758f93d4a0f669f0f84a1", 113 | "shasum": "" 114 | }, 115 | "require": { 116 | "gettext/languages": "^2.3", 117 | "php": ">=5.4.0" 118 | }, 119 | "require-dev": { 120 | "illuminate/view": "*", 121 | "phpunit/phpunit": "^4.8|^5.7|^6.5", 122 | "squizlabs/php_codesniffer": "^3.0", 123 | "symfony/yaml": "~2", 124 | "twig/extensions": "*", 125 | "twig/twig": "^1.31|^2.0" 126 | }, 127 | "suggest": { 128 | "illuminate/view": "Is necessary if you want to use the Blade extractor", 129 | "symfony/yaml": "Is necessary if you want to use the Yaml extractor/generator", 130 | "twig/extensions": "Is necessary if you want to use the Twig extractor", 131 | "twig/twig": "Is necessary if you want to use the Twig extractor" 132 | }, 133 | "type": "library", 134 | "autoload": { 135 | "psr-4": { 136 | "Gettext\\": "src" 137 | } 138 | }, 139 | "notification-url": "https://packagist.org/downloads/", 140 | "license": [ 141 | "MIT" 142 | ], 143 | "authors": [ 144 | { 145 | "name": "Oscar Otero", 146 | "email": "oom@oscarotero.com", 147 | "homepage": "http://oscarotero.com", 148 | "role": "Developer" 149 | } 150 | ], 151 | "description": "PHP gettext manager", 152 | "homepage": "https://github.com/oscarotero/Gettext", 153 | "keywords": [ 154 | "JS", 155 | "gettext", 156 | "i18n", 157 | "mo", 158 | "po", 159 | "translation" 160 | ], 161 | "support": { 162 | "email": "oom@oscarotero.com", 163 | "issues": "https://github.com/oscarotero/Gettext/issues", 164 | "source": "https://github.com/php-gettext/Gettext/tree/v4.8.4" 165 | }, 166 | "funding": [ 167 | { 168 | "url": "https://paypal.me/oscarotero", 169 | "type": "custom" 170 | }, 171 | { 172 | "url": "https://github.com/oscarotero", 173 | "type": "github" 174 | }, 175 | { 176 | "url": "https://www.patreon.com/misteroom", 177 | "type": "patreon" 178 | } 179 | ], 180 | "time": "2021-03-10T19:35:49+00:00" 181 | }, 182 | { 183 | "name": "gettext/languages", 184 | "version": "2.6.0", 185 | "source": { 186 | "type": "git", 187 | "url": "https://github.com/php-gettext/Languages.git", 188 | "reference": "38ea0482f649e0802e475f0ed19fa993bcb7a618" 189 | }, 190 | "dist": { 191 | "type": "zip", 192 | "url": "https://api.github.com/repos/php-gettext/Languages/zipball/38ea0482f649e0802e475f0ed19fa993bcb7a618", 193 | "reference": "38ea0482f649e0802e475f0ed19fa993bcb7a618", 194 | "shasum": "" 195 | }, 196 | "require": { 197 | "php": ">=5.3" 198 | }, 199 | "require-dev": { 200 | "friendsofphp/php-cs-fixer": "^2.16.0", 201 | "phpunit/phpunit": "^4.8 || ^5.7 || ^6.5 || ^7.5 || ^8.4" 202 | }, 203 | "bin": [ 204 | "bin/export-plural-rules" 205 | ], 206 | "type": "library", 207 | "autoload": { 208 | "psr-4": { 209 | "Gettext\\Languages\\": "src/" 210 | } 211 | }, 212 | "notification-url": "https://packagist.org/downloads/", 213 | "license": [ 214 | "MIT" 215 | ], 216 | "authors": [ 217 | { 218 | "name": "Michele Locati", 219 | "email": "mlocati@gmail.com", 220 | "role": "Developer" 221 | } 222 | ], 223 | "description": "gettext languages with plural rules", 224 | "homepage": "https://github.com/php-gettext/Languages", 225 | "keywords": [ 226 | "cldr", 227 | "i18n", 228 | "internationalization", 229 | "l10n", 230 | "language", 231 | "languages", 232 | "localization", 233 | "php", 234 | "plural", 235 | "plural rules", 236 | "plurals", 237 | "translate", 238 | "translations", 239 | "unicode" 240 | ], 241 | "support": { 242 | "issues": "https://github.com/php-gettext/Languages/issues", 243 | "source": "https://github.com/php-gettext/Languages/tree/2.6.0" 244 | }, 245 | "time": "2019-11-13T10:30:21+00:00" 246 | }, 247 | { 248 | "name": "mck89/peast", 249 | "version": "v1.12.0", 250 | "source": { 251 | "type": "git", 252 | "url": "https://github.com/mck89/peast.git", 253 | "reference": "833be7a294627a8c5b1c482cbf489f73bf9b8086" 254 | }, 255 | "dist": { 256 | "type": "zip", 257 | "url": "https://api.github.com/repos/mck89/peast/zipball/833be7a294627a8c5b1c482cbf489f73bf9b8086", 258 | "reference": "833be7a294627a8c5b1c482cbf489f73bf9b8086", 259 | "shasum": "" 260 | }, 261 | "require": { 262 | "php": ">=5.4.0" 263 | }, 264 | "require-dev": { 265 | "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0" 266 | }, 267 | "type": "library", 268 | "extra": { 269 | "branch-alias": { 270 | "dev-master": "1.12.0-dev" 271 | } 272 | }, 273 | "autoload": { 274 | "psr-4": { 275 | "Peast\\": "lib/Peast/", 276 | "Peast\\test\\": "test/Peast/" 277 | } 278 | }, 279 | "notification-url": "https://packagist.org/downloads/", 280 | "license": [ 281 | "MIT" 282 | ], 283 | "authors": [ 284 | { 285 | "name": "Marco Marchiò", 286 | "email": "marco.mm89@gmail.com" 287 | } 288 | ], 289 | "description": "Peast is PHP library that generates AST for JavaScript code", 290 | "support": { 291 | "issues": "https://github.com/mck89/peast/issues", 292 | "source": "https://github.com/mck89/peast/tree/v1.12.0" 293 | }, 294 | "time": "2021-01-08T15:16:19+00:00" 295 | }, 296 | { 297 | "name": "mustache/mustache", 298 | "version": "v2.13.0", 299 | "source": { 300 | "type": "git", 301 | "url": "https://github.com/bobthecow/mustache.php.git", 302 | "reference": "e95c5a008c23d3151d59ea72484d4f72049ab7f4" 303 | }, 304 | "dist": { 305 | "type": "zip", 306 | "url": "https://api.github.com/repos/bobthecow/mustache.php/zipball/e95c5a008c23d3151d59ea72484d4f72049ab7f4", 307 | "reference": "e95c5a008c23d3151d59ea72484d4f72049ab7f4", 308 | "shasum": "" 309 | }, 310 | "require": { 311 | "php": ">=5.2.4" 312 | }, 313 | "require-dev": { 314 | "friendsofphp/php-cs-fixer": "~1.11", 315 | "phpunit/phpunit": "~3.7|~4.0|~5.0" 316 | }, 317 | "type": "library", 318 | "autoload": { 319 | "psr-0": { 320 | "Mustache": "src/" 321 | } 322 | }, 323 | "notification-url": "https://packagist.org/downloads/", 324 | "license": [ 325 | "MIT" 326 | ], 327 | "authors": [ 328 | { 329 | "name": "Justin Hileman", 330 | "email": "justin@justinhileman.info", 331 | "homepage": "http://justinhileman.com" 332 | } 333 | ], 334 | "description": "A Mustache implementation in PHP.", 335 | "homepage": "https://github.com/bobthecow/mustache.php", 336 | "keywords": [ 337 | "mustache", 338 | "templating" 339 | ], 340 | "support": { 341 | "issues": "https://github.com/bobthecow/mustache.php/issues", 342 | "source": "https://github.com/bobthecow/mustache.php/tree/master" 343 | }, 344 | "time": "2019-11-23T21:40:31+00:00" 345 | }, 346 | { 347 | "name": "rmccue/requests", 348 | "version": "v1.8.0", 349 | "source": { 350 | "type": "git", 351 | "url": "https://github.com/WordPress/Requests.git", 352 | "reference": "afbe4790e4def03581c4a0963a1e8aa01f6030f1" 353 | }, 354 | "dist": { 355 | "type": "zip", 356 | "url": "https://api.github.com/repos/WordPress/Requests/zipball/afbe4790e4def03581c4a0963a1e8aa01f6030f1", 357 | "reference": "afbe4790e4def03581c4a0963a1e8aa01f6030f1", 358 | "shasum": "" 359 | }, 360 | "require": { 361 | "php": ">=5.2" 362 | }, 363 | "require-dev": { 364 | "dealerdirect/phpcodesniffer-composer-installer": "^0.7", 365 | "php-parallel-lint/php-console-highlighter": "^0.5.0", 366 | "php-parallel-lint/php-parallel-lint": "^1.3", 367 | "phpcompatibility/php-compatibility": "^9.0", 368 | "phpunit/phpunit": "^4.8 || ^5.7 || ^6.5 || ^7.5", 369 | "requests/test-server": "dev-master", 370 | "squizlabs/php_codesniffer": "^3.5", 371 | "wp-coding-standards/wpcs": "^2.0" 372 | }, 373 | "type": "library", 374 | "autoload": { 375 | "psr-0": { 376 | "Requests": "library/" 377 | } 378 | }, 379 | "notification-url": "https://packagist.org/downloads/", 380 | "license": [ 381 | "ISC" 382 | ], 383 | "authors": [ 384 | { 385 | "name": "Ryan McCue", 386 | "homepage": "http://ryanmccue.info" 387 | } 388 | ], 389 | "description": "A HTTP library written in PHP, for human beings.", 390 | "homepage": "http://github.com/WordPress/Requests", 391 | "keywords": [ 392 | "curl", 393 | "fsockopen", 394 | "http", 395 | "idna", 396 | "ipv6", 397 | "iri", 398 | "sockets" 399 | ], 400 | "support": { 401 | "issues": "https://github.com/WordPress/Requests/issues", 402 | "source": "https://github.com/WordPress/Requests/tree/v1.8.0" 403 | }, 404 | "time": "2021-04-27T11:05:25+00:00" 405 | }, 406 | { 407 | "name": "symfony/finder", 408 | "version": "v5.2.9", 409 | "source": { 410 | "type": "git", 411 | "url": "https://github.com/symfony/finder.git", 412 | "reference": "ccccb9d48ca42757dd12f2ca4bf857a4e217d90d" 413 | }, 414 | "dist": { 415 | "type": "zip", 416 | "url": "https://api.github.com/repos/symfony/finder/zipball/ccccb9d48ca42757dd12f2ca4bf857a4e217d90d", 417 | "reference": "ccccb9d48ca42757dd12f2ca4bf857a4e217d90d", 418 | "shasum": "" 419 | }, 420 | "require": { 421 | "php": ">=7.2.5" 422 | }, 423 | "type": "library", 424 | "autoload": { 425 | "psr-4": { 426 | "Symfony\\Component\\Finder\\": "" 427 | }, 428 | "exclude-from-classmap": [ 429 | "/Tests/" 430 | ] 431 | }, 432 | "notification-url": "https://packagist.org/downloads/", 433 | "license": [ 434 | "MIT" 435 | ], 436 | "authors": [ 437 | { 438 | "name": "Fabien Potencier", 439 | "email": "fabien@symfony.com" 440 | }, 441 | { 442 | "name": "Symfony Community", 443 | "homepage": "https://symfony.com/contributors" 444 | } 445 | ], 446 | "description": "Finds files and directories via an intuitive fluent interface", 447 | "homepage": "https://symfony.com", 448 | "support": { 449 | "source": "https://github.com/symfony/finder/tree/v5.2.9" 450 | }, 451 | "funding": [ 452 | { 453 | "url": "https://symfony.com/sponsor", 454 | "type": "custom" 455 | }, 456 | { 457 | "url": "https://github.com/fabpot", 458 | "type": "github" 459 | }, 460 | { 461 | "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", 462 | "type": "tidelift" 463 | } 464 | ], 465 | "time": "2021-05-16T13:07:46+00:00" 466 | }, 467 | { 468 | "name": "wp-cli/i18n-command", 469 | "version": "v2.2.8", 470 | "source": { 471 | "type": "git", 472 | "url": "https://github.com/wp-cli/i18n-command.git", 473 | "reference": "8bc234617edc533590ac0f41080164a8d85ec9ce" 474 | }, 475 | "dist": { 476 | "type": "zip", 477 | "url": "https://api.github.com/repos/wp-cli/i18n-command/zipball/8bc234617edc533590ac0f41080164a8d85ec9ce", 478 | "reference": "8bc234617edc533590ac0f41080164a8d85ec9ce", 479 | "shasum": "" 480 | }, 481 | "require": { 482 | "gettext/gettext": "^4.8", 483 | "mck89/peast": "^1.8", 484 | "wp-cli/wp-cli": "^2.5" 485 | }, 486 | "require-dev": { 487 | "wp-cli/scaffold-command": "^1.2 || ^2", 488 | "wp-cli/wp-cli-tests": "^3.0.11" 489 | }, 490 | "type": "wp-cli-package", 491 | "extra": { 492 | "branch-alias": { 493 | "dev-master": "2.x-dev" 494 | }, 495 | "bundled": true, 496 | "commands": [ 497 | "i18n", 498 | "i18n make-pot", 499 | "i18n make-json" 500 | ] 501 | }, 502 | "autoload": { 503 | "psr-4": { 504 | "WP_CLI\\I18n\\": "src/" 505 | }, 506 | "files": [ 507 | "i18n-command.php" 508 | ] 509 | }, 510 | "notification-url": "https://packagist.org/downloads/", 511 | "license": [ 512 | "MIT" 513 | ], 514 | "authors": [ 515 | { 516 | "name": "Pascal Birchler", 517 | "homepage": "https://pascalbirchler.com/" 518 | } 519 | ], 520 | "description": "Provides internationalization tools for WordPress projects.", 521 | "homepage": "https://github.com/wp-cli/i18n-command", 522 | "support": { 523 | "issues": "https://github.com/wp-cli/i18n-command/issues", 524 | "source": "https://github.com/wp-cli/i18n-command/tree/v2.2.8" 525 | }, 526 | "time": "2021-05-10T10:24:16+00:00" 527 | }, 528 | { 529 | "name": "wp-cli/mustangostang-spyc", 530 | "version": "0.6.3", 531 | "source": { 532 | "type": "git", 533 | "url": "https://github.com/wp-cli/spyc.git", 534 | "reference": "6aa0b4da69ce9e9a2c8402dab8d43cf32c581cc7" 535 | }, 536 | "dist": { 537 | "type": "zip", 538 | "url": "https://api.github.com/repos/wp-cli/spyc/zipball/6aa0b4da69ce9e9a2c8402dab8d43cf32c581cc7", 539 | "reference": "6aa0b4da69ce9e9a2c8402dab8d43cf32c581cc7", 540 | "shasum": "" 541 | }, 542 | "require": { 543 | "php": ">=5.3.1" 544 | }, 545 | "require-dev": { 546 | "phpunit/phpunit": "4.3.*@dev" 547 | }, 548 | "type": "library", 549 | "extra": { 550 | "branch-alias": { 551 | "dev-master": "0.5.x-dev" 552 | } 553 | }, 554 | "autoload": { 555 | "psr-4": { 556 | "Mustangostang\\": "src/" 557 | }, 558 | "files": [ 559 | "includes/functions.php" 560 | ] 561 | }, 562 | "notification-url": "https://packagist.org/downloads/", 563 | "license": [ 564 | "MIT" 565 | ], 566 | "authors": [ 567 | { 568 | "name": "mustangostang", 569 | "email": "vlad.andersen@gmail.com" 570 | } 571 | ], 572 | "description": "A simple YAML loader/dumper class for PHP (WP-CLI fork)", 573 | "homepage": "https://github.com/mustangostang/spyc/", 574 | "support": { 575 | "source": "https://github.com/wp-cli/spyc/tree/autoload" 576 | }, 577 | "time": "2017-04-25T11:26:20+00:00" 578 | }, 579 | { 580 | "name": "wp-cli/php-cli-tools", 581 | "version": "v0.11.12", 582 | "source": { 583 | "type": "git", 584 | "url": "https://github.com/wp-cli/php-cli-tools.git", 585 | "reference": "e472e08489f7504d9e8c5c5a057e1419cd1b2b3e" 586 | }, 587 | "dist": { 588 | "type": "zip", 589 | "url": "https://api.github.com/repos/wp-cli/php-cli-tools/zipball/e472e08489f7504d9e8c5c5a057e1419cd1b2b3e", 590 | "reference": "e472e08489f7504d9e8c5c5a057e1419cd1b2b3e", 591 | "shasum": "" 592 | }, 593 | "require": { 594 | "php": ">= 5.3.0" 595 | }, 596 | "type": "library", 597 | "autoload": { 598 | "psr-0": { 599 | "cli": "lib/" 600 | }, 601 | "files": [ 602 | "lib/cli/cli.php" 603 | ] 604 | }, 605 | "notification-url": "https://packagist.org/downloads/", 606 | "license": [ 607 | "MIT" 608 | ], 609 | "authors": [ 610 | { 611 | "name": "Daniel Bachhuber", 612 | "email": "daniel@handbuilt.co", 613 | "role": "Maintainer" 614 | }, 615 | { 616 | "name": "James Logsdon", 617 | "email": "jlogsdon@php.net", 618 | "role": "Developer" 619 | } 620 | ], 621 | "description": "Console utilities for PHP", 622 | "homepage": "http://github.com/wp-cli/php-cli-tools", 623 | "keywords": [ 624 | "cli", 625 | "console" 626 | ], 627 | "support": { 628 | "issues": "https://github.com/wp-cli/php-cli-tools/issues", 629 | "source": "https://github.com/wp-cli/php-cli-tools/tree/v0.11.12" 630 | }, 631 | "time": "2021-03-03T12:43:49+00:00" 632 | }, 633 | { 634 | "name": "wp-cli/wp-cli", 635 | "version": "v2.5.0", 636 | "source": { 637 | "type": "git", 638 | "url": "https://github.com/wp-cli/wp-cli.git", 639 | "reference": "0bcf0c54f4d35685211d435e25219cc7acbe6d48" 640 | }, 641 | "dist": { 642 | "type": "zip", 643 | "url": "https://api.github.com/repos/wp-cli/wp-cli/zipball/0bcf0c54f4d35685211d435e25219cc7acbe6d48", 644 | "reference": "0bcf0c54f4d35685211d435e25219cc7acbe6d48", 645 | "shasum": "" 646 | }, 647 | "require": { 648 | "ext-curl": "*", 649 | "mustache/mustache": "~2.13", 650 | "php": "^5.6 || ^7.0 || ^8.0", 651 | "rmccue/requests": "^1.8", 652 | "symfony/finder": ">2.7", 653 | "wp-cli/mustangostang-spyc": "^0.6.3", 654 | "wp-cli/php-cli-tools": "~0.11.2" 655 | }, 656 | "require-dev": { 657 | "roave/security-advisories": "dev-master", 658 | "wp-cli/db-command": "^1.3 || ^2", 659 | "wp-cli/entity-command": "^1.2 || ^2", 660 | "wp-cli/extension-command": "^1.1 || ^2", 661 | "wp-cli/package-command": "^1 || ^2", 662 | "wp-cli/wp-cli-tests": "^3.0.7" 663 | }, 664 | "suggest": { 665 | "ext-readline": "Include for a better --prompt implementation", 666 | "ext-zip": "Needed to support extraction of ZIP archives when doing downloads or updates" 667 | }, 668 | "bin": [ 669 | "bin/wp", 670 | "bin/wp.bat" 671 | ], 672 | "type": "library", 673 | "extra": { 674 | "branch-alias": { 675 | "dev-master": "2.5.x-dev" 676 | } 677 | }, 678 | "autoload": { 679 | "psr-0": { 680 | "WP_CLI\\": "php/" 681 | }, 682 | "classmap": [ 683 | "php/class-wp-cli.php", 684 | "php/class-wp-cli-command.php" 685 | ] 686 | }, 687 | "notification-url": "https://packagist.org/downloads/", 688 | "license": [ 689 | "MIT" 690 | ], 691 | "description": "WP-CLI framework", 692 | "homepage": "https://wp-cli.org", 693 | "keywords": [ 694 | "cli", 695 | "wordpress" 696 | ], 697 | "support": { 698 | "docs": "https://make.wordpress.org/cli/handbook/", 699 | "issues": "https://github.com/wp-cli/wp-cli/issues", 700 | "source": "https://github.com/wp-cli/wp-cli" 701 | }, 702 | "time": "2021-05-14T13:44:51+00:00" 703 | } 704 | ], 705 | "packages-dev": [], 706 | "aliases": [], 707 | "minimum-stability": "stable", 708 | "stability-flags": { 709 | "afragen/language-pack-maker": 20 710 | }, 711 | "prefer-stable": true, 712 | "prefer-lowest": false, 713 | "platform": [], 714 | "platform-dev": [], 715 | "plugin-api-version": "2.0.0" 716 | } 717 | --------------------------------------------------------------------------------