├── .github ├── CODEOWNERS ├── PULL_REQUEST_TEMPLATE.md ├── dependabot.yml └── workflows │ ├── assertions.yml │ └── deploy.yml ├── .gitignore ├── .phpcs.xml ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── composer-public.json ├── composer-public.lock ├── composer.json ├── composer.lock ├── index.php ├── plugins └── index.php └── themes ├── index.php └── wds_headless ├── .editorconfig ├── acf-json ├── group_5ff605fe69e7d.json ├── group_600b6265f369a.json ├── group_601bfb9db9871.json └── index.php ├── experimental-theme.json ├── functions.php ├── inc ├── acf-pro.php ├── block-manager.php ├── custom-post-types.php ├── tgm │ ├── class-tgm-plugin-activation.php │ ├── languages │ │ ├── tgmpa-cs_CZ.mo │ │ ├── tgmpa-cs_CZ.po │ │ ├── tgmpa-de_DE.mo │ │ ├── tgmpa-de_DE.po │ │ ├── tgmpa-en_AU.mo │ │ ├── tgmpa-en_AU.po │ │ ├── tgmpa-en_CA.mo │ │ ├── tgmpa-en_CA.po │ │ ├── tgmpa-en_GB.mo │ │ ├── tgmpa-en_GB.po │ │ ├── tgmpa-eo.mo │ │ ├── tgmpa-eo.po │ │ ├── tgmpa-es_ES.mo │ │ ├── tgmpa-es_ES.po │ │ ├── tgmpa-fr_FR.mo │ │ ├── tgmpa-fr_FR.po │ │ ├── tgmpa-he_IL.mo │ │ ├── tgmpa-he_IL.po │ │ ├── tgmpa-hr_HR.mo │ │ ├── tgmpa-hr_HR.po │ │ ├── tgmpa-it_IT.mo │ │ ├── tgmpa-it_IT.po │ │ ├── tgmpa-nl_NL.mo │ │ ├── tgmpa-nl_NL.po │ │ ├── tgmpa-pt_BR.mo │ │ ├── tgmpa-pt_BR.po │ │ ├── tgmpa-ro_RO.mo │ │ ├── tgmpa-ro_RO.po │ │ ├── tgmpa-ru_RU.mo │ │ ├── tgmpa-ru_RU.po │ │ ├── tgmpa-sr_RS.mo │ │ ├── tgmpa-sr_RS.po │ │ ├── tgmpa-sv_SE.mo │ │ ├── tgmpa-sv_SE.po │ │ └── tgmpa.pot │ └── tgm.php ├── wordpress.php ├── wp-graphql.php ├── wp-search-with-algolia.php └── yoast-seo.php ├── index.php ├── js └── blocks.js ├── screenshot.png └── style.css /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | # Code Owners 2 | # https://help.github.com/en/github/creating-cloning-and-archiving-repositories/about-code-owners 3 | * @gregrickaby 4 | -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | Closes # 2 | 3 | ### Link 4 | 5 | Link to what you built on WP Engine. 6 | 7 | ### Description 8 | 9 | What did you build? Give some context... 10 | 11 | ### Screenshots 12 | 13 | Add screenshots of your feature. 14 | 15 | ### Steps To Verify Feature 16 | 17 | How will your Lead Engineer and/or stakeholder test this? 18 | 19 | 1. 20 | 2. 21 | 3. 22 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- 1 | version: 2 2 | updates: 3 | - package-ecosystem: "composer" 4 | directory: "/" 5 | schedule: 6 | interval: "weekly" 7 | day: "monday" 8 | -------------------------------------------------------------------------------- /.github/workflows/assertions.yml: -------------------------------------------------------------------------------- 1 | name: Assertions 2 | 3 | on: 4 | pull_request: 5 | branches: [main, develop] 6 | 7 | workflow_dispatch: 8 | 9 | jobs: 10 | lint: 11 | runs-on: ubuntu-latest 12 | 13 | strategy: 14 | matrix: 15 | php-versions: ["7.4"] 16 | 17 | steps: 18 | - name: Checkout repository 19 | uses: actions/checkout@v2 20 | with: 21 | token: ${{ github.token }} 22 | 23 | - name: Setup PHP ${{ matrix.php-versions }} 24 | uses: shivammathur/setup-php@v2 25 | with: 26 | php-version: ${{ matrix.php-versions }} 27 | tools: composer:v2, phpcs 28 | 29 | - name: Cache Composer dependencies 30 | uses: actions/cache@v2 31 | with: 32 | path: /tmp/composer-cache 33 | key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }} 34 | restore-keys: ${{ runner.OS }}-composer- 35 | 36 | - name: Authorize Composer with WDS packagist server 37 | run: echo '${{ secrets.COMPOSER_AUTH }}' > $GITHUB_WORKSPACE/auth.json 38 | 39 | - name: Install dependencies 40 | run: composer install 41 | 42 | - name: Lint PHP 43 | run: composer run lint 44 | -------------------------------------------------------------------------------- /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- 1 | name: Deploy to Dev 2 | 3 | on: 4 | push: 5 | branches: 6 | - develop 7 | 8 | workflow_dispatch: 9 | 10 | jobs: 11 | deploy: 12 | runs-on: ubuntu-latest 13 | 14 | strategy: 15 | matrix: 16 | php-versions: ["7.4"] 17 | 18 | steps: 19 | - name: Checkout repository 20 | uses: actions/checkout@v2 21 | with: 22 | token: ${{ github.token }} 23 | 24 | - name: Setup PHP ${{ matrix.php-versions }} 25 | uses: shivammathur/setup-php@v2 26 | with: 27 | php-version: ${{ matrix.php-versions }} 28 | tools: composer:v2 29 | 30 | - name: Cache Composer dependencies 31 | uses: actions/cache@v2 32 | with: 33 | path: /tmp/composer-cache 34 | key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }} 35 | restore-keys: ${{ runner.OS }}-composer- 36 | 37 | - name: Authorize Composer with WDS packagist server 38 | run: echo '${{ secrets.COMPOSER_AUTH }}' > $GITHUB_WORKSPACE/auth.json 39 | 40 | - name: Install dependencies 41 | run: composer install 42 | 43 | - name: Rsync to dev 44 | uses: easingthemes/ssh-deploy@v2 45 | env: 46 | SSH_PRIVATE_KEY: ${{ secrets.SERVER_SSH_KEY }} 47 | ARGS: "-v -a -z --delete" 48 | SOURCE: "./" 49 | REMOTE_HOST: ${{ secrets.REMOTE_HOST }} 50 | REMOTE_USER: ${{ secrets.REMOTE_USER }} 51 | TARGET: ${{ secrets.REMOTE_PATH }} 52 | EXCLUDE: ".git*,.env,composer.json,composer.lock,auth.json,package.json,package-lock.json,node_modules/,/uploads/,/upgrade/,/advanced-cache.php,/object-cache.php,/debug.log,/mysql.sql,/mu-plugins/mu-plugin.php,/mu-plugins/wpengine-common/,/mu-plugins/wpe-wp-sign-on-plugin.php,/mu-plugins/wpe-wp-sign-on-plugin/,/mu-plugins/slt-force-strong-passwords.php,/mu-plugins/force-strong-passwords/,/mu-plugins/wpengine-security-auditor.php,/mu-plugins/wpe-elasticpress-autosuggest-logger/" 53 | 54 | - name: Notify Slack 55 | uses: rtCamp/action-slack-notify@v2 56 | env: 57 | SLACK_CHANNEL: vercel-firehose 58 | SLACK_COLOR: ${{ job.status }} 59 | SLACK_ICON: https://avatars.slack-edge.com/2020-11-25/1527503386626_319578f21381f9641cd8_192.png 60 | SLACK_USERNAME: Github 61 | SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }} 62 | SLACK_FOOTER: ${{ github.repository }} 63 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # os 2 | *~ 3 | .DS_Store 4 | .svn 5 | .cvs 6 | *.bak 7 | *.swp 8 | Thumbs.db 9 | 10 | # node 11 | logs 12 | *.log 13 | npm-debug.log* 14 | yarn-debug.log* 15 | yarn-error.log* 16 | node_modules/ 17 | 18 | # composer 19 | vendor/ 20 | 21 | # wordpress 22 | /uploads/ 23 | 24 | # plugins 25 | /plugins/* 26 | 27 | # mu-plugins 28 | /mu-plugins/* 29 | 30 | # theme 31 | /themes/twenty* 32 | /themes/wds_headless/dist 33 | !/themes/wds_headless/src/scss/plugins 34 | !/themes/wds_headless/src/scss/vendor 35 | -------------------------------------------------------------------------------- /.phpcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Apply WordPress Coding Standards 4 | 5 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | themes/wds_headless 45 | 46 | 47 | /build/* 48 | /node_modules/* 49 | /vendor/* 50 | /tgm/* 51 | 52 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | # Contributing 2 | 3 | ## Introduction 4 | 5 | Thanks for contributing — you rock! 🤘 6 | 7 | --- 8 | 9 | ## Table of Contents 10 | 11 | - [Introduction](#introduction) 12 | - [Submitting Issues and Feature Requests](#submitting-issues-and-feature-requests) 13 | - [Development](#development) 14 | - [Environments and Primary Branches](#environments-and-primary-branches) 15 | - [Git Workflow](#git-workflow) 16 | - [Code Linting](#code-linting) 17 | - [Tips to help your PR get approved](#tips-to-help-your-pr-get-approved) 18 | 19 | --- 20 | 21 | ## Submitting Issues and Feature Requests 22 | 23 | Before submitting an issue or making a feature request, please search for existing [issues](https://github.com/WebDevStudios/wds-headless-wordpress/issues). If you do file an issue, be sure to fill out the report completely! 24 | 25 | --- 26 | 27 | ## Development 28 | 29 | ### Environments and Primary Branches 30 | 31 | - [WP Engine Prod](https://nextjs.wpengine.com/wp-admin/) - `main` branch - Manual releases only 32 | - [WP Engine Dev](https://nextjsdevstart.wpengine.com/wp-admin/) - `develop` branch - Auto deploy [via Buddy](https://app.buddy.works/webdevstudios/wds-headless-wordpress/pipelines) 33 | 34 | ### Git Workflow 35 | 36 | 1. Create a `feature` branch off `main` 37 | 2. Work locally adhering to coding standards 38 | 3. Merge your `feature` into `develop` to test on [WPE Dev environment](https://nextjsdevstart.wpengine.com/wp-admin/) 39 | 4. When your `feature` has been tested on WPE Dev, open a Pull Request (PR) and fill out the PR template 40 | 5. Your PR must pass assertions 41 | 6. After peer review, the PR will be merged back into `main` 42 | 7. Repeat ♻️ 43 | 44 | ### Code Linting 45 | 46 | This project uses PHPCS via Composer to enforce standards both [WebDevStudios](https://github.com/WebDevStudios/php-coding-standards) and [WordPress Coding Standards](https://developer.wordpress.org/coding-standards/wordpress-coding-standards/php/). 47 | 48 | Lint PHP with phpcs: 49 | 50 | ```bash 51 | composer run lint 52 | ``` 53 | 54 | Format PHP with phpcbf: 55 | 56 | ```bash 57 | composer run format 58 | ``` 59 | 60 | Check compatability: 61 | 62 | ```bash 63 | composer run compat 64 | ``` 65 | 66 | ### Tips to help your PR get approved 67 | 68 | 1. Make sure your code editor supports real-time linting and has the PHPCS extension installed 69 | 2. [PHP DocBlocks](https://docs.phpdoc.org/latest/guide/guides/docblocks.html) are required 70 | 3. Run `composer run lint` before submitting your PR 71 | 4. Be courteous in your communications 72 | 73 | --- 74 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- 1 | # The GNU General Public License, Version 2, June 1991 (GPLv2) 2 | 3 | > Copyright (C) 1989, 1991 Free Software Foundation, Inc. 4 | > 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA 5 | 6 | Everyone is permitted to copy and distribute verbatim copies of this license 7 | document, but changing it is not allowed. 8 | 9 | ## Preamble 10 | 11 | The licenses for most software are designed to take away your freedom to share 12 | and change it. By contrast, the GNU General Public License is intended to 13 | guarantee your freedom to share and change free software--to make sure the 14 | software is free for all its users. This General Public License applies to most 15 | of the Free Software Foundation's software and to any other program whose 16 | authors commit to using it. (Some other Free Software Foundation software is 17 | covered by the GNU Lesser General Public License instead.) You can apply it to 18 | your programs, too. 19 | 20 | When we speak of free software, we are referring to freedom, not price. Our 21 | General Public Licenses are designed to make sure that you have the freedom to 22 | distribute copies of free software (and charge for this service if you wish), 23 | that you receive source code or can get it if you want it, that you can change 24 | the software or use pieces of it in new free programs; and that you know you can 25 | do these things. 26 | 27 | To protect your rights, we need to make restrictions that forbid anyone to deny 28 | you these rights or to ask you to surrender the rights. These restrictions 29 | translate to certain responsibilities for you if you distribute copies of the 30 | software, or if you modify it. 31 | 32 | For example, if you distribute copies of such a program, whether gratis or for a 33 | fee, you must give the recipients all the rights that you have. You must make 34 | sure that they, too, receive or can get the source code. And you must show them 35 | these terms so they know their rights. 36 | 37 | We protect your rights with two steps: (1) copyright the software, and (2) offer 38 | you this license which gives you legal permission to copy, distribute and/or 39 | modify the software. 40 | 41 | Also, for each author's protection and ours, we want to make certain that 42 | everyone understands that there is no warranty for this free software. If the 43 | software is modified by someone else and passed on, we want its recipients to 44 | know that what they have is not the original, so that any problems introduced by 45 | others will not reflect on the original authors' reputations. 46 | 47 | Finally, any free program is threatened constantly by software patents. We wish 48 | to avoid the danger that redistributors of a free program will individually 49 | obtain patent licenses, in effect making the program proprietary. To prevent 50 | this, we have made it clear that any patent must be licensed for everyone's free 51 | use or not licensed at all. 52 | 53 | The precise terms and conditions for copying, distribution and modification 54 | follow. 55 | 56 | ## Terms And Conditions For Copying, Distribution And Modification 57 | 58 | **0.** This License applies to any program or other work which contains a notice 59 | placed by the copyright holder saying it may be distributed under the terms of 60 | this General Public License. The "Program", below, refers to any such program or 61 | work, and a "work based on the Program" means either the Program or any 62 | derivative work under copyright law: that is to say, a work containing the 63 | Program or a portion of it, either verbatim or with modifications and/or 64 | translated into another language. (Hereinafter, translation is included without 65 | limitation in the term "modification".) Each licensee is addressed as "you". 66 | 67 | Activities other than copying, distribution and modification are not covered by 68 | this License; they are outside its scope. The act of running the Program is not 69 | restricted, and the output from the Program is covered only if its contents 70 | constitute a work based on the Program (independent of having been made by 71 | running the Program). Whether that is true depends on what the Program does. 72 | 73 | **1.** You may copy and distribute verbatim copies of the Program's source code 74 | as you receive it, in any medium, provided that you conspicuously and 75 | appropriately publish on each copy an appropriate copyright notice and 76 | disclaimer of warranty; keep intact all the notices that refer to this License 77 | and to the absence of any warranty; and give any other recipients of the Program 78 | a copy of this License along with the Program. 79 | 80 | You may charge a fee for the physical act of transferring a copy, and you may at 81 | your option offer warranty protection in exchange for a fee. 82 | 83 | **2.** You may modify your copy or copies of the Program or any portion of it, 84 | thus forming a work based on the Program, and copy and distribute such 85 | modifications or work under the terms of Section 1 above, provided that you also 86 | meet all of these conditions: 87 | 88 | - **a)** You must cause the modified files to carry prominent notices stating 89 | that you changed the files and the date of any change. 90 | 91 | - **b)** You must cause any work that you distribute or publish, that in whole 92 | or in part contains or is derived from the Program or any part thereof, to 93 | be licensed as a whole at no charge to all third parties under the terms of 94 | this License. 95 | 96 | - **c)** If the modified program normally reads commands interactively when 97 | run, you must cause it, when started running for such interactive use in the 98 | most ordinary way, to print or display an announcement including an 99 | appropriate copyright notice and a notice that there is no warranty (or 100 | else, saying that you provide a warranty) and that users may redistribute 101 | the program under these conditions, and telling the user how to view a copy 102 | of this License. (Exception: if the Program itself is interactive but does 103 | not normally print such an announcement, your work based on the Program is 104 | not required to print an announcement.) 105 | 106 | These requirements apply to the modified work as a whole. If identifiable 107 | sections of that work are not derived from the Program, and can be reasonably 108 | considered independent and separate works in themselves, then this License, and 109 | its terms, do not apply to those sections when you distribute them as separate 110 | works. But when you distribute the same sections as part of a whole which is a 111 | work based on the Program, the distribution of the whole must be on the terms of 112 | this License, whose permissions for other licensees extend to the entire whole, 113 | and thus to each and every part regardless of who wrote it. 114 | 115 | Thus, it is not the intent of this section to claim rights or contest your 116 | rights to work written entirely by you; rather, the intent is to exercise the 117 | right to control the distribution of derivative or collective works based on the 118 | Program. 119 | 120 | In addition, mere aggregation of another work not based on the Program with the 121 | Program (or with a work based on the Program) on a volume of a storage or 122 | distribution medium does not bring the other work under the scope of this 123 | License. 124 | 125 | **3.** You may copy and distribute the Program (or a work based on it, under 126 | Section 2) in object code or executable form under the terms of Sections 1 and 2 127 | above provided that you also do one of the following: 128 | 129 | - **a)** Accompany it with the complete corresponding machine-readable source 130 | code, which must be distributed under the terms of Sections 1 and 2 above on 131 | a medium customarily used for software interchange; or, 132 | 133 | - **b)** Accompany it with a written offer, valid for at least three years, to 134 | give any third party, for a charge no more than your cost of physically 135 | performing source distribution, a complete machine-readable copy of the 136 | corresponding source code, to be distributed under the terms of Sections 1 137 | and 2 above on a medium customarily used for software interchange; or, 138 | 139 | - **c)** Accompany it with the information you received as to the offer to 140 | distribute corresponding source code. (This alternative is allowed only for 141 | noncommercial distribution and only if you received the program in object 142 | code or executable form with such an offer, in accord with Subsection b 143 | above.) 144 | 145 | The source code for a work means the preferred form of the work for making 146 | modifications to it. For an executable work, complete source code means all the 147 | source code for all modules it contains, plus any associated interface 148 | definition files, plus the scripts used to control compilation and installation 149 | of the executable. However, as a special exception, the source code distributed 150 | need not include anything that is normally distributed (in either source or 151 | binary form) with the major components (compiler, kernel, and so on) of the 152 | operating system on which the executable runs, unless that component itself 153 | accompanies the executable. 154 | 155 | If distribution of executable or object code is made by offering access to copy 156 | from a designated place, then offering equivalent access to copy the source code 157 | from the same place counts as distribution of the source code, even though third 158 | parties are not compelled to copy the source along with the object code. 159 | 160 | **4.** You may not copy, modify, sublicense, or distribute the Program except as 161 | expressly provided under this License. Any attempt otherwise to copy, modify, 162 | sublicense or distribute the Program is void, and will automatically terminate 163 | your rights under this License. However, parties who have received copies, or 164 | rights, from you under this License will not have their licenses terminated so 165 | long as such parties remain in full compliance. 166 | 167 | **5.** You are not required to accept this License, since you have not signed 168 | it. However, nothing else grants you permission to modify or distribute the 169 | Program or its derivative works. These actions are prohibited by law if you do 170 | not accept this License. Therefore, by modifying or distributing the Program (or 171 | any work based on the Program), you indicate your acceptance of this License to 172 | do so, and all its terms and conditions for copying, distributing or modifying 173 | the Program or works based on it. 174 | 175 | **6.** Each time you redistribute the Program (or any work based on the 176 | Program), the recipient automatically receives a license from the original 177 | licensor to copy, distribute or modify the Program subject to these terms and 178 | conditions. You may not impose any further restrictions on the recipients' 179 | exercise of the rights granted herein. You are not responsible for enforcing 180 | compliance by third parties to this License. 181 | 182 | **7.** If, as a consequence of a court judgment or allegation of patent 183 | infringement or for any other reason (not limited to patent issues), conditions 184 | are imposed on you (whether by court order, agreement or otherwise) that 185 | contradict the conditions of this License, they do not excuse you from the 186 | conditions of this License. If you cannot distribute so as to satisfy 187 | simultaneously your obligations under this License and any other pertinent 188 | obligations, then as a consequence you may not distribute the Program at all. 189 | For example, if a patent license would not permit royalty-free redistribution of 190 | the Program by all those who receive copies directly or indirectly through you, 191 | then the only way you could satisfy both it and this License would be to refrain 192 | entirely from distribution of the Program. 193 | 194 | If any portion of this section is held invalid or unenforceable under any 195 | particular circumstance, the balance of the section is intended to apply and the 196 | section as a whole is intended to apply in other circumstances. 197 | 198 | It is not the purpose of this section to induce you to infringe any patents or 199 | other property right claims or to contest validity of any such claims; this 200 | section has the sole purpose of protecting the integrity of the free software 201 | distribution system, which is implemented by public license practices. Many 202 | people have made generous contributions to the wide range of software 203 | distributed through that system in reliance on consistent application of that 204 | system; it is up to the author/donor to decide if he or she is willing to 205 | distribute software through any other system and a licensee cannot impose that 206 | choice. 207 | 208 | This section is intended to make thoroughly clear what is believed to be a 209 | consequence of the rest of this License. 210 | 211 | **8.** If the distribution and/or use of the Program is restricted in certain 212 | countries either by patents or by copyrighted interfaces, the original copyright 213 | holder who places the Program under this License may add an explicit 214 | geographical distribution limitation excluding those countries, so that 215 | distribution is permitted only in or among countries not thus excluded. In such 216 | case, this License incorporates the limitation as if written in the body of this 217 | License. 218 | 219 | **9.** The Free Software Foundation may publish revised and/or new versions of 220 | the General Public License from time to time. Such new versions will be similar 221 | in spirit to the present version, but may differ in detail to address new 222 | problems or concerns. 223 | 224 | Each version is given a distinguishing version number. If the Program specifies 225 | a version number of this License which applies to it and "any later version", 226 | you have the option of following the terms and conditions either of that version 227 | or of any later version published by the Free Software Foundation. If the 228 | Program does not specify a version number of this License, you may choose any 229 | version ever published by the Free Software Foundation. 230 | 231 | **10.** If you wish to incorporate parts of the Program into other free programs 232 | whose distribution conditions are different, write to the author to ask for 233 | permission. For software which is copyrighted by the Free Software Foundation, 234 | write to the Free Software Foundation; we sometimes make exceptions for this. 235 | Our decision will be guided by the two goals of preserving the free status of 236 | all derivatives of our free software and of promoting the sharing and reuse of 237 | software generally. 238 | 239 | ## No Warranty 240 | 241 | **11.** BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR 242 | THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE 243 | STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM 244 | "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, 245 | BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A 246 | PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE 247 | PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF 248 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 249 | 250 | **12.** IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 251 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE 252 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY 253 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR 254 | INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA 255 | BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A 256 | FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER 257 | OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. 258 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | This codebase has been moved to a [monorepo](https://github.com/WebDevStudios/nextjs-wordpress-starter). Please see the [documentation](https://webdevstudios.github.io/nextjs-wordpress-starter/docs/index) to learn more. 🍻 2 | -------------------------------------------------------------------------------- /composer-public.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "webdevstudios/nextjs", 3 | "description": "A WordPress backend to power a Next.js frontend.", 4 | "type": "project", 5 | "license": "GPL-2.0-or-later", 6 | "authors": [ 7 | { 8 | "name": "WebDevStudios", 9 | "email": "contact@webdevstudios.com" 10 | } 11 | ], 12 | "repositories": { 13 | "wppackagist": { 14 | "type": "composer", 15 | "url": "https://wpackagist.org/" 16 | }, 17 | "wp-graphql-tax-query": { 18 | "type": "git", 19 | "url": "https://github.com/wp-graphql/wp-graphql-tax-query/" 20 | } 21 | }, 22 | "extra": { 23 | "installer-paths": { 24 | "plugins/{$name}/": ["type:wordpress-plugin"], 25 | "mu-plugins/{$name}/": ["type:wordpress-muplugin"], 26 | "themes/{$name}/": ["type:wordpress-theme"] 27 | } 28 | }, 29 | "require": { 30 | "dre1080/wp-graphql-upload": "^0.1", 31 | "pristas-peter/wp-graphql-gutenberg": "^0.3", 32 | "wp-graphql/wp-graphql-acf": "^0.4", 33 | "wp-graphql/wp-graphql-jwt-authentication": "^0.4", 34 | "wp-graphql/wp-graphql-tax-query": "^0.1.0", 35 | "wpackagist-plugin/add-wpgraphql-seo": "^4.13", 36 | "wpackagist-plugin/advanced-custom-fields": "^5.9", 37 | "wpackagist-plugin/block-manager": "^1.1", 38 | "wpackagist-plugin/custom-post-type-ui": "^1.9", 39 | "wpackagist-plugin/gutenberg": "^10.4", 40 | "wpackagist-plugin/lazy-blocks": "^2.3", 41 | "wpackagist-plugin/wordpress-seo": "^15.0", 42 | "wpackagist-plugin/wp-graphql": "^1.3", 43 | "wpackagist-plugin/wp-search-with-algolia": "^1.7" 44 | }, 45 | "require-dev": { 46 | "webdevstudios/php-coding-standards": "^1.3", 47 | "phpcompatibility/php-compatibility": "^9.3" 48 | }, 49 | "scripts": { 50 | "lint": ["@composer run compat", "@composer run lint:php"], 51 | "format": "@php ./vendor/bin/phpcbf -p -v ./themes/wds_headless --standard=.phpcs.xml.dist --extensions=php --report-summary --report-source --ignore='*/node_modules/*,*/vendor/*,*/dist/*'", 52 | "lint:php": "@php ./vendor/bin/phpcs -p -s -n ./themes/wds_headless --standard=.phpcs.xml.dist --extensions=php -n --colors --ignore='*/node_modules/*,*/vendor/*,*/dist/*'", 53 | "compat": "@php ./vendor/bin/phpcs -p ./themes/wds_headless --standard=PHPCompatibility --extensions=php --runtime-set testVersion 7.4 --ignore='.github/*,vendor/*' --warning-severity=8 -d memory_limit=4096M || true || exit", 54 | "debug:phpcs": "which phpcs && phpcs -i" 55 | }, 56 | "config": { 57 | "platform": { 58 | "php": "7.4" 59 | } 60 | } 61 | } 62 | -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "webdevstudios/nextjs", 3 | "description": "A WordPress backend to power a Next.js frontend.", 4 | "type": "project", 5 | "license": "GPL-2.0-or-later", 6 | "authors": [ 7 | { 8 | "name": "WebDevStudios", 9 | "email": "contact@webdevstudios.com" 10 | } 11 | ], 12 | "repositories": { 13 | "wppackagist": { 14 | "type": "composer", 15 | "url": "https://wpackagist.org/" 16 | }, 17 | "wds-satis": { 18 | "type": "composer", 19 | "url": "https://packages.wdslab.com/" 20 | }, 21 | "wp-graphql-tax-query": { 22 | "type": "git", 23 | "url": "https://github.com/wp-graphql/wp-graphql-tax-query/" 24 | } 25 | }, 26 | "extra": { 27 | "installer-paths": { 28 | "plugins/{$name}/": [ 29 | "type:wordpress-plugin" 30 | ], 31 | "mu-plugins/{$name}/": [ 32 | "type:wordpress-muplugin" 33 | ], 34 | "themes/{$name}/": [ 35 | "type:wordpress-theme" 36 | ] 37 | } 38 | }, 39 | "config": { 40 | "platform": { 41 | "php": "7.4" 42 | } 43 | }, 44 | "require": { 45 | "deliciousbrains-plugin/wp-migrate-db-pro": "^2.0", 46 | "deliciousbrains-plugin/wp-migrate-db-pro-cli": "^1.4", 47 | "deliciousbrains-plugin/wp-migrate-db-pro-media-files": "^2.0", 48 | "dre1080/wp-graphql-upload": "^0.1", 49 | "harness-software/wp-graphql-gravity-forms": "^0.4", 50 | "pristas-peter/wp-graphql-gutenberg": "^0.3", 51 | "webdevstudios/advanced-custom-fields-pro": "^5.9", 52 | "webdevstudios/gravityforms": "^2.5", 53 | "webdevstudios/mu-autoload": "^1.0", 54 | "webdevstudios/sso-addon": "^1.0", 55 | "webdevstudios/wordpress-seo-premium": "^15.9", 56 | "wp-graphql/wp-graphql-acf": "^0.4", 57 | "wp-graphql/wp-graphql-jwt-authentication": "^0.4", 58 | "wp-graphql/wp-graphql-tax-query": "^0.1.0", 59 | "wpackagist-plugin/add-wpgraphql-seo": "^4.14", 60 | "wpackagist-plugin/block-manager": "^1.2", 61 | "wpackagist-plugin/custom-post-type-ui": "^1.9", 62 | "wpackagist-plugin/gutenberg": "^11.0", 63 | "wpackagist-plugin/lazy-blocks": "^2.3", 64 | "wpackagist-plugin/wp-graphql": "^1.5", 65 | "wpackagist-plugin/wp-search-with-algolia": "^2.0" 66 | }, 67 | "require-dev": { 68 | "dealerdirect/phpcodesniffer-composer-installer": "^0.7", 69 | "phpcompatibility/phpcompatibility-wp": "^2.1", 70 | "wp-cli/wp-cli-bundle": "^2.5", 71 | "wp-coding-standards/wpcs": "^2.3" 72 | }, 73 | "scripts": { 74 | "format": "./vendor/bin/phpcbf --standard=.phpcs.xml --report=summary,source", 75 | "lint": "./vendor/bin/phpcs --standard=.phpcs.xml --report=summary,source" 76 | } 77 | } 78 | -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- 1 | esc_html__( 'Footer Menu' ), 48 | 'mobile-menu' => esc_html__( 'Mobile Menu' ), 49 | 'primary-menu' => esc_html__( 'Primary Menu' ), 50 | ] 51 | ); 52 | 53 | // Reset available font size presets to only "normal" (16px). 54 | add_theme_support( 55 | 'editor-font-sizes', 56 | [ 57 | [ 58 | 'name' => 'Normal', 59 | 'size' => 16, 60 | 'slug' => 'normal', 61 | ], 62 | ] 63 | ); 64 | } 65 | add_action( 'after_setup_theme', 'wds_theme_setup' ); 66 | 67 | /** 68 | * Enqueue Block Script. 69 | * 70 | * @author WebDevStudios 71 | * @since 1.0 72 | */ 73 | function wds_enqueue_block_editor_assets() { 74 | wp_enqueue_script( 75 | 'bri-blocks', 76 | get_stylesheet_directory_uri() . '/js/blocks.js', 77 | [ 'wp-blocks', 'wp-element' ], 78 | '1.0', 79 | true 80 | ); 81 | } 82 | add_action( 'enqueue_block_editor_assets', 'wds_enqueue_block_editor_assets' ); 83 | -------------------------------------------------------------------------------- /themes/wds_headless/inc/acf-pro.php: -------------------------------------------------------------------------------- 1 | esc_html__( 'Headless Config' ), 26 | 'menu_title' => esc_html__( 'Headless Config' ), 27 | 'menu_slug' => 'headless-config', 28 | 'capability' => 'edit_posts', 29 | 'icon_url' => 'dashicons-admin-generic', 30 | 'redirect' => false, 31 | 'show_in_graphql' => true, 32 | ] 33 | ); 34 | } 35 | add_action( 'acf/init', 'wds_acf_options_page' ); 36 | 37 | /** 38 | * Register custom ACF Blocks. 39 | * 40 | * Note: This is an ACF Pro only feature! 41 | * 42 | * @see https://www.advancedcustomfields.com/resources/blocks/ 43 | * @author WebDevStudios 44 | * @since 1.0 45 | */ 46 | function wds_acf_blocks_init() { 47 | 48 | $supports = [ 49 | 'align' => 'none', 50 | 'anchor' => false, 51 | 'mode' => false, 52 | ]; 53 | 54 | // Media Text block. 55 | acf_register_block_type( 56 | [ 57 | 'name' => 'acf-media-text', 58 | 'title' => esc_html__( 'ACF Media Text', 'wds' ), 59 | 'description' => esc_html__( 'A block to display media and text in a 50/50 layout.', 'wds' ), 60 | 'render_callback' => '', 61 | 'category' => 'wds-content', 62 | 'icon' => 'images-alt2', 63 | 'keywords' => [ 'media', 'text', 'button', 'wds' ], 64 | 'mode' => 'edit', 65 | 'enqueue_assets' => '', 66 | 'align' => 'wide', 67 | 'supports' => $supports, 68 | ] 69 | ); 70 | } 71 | add_action( 'acf/init', 'wds_acf_blocks_init' ); 72 | } 73 | -------------------------------------------------------------------------------- /themes/wds_headless/inc/block-manager.php: -------------------------------------------------------------------------------- 1 | esc_html__( 'Team Members', 'wds' ), 25 | 'singular_name' => esc_html__( 'Team', 'wds' ), 26 | ]; 27 | 28 | $args = [ 29 | 'label' => esc_html__( 'Team Members', 'wds' ), 30 | 'labels' => $labels, 31 | 'description' => '', 32 | 'public' => true, 33 | 'publicly_queryable' => true, 34 | 'show_ui' => true, 35 | 'show_in_rest' => true, 36 | 'rest_base' => '', 37 | 'rest_controller_class' => 'WP_REST_Posts_Controller', 38 | 'show_in_graphql' => true, 39 | 'graphql_single_name' => 'team', 40 | 'graphql_plural_name' => 'teams', 41 | 'has_archive' => 'team', 42 | 'show_in_menu' => true, 43 | 'show_in_nav_menus' => true, 44 | 'delete_with_user' => false, 45 | 'exclude_from_search' => false, 46 | 'capability_type' => 'post', 47 | 'map_meta_cap' => true, 48 | 'hierarchical' => false, 49 | 'rewrite' => [ 50 | 'slug' => 'team', 51 | 'with_front' => false, 52 | ], 53 | 'query_var' => true, 54 | 'menu_icon' => 'dashicons-groups', 55 | 'supports' => [ 'title', 'editor', 'thumbnail', 'excerpt', 'custom-fields', 'author' ], 56 | ]; 57 | 58 | register_post_type( 'team', $args ); 59 | } 60 | add_action( 'init', 'wds_register_custom_post_types' ); 61 | -------------------------------------------------------------------------------- /themes/wds_headless/inc/tgm/languages/tgmpa-cs_CZ.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebDevStudios/wds-headless-wordpress/eefaafb5ac6c92667096c70d8b85e934e848792d/themes/wds_headless/inc/tgm/languages/tgmpa-cs_CZ.mo -------------------------------------------------------------------------------- /themes/wds_headless/inc/tgm/languages/tgmpa-de_DE.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebDevStudios/wds-headless-wordpress/eefaafb5ac6c92667096c70d8b85e934e848792d/themes/wds_headless/inc/tgm/languages/tgmpa-de_DE.mo -------------------------------------------------------------------------------- /themes/wds_headless/inc/tgm/languages/tgmpa-en_AU.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebDevStudios/wds-headless-wordpress/eefaafb5ac6c92667096c70d8b85e934e848792d/themes/wds_headless/inc/tgm/languages/tgmpa-en_AU.mo -------------------------------------------------------------------------------- /themes/wds_headless/inc/tgm/languages/tgmpa-en_AU.po: -------------------------------------------------------------------------------- 1 | # Translation of TGM Plugin Activation in English (Australia) 2 | # This file is distributed under the same license as the TGMPA package. 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: TGM Plugin Activation v2.6.1\n" 6 | "POT-Creation-Date: 2016-05-19 02:59+0200\n" 7 | "PO-Revision-Date: 2016-05-19 02:59+0200\n" 8 | "Last-Translator: \n" 9 | "Language-Team: \n" 10 | "Language: en_AU\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 15 | "X-Generator: Poedit 1.8.7\n" 16 | 17 | #: class-tgm-plugin-activation.php:334 18 | msgid "Install Required Plugins" 19 | msgstr "Install Required Plugins" 20 | 21 | #: class-tgm-plugin-activation.php:335 22 | msgid "Install Plugins" 23 | msgstr "Install Plugins" 24 | 25 | #. translators: %s: plugin name. 26 | #: class-tgm-plugin-activation.php:337 27 | #, php-format 28 | msgid "Installing Plugin: %s" 29 | msgstr "Installing Plugin: %s" 30 | 31 | #. translators: %s: plugin name. 32 | #: class-tgm-plugin-activation.php:339 33 | #, php-format 34 | msgid "Updating Plugin: %s" 35 | msgstr "Updating Plugin: %s" 36 | 37 | #: class-tgm-plugin-activation.php:340 38 | msgid "Something went wrong with the plugin API." 39 | msgstr "Something went wrong with the plugin API." 40 | 41 | #. translators: 1: plugin name(s). 42 | #: class-tgm-plugin-activation.php:343 43 | #, php-format 44 | msgid "This theme requires the following plugin: %1$s." 45 | msgid_plural "This theme requires the following plugins: %1$s." 46 | msgstr[0] "This theme requires the following plugin: %1$s." 47 | msgstr[1] "This theme requires the following plugins: %1$s." 48 | 49 | #. translators: 1: plugin name(s). 50 | #: class-tgm-plugin-activation.php:349 51 | #, php-format 52 | msgid "This theme recommends the following plugin: %1$s." 53 | msgid_plural "This theme recommends the following plugins: %1$s." 54 | msgstr[0] "This theme recommends the following plugin: %1$s." 55 | msgstr[1] "This theme recommends the following plugins: %1$s." 56 | 57 | #. translators: 1: plugin name(s). 58 | #: class-tgm-plugin-activation.php:355 59 | #, php-format 60 | msgid "" 61 | "The following plugin needs to be updated to its latest version to ensure " 62 | "maximum compatibility with this theme: %1$s." 63 | msgid_plural "" 64 | "The following plugins need to be updated to their latest version to ensure " 65 | "maximum compatibility with this theme: %1$s." 66 | msgstr[0] "" 67 | "The following plugin needs to be updated to its latest version to ensure " 68 | "maximum compatibility with this theme: %1$s." 69 | msgstr[1] "" 70 | "The following plugins need to be updated to their latest version to ensure " 71 | "maximum compatibility with this theme: %1$s." 72 | 73 | #. translators: 1: plugin name(s). 74 | #: class-tgm-plugin-activation.php:361 75 | #, php-format 76 | msgid "There is an update available for: %1$s." 77 | msgid_plural "There are updates available for the following plugins: %1$s." 78 | msgstr[0] "There is an update available for: %1$s." 79 | msgstr[1] "There are updates available for the following plugins: %1$s." 80 | 81 | #. translators: 1: plugin name(s). 82 | #: class-tgm-plugin-activation.php:367 83 | #, php-format 84 | msgid "The following required plugin is currently inactive: %1$s." 85 | msgid_plural "The following required plugins are currently inactive: %1$s." 86 | msgstr[0] "The following required plugin is currently inactive: %1$s." 87 | msgstr[1] "The following required plugins are currently inactive: %1$s." 88 | 89 | #. translators: 1: plugin name(s). 90 | #: class-tgm-plugin-activation.php:373 91 | #, php-format 92 | msgid "The following recommended plugin is currently inactive: %1$s." 93 | msgid_plural "The following recommended plugins are currently inactive: %1$s." 94 | msgstr[0] "The following recommended plugin is currently inactive: %1$s." 95 | msgstr[1] "The following recommended plugins are currently inactive: %1$s." 96 | 97 | #: class-tgm-plugin-activation.php:378 98 | msgid "Begin installing plugin" 99 | msgid_plural "Begin installing plugins" 100 | msgstr[0] "Begin installing plugin" 101 | msgstr[1] "Begin installing plugins" 102 | 103 | #: class-tgm-plugin-activation.php:383 104 | msgid "Begin updating plugin" 105 | msgid_plural "Begin updating plugins" 106 | msgstr[0] "Begin updating plugin" 107 | msgstr[1] "Begin updating plugins" 108 | 109 | #: class-tgm-plugin-activation.php:388 110 | msgid "Begin activating plugin" 111 | msgid_plural "Begin activating plugins" 112 | msgstr[0] "Begin activating plugin" 113 | msgstr[1] "Begin activating plugins" 114 | 115 | #: class-tgm-plugin-activation.php:392 116 | msgid "Return to Required Plugins Installer" 117 | msgstr "Return to Required Plugins Installer" 118 | 119 | #: class-tgm-plugin-activation.php:393 class-tgm-plugin-activation.php:920 120 | #: class-tgm-plugin-activation.php:2626 class-tgm-plugin-activation.php:3673 121 | msgid "Return to the Dashboard" 122 | msgstr "Return to the Dashboard" 123 | 124 | #: class-tgm-plugin-activation.php:394 class-tgm-plugin-activation.php:3252 125 | msgid "Plugin activated successfully." 126 | msgstr "Plugin activated successfully." 127 | 128 | #: class-tgm-plugin-activation.php:395 class-tgm-plugin-activation.php:3045 129 | msgid "The following plugin was activated successfully:" 130 | msgid_plural "The following plugins were activated successfully:" 131 | msgstr[0] "The following plugin was activated successfully:" 132 | msgstr[1] "The following plugins were activated successfully:" 133 | 134 | #. translators: 1: plugin name. 135 | #: class-tgm-plugin-activation.php:397 136 | #, php-format 137 | msgid "No action taken. Plugin %1$s was already active." 138 | msgstr "No action taken. Plugin %1$s was already active." 139 | 140 | #. translators: 1: plugin name. 141 | #: class-tgm-plugin-activation.php:399 142 | #, php-format 143 | msgid "" 144 | "Plugin not activated. A higher version of %s is needed for this theme. " 145 | "Please update the plugin." 146 | msgstr "" 147 | "Plugin not activated. A higher version of %s is needed for this theme. " 148 | "Please update the plugin." 149 | 150 | #. translators: 1: dashboard link. 151 | #: class-tgm-plugin-activation.php:401 152 | #, php-format 153 | msgid "All plugins installed and activated successfully. %1$s" 154 | msgstr "All plugins installed and activated successfully. %1$s" 155 | 156 | #: class-tgm-plugin-activation.php:402 157 | msgid "Dismiss this notice" 158 | msgstr "Dismiss this notice" 159 | 160 | #: class-tgm-plugin-activation.php:403 161 | msgid "" 162 | "There are one or more required or recommended plugins to install, update or " 163 | "activate." 164 | msgstr "" 165 | 166 | #: class-tgm-plugin-activation.php:404 167 | msgid "Please contact the administrator of this site for help." 168 | msgstr "Please contact the administrator of this site for help." 169 | 170 | #: class-tgm-plugin-activation.php:607 171 | msgid "This plugin needs to be updated to be compatible with your theme." 172 | msgstr "This plugin needs to be updated to be compatible with your theme." 173 | 174 | #: class-tgm-plugin-activation.php:608 175 | msgid "Update Required" 176 | msgstr "Update Required" 177 | 178 | #: class-tgm-plugin-activation.php:725 179 | msgid "Set the parent_slug config variable instead." 180 | msgstr "Set the parent_slug config variable instead." 181 | 182 | #: class-tgm-plugin-activation.php:1027 183 | msgid "" 184 | "The remote plugin package does not contain a folder with the desired slug " 185 | "and renaming did not work." 186 | msgstr "" 187 | "The remote plugin package does not contain a folder with the desired slug " 188 | "and renaming did not work." 189 | 190 | #: class-tgm-plugin-activation.php:1027 class-tgm-plugin-activation.php:1030 191 | msgid "" 192 | "Please contact the plugin provider and ask them to package their plugin " 193 | "according to the WordPress guidelines." 194 | msgstr "" 195 | "Please contact the plugin provider and ask them to package their plugin " 196 | "according to the WordPress guidelines." 197 | 198 | #: class-tgm-plugin-activation.php:1030 199 | msgid "" 200 | "The remote plugin package consists of more than one file, but the files are " 201 | "not packaged in a folder." 202 | msgstr "" 203 | "The remote plugin package consists of more than one file, but the files are " 204 | "not packaged in a folder." 205 | 206 | #: class-tgm-plugin-activation.php:1214 class-tgm-plugin-activation.php:3041 207 | msgctxt "plugin A *and* plugin B" 208 | msgid "and" 209 | msgstr "and" 210 | 211 | #. translators: %s: version number 212 | #: class-tgm-plugin-activation.php:2075 213 | #, php-format 214 | msgid "TGMPA v%s" 215 | msgstr "TGMPA v%s" 216 | 217 | #: class-tgm-plugin-activation.php:2366 218 | msgid "Required" 219 | msgstr "Required" 220 | 221 | #: class-tgm-plugin-activation.php:2369 222 | msgid "Recommended" 223 | msgstr "Recommended" 224 | 225 | #: class-tgm-plugin-activation.php:2385 226 | msgid "WordPress Repository" 227 | msgstr "WordPress Repository" 228 | 229 | #: class-tgm-plugin-activation.php:2388 230 | msgid "External Source" 231 | msgstr "External Source" 232 | 233 | #: class-tgm-plugin-activation.php:2391 234 | msgid "Pre-Packaged" 235 | msgstr "Pre-Packaged" 236 | 237 | #: class-tgm-plugin-activation.php:2408 238 | msgid "Not Installed" 239 | msgstr "Not Installed" 240 | 241 | #: class-tgm-plugin-activation.php:2412 242 | msgid "Installed But Not Activated" 243 | msgstr "Installed But Not Activated" 244 | 245 | #: class-tgm-plugin-activation.php:2414 246 | msgid "Active" 247 | msgstr "Active" 248 | 249 | #: class-tgm-plugin-activation.php:2420 250 | msgid "Required Update not Available" 251 | msgstr "Required Update not Available" 252 | 253 | #: class-tgm-plugin-activation.php:2423 254 | msgid "Requires Update" 255 | msgstr "Requires Update" 256 | 257 | #: class-tgm-plugin-activation.php:2426 258 | msgid "Update recommended" 259 | msgstr "Update recommended" 260 | 261 | #. translators: 1: install status, 2: update status 262 | #: class-tgm-plugin-activation.php:2435 263 | #, php-format 264 | msgctxt "Install/Update Status" 265 | msgid "%1$s, %2$s" 266 | msgstr "%1$s, %2$s" 267 | 268 | #. translators: 1: number of plugins. 269 | #: class-tgm-plugin-activation.php:2481 270 | #, php-format 271 | msgctxt "plugins" 272 | msgid "All (%s)" 273 | msgid_plural "All (%s)" 274 | msgstr[0] "All (%s)" 275 | msgstr[1] "All (%s)" 276 | 277 | #. translators: 1: number of plugins. 278 | #: class-tgm-plugin-activation.php:2485 279 | #, php-format 280 | msgid "To Install (%s)" 281 | msgid_plural "To Install (%s)" 282 | msgstr[0] "To Install (%s)" 283 | msgstr[1] "To Install (%s)" 284 | 285 | #. translators: 1: number of plugins. 286 | #: class-tgm-plugin-activation.php:2489 287 | #, php-format 288 | msgid "Update Available (%s)" 289 | msgid_plural "Update Available (%s)" 290 | msgstr[0] "Update Available (%s)" 291 | msgstr[1] "Update Available (%s)" 292 | 293 | #. translators: 1: number of plugins. 294 | #: class-tgm-plugin-activation.php:2493 295 | #, php-format 296 | msgid "To Activate (%s)" 297 | msgid_plural "To Activate (%s)" 298 | msgstr[0] "To Activate (%s)" 299 | msgstr[1] "To Activate (%s)" 300 | 301 | #: class-tgm-plugin-activation.php:2575 302 | msgctxt "as in: \"version nr unknown\"" 303 | msgid "unknown" 304 | msgstr "unknown" 305 | 306 | #: class-tgm-plugin-activation.php:2583 307 | msgid "Installed version:" 308 | msgstr "Installed version:" 309 | 310 | #: class-tgm-plugin-activation.php:2591 311 | msgid "Minimum required version:" 312 | msgstr "Minimum required version:" 313 | 314 | #: class-tgm-plugin-activation.php:2603 315 | msgid "Available version:" 316 | msgstr "Available version:" 317 | 318 | #: class-tgm-plugin-activation.php:2626 319 | msgid "No plugins to install, update or activate." 320 | msgstr "No plugins to install, update or activate." 321 | 322 | #: class-tgm-plugin-activation.php:2640 323 | msgid "Plugin" 324 | msgstr "Plugin" 325 | 326 | #: class-tgm-plugin-activation.php:2641 327 | msgid "Source" 328 | msgstr "Source" 329 | 330 | #: class-tgm-plugin-activation.php:2642 331 | msgid "Type" 332 | msgstr "Type" 333 | 334 | #: class-tgm-plugin-activation.php:2646 335 | msgid "Version" 336 | msgstr "Version" 337 | 338 | #: class-tgm-plugin-activation.php:2647 339 | msgid "Status" 340 | msgstr "Status" 341 | 342 | #. translators: %2$s: plugin name in screen reader markup 343 | #: class-tgm-plugin-activation.php:2696 344 | #, php-format 345 | msgid "Install %2$s" 346 | msgstr "Install %2$s" 347 | 348 | #. translators: %2$s: plugin name in screen reader markup 349 | #: class-tgm-plugin-activation.php:2701 350 | #, php-format 351 | msgid "Update %2$s" 352 | msgstr "Update %2$s" 353 | 354 | #. translators: %2$s: plugin name in screen reader markup 355 | #: class-tgm-plugin-activation.php:2707 356 | #, php-format 357 | msgid "Activate %2$s" 358 | msgstr "Activate %2$s" 359 | 360 | #: class-tgm-plugin-activation.php:2777 361 | msgid "Upgrade message from the plugin author:" 362 | msgstr "Upgrade message from the plugin author:" 363 | 364 | #: class-tgm-plugin-activation.php:2810 365 | msgid "Install" 366 | msgstr "Install" 367 | 368 | #: class-tgm-plugin-activation.php:2816 369 | msgid "Update" 370 | msgstr "Update" 371 | 372 | #: class-tgm-plugin-activation.php:2819 373 | msgid "Activate" 374 | msgstr "Activate" 375 | 376 | #: class-tgm-plugin-activation.php:2850 377 | msgid "No plugins were selected to be installed. No action taken." 378 | msgstr "No plugins were selected to be installed. No action taken." 379 | 380 | #: class-tgm-plugin-activation.php:2852 381 | msgid "No plugins were selected to be updated. No action taken." 382 | msgstr "No plugins were selected to be updated. No action taken." 383 | 384 | #: class-tgm-plugin-activation.php:2893 385 | msgid "No plugins are available to be installed at this time." 386 | msgstr "No plugins are available to be installed at this time." 387 | 388 | #: class-tgm-plugin-activation.php:2895 389 | msgid "No plugins are available to be updated at this time." 390 | msgstr "No plugins are available to be updated at this time." 391 | 392 | #: class-tgm-plugin-activation.php:3001 393 | msgid "No plugins were selected to be activated. No action taken." 394 | msgstr "No plugins were selected to be activated. No action taken." 395 | 396 | #: class-tgm-plugin-activation.php:3027 397 | msgid "No plugins are available to be activated at this time." 398 | msgstr "No plugins are available to be activated at this time." 399 | 400 | #: class-tgm-plugin-activation.php:3251 401 | msgid "Plugin activation failed." 402 | msgstr "Plugin activation failed." 403 | 404 | #. translators: 1: plugin name, 2: action number 3: total number of actions. 405 | #: class-tgm-plugin-activation.php:3591 406 | #, php-format 407 | msgid "Updating Plugin %1$s (%2$d/%3$d)" 408 | msgstr "Updating Plugin %1$s (%2$d/%3$d)" 409 | 410 | #. translators: 1: plugin name, 2: error message. 411 | #: class-tgm-plugin-activation.php:3594 412 | #, php-format 413 | msgid "An error occurred while installing %1$s: %2$s." 414 | msgstr "An error occurred while installing %1$s: %2$s." 415 | 416 | #. translators: 1: plugin name. 417 | #: class-tgm-plugin-activation.php:3596 418 | #, php-format 419 | msgid "The installation of %1$s failed." 420 | msgstr "The installation of %1$s failed." 421 | 422 | #: class-tgm-plugin-activation.php:3600 423 | msgid "" 424 | "The installation and activation process is starting. This process may take a " 425 | "while on some hosts, so please be patient." 426 | msgstr "" 427 | "The installation and activation process is starting. This process may take a " 428 | "while on some hosts, so please be patient." 429 | 430 | #. translators: 1: plugin name. 431 | #: class-tgm-plugin-activation.php:3602 432 | #, php-format 433 | msgid "%1$s installed and activated successfully." 434 | msgstr "%1$s installed and activated successfully." 435 | 436 | #: class-tgm-plugin-activation.php:3602 class-tgm-plugin-activation.php:3610 437 | msgid "Show Details" 438 | msgstr "Show Details" 439 | 440 | #: class-tgm-plugin-activation.php:3602 class-tgm-plugin-activation.php:3610 441 | msgid "Hide Details" 442 | msgstr "Hide Details" 443 | 444 | #: class-tgm-plugin-activation.php:3603 445 | msgid "All installations and activations have been completed." 446 | msgstr "All installations and activations have been completed." 447 | 448 | #. translators: 1: plugin name, 2: action number 3: total number of actions. 449 | #: class-tgm-plugin-activation.php:3605 450 | #, php-format 451 | msgid "Installing and Activating Plugin %1$s (%2$d/%3$d)" 452 | msgstr "Installing and Activating Plugin %1$s (%2$d/%3$d)" 453 | 454 | #: class-tgm-plugin-activation.php:3608 455 | msgid "" 456 | "The installation process is starting. This process may take a while on some " 457 | "hosts, so please be patient." 458 | msgstr "" 459 | "The installation process is starting. This process may take a while on some " 460 | "hosts, so please be patient." 461 | 462 | #. translators: 1: plugin name. 463 | #: class-tgm-plugin-activation.php:3610 464 | #, php-format 465 | msgid "%1$s installed successfully." 466 | msgstr "%1$s installed successfully." 467 | 468 | #: class-tgm-plugin-activation.php:3611 469 | msgid "All installations have been completed." 470 | msgstr "All installations have been completed." 471 | 472 | #. translators: 1: plugin name, 2: action number 3: total number of actions. 473 | #: class-tgm-plugin-activation.php:3613 474 | #, php-format 475 | msgid "Installing Plugin %1$s (%2$d/%3$d)" 476 | msgstr "Installing Plugin %1$s (%2$d/%3$d)" 477 | -------------------------------------------------------------------------------- /themes/wds_headless/inc/tgm/languages/tgmpa-en_CA.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebDevStudios/wds-headless-wordpress/eefaafb5ac6c92667096c70d8b85e934e848792d/themes/wds_headless/inc/tgm/languages/tgmpa-en_CA.mo -------------------------------------------------------------------------------- /themes/wds_headless/inc/tgm/languages/tgmpa-en_CA.po: -------------------------------------------------------------------------------- 1 | # Translation of TGM Plugin Activation in English (Canada) 2 | # This file is distributed under the same license as the TGMPA package. 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: TGM Plugin Activation v2.6.1\n" 6 | "POT-Creation-Date: 2016-05-19 02:59+0200\n" 7 | "PO-Revision-Date: 2016-05-19 02:59+0200\n" 8 | "Last-Translator: \n" 9 | "Language-Team: TGMPA\n" 10 | "Language: en_CA\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 15 | "X-Generator: Poedit 1.8.7\n" 16 | 17 | #: class-tgm-plugin-activation.php:334 18 | msgid "Install Required Plugins" 19 | msgstr "Install Required Plugins" 20 | 21 | #: class-tgm-plugin-activation.php:335 22 | msgid "Install Plugins" 23 | msgstr "Install Plugins" 24 | 25 | #. translators: %s: plugin name. 26 | #: class-tgm-plugin-activation.php:337 27 | #, php-format 28 | msgid "Installing Plugin: %s" 29 | msgstr "Installing Plugin: %s" 30 | 31 | #. translators: %s: plugin name. 32 | #: class-tgm-plugin-activation.php:339 33 | #, php-format 34 | msgid "Updating Plugin: %s" 35 | msgstr "" 36 | 37 | #: class-tgm-plugin-activation.php:340 38 | msgid "Something went wrong with the plugin API." 39 | msgstr "Something went wrong with the plugin API." 40 | 41 | #. translators: 1: plugin name(s). 42 | #: class-tgm-plugin-activation.php:343 43 | #, php-format 44 | msgid "This theme requires the following plugin: %1$s." 45 | msgid_plural "This theme requires the following plugins: %1$s." 46 | msgstr[0] "This theme requires the following plugin: %1$s." 47 | msgstr[1] "This theme requires the following plugins: %1$s." 48 | 49 | #. translators: 1: plugin name(s). 50 | #: class-tgm-plugin-activation.php:349 51 | #, php-format 52 | msgid "This theme recommends the following plugin: %1$s." 53 | msgid_plural "This theme recommends the following plugins: %1$s." 54 | msgstr[0] "This theme recommends the following plugin: %1$s." 55 | msgstr[1] "This theme requires the following plugins: %1$s." 56 | 57 | #. translators: 1: plugin name(s). 58 | #: class-tgm-plugin-activation.php:355 59 | #, php-format 60 | msgid "" 61 | "The following plugin needs to be updated to its latest version to ensure " 62 | "maximum compatibility with this theme: %1$s." 63 | msgid_plural "" 64 | "The following plugins need to be updated to their latest version to ensure " 65 | "maximum compatibility with this theme: %1$s." 66 | msgstr[0] "" 67 | "The following plugin needs to be updated to its latest version to ensure " 68 | "maximum compatibility with this theme: %1$s." 69 | msgstr[1] "" 70 | "The following plugins need to be updated to their latest version to ensure " 71 | "maximum compatibility with this theme: %1$s." 72 | 73 | #. translators: 1: plugin name(s). 74 | #: class-tgm-plugin-activation.php:361 75 | #, php-format 76 | msgid "There is an update available for: %1$s." 77 | msgid_plural "There are updates available for the following plugins: %1$s." 78 | msgstr[0] "There is an update available for: %1$s." 79 | msgstr[1] "There are updates available for the following plugins: %1$s." 80 | 81 | #. translators: 1: plugin name(s). 82 | #: class-tgm-plugin-activation.php:367 83 | #, php-format 84 | msgid "The following required plugin is currently inactive: %1$s." 85 | msgid_plural "The following required plugins are currently inactive: %1$s." 86 | msgstr[0] "The following required plugin is currently inactive: %1$s." 87 | msgstr[1] "The following required plugins are currently inactive: %1$s." 88 | 89 | #. translators: 1: plugin name(s). 90 | #: class-tgm-plugin-activation.php:373 91 | #, php-format 92 | msgid "The following recommended plugin is currently inactive: %1$s." 93 | msgid_plural "The following recommended plugins are currently inactive: %1$s." 94 | msgstr[0] "The following recommended plugin is currently inactive: %1$s." 95 | msgstr[1] "The following recommended plugins are currently inactive: %1$s." 96 | 97 | #: class-tgm-plugin-activation.php:378 98 | msgid "Begin installing plugin" 99 | msgid_plural "Begin installing plugins" 100 | msgstr[0] "Begin installing plugin." 101 | msgstr[1] "Begin installing plugins." 102 | 103 | #: class-tgm-plugin-activation.php:383 104 | msgid "Begin updating plugin" 105 | msgid_plural "Begin updating plugins" 106 | msgstr[0] "Begin updating plugin." 107 | msgstr[1] "Begin updating plugins." 108 | 109 | #: class-tgm-plugin-activation.php:388 110 | msgid "Begin activating plugin" 111 | msgid_plural "Begin activating plugins" 112 | msgstr[0] "Begin activating plugin." 113 | msgstr[1] "Begin activating plugins." 114 | 115 | #: class-tgm-plugin-activation.php:392 116 | msgid "Return to Required Plugins Installer" 117 | msgstr "Return to Required Plugins Installer" 118 | 119 | #: class-tgm-plugin-activation.php:393 class-tgm-plugin-activation.php:920 120 | #: class-tgm-plugin-activation.php:2626 class-tgm-plugin-activation.php:3673 121 | msgid "Return to the Dashboard" 122 | msgstr "Return to the dashboard" 123 | 124 | #: class-tgm-plugin-activation.php:394 class-tgm-plugin-activation.php:3252 125 | msgid "Plugin activated successfully." 126 | msgstr "Plugin activated successfully." 127 | 128 | #: class-tgm-plugin-activation.php:395 class-tgm-plugin-activation.php:3045 129 | #, fuzzy 130 | msgid "The following plugin was activated successfully:" 131 | msgid_plural "The following plugins were activated successfully:" 132 | msgstr[0] "The following plugin was activated successfully:" 133 | msgstr[1] "The following plugin was activated successfully:" 134 | 135 | #. translators: 1: plugin name. 136 | #: class-tgm-plugin-activation.php:397 137 | #, php-format 138 | msgid "No action taken. Plugin %1$s was already active." 139 | msgstr "No action taken. Plugin %1$s was already active." 140 | 141 | #. translators: 1: plugin name. 142 | #: class-tgm-plugin-activation.php:399 143 | #, php-format 144 | msgid "" 145 | "Plugin not activated. A higher version of %s is needed for this theme. " 146 | "Please update the plugin." 147 | msgstr "" 148 | "Plugin not activated. A higher version of %s is needed for this theme. " 149 | "Please update the plugin." 150 | 151 | #. translators: 1: dashboard link. 152 | #: class-tgm-plugin-activation.php:401 153 | #, php-format 154 | msgid "All plugins installed and activated successfully. %1$s" 155 | msgstr "All plugins installed and activated successfully. %1$s" 156 | 157 | #: class-tgm-plugin-activation.php:402 158 | msgid "Dismiss this notice" 159 | msgstr "Dismiss this notice." 160 | 161 | #: class-tgm-plugin-activation.php:403 162 | msgid "" 163 | "There are one or more required or recommended plugins to install, update or " 164 | "activate." 165 | msgstr "" 166 | 167 | #: class-tgm-plugin-activation.php:404 168 | msgid "Please contact the administrator of this site for help." 169 | msgstr "Please contact the administrator of this site for help." 170 | 171 | #: class-tgm-plugin-activation.php:607 172 | msgid "This plugin needs to be updated to be compatible with your theme." 173 | msgstr "This plugin needs to be updated to be compatible with your theme." 174 | 175 | #: class-tgm-plugin-activation.php:608 176 | msgid "Update Required" 177 | msgstr "Update Required" 178 | 179 | #: class-tgm-plugin-activation.php:725 180 | msgid "Set the parent_slug config variable instead." 181 | msgstr "Set the parent_slug config variable instead." 182 | 183 | #: class-tgm-plugin-activation.php:1027 184 | msgid "" 185 | "The remote plugin package does not contain a folder with the desired slug " 186 | "and renaming did not work." 187 | msgstr "" 188 | "The remote plugin package does not contain a folder with the desired slug " 189 | "and renaming did not work." 190 | 191 | #: class-tgm-plugin-activation.php:1027 class-tgm-plugin-activation.php:1030 192 | msgid "" 193 | "Please contact the plugin provider and ask them to package their plugin " 194 | "according to the WordPress guidelines." 195 | msgstr "" 196 | "Please contact the plugin provider and ask them to package their plugin " 197 | "according to the WordPress guidelines." 198 | 199 | #: class-tgm-plugin-activation.php:1030 200 | msgid "" 201 | "The remote plugin package consists of more than one file, but the files are " 202 | "not packaged in a folder." 203 | msgstr "" 204 | "The remote plugin package consists of more than one file, but the files are " 205 | "not packaged in a folder." 206 | 207 | #: class-tgm-plugin-activation.php:1214 class-tgm-plugin-activation.php:3041 208 | msgctxt "plugin A *and* plugin B" 209 | msgid "and" 210 | msgstr "and" 211 | 212 | #. translators: %s: version number 213 | #: class-tgm-plugin-activation.php:2075 214 | #, php-format 215 | msgid "TGMPA v%s" 216 | msgstr "TGMPA v%s" 217 | 218 | #: class-tgm-plugin-activation.php:2366 219 | msgid "Required" 220 | msgstr "Required" 221 | 222 | #: class-tgm-plugin-activation.php:2369 223 | msgid "Recommended" 224 | msgstr "Recommended" 225 | 226 | #: class-tgm-plugin-activation.php:2385 227 | msgid "WordPress Repository" 228 | msgstr "WordPress Repository" 229 | 230 | #: class-tgm-plugin-activation.php:2388 231 | msgid "External Source" 232 | msgstr "External Source" 233 | 234 | #: class-tgm-plugin-activation.php:2391 235 | msgid "Pre-Packaged" 236 | msgstr "Pre-Packaged" 237 | 238 | #: class-tgm-plugin-activation.php:2408 239 | msgid "Not Installed" 240 | msgstr "Not Installed" 241 | 242 | #: class-tgm-plugin-activation.php:2412 243 | msgid "Installed But Not Activated" 244 | msgstr "Installed But Not Activated" 245 | 246 | #: class-tgm-plugin-activation.php:2414 247 | msgid "Active" 248 | msgstr "Active" 249 | 250 | #: class-tgm-plugin-activation.php:2420 251 | msgid "Required Update not Available" 252 | msgstr "Required Update not Available" 253 | 254 | #: class-tgm-plugin-activation.php:2423 255 | msgid "Requires Update" 256 | msgstr "Requires Update" 257 | 258 | #: class-tgm-plugin-activation.php:2426 259 | msgid "Update recommended" 260 | msgstr "Update recommended" 261 | 262 | #. translators: 1: install status, 2: update status 263 | #: class-tgm-plugin-activation.php:2435 264 | #, php-format 265 | msgctxt "Install/Update Status" 266 | msgid "%1$s, %2$s" 267 | msgstr "%1$s, %2$s" 268 | 269 | #. translators: 1: number of plugins. 270 | #: class-tgm-plugin-activation.php:2481 271 | #, php-format 272 | msgctxt "plugins" 273 | msgid "All (%s)" 274 | msgid_plural "All (%s)" 275 | msgstr[0] "All (%s)" 276 | msgstr[1] "All (%s)" 277 | 278 | #. translators: 1: number of plugins. 279 | #: class-tgm-plugin-activation.php:2485 280 | #, php-format 281 | msgid "To Install (%s)" 282 | msgid_plural "To Install (%s)" 283 | msgstr[0] "To Install (%s)" 284 | msgstr[1] "To Install (%s)" 285 | 286 | #. translators: 1: number of plugins. 287 | #: class-tgm-plugin-activation.php:2489 288 | #, php-format 289 | msgid "Update Available (%s)" 290 | msgid_plural "Update Available (%s)" 291 | msgstr[0] "Update Available (%s)" 292 | msgstr[1] "Update Available (%s)" 293 | 294 | #. translators: 1: number of plugins. 295 | #: class-tgm-plugin-activation.php:2493 296 | #, php-format 297 | msgid "To Activate (%s)" 298 | msgid_plural "To Activate (%s)" 299 | msgstr[0] "To Activate (%s)" 300 | msgstr[1] "To Activate (%s)" 301 | 302 | #: class-tgm-plugin-activation.php:2575 303 | msgctxt "as in: \"version nr unknown\"" 304 | msgid "unknown" 305 | msgstr "unknown" 306 | 307 | #: class-tgm-plugin-activation.php:2583 308 | msgid "Installed version:" 309 | msgstr "Installed version:" 310 | 311 | #: class-tgm-plugin-activation.php:2591 312 | msgid "Minimum required version:" 313 | msgstr "Minimum required version:" 314 | 315 | #: class-tgm-plugin-activation.php:2603 316 | msgid "Available version:" 317 | msgstr "Available version:" 318 | 319 | #: class-tgm-plugin-activation.php:2626 320 | msgid "No plugins to install, update or activate." 321 | msgstr "" 322 | 323 | #: class-tgm-plugin-activation.php:2640 324 | msgid "Plugin" 325 | msgstr "Plugin" 326 | 327 | #: class-tgm-plugin-activation.php:2641 328 | msgid "Source" 329 | msgstr "Source" 330 | 331 | #: class-tgm-plugin-activation.php:2642 332 | msgid "Type" 333 | msgstr "Type" 334 | 335 | #: class-tgm-plugin-activation.php:2646 336 | msgid "Version" 337 | msgstr "Version" 338 | 339 | #: class-tgm-plugin-activation.php:2647 340 | msgid "Status" 341 | msgstr "Status" 342 | 343 | #. translators: %2$s: plugin name in screen reader markup 344 | #: class-tgm-plugin-activation.php:2696 345 | #, php-format 346 | msgid "Install %2$s" 347 | msgstr "Install %2$s" 348 | 349 | #. translators: %2$s: plugin name in screen reader markup 350 | #: class-tgm-plugin-activation.php:2701 351 | #, php-format 352 | msgid "Update %2$s" 353 | msgstr "Update %2$s" 354 | 355 | #. translators: %2$s: plugin name in screen reader markup 356 | #: class-tgm-plugin-activation.php:2707 357 | #, php-format 358 | msgid "Activate %2$s" 359 | msgstr "Activate %2$s" 360 | 361 | #: class-tgm-plugin-activation.php:2777 362 | msgid "Upgrade message from the plugin author:" 363 | msgstr "Upgrade message from the plugin author:" 364 | 365 | #: class-tgm-plugin-activation.php:2810 366 | msgid "Install" 367 | msgstr "Install" 368 | 369 | #: class-tgm-plugin-activation.php:2816 370 | msgid "Update" 371 | msgstr "Update" 372 | 373 | #: class-tgm-plugin-activation.php:2819 374 | msgid "Activate" 375 | msgstr "Activate" 376 | 377 | #: class-tgm-plugin-activation.php:2850 378 | msgid "No plugins were selected to be installed. No action taken." 379 | msgstr "No plugins were selected to be installed. No action taken." 380 | 381 | #: class-tgm-plugin-activation.php:2852 382 | msgid "No plugins were selected to be updated. No action taken." 383 | msgstr "No plugins were selected to be updated. No action taken." 384 | 385 | #: class-tgm-plugin-activation.php:2893 386 | msgid "No plugins are available to be installed at this time." 387 | msgstr "No plugins are available to be installed at this time." 388 | 389 | #: class-tgm-plugin-activation.php:2895 390 | msgid "No plugins are available to be updated at this time." 391 | msgstr "No plugins are available to be updated at this time." 392 | 393 | #: class-tgm-plugin-activation.php:3001 394 | msgid "No plugins were selected to be activated. No action taken." 395 | msgstr "No plugins were selected to be activated. No action taken." 396 | 397 | #: class-tgm-plugin-activation.php:3027 398 | msgid "No plugins are available to be activated at this time." 399 | msgstr "No plugins are available to be activated at this time." 400 | 401 | #: class-tgm-plugin-activation.php:3251 402 | msgid "Plugin activation failed." 403 | msgstr "Plugin activation failed." 404 | 405 | #. translators: 1: plugin name, 2: action number 3: total number of actions. 406 | #: class-tgm-plugin-activation.php:3591 407 | #, php-format 408 | msgid "Updating Plugin %1$s (%2$d/%3$d)" 409 | msgstr "Updating Plugin %1$s (%2$d/%3$d)" 410 | 411 | #. translators: 1: plugin name, 2: error message. 412 | #: class-tgm-plugin-activation.php:3594 413 | #, php-format 414 | msgid "An error occurred while installing %1$s: %2$s." 415 | msgstr "An error occurred while installing %1$s: %2$s." 416 | 417 | #. translators: 1: plugin name. 418 | #: class-tgm-plugin-activation.php:3596 419 | #, php-format 420 | msgid "The installation of %1$s failed." 421 | msgstr "The installation of %1$s failed." 422 | 423 | #: class-tgm-plugin-activation.php:3600 424 | msgid "" 425 | "The installation and activation process is starting. This process may take a " 426 | "while on some hosts, so please be patient." 427 | msgstr "" 428 | "The installation and activation process is starting. This process may take a " 429 | "while on some hosts, so please be patient." 430 | 431 | #. translators: 1: plugin name. 432 | #: class-tgm-plugin-activation.php:3602 433 | #, php-format 434 | msgid "%1$s installed and activated successfully." 435 | msgstr "%1$s installed and activated successfully." 436 | 437 | #: class-tgm-plugin-activation.php:3602 class-tgm-plugin-activation.php:3610 438 | msgid "Show Details" 439 | msgstr "Show Details" 440 | 441 | #: class-tgm-plugin-activation.php:3602 class-tgm-plugin-activation.php:3610 442 | msgid "Hide Details" 443 | msgstr "Hide Details" 444 | 445 | #: class-tgm-plugin-activation.php:3603 446 | msgid "All installations and activations have been completed." 447 | msgstr "All installations and activations have been completed." 448 | 449 | #. translators: 1: plugin name, 2: action number 3: total number of actions. 450 | #: class-tgm-plugin-activation.php:3605 451 | #, php-format 452 | msgid "Installing and Activating Plugin %1$s (%2$d/%3$d)" 453 | msgstr "Installing and Activating Plugin %1$s (%2$d/%3$d)" 454 | 455 | #: class-tgm-plugin-activation.php:3608 456 | msgid "" 457 | "The installation process is starting. This process may take a while on some " 458 | "hosts, so please be patient." 459 | msgstr "" 460 | "The installation process is starting. This process may take a while on some " 461 | "hosts, so please be patient." 462 | 463 | #. translators: 1: plugin name. 464 | #: class-tgm-plugin-activation.php:3610 465 | #, php-format 466 | msgid "%1$s installed successfully." 467 | msgstr "%1$s installed successfully." 468 | 469 | #: class-tgm-plugin-activation.php:3611 470 | msgid "All installations have been completed." 471 | msgstr "All installations have been completed." 472 | 473 | #. translators: 1: plugin name, 2: action number 3: total number of actions. 474 | #: class-tgm-plugin-activation.php:3613 475 | #, php-format 476 | msgid "Installing Plugin %1$s (%2$d/%3$d)" 477 | msgstr "Installing Plugin %1$s (%2$d/%3$d)" 478 | -------------------------------------------------------------------------------- /themes/wds_headless/inc/tgm/languages/tgmpa-en_GB.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebDevStudios/wds-headless-wordpress/eefaafb5ac6c92667096c70d8b85e934e848792d/themes/wds_headless/inc/tgm/languages/tgmpa-en_GB.mo -------------------------------------------------------------------------------- /themes/wds_headless/inc/tgm/languages/tgmpa-en_GB.po: -------------------------------------------------------------------------------- 1 | # Translation of TGM Plugin Activation in English (UK) 2 | # This file is distributed under the same license as the TGMPA package. 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: TGM Plugin Activation v2.6.1\n" 6 | "POT-Creation-Date: 2016-05-19 03:00+0200\n" 7 | "PO-Revision-Date: 2016-05-19 03:00+0200\n" 8 | "Last-Translator: Gary Jones\n" 9 | "Language-Team: TGMPA\n" 10 | "Language: en_GB\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 15 | "X-Generator: Poedit 1.8.7\n" 16 | 17 | #: class-tgm-plugin-activation.php:334 18 | msgid "Install Required Plugins" 19 | msgstr "Install Required Plugins" 20 | 21 | #: class-tgm-plugin-activation.php:335 22 | msgid "Install Plugins" 23 | msgstr "Install Plugins" 24 | 25 | #. translators: %s: plugin name. 26 | #: class-tgm-plugin-activation.php:337 27 | #, php-format 28 | msgid "Installing Plugin: %s" 29 | msgstr "Installing Plugin: %s" 30 | 31 | #. translators: %s: plugin name. 32 | #: class-tgm-plugin-activation.php:339 33 | #, php-format 34 | msgid "Updating Plugin: %s" 35 | msgstr "" 36 | 37 | #: class-tgm-plugin-activation.php:340 38 | msgid "Something went wrong with the plugin API." 39 | msgstr "Something went wrong with the plugin API." 40 | 41 | #. translators: 1: plugin name(s). 42 | #: class-tgm-plugin-activation.php:343 43 | #, php-format 44 | msgid "This theme requires the following plugin: %1$s." 45 | msgid_plural "This theme requires the following plugins: %1$s." 46 | msgstr[0] "This theme requires the following plugin: %1$s." 47 | msgstr[1] "This theme requires the following plugins: %1$s." 48 | 49 | #. translators: 1: plugin name(s). 50 | #: class-tgm-plugin-activation.php:349 51 | #, php-format 52 | msgid "This theme recommends the following plugin: %1$s." 53 | msgid_plural "This theme recommends the following plugins: %1$s." 54 | msgstr[0] "This theme recommends the following plugin: %1$s." 55 | msgstr[1] "This theme recommends the following plugins: %1$s." 56 | 57 | #. translators: 1: plugin name(s). 58 | #: class-tgm-plugin-activation.php:355 59 | #, php-format 60 | msgid "" 61 | "The following plugin needs to be updated to its latest version to ensure " 62 | "maximum compatibility with this theme: %1$s." 63 | msgid_plural "" 64 | "The following plugins need to be updated to their latest version to ensure " 65 | "maximum compatibility with this theme: %1$s." 66 | msgstr[0] "" 67 | "The following plugin needs to be updated to its latest version to ensure " 68 | "maximum compatibility with this theme: %1$s." 69 | msgstr[1] "" 70 | "The following plugins need to be updated to their latest version to ensure " 71 | "maximum compatibility with this theme: %1$s." 72 | 73 | #. translators: 1: plugin name(s). 74 | #: class-tgm-plugin-activation.php:361 75 | #, php-format 76 | msgid "There is an update available for: %1$s." 77 | msgid_plural "There are updates available for the following plugins: %1$s." 78 | msgstr[0] "There is an update available for: %1$s." 79 | msgstr[1] "There are updates available for the following plugins: %1$s." 80 | 81 | #. translators: 1: plugin name(s). 82 | #: class-tgm-plugin-activation.php:367 83 | #, php-format 84 | msgid "The following required plugin is currently inactive: %1$s." 85 | msgid_plural "The following required plugins are currently inactive: %1$s." 86 | msgstr[0] "The following required plugin is currently inactive: %1$s." 87 | msgstr[1] "The following required plugins are currently inactive: %1$s." 88 | 89 | #. translators: 1: plugin name(s). 90 | #: class-tgm-plugin-activation.php:373 91 | #, php-format 92 | msgid "The following recommended plugin is currently inactive: %1$s." 93 | msgid_plural "The following recommended plugins are currently inactive: %1$s." 94 | msgstr[0] "The following recommended plugin is currently inactive: %1$s." 95 | msgstr[1] "The following recommended plugins are currently inactive: %1$s." 96 | 97 | #: class-tgm-plugin-activation.php:378 98 | msgid "Begin installing plugin" 99 | msgid_plural "Begin installing plugins" 100 | msgstr[0] "Begin installing plugin" 101 | msgstr[1] "Begin installing plugins" 102 | 103 | #: class-tgm-plugin-activation.php:383 104 | msgid "Begin updating plugin" 105 | msgid_plural "Begin updating plugins" 106 | msgstr[0] "Begin updating plugin" 107 | msgstr[1] "Begin updating plugins" 108 | 109 | #: class-tgm-plugin-activation.php:388 110 | msgid "Begin activating plugin" 111 | msgid_plural "Begin activating plugins" 112 | msgstr[0] "Begin activating plugin" 113 | msgstr[1] "Begin activating plugins" 114 | 115 | #: class-tgm-plugin-activation.php:392 116 | msgid "Return to Required Plugins Installer" 117 | msgstr "Return to Required Plugins Installer" 118 | 119 | #: class-tgm-plugin-activation.php:393 class-tgm-plugin-activation.php:920 120 | #: class-tgm-plugin-activation.php:2626 class-tgm-plugin-activation.php:3673 121 | msgid "Return to the Dashboard" 122 | msgstr "Return to the Dashboard" 123 | 124 | #: class-tgm-plugin-activation.php:394 class-tgm-plugin-activation.php:3252 125 | msgid "Plugin activated successfully." 126 | msgstr "Plugin activated successfully." 127 | 128 | #: class-tgm-plugin-activation.php:395 class-tgm-plugin-activation.php:3045 129 | msgid "The following plugin was activated successfully:" 130 | msgid_plural "The following plugins were activated successfully:" 131 | msgstr[0] "The following plugin was activated successfully:" 132 | msgstr[1] "The following plugin was activated successfully:" 133 | 134 | #. translators: 1: plugin name. 135 | #: class-tgm-plugin-activation.php:397 136 | #, php-format 137 | msgid "No action taken. Plugin %1$s was already active." 138 | msgstr "No action taken. Plugin %1$s was already active." 139 | 140 | #. translators: 1: plugin name. 141 | #: class-tgm-plugin-activation.php:399 142 | #, php-format 143 | msgid "" 144 | "Plugin not activated. A higher version of %s is needed for this theme. " 145 | "Please update the plugin." 146 | msgstr "" 147 | "Plugin not activated. A higher version of %s is needed for this theme. " 148 | "Please update the plugin." 149 | 150 | #. translators: 1: dashboard link. 151 | #: class-tgm-plugin-activation.php:401 152 | #, php-format 153 | msgid "All plugins installed and activated successfully. %1$s" 154 | msgstr "All plugins installed and activated successfully. %1$s" 155 | 156 | #: class-tgm-plugin-activation.php:402 157 | msgid "Dismiss this notice" 158 | msgstr "Dismiss this notice" 159 | 160 | #: class-tgm-plugin-activation.php:403 161 | msgid "" 162 | "There are one or more required or recommended plugins to install, update or " 163 | "activate." 164 | msgstr "" 165 | 166 | #: class-tgm-plugin-activation.php:404 167 | msgid "Please contact the administrator of this site for help." 168 | msgstr "Please contact the administrator of this site for help." 169 | 170 | #: class-tgm-plugin-activation.php:607 171 | msgid "This plugin needs to be updated to be compatible with your theme." 172 | msgstr "This plugin needs to be updated to be compatible with your theme." 173 | 174 | #: class-tgm-plugin-activation.php:608 175 | msgid "Update Required" 176 | msgstr "Update Required" 177 | 178 | #: class-tgm-plugin-activation.php:725 179 | msgid "Set the parent_slug config variable instead." 180 | msgstr "Set the parent_slug config variable instead." 181 | 182 | #: class-tgm-plugin-activation.php:1027 183 | msgid "" 184 | "The remote plugin package does not contain a folder with the desired slug " 185 | "and renaming did not work." 186 | msgstr "" 187 | "The remote plugin package does not contain a folder with the desired slug " 188 | "and renaming did not work." 189 | 190 | #: class-tgm-plugin-activation.php:1027 class-tgm-plugin-activation.php:1030 191 | msgid "" 192 | "Please contact the plugin provider and ask them to package their plugin " 193 | "according to the WordPress guidelines." 194 | msgstr "" 195 | "Please contact the plugin provider and ask them to package their plugin " 196 | "according to the WordPress guidelines." 197 | 198 | #: class-tgm-plugin-activation.php:1030 199 | msgid "" 200 | "The remote plugin package consists of more than one file, but the files are " 201 | "not packaged in a folder." 202 | msgstr "" 203 | "The remote plugin package consists of more than one file, but the files are " 204 | "not packaged in a folder." 205 | 206 | #: class-tgm-plugin-activation.php:1214 class-tgm-plugin-activation.php:3041 207 | msgctxt "plugin A *and* plugin B" 208 | msgid "and" 209 | msgstr "and" 210 | 211 | #. translators: %s: version number 212 | #: class-tgm-plugin-activation.php:2075 213 | #, php-format 214 | msgid "TGMPA v%s" 215 | msgstr "TGMPA v%s" 216 | 217 | #: class-tgm-plugin-activation.php:2366 218 | msgid "Required" 219 | msgstr "Required" 220 | 221 | #: class-tgm-plugin-activation.php:2369 222 | msgid "Recommended" 223 | msgstr "Recommended" 224 | 225 | #: class-tgm-plugin-activation.php:2385 226 | msgid "WordPress Repository" 227 | msgstr "WordPress Repository" 228 | 229 | #: class-tgm-plugin-activation.php:2388 230 | msgid "External Source" 231 | msgstr "External Source" 232 | 233 | #: class-tgm-plugin-activation.php:2391 234 | msgid "Pre-Packaged" 235 | msgstr "Pre-Packaged" 236 | 237 | #: class-tgm-plugin-activation.php:2408 238 | msgid "Not Installed" 239 | msgstr "Not Installed" 240 | 241 | #: class-tgm-plugin-activation.php:2412 242 | msgid "Installed But Not Activated" 243 | msgstr "Installed But Not Activated" 244 | 245 | #: class-tgm-plugin-activation.php:2414 246 | msgid "Active" 247 | msgstr "Active" 248 | 249 | #: class-tgm-plugin-activation.php:2420 250 | msgid "Required Update not Available" 251 | msgstr "Required Update not Available" 252 | 253 | #: class-tgm-plugin-activation.php:2423 254 | msgid "Requires Update" 255 | msgstr "Requires Update" 256 | 257 | #: class-tgm-plugin-activation.php:2426 258 | msgid "Update recommended" 259 | msgstr "Update recommended" 260 | 261 | #. translators: 1: install status, 2: update status 262 | #: class-tgm-plugin-activation.php:2435 263 | #, php-format 264 | msgctxt "Install/Update Status" 265 | msgid "%1$s, %2$s" 266 | msgstr "%1$s, %2$s" 267 | 268 | #. translators: 1: number of plugins. 269 | #: class-tgm-plugin-activation.php:2481 270 | #, php-format 271 | msgctxt "plugins" 272 | msgid "All (%s)" 273 | msgid_plural "All (%s)" 274 | msgstr[0] "All (%s)" 275 | msgstr[1] "All (%s)" 276 | 277 | #. translators: 1: number of plugins. 278 | #: class-tgm-plugin-activation.php:2485 279 | #, php-format 280 | msgid "To Install (%s)" 281 | msgid_plural "To Install (%s)" 282 | msgstr[0] "To Install (%s)" 283 | msgstr[1] "To Install (%s)" 284 | 285 | #. translators: 1: number of plugins. 286 | #: class-tgm-plugin-activation.php:2489 287 | #, php-format 288 | msgid "Update Available (%s)" 289 | msgid_plural "Update Available (%s)" 290 | msgstr[0] "Update Available (%s)" 291 | msgstr[1] "Update Available (%s)" 292 | 293 | #. translators: 1: number of plugins. 294 | #: class-tgm-plugin-activation.php:2493 295 | #, php-format 296 | msgid "To Activate (%s)" 297 | msgid_plural "To Activate (%s)" 298 | msgstr[0] "To Activate (%s)" 299 | msgstr[1] "To Activate (%s)" 300 | 301 | #: class-tgm-plugin-activation.php:2575 302 | msgctxt "as in: \"version nr unknown\"" 303 | msgid "unknown" 304 | msgstr "unknown" 305 | 306 | #: class-tgm-plugin-activation.php:2583 307 | msgid "Installed version:" 308 | msgstr "Installed version:" 309 | 310 | #: class-tgm-plugin-activation.php:2591 311 | msgid "Minimum required version:" 312 | msgstr "Minimum required version:" 313 | 314 | #: class-tgm-plugin-activation.php:2603 315 | msgid "Available version:" 316 | msgstr "Available version:" 317 | 318 | #: class-tgm-plugin-activation.php:2626 319 | msgid "No plugins to install, update or activate." 320 | msgstr "No plugins to install, update or activate." 321 | 322 | #: class-tgm-plugin-activation.php:2640 323 | msgid "Plugin" 324 | msgstr "Plugin" 325 | 326 | #: class-tgm-plugin-activation.php:2641 327 | msgid "Source" 328 | msgstr "Source" 329 | 330 | #: class-tgm-plugin-activation.php:2642 331 | msgid "Type" 332 | msgstr "Type" 333 | 334 | #: class-tgm-plugin-activation.php:2646 335 | msgid "Version" 336 | msgstr "Version" 337 | 338 | #: class-tgm-plugin-activation.php:2647 339 | msgid "Status" 340 | msgstr "Status" 341 | 342 | #. translators: %2$s: plugin name in screen reader markup 343 | #: class-tgm-plugin-activation.php:2696 344 | #, php-format 345 | msgid "Install %2$s" 346 | msgstr "Install %2$s" 347 | 348 | #. translators: %2$s: plugin name in screen reader markup 349 | #: class-tgm-plugin-activation.php:2701 350 | #, php-format 351 | msgid "Update %2$s" 352 | msgstr "Update %2$s" 353 | 354 | #. translators: %2$s: plugin name in screen reader markup 355 | #: class-tgm-plugin-activation.php:2707 356 | #, php-format 357 | msgid "Activate %2$s" 358 | msgstr "Activate %2$s" 359 | 360 | #: class-tgm-plugin-activation.php:2777 361 | msgid "Upgrade message from the plugin author:" 362 | msgstr "Upgrade message from the plugin author:" 363 | 364 | #: class-tgm-plugin-activation.php:2810 365 | msgid "Install" 366 | msgstr "Install" 367 | 368 | #: class-tgm-plugin-activation.php:2816 369 | msgid "Update" 370 | msgstr "Update" 371 | 372 | #: class-tgm-plugin-activation.php:2819 373 | msgid "Activate" 374 | msgstr "Activate" 375 | 376 | #: class-tgm-plugin-activation.php:2850 377 | msgid "No plugins were selected to be installed. No action taken." 378 | msgstr "No plugins were selected to be installed. No action taken." 379 | 380 | #: class-tgm-plugin-activation.php:2852 381 | msgid "No plugins were selected to be updated. No action taken." 382 | msgstr "No plugins were selected to be updated. No action taken." 383 | 384 | #: class-tgm-plugin-activation.php:2893 385 | msgid "No plugins are available to be installed at this time." 386 | msgstr "No plugins are available to be installed at this time." 387 | 388 | #: class-tgm-plugin-activation.php:2895 389 | msgid "No plugins are available to be updated at this time." 390 | msgstr "No plugins are available to be updated at this time." 391 | 392 | #: class-tgm-plugin-activation.php:3001 393 | msgid "No plugins were selected to be activated. No action taken." 394 | msgstr "No plugins were selected to be activated. No action taken." 395 | 396 | #: class-tgm-plugin-activation.php:3027 397 | msgid "No plugins are available to be activated at this time." 398 | msgstr "No plugins are available to be activated at this time." 399 | 400 | #: class-tgm-plugin-activation.php:3251 401 | msgid "Plugin activation failed." 402 | msgstr "Plugin activation failed." 403 | 404 | #. translators: 1: plugin name, 2: action number 3: total number of actions. 405 | #: class-tgm-plugin-activation.php:3591 406 | #, php-format 407 | msgid "Updating Plugin %1$s (%2$d/%3$d)" 408 | msgstr "Updating Plugin %1$s (%2$d/%3$d)" 409 | 410 | #. translators: 1: plugin name, 2: error message. 411 | #: class-tgm-plugin-activation.php:3594 412 | #, php-format 413 | msgid "An error occurred while installing %1$s: %2$s." 414 | msgstr "An error occurred while installing %1$s: %2$s." 415 | 416 | #. translators: 1: plugin name. 417 | #: class-tgm-plugin-activation.php:3596 418 | #, php-format 419 | msgid "The installation of %1$s failed." 420 | msgstr "The installation of %1$s failed." 421 | 422 | #: class-tgm-plugin-activation.php:3600 423 | msgid "" 424 | "The installation and activation process is starting. This process may take a " 425 | "while on some hosts, so please be patient." 426 | msgstr "" 427 | "The installation and activation process is starting. This process may take a " 428 | "while on some hosts, so please be patient." 429 | 430 | #. translators: 1: plugin name. 431 | #: class-tgm-plugin-activation.php:3602 432 | #, php-format 433 | msgid "%1$s installed and activated successfully." 434 | msgstr "%1$s installed and activated successfully." 435 | 436 | #: class-tgm-plugin-activation.php:3602 class-tgm-plugin-activation.php:3610 437 | msgid "Show Details" 438 | msgstr "Show Details" 439 | 440 | #: class-tgm-plugin-activation.php:3602 class-tgm-plugin-activation.php:3610 441 | msgid "Hide Details" 442 | msgstr "Hide Details" 443 | 444 | #: class-tgm-plugin-activation.php:3603 445 | msgid "All installations and activations have been completed." 446 | msgstr "All installations and activations have been completed." 447 | 448 | #. translators: 1: plugin name, 2: action number 3: total number of actions. 449 | #: class-tgm-plugin-activation.php:3605 450 | #, php-format 451 | msgid "Installing and Activating Plugin %1$s (%2$d/%3$d)" 452 | msgstr "Installing and Activating Plugin %1$s (%2$d/%3$d)" 453 | 454 | #: class-tgm-plugin-activation.php:3608 455 | msgid "" 456 | "The installation process is starting. This process may take a while on some " 457 | "hosts, so please be patient." 458 | msgstr "" 459 | "The installation process is starting. This process may take a while on some " 460 | "hosts, so please be patient." 461 | 462 | #. translators: 1: plugin name. 463 | #: class-tgm-plugin-activation.php:3610 464 | #, php-format 465 | msgid "%1$s installed successfully." 466 | msgstr "%1$s installed successfully." 467 | 468 | #: class-tgm-plugin-activation.php:3611 469 | msgid "All installations have been completed." 470 | msgstr "All installations have been completed." 471 | 472 | #. translators: 1: plugin name, 2: action number 3: total number of actions. 473 | #: class-tgm-plugin-activation.php:3613 474 | #, php-format 475 | msgid "Installing Plugin %1$s (%2$d/%3$d)" 476 | msgstr "Installing Plugin %1$s (%2$d/%3$d)" 477 | -------------------------------------------------------------------------------- /themes/wds_headless/inc/tgm/languages/tgmpa-eo.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebDevStudios/wds-headless-wordpress/eefaafb5ac6c92667096c70d8b85e934e848792d/themes/wds_headless/inc/tgm/languages/tgmpa-eo.mo -------------------------------------------------------------------------------- /themes/wds_headless/inc/tgm/languages/tgmpa-eo.po: -------------------------------------------------------------------------------- 1 | # Translation of TGM Plugin Activation in Esperanto 2 | # This file is distributed under the same license as the TGMPA package. 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: TGM Plugin Activation v2.6.1\n" 6 | "POT-Creation-Date: 2016-05-19 03:00+0200\n" 7 | "PO-Revision-Date: 2016-05-19 03:00+0200\n" 8 | "Last-Translator: \n" 9 | "Language-Team: \n" 10 | "Language: eo\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 15 | "X-Generator: Poedit 1.8.7\n" 16 | 17 | #: class-tgm-plugin-activation.php:334 18 | msgid "Install Required Plugins" 19 | msgstr "Instali devigajn kromprogramojn" 20 | 21 | #: class-tgm-plugin-activation.php:335 22 | msgid "Install Plugins" 23 | msgstr "Instali kromprogramojn" 24 | 25 | #. translators: %s: plugin name. 26 | #: class-tgm-plugin-activation.php:337 27 | #, php-format 28 | msgid "Installing Plugin: %s" 29 | msgstr "Instalas kromprogramon: %s" 30 | 31 | #. translators: %s: plugin name. 32 | #: class-tgm-plugin-activation.php:339 33 | #, php-format 34 | msgid "Updating Plugin: %s" 35 | msgstr "" 36 | 37 | #: class-tgm-plugin-activation.php:340 38 | msgid "Something went wrong with the plugin API." 39 | msgstr "Io misis pri la kromprograma API." 40 | 41 | #. translators: 1: plugin name(s). 42 | #: class-tgm-plugin-activation.php:343 43 | #, php-format 44 | msgid "This theme requires the following plugin: %1$s." 45 | msgid_plural "This theme requires the following plugins: %1$s." 46 | msgstr[0] "Tiu ĉi etoso postulas la sekvan kromprogramon: %1$s." 47 | msgstr[1] "Tiu ĉi etoso postulas la sekvajn kromprogramojn: %1$s." 48 | 49 | #. translators: 1: plugin name(s). 50 | #: class-tgm-plugin-activation.php:349 51 | #, php-format 52 | msgid "This theme recommends the following plugin: %1$s." 53 | msgid_plural "This theme recommends the following plugins: %1$s." 54 | msgstr[0] "Tiu ĉi etoso rekomendas la sekvan kromprogramon: %1$s." 55 | msgstr[1] "Tiu ĉi etoso rekomendas la sekvajn kromprogramojn: %1$s." 56 | 57 | #. translators: 1: plugin name(s). 58 | #: class-tgm-plugin-activation.php:355 59 | #, php-format 60 | msgid "" 61 | "The following plugin needs to be updated to its latest version to ensure " 62 | "maximum compatibility with this theme: %1$s." 63 | msgid_plural "" 64 | "The following plugins need to be updated to their latest version to ensure " 65 | "maximum compatibility with this theme: %1$s." 66 | msgstr[0] "" 67 | "La sekva kromprogramo bezonas esti ĝisdatigita al la plej nova versio por " 68 | "certigi kongruecon kun tiu ĉi etoso: %1$s." 69 | msgstr[1] "" 70 | "La sekvaj kromprogramoj bezonas esti ĝisdatigitaj al la plej nova versio por " 71 | "certigi kongruecon kun tiu ĉi etoso: %1$s." 72 | 73 | #. translators: 1: plugin name(s). 74 | #: class-tgm-plugin-activation.php:361 75 | #, php-format 76 | msgid "There is an update available for: %1$s." 77 | msgid_plural "There are updates available for the following plugins: %1$s." 78 | msgstr[0] "Ĝisdatigo haveblas por: %1$s." 79 | msgstr[1] "Ĝisdatigoj haveblas por la sekvaj kromprogramoj: %1$s." 80 | 81 | #. translators: 1: plugin name(s). 82 | #: class-tgm-plugin-activation.php:367 83 | #, php-format 84 | msgid "The following required plugin is currently inactive: %1$s." 85 | msgid_plural "The following required plugins are currently inactive: %1$s." 86 | msgstr[0] "La sekva deviga kromprogramo ne estas aktiva nun: %1$s." 87 | msgstr[1] "La sekvaj devigaj kromprogramoj ne estas aktivaj nun: %1$s." 88 | 89 | #. translators: 1: plugin name(s). 90 | #: class-tgm-plugin-activation.php:373 91 | #, php-format 92 | msgid "The following recommended plugin is currently inactive: %1$s." 93 | msgid_plural "The following recommended plugins are currently inactive: %1$s." 94 | msgstr[0] "La sekva rekomendita kromprogramo ne estas aktiva nun: %1$s." 95 | msgstr[1] "La sekvaj rekomenditaj kromprogramoj ne estas aktivaj nun: %1$s." 96 | 97 | #: class-tgm-plugin-activation.php:378 98 | msgid "Begin installing plugin" 99 | msgid_plural "Begin installing plugins" 100 | msgstr[0] "Ek al instalo de kromprogramo" 101 | msgstr[1] "Ek al instalo de kromprogramoj" 102 | 103 | #: class-tgm-plugin-activation.php:383 104 | msgid "Begin updating plugin" 105 | msgid_plural "Begin updating plugins" 106 | msgstr[0] "Ek al ĝisdatigo de kromprogramo" 107 | msgstr[1] "Ek al ĝisdatigo de kromprogramoj" 108 | 109 | #: class-tgm-plugin-activation.php:388 110 | msgid "Begin activating plugin" 111 | msgid_plural "Begin activating plugins" 112 | msgstr[0] "Ek al aktivigo de kromprogramo" 113 | msgstr[1] "Ek al aktivigo de kromprogramoj" 114 | 115 | #: class-tgm-plugin-activation.php:392 116 | msgid "Return to Required Plugins Installer" 117 | msgstr "Reen al instalilo de devigaj kromprogramoj" 118 | 119 | #: class-tgm-plugin-activation.php:393 class-tgm-plugin-activation.php:920 120 | #: class-tgm-plugin-activation.php:2626 class-tgm-plugin-activation.php:3673 121 | msgid "Return to the Dashboard" 122 | msgstr "Reen al la panelo" 123 | 124 | #: class-tgm-plugin-activation.php:394 class-tgm-plugin-activation.php:3252 125 | msgid "Plugin activated successfully." 126 | msgstr "Kromprogramo estis aktivigita sukcese." 127 | 128 | #: class-tgm-plugin-activation.php:395 class-tgm-plugin-activation.php:3045 129 | msgid "The following plugin was activated successfully:" 130 | msgid_plural "The following plugins were activated successfully:" 131 | msgstr[0] "" 132 | msgstr[1] "" 133 | 134 | #. translators: 1: plugin name. 135 | #: class-tgm-plugin-activation.php:397 136 | #, php-format 137 | msgid "No action taken. Plugin %1$s was already active." 138 | msgstr "Nenio farita. Kromprogramo %1$s jam estis aktiva." 139 | 140 | #. translators: 1: plugin name. 141 | #: class-tgm-plugin-activation.php:399 142 | #, php-format 143 | msgid "" 144 | "Plugin not activated. A higher version of %s is needed for this theme. " 145 | "Please update the plugin." 146 | msgstr "" 147 | "Kromprogramo ne aktivigita. Pli nova versio de %s estas bezonata por tiu ĉi " 148 | "etoso. Bonvole ĝisdatigu la kromprogramon." 149 | 150 | #. translators: 1: dashboard link. 151 | #: class-tgm-plugin-activation.php:401 152 | #, php-format 153 | msgid "All plugins installed and activated successfully. %1$s" 154 | msgstr "Ĉiuj kromprogramoj estis sukcese instalitaj kaj aktivigitaj. %1$s" 155 | 156 | #: class-tgm-plugin-activation.php:402 157 | msgid "Dismiss this notice" 158 | msgstr "Forsendi tiun ĉi avizon" 159 | 160 | #: class-tgm-plugin-activation.php:403 161 | msgid "" 162 | "There are one or more required or recommended plugins to install, update or " 163 | "activate." 164 | msgstr "" 165 | 166 | #: class-tgm-plugin-activation.php:404 167 | msgid "Please contact the administrator of this site for help." 168 | msgstr "Bonvole kontaktu la retejan administranton por helpo." 169 | 170 | #: class-tgm-plugin-activation.php:607 171 | msgid "This plugin needs to be updated to be compatible with your theme." 172 | msgstr "Tiu kromprogramo bezonas esti ĝisdatigita por kongrui kun via etoso." 173 | 174 | #: class-tgm-plugin-activation.php:608 175 | msgid "Update Required" 176 | msgstr "Deviga ĝisdatigo" 177 | 178 | #: class-tgm-plugin-activation.php:725 179 | msgid "Set the parent_slug config variable instead." 180 | msgstr "Anstataŭe, fiksu la agordan variablon parent_slug." 181 | 182 | #: class-tgm-plugin-activation.php:1027 183 | msgid "" 184 | "The remote plugin package does not contain a folder with the desired slug " 185 | "and renaming did not work." 186 | msgstr "" 187 | "La fora kromprograma pakaĵo ne enhavas dosierujon kun dezirata url-nomo kaj " 188 | "alinomo ne sukcesis." 189 | 190 | #: class-tgm-plugin-activation.php:1027 class-tgm-plugin-activation.php:1030 191 | msgid "" 192 | "Please contact the plugin provider and ask them to package their plugin " 193 | "according to the WordPress guidelines." 194 | msgstr "" 195 | "Bonvole kontaktu la programiston de tiu kromprogramo kaj petu pakon de la " 196 | "kromprogramo laŭ la gvidlinioj de WordPress." 197 | 198 | #: class-tgm-plugin-activation.php:1030 199 | msgid "" 200 | "The remote plugin package consists of more than one file, but the files are " 201 | "not packaged in a folder." 202 | msgstr "" 203 | "La fora kromprograma pakaĵo enhavas pli ol unu dosieron, sed la dosieroj ne " 204 | "estas pakitaj en dosierujo." 205 | 206 | #: class-tgm-plugin-activation.php:1214 class-tgm-plugin-activation.php:3041 207 | msgctxt "plugin A *and* plugin B" 208 | msgid "and" 209 | msgstr "kaj" 210 | 211 | #. translators: %s: version number 212 | #: class-tgm-plugin-activation.php:2075 213 | #, php-format 214 | msgid "TGMPA v%s" 215 | msgstr "TGMPA v%s" 216 | 217 | #: class-tgm-plugin-activation.php:2366 218 | msgid "Required" 219 | msgstr "Deviga" 220 | 221 | #: class-tgm-plugin-activation.php:2369 222 | msgid "Recommended" 223 | msgstr "Rekomendita" 224 | 225 | #: class-tgm-plugin-activation.php:2385 226 | msgid "WordPress Repository" 227 | msgstr "WordPress-deponejo" 228 | 229 | #: class-tgm-plugin-activation.php:2388 230 | msgid "External Source" 231 | msgstr "Ekstera fonto" 232 | 233 | #: class-tgm-plugin-activation.php:2391 234 | msgid "Pre-Packaged" 235 | msgstr "Antaŭ-pakita" 236 | 237 | #: class-tgm-plugin-activation.php:2408 238 | msgid "Not Installed" 239 | msgstr "Ne instalita" 240 | 241 | #: class-tgm-plugin-activation.php:2412 242 | msgid "Installed But Not Activated" 243 | msgstr "Instalita sed ne aktivigita" 244 | 245 | #: class-tgm-plugin-activation.php:2414 246 | msgid "Active" 247 | msgstr "Aktiva" 248 | 249 | #: class-tgm-plugin-activation.php:2420 250 | msgid "Required Update not Available" 251 | msgstr "Deviga ĝisdatigo ne havebla" 252 | 253 | #: class-tgm-plugin-activation.php:2423 254 | msgid "Requires Update" 255 | msgstr "Postulas ĝisdatigon" 256 | 257 | #: class-tgm-plugin-activation.php:2426 258 | msgid "Update recommended" 259 | msgstr "Ĝisdatigo rekomendita" 260 | 261 | #. translators: 1: install status, 2: update status 262 | #: class-tgm-plugin-activation.php:2435 263 | #, php-format 264 | msgctxt "Install/Update Status" 265 | msgid "%1$s, %2$s" 266 | msgstr "%1$s, %2$s" 267 | 268 | #. translators: 1: number of plugins. 269 | #: class-tgm-plugin-activation.php:2481 270 | #, php-format 271 | msgctxt "plugins" 272 | msgid "All (%s)" 273 | msgid_plural "All (%s)" 274 | msgstr[0] "Ĉiuj (%s)" 275 | msgstr[1] "Ĉiuj (%s)" 276 | 277 | #. translators: 1: number of plugins. 278 | #: class-tgm-plugin-activation.php:2485 279 | #, php-format 280 | msgid "To Install (%s)" 281 | msgid_plural "To Install (%s)" 282 | msgstr[0] "Por instali (%s)" 283 | msgstr[1] "Por instali (%s)" 284 | 285 | #. translators: 1: number of plugins. 286 | #: class-tgm-plugin-activation.php:2489 287 | #, php-format 288 | msgid "Update Available (%s)" 289 | msgid_plural "Update Available (%s)" 290 | msgstr[0] "Ĝisdatigo havebla (%s)" 291 | msgstr[1] "Ĝisdatigoj haveblaj (%s)" 292 | 293 | #. translators: 1: number of plugins. 294 | #: class-tgm-plugin-activation.php:2493 295 | #, php-format 296 | msgid "To Activate (%s)" 297 | msgid_plural "To Activate (%s)" 298 | msgstr[0] "Por aktivigi (%s)" 299 | msgstr[1] "Por aktivigi (%s)" 300 | 301 | #: class-tgm-plugin-activation.php:2575 302 | msgctxt "as in: \"version nr unknown\"" 303 | msgid "unknown" 304 | msgstr "nekonata" 305 | 306 | #: class-tgm-plugin-activation.php:2583 307 | msgid "Installed version:" 308 | msgstr "Instalita versio:" 309 | 310 | #: class-tgm-plugin-activation.php:2591 311 | msgid "Minimum required version:" 312 | msgstr "Minimuma deviga versio:" 313 | 314 | #: class-tgm-plugin-activation.php:2603 315 | msgid "Available version:" 316 | msgstr "Havebla versio:" 317 | 318 | #: class-tgm-plugin-activation.php:2626 319 | msgid "No plugins to install, update or activate." 320 | msgstr "Neniuj kromprogramoj por instali, ĝisdatigi aŭ aktivigi." 321 | 322 | #: class-tgm-plugin-activation.php:2640 323 | msgid "Plugin" 324 | msgstr "Kromprogramo" 325 | 326 | #: class-tgm-plugin-activation.php:2641 327 | msgid "Source" 328 | msgstr "Fonto" 329 | 330 | #: class-tgm-plugin-activation.php:2642 331 | msgid "Type" 332 | msgstr "Tipo" 333 | 334 | #: class-tgm-plugin-activation.php:2646 335 | msgid "Version" 336 | msgstr "Versio" 337 | 338 | #: class-tgm-plugin-activation.php:2647 339 | msgid "Status" 340 | msgstr "Stato" 341 | 342 | #. translators: %2$s: plugin name in screen reader markup 343 | #: class-tgm-plugin-activation.php:2696 344 | #, php-format 345 | msgid "Install %2$s" 346 | msgstr "Instali %2$s" 347 | 348 | #. translators: %2$s: plugin name in screen reader markup 349 | #: class-tgm-plugin-activation.php:2701 350 | #, php-format 351 | msgid "Update %2$s" 352 | msgstr "Ĝisdatigi %2$s" 353 | 354 | #. translators: %2$s: plugin name in screen reader markup 355 | #: class-tgm-plugin-activation.php:2707 356 | #, php-format 357 | msgid "Activate %2$s" 358 | msgstr "Aktivigi %2$s" 359 | 360 | #: class-tgm-plugin-activation.php:2777 361 | msgid "Upgrade message from the plugin author:" 362 | msgstr "Ĝisdatigo-mesaĝo de la aŭtoro de la kromprogramo:" 363 | 364 | #: class-tgm-plugin-activation.php:2810 365 | msgid "Install" 366 | msgstr "Instali" 367 | 368 | #: class-tgm-plugin-activation.php:2816 369 | msgid "Update" 370 | msgstr "Ĝisdatigi" 371 | 372 | #: class-tgm-plugin-activation.php:2819 373 | msgid "Activate" 374 | msgstr "Aktivigi" 375 | 376 | #: class-tgm-plugin-activation.php:2850 377 | msgid "No plugins were selected to be installed. No action taken." 378 | msgstr "Neniuj kromprogramoj elektitaj por instalo. Nenio farita." 379 | 380 | #: class-tgm-plugin-activation.php:2852 381 | msgid "No plugins were selected to be updated. No action taken." 382 | msgstr "Neniuj kromprogramoj elektitaj por ĝisdatigo. Nenio farita." 383 | 384 | #: class-tgm-plugin-activation.php:2893 385 | msgid "No plugins are available to be installed at this time." 386 | msgstr "Neniuj kromprogramoj haveblaj por instalo nuntempe." 387 | 388 | #: class-tgm-plugin-activation.php:2895 389 | msgid "No plugins are available to be updated at this time." 390 | msgstr "Nun, neniuj ĝisdatigoj por kromprogramoj." 391 | 392 | #: class-tgm-plugin-activation.php:3001 393 | msgid "No plugins were selected to be activated. No action taken." 394 | msgstr "Neniuj kromprogramoj elektitaj por aktivigo. Neniu ago farita." 395 | 396 | #: class-tgm-plugin-activation.php:3027 397 | msgid "No plugins are available to be activated at this time." 398 | msgstr "Neniuj kromprogramoj aktivigeblaj nuntempe." 399 | 400 | #: class-tgm-plugin-activation.php:3251 401 | msgid "Plugin activation failed." 402 | msgstr "Aktivigo de kromprogramo malsukcesis." 403 | 404 | #. translators: 1: plugin name, 2: action number 3: total number of actions. 405 | #: class-tgm-plugin-activation.php:3591 406 | #, php-format 407 | msgid "Updating Plugin %1$s (%2$d/%3$d)" 408 | msgstr "Ĝisdatigante kromprogrameton %1$s (%2$d/%3$d)" 409 | 410 | #. translators: 1: plugin name, 2: error message. 411 | #: class-tgm-plugin-activation.php:3594 412 | #, php-format 413 | msgid "An error occurred while installing %1$s: %2$s." 414 | msgstr "Eraro okazis dum instalo de %1$s: %2$s." 415 | 416 | #. translators: 1: plugin name. 417 | #: class-tgm-plugin-activation.php:3596 418 | #, php-format 419 | msgid "The installation of %1$s failed." 420 | msgstr "La instalo de %1$s malsukcesis." 421 | 422 | #: class-tgm-plugin-activation.php:3600 423 | msgid "" 424 | "The installation and activation process is starting. This process may take a " 425 | "while on some hosts, so please be patient." 426 | msgstr "" 427 | "La instalo kaj aktivigo komenciĝas. Tiu procezo eble daŭros longatempe, do " 428 | "bonvole estu pacienca. " 429 | 430 | #. translators: 1: plugin name. 431 | #: class-tgm-plugin-activation.php:3602 432 | #, php-format 433 | msgid "%1$s installed and activated successfully." 434 | msgstr "%1$s sukcese instalis kaj aktiviĝis." 435 | 436 | #: class-tgm-plugin-activation.php:3602 class-tgm-plugin-activation.php:3610 437 | msgid "Show Details" 438 | msgstr "Montri detalojn" 439 | 440 | #: class-tgm-plugin-activation.php:3602 class-tgm-plugin-activation.php:3610 441 | msgid "Hide Details" 442 | msgstr "Kaŝi detalojn" 443 | 444 | #: class-tgm-plugin-activation.php:3603 445 | msgid "All installations and activations have been completed." 446 | msgstr "Ĉiuj instaloj kaj aktivigoj estas finitaj." 447 | 448 | #. translators: 1: plugin name, 2: action number 3: total number of actions. 449 | #: class-tgm-plugin-activation.php:3605 450 | #, php-format 451 | msgid "Installing and Activating Plugin %1$s (%2$d/%3$d)" 452 | msgstr "Instalas kaj aktivigas kromprogramon %1$s (%2$d/%3$d)" 453 | 454 | #: class-tgm-plugin-activation.php:3608 455 | msgid "" 456 | "The installation process is starting. This process may take a while on some " 457 | "hosts, so please be patient." 458 | msgstr "" 459 | "La instalo komenciĝas. Tiu procezo eble daŭros longatempe, do bonvole estu " 460 | "pacienca." 461 | 462 | #. translators: 1: plugin name. 463 | #: class-tgm-plugin-activation.php:3610 464 | #, php-format 465 | msgid "%1$s installed successfully." 466 | msgstr "%1$s sukcese instalis" 467 | 468 | #: class-tgm-plugin-activation.php:3611 469 | msgid "All installations have been completed." 470 | msgstr "Ĉiuj instaloj estas finitaj." 471 | 472 | #. translators: 1: plugin name, 2: action number 3: total number of actions. 473 | #: class-tgm-plugin-activation.php:3613 474 | #, php-format 475 | msgid "Installing Plugin %1$s (%2$d/%3$d)" 476 | msgstr "Instalas kromprogramon %1$s (%2$d/%3$d)" 477 | -------------------------------------------------------------------------------- /themes/wds_headless/inc/tgm/languages/tgmpa-es_ES.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebDevStudios/wds-headless-wordpress/eefaafb5ac6c92667096c70d8b85e934e848792d/themes/wds_headless/inc/tgm/languages/tgmpa-es_ES.mo -------------------------------------------------------------------------------- /themes/wds_headless/inc/tgm/languages/tgmpa-es_ES.po: -------------------------------------------------------------------------------- 1 | # Translation of TGM Plugin Activation in Spanish (Spain) 2 | # This file is distributed under the same license as the TGMPA package. 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: TGM Plugin Activation v2.6.1\n" 6 | "POT-Creation-Date: 2016-05-19 03:01+0200\n" 7 | "PO-Revision-Date: 2016-05-19 03:01+0200\n" 8 | "Last-Translator: \n" 9 | "Language-Team: \n" 10 | "Language: es\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 15 | "X-Generator: Poedit 1.8.7\n" 16 | 17 | #: class-tgm-plugin-activation.php:334 18 | msgid "Install Required Plugins" 19 | msgstr "Requiere instalar plugins" 20 | 21 | #: class-tgm-plugin-activation.php:335 22 | msgid "Install Plugins" 23 | msgstr "Instalar plugins" 24 | 25 | #. translators: %s: plugin name. 26 | #: class-tgm-plugin-activation.php:337 27 | #, php-format 28 | msgid "Installing Plugin: %s" 29 | msgstr "Instalando plugin: %s" 30 | 31 | #. translators: %s: plugin name. 32 | #: class-tgm-plugin-activation.php:339 33 | #, php-format 34 | msgid "Updating Plugin: %s" 35 | msgstr "" 36 | 37 | #: class-tgm-plugin-activation.php:340 38 | msgid "Something went wrong with the plugin API." 39 | msgstr "Algo salió mal con API del plugin." 40 | 41 | #. translators: 1: plugin name(s). 42 | #: class-tgm-plugin-activation.php:343 43 | #, php-format 44 | msgid "This theme requires the following plugin: %1$s." 45 | msgid_plural "This theme requires the following plugins: %1$s." 46 | msgstr[0] "Este tema requiere el siguiente plugin: %1$s." 47 | msgstr[1] "Este tema requiere los siguientes plugins: %1$s." 48 | 49 | #. translators: 1: plugin name(s). 50 | #: class-tgm-plugin-activation.php:349 51 | #, php-format 52 | msgid "This theme recommends the following plugin: %1$s." 53 | msgid_plural "This theme recommends the following plugins: %1$s." 54 | msgstr[0] "Este Tema recomienda utilizar el plugin: %1$s." 55 | msgstr[1] "Este Tema recomienda utilizar los plugins: %1$s." 56 | 57 | #. translators: 1: plugin name(s). 58 | #: class-tgm-plugin-activation.php:355 59 | #, php-format 60 | msgid "" 61 | "The following plugin needs to be updated to its latest version to ensure " 62 | "maximum compatibility with this theme: %1$s." 63 | msgid_plural "" 64 | "The following plugins need to be updated to their latest version to ensure " 65 | "maximum compatibility with this theme: %1$s." 66 | msgstr[0] "" 67 | "El siguiente plugin debe actualizarse a la versión más reciente para " 68 | "asegurar la máxima compatibilidad con este tema: %1$s." 69 | msgstr[1] "" 70 | "Los siguientes plugins necesitan actualizarse a la versión más reciente para " 71 | "asegurar la máxima compatibilidad con este tema: %1$s." 72 | 73 | #. translators: 1: plugin name(s). 74 | #: class-tgm-plugin-activation.php:361 75 | #, php-format 76 | msgid "There is an update available for: %1$s." 77 | msgid_plural "There are updates available for the following plugins: %1$s." 78 | msgstr[0] "Hay una actualización disponible para: %1$s." 79 | msgstr[1] "Hay actualizaciones disponibles para los siguientes plugins: %1$s." 80 | 81 | #. translators: 1: plugin name(s). 82 | #: class-tgm-plugin-activation.php:367 83 | #, php-format 84 | msgid "The following required plugin is currently inactive: %1$s." 85 | msgid_plural "The following required plugins are currently inactive: %1$s." 86 | msgstr[0] "El siguiente requiere plugin está actualmente inactiva: %1$s." 87 | msgstr[1] "El siguiente requiere los plugins son actualmente inactivos: %1$s." 88 | 89 | #. translators: 1: plugin name(s). 90 | #: class-tgm-plugin-activation.php:373 91 | #, php-format 92 | msgid "The following recommended plugin is currently inactive: %1$s." 93 | msgid_plural "The following recommended plugins are currently inactive: %1$s." 94 | msgstr[0] "Recomienda el siguiente plugin está actualmente inactiva: %1$s." 95 | msgstr[1] "" 96 | "Recomienda lo siguiente los plugins son actualmente inactivos: %1$s." 97 | 98 | #: class-tgm-plugin-activation.php:378 99 | msgid "Begin installing plugin" 100 | msgid_plural "Begin installing plugins" 101 | msgstr[0] "Comenzar a instalar el plugin" 102 | msgstr[1] "Comenzar a instalar plugins" 103 | 104 | #: class-tgm-plugin-activation.php:383 105 | msgid "Begin updating plugin" 106 | msgid_plural "Begin updating plugins" 107 | msgstr[0] "Comenzar la actualización del plugin" 108 | msgstr[1] "Comenzar la actualización de los plugins" 109 | 110 | #: class-tgm-plugin-activation.php:388 111 | msgid "Begin activating plugin" 112 | msgid_plural "Begin activating plugins" 113 | msgstr[0] "Comenzar a activar plugin" 114 | msgstr[1] "Comenzar a activar plugins" 115 | 116 | #: class-tgm-plugin-activation.php:392 117 | msgid "Return to Required Plugins Installer" 118 | msgstr "Volver al instalador de Plugins" 119 | 120 | #: class-tgm-plugin-activation.php:393 class-tgm-plugin-activation.php:920 121 | #: class-tgm-plugin-activation.php:2626 class-tgm-plugin-activation.php:3673 122 | msgid "Return to the Dashboard" 123 | msgstr "Volver al Escritorio" 124 | 125 | #: class-tgm-plugin-activation.php:394 class-tgm-plugin-activation.php:3252 126 | msgid "Plugin activated successfully." 127 | msgstr "Plugin activado correctamente." 128 | 129 | #: class-tgm-plugin-activation.php:395 class-tgm-plugin-activation.php:3045 130 | msgid "The following plugin was activated successfully:" 131 | msgid_plural "The following plugins were activated successfully:" 132 | msgstr[0] "" 133 | msgstr[1] "" 134 | 135 | #. translators: 1: plugin name. 136 | #: class-tgm-plugin-activation.php:397 137 | #, php-format 138 | msgid "No action taken. Plugin %1$s was already active." 139 | msgstr "No se realizó ninguna acción. El plugin %1$s ya estaba activado." 140 | 141 | #. translators: 1: plugin name. 142 | #: class-tgm-plugin-activation.php:399 143 | #, php-format 144 | msgid "" 145 | "Plugin not activated. A higher version of %s is needed for this theme. " 146 | "Please update the plugin." 147 | msgstr "" 148 | "Plugin desactivado. Necesitas una versión superior de %s para este tema. Por " 149 | "favor, actualiza el plugin." 150 | 151 | #. translators: 1: dashboard link. 152 | #: class-tgm-plugin-activation.php:401 153 | #, php-format 154 | msgid "All plugins installed and activated successfully. %1$s" 155 | msgstr "Todos los plugin instalados y activados correctamente. %1$s" 156 | 157 | #: class-tgm-plugin-activation.php:402 158 | msgid "Dismiss this notice" 159 | msgstr "Descartar este aviso" 160 | 161 | #: class-tgm-plugin-activation.php:403 162 | msgid "" 163 | "There are one or more required or recommended plugins to install, update or " 164 | "activate." 165 | msgstr "" 166 | 167 | #: class-tgm-plugin-activation.php:404 168 | msgid "Please contact the administrator of this site for help." 169 | msgstr "Por favor, contacta con al administrador de este sitio." 170 | 171 | #: class-tgm-plugin-activation.php:607 172 | msgid "This plugin needs to be updated to be compatible with your theme." 173 | msgstr "Este plugin debe actualizarse para que sea compatible con tu tema." 174 | 175 | #: class-tgm-plugin-activation.php:608 176 | msgid "Update Required" 177 | msgstr "Requiere actualización" 178 | 179 | #: class-tgm-plugin-activation.php:725 180 | msgid "Set the parent_slug config variable instead." 181 | msgstr "Establece la variable de configuración parent_slug en su lugar." 182 | 183 | #: class-tgm-plugin-activation.php:1027 184 | msgid "" 185 | "The remote plugin package does not contain a folder with the desired slug " 186 | "and renaming did not work." 187 | msgstr "" 188 | "El paquete remoto del plugin no contiene una carpeta con el slug apropiado y " 189 | "no funcionó el cambio de nombre." 190 | 191 | #: class-tgm-plugin-activation.php:1027 class-tgm-plugin-activation.php:1030 192 | msgid "" 193 | "Please contact the plugin provider and ask them to package their plugin " 194 | "according to the WordPress guidelines." 195 | msgstr "" 196 | "Por favor, ponte en contacto con el autor del plugin y pídele que lo " 197 | "empaquete de acuerdo a las prácticas recomendadas de WordPress." 198 | 199 | #: class-tgm-plugin-activation.php:1030 200 | msgid "" 201 | "The remote plugin package consists of more than one file, but the files are " 202 | "not packaged in a folder." 203 | msgstr "" 204 | "El paquete remoto del plugin está compuesto por más de un archivo, pero los " 205 | "archivos no están dentro de una carpeta." 206 | 207 | #: class-tgm-plugin-activation.php:1214 class-tgm-plugin-activation.php:3041 208 | msgctxt "plugin A *and* plugin B" 209 | msgid "and" 210 | msgstr "y" 211 | 212 | #. translators: %s: version number 213 | #: class-tgm-plugin-activation.php:2075 214 | #, php-format 215 | msgid "TGMPA v%s" 216 | msgstr "TGMPA v%s" 217 | 218 | #: class-tgm-plugin-activation.php:2366 219 | msgid "Required" 220 | msgstr "Obligatorio" 221 | 222 | #: class-tgm-plugin-activation.php:2369 223 | msgid "Recommended" 224 | msgstr "RECOMENDADO" 225 | 226 | #: class-tgm-plugin-activation.php:2385 227 | msgid "WordPress Repository" 228 | msgstr "Repositorio WordPress" 229 | 230 | #: class-tgm-plugin-activation.php:2388 231 | msgid "External Source" 232 | msgstr "Fuente externa" 233 | 234 | #: class-tgm-plugin-activation.php:2391 235 | msgid "Pre-Packaged" 236 | msgstr "Pre-empaquetado" 237 | 238 | #: class-tgm-plugin-activation.php:2408 239 | msgid "Not Installed" 240 | msgstr "No Instalado" 241 | 242 | #: class-tgm-plugin-activation.php:2412 243 | msgid "Installed But Not Activated" 244 | msgstr "Instalado pero no activado" 245 | 246 | #: class-tgm-plugin-activation.php:2414 247 | msgid "Active" 248 | msgstr "Activar" 249 | 250 | #: class-tgm-plugin-activation.php:2420 251 | msgid "Required Update not Available" 252 | msgstr "Actualización requerida no disponible" 253 | 254 | #: class-tgm-plugin-activation.php:2423 255 | msgid "Requires Update" 256 | msgstr "Requiere actualización" 257 | 258 | #: class-tgm-plugin-activation.php:2426 259 | msgid "Update recommended" 260 | msgstr "Actualización recomendada" 261 | 262 | #. translators: 1: install status, 2: update status 263 | #: class-tgm-plugin-activation.php:2435 264 | #, php-format 265 | msgctxt "Install/Update Status" 266 | msgid "%1$s, %2$s" 267 | msgstr "%1$s, %2$s" 268 | 269 | #. translators: 1: number of plugins. 270 | #: class-tgm-plugin-activation.php:2481 271 | #, php-format 272 | msgctxt "plugins" 273 | msgid "All (%s)" 274 | msgid_plural "All (%s)" 275 | msgstr[0] "Todos (%s)" 276 | msgstr[1] "Todos (%s)" 277 | 278 | #. translators: 1: number of plugins. 279 | #: class-tgm-plugin-activation.php:2485 280 | #, php-format 281 | msgid "To Install (%s)" 282 | msgid_plural "To Install (%s)" 283 | msgstr[0] "A instalar (%s)" 284 | msgstr[1] "A instalar (%s)" 285 | 286 | #. translators: 1: number of plugins. 287 | #: class-tgm-plugin-activation.php:2489 288 | #, php-format 289 | msgid "Update Available (%s)" 290 | msgid_plural "Update Available (%s)" 291 | msgstr[0] "Actualización disponible (%s)" 292 | msgstr[1] "Actualizaciones disponibles (%s)" 293 | 294 | #. translators: 1: number of plugins. 295 | #: class-tgm-plugin-activation.php:2493 296 | #, php-format 297 | msgid "To Activate (%s)" 298 | msgid_plural "To Activate (%s)" 299 | msgstr[0] "Para activar (%s)" 300 | msgstr[1] "Para activar (%s)" 301 | 302 | #: class-tgm-plugin-activation.php:2575 303 | msgctxt "as in: \"version nr unknown\"" 304 | msgid "unknown" 305 | msgstr "desconocido" 306 | 307 | #: class-tgm-plugin-activation.php:2583 308 | msgid "Installed version:" 309 | msgstr "Versión instalada:" 310 | 311 | #: class-tgm-plugin-activation.php:2591 312 | msgid "Minimum required version:" 313 | msgstr "Versión mínima requerida:" 314 | 315 | #: class-tgm-plugin-activation.php:2603 316 | msgid "Available version:" 317 | msgstr "Versión disponible:" 318 | 319 | #: class-tgm-plugin-activation.php:2626 320 | msgid "No plugins to install, update or activate." 321 | msgstr "No hay plugins para instalar, actualizar o activar." 322 | 323 | #: class-tgm-plugin-activation.php:2640 324 | msgid "Plugin" 325 | msgstr "Plugin" 326 | 327 | #: class-tgm-plugin-activation.php:2641 328 | msgid "Source" 329 | msgstr "Origen" 330 | 331 | #: class-tgm-plugin-activation.php:2642 332 | msgid "Type" 333 | msgstr "Clase" 334 | 335 | #: class-tgm-plugin-activation.php:2646 336 | msgid "Version" 337 | msgstr "Version" 338 | 339 | #: class-tgm-plugin-activation.php:2647 340 | msgid "Status" 341 | msgstr "Status" 342 | 343 | #. translators: %2$s: plugin name in screen reader markup 344 | #: class-tgm-plugin-activation.php:2696 345 | #, php-format 346 | msgid "Install %2$s" 347 | msgstr "Instalar %2$s" 348 | 349 | #. translators: %2$s: plugin name in screen reader markup 350 | #: class-tgm-plugin-activation.php:2701 351 | #, php-format 352 | msgid "Update %2$s" 353 | msgstr "Actualizar %2$s" 354 | 355 | #. translators: %2$s: plugin name in screen reader markup 356 | #: class-tgm-plugin-activation.php:2707 357 | #, php-format 358 | msgid "Activate %2$s" 359 | msgstr "Activar %2$s" 360 | 361 | #: class-tgm-plugin-activation.php:2777 362 | msgid "Upgrade message from the plugin author:" 363 | msgstr "Mensaje de actualización del autor del plugin:" 364 | 365 | #: class-tgm-plugin-activation.php:2810 366 | msgid "Install" 367 | msgstr "Instalar" 368 | 369 | #: class-tgm-plugin-activation.php:2816 370 | msgid "Update" 371 | msgstr "Actualizar" 372 | 373 | #: class-tgm-plugin-activation.php:2819 374 | msgid "Activate" 375 | msgstr "Activar:" 376 | 377 | #: class-tgm-plugin-activation.php:2850 378 | msgid "No plugins were selected to be installed. No action taken." 379 | msgstr "" 380 | "No se han seleccionado plugins para instalar. No se realizará ninguna acción." 381 | 382 | #: class-tgm-plugin-activation.php:2852 383 | msgid "No plugins were selected to be updated. No action taken." 384 | msgstr "" 385 | "No se han seleccionado plugins para actualizar. No se realizará ninguna " 386 | "acción." 387 | 388 | #: class-tgm-plugin-activation.php:2893 389 | msgid "No plugins are available to be installed at this time." 390 | msgstr "No hay plugins disponibles para instalar en este momento." 391 | 392 | #: class-tgm-plugin-activation.php:2895 393 | msgid "No plugins are available to be updated at this time." 394 | msgstr "No hay plugins disponibles para activar en este momento." 395 | 396 | #: class-tgm-plugin-activation.php:3001 397 | msgid "No plugins were selected to be activated. No action taken." 398 | msgstr "" 399 | "No se han seleccionado plugins para instalar. No se realizará ninguna acción." 400 | 401 | #: class-tgm-plugin-activation.php:3027 402 | msgid "No plugins are available to be activated at this time." 403 | msgstr "No hay plugins disponibles para activar en este momento." 404 | 405 | #: class-tgm-plugin-activation.php:3251 406 | msgid "Plugin activation failed." 407 | msgstr "Fallo en la activación de Plugin." 408 | 409 | #. translators: 1: plugin name, 2: action number 3: total number of actions. 410 | #: class-tgm-plugin-activation.php:3591 411 | #, php-format 412 | msgid "Updating Plugin %1$s (%2$d/%3$d)" 413 | msgstr "Actualizando plugin %1$s (%2$d/%3$d)" 414 | 415 | #. translators: 1: plugin name, 2: error message. 416 | #: class-tgm-plugin-activation.php:3594 417 | #, php-format 418 | msgid "An error occurred while installing %1$s: %2$s." 419 | msgstr "" 420 | "A ocurrido un error durante la instalación %1$s: %2$s." 421 | 422 | #. translators: 1: plugin name. 423 | #: class-tgm-plugin-activation.php:3596 424 | #, php-format 425 | msgid "The installation of %1$s failed." 426 | msgstr "La instalación de %1$s fallida." 427 | 428 | #: class-tgm-plugin-activation.php:3600 429 | msgid "" 430 | "The installation and activation process is starting. This process may take a " 431 | "while on some hosts, so please be patient." 432 | msgstr "" 433 | "Comienza el proceso de instalación y activación. Este proceso puede tardar " 434 | "un poco en algunos alojamientos, por favor sea paciente." 435 | 436 | #. translators: 1: plugin name. 437 | #: class-tgm-plugin-activation.php:3602 438 | #, php-format 439 | msgid "%1$s installed and activated successfully." 440 | msgstr "%1$s Instalado y activado correctamente." 441 | 442 | #: class-tgm-plugin-activation.php:3602 class-tgm-plugin-activation.php:3610 443 | msgid "Show Details" 444 | msgstr "Ver Detalles" 445 | 446 | #: class-tgm-plugin-activation.php:3602 class-tgm-plugin-activation.php:3610 447 | msgid "Hide Details" 448 | msgstr "Esconder detalles" 449 | 450 | #: class-tgm-plugin-activation.php:3603 451 | msgid "All installations and activations have been completed." 452 | msgstr "Todas las instalaciones y activaciones se han completado." 453 | 454 | #. translators: 1: plugin name, 2: action number 3: total number of actions. 455 | #: class-tgm-plugin-activation.php:3605 456 | #, php-format 457 | msgid "Installing and Activating Plugin %1$s (%2$d/%3$d)" 458 | msgstr "Instalación y Activación Plugin %1$s (%2$d/%3$d)" 459 | 460 | #: class-tgm-plugin-activation.php:3608 461 | msgid "" 462 | "The installation process is starting. This process may take a while on some " 463 | "hosts, so please be patient." 464 | msgstr "" 465 | "El proceso de instalación ha comenzado. Este proceso puede tardar un poco " 466 | "según el alojamiento, por favor sea paciente." 467 | 468 | #. translators: 1: plugin name. 469 | #: class-tgm-plugin-activation.php:3610 470 | #, php-format 471 | msgid "%1$s installed successfully." 472 | msgstr "%1$s instalado correctamente." 473 | 474 | #: class-tgm-plugin-activation.php:3611 475 | msgid "All installations have been completed." 476 | msgstr "Todas las instalaciones completadas." 477 | 478 | #. translators: 1: plugin name, 2: action number 3: total number of actions. 479 | #: class-tgm-plugin-activation.php:3613 480 | #, php-format 481 | msgid "Installing Plugin %1$s (%2$d/%3$d)" 482 | msgstr "Instalar Plugin %1$s (%2$d/%3$d)" 483 | -------------------------------------------------------------------------------- /themes/wds_headless/inc/tgm/languages/tgmpa-fr_FR.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebDevStudios/wds-headless-wordpress/eefaafb5ac6c92667096c70d8b85e934e848792d/themes/wds_headless/inc/tgm/languages/tgmpa-fr_FR.mo -------------------------------------------------------------------------------- /themes/wds_headless/inc/tgm/languages/tgmpa-he_IL.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebDevStudios/wds-headless-wordpress/eefaafb5ac6c92667096c70d8b85e934e848792d/themes/wds_headless/inc/tgm/languages/tgmpa-he_IL.mo -------------------------------------------------------------------------------- /themes/wds_headless/inc/tgm/languages/tgmpa-he_IL.po: -------------------------------------------------------------------------------- 1 | # Translation of TGM Plugin Activation in Hebrew 2 | # This file is distributed under the same license as the TGMPA package. 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: TGM Plugin Activation v2.6.1\n" 6 | "POT-Creation-Date: 2016-05-19 03:01+0200\n" 7 | "PO-Revision-Date: 2016-05-19 03:02+0200\n" 8 | "Last-Translator: \n" 9 | "Language-Team: \n" 10 | "Language: he\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 15 | "X-Generator: Poedit 1.8.7\n" 16 | 17 | #: class-tgm-plugin-activation.php:334 18 | msgid "Install Required Plugins" 19 | msgstr "התקנת תוספים נדרשים" 20 | 21 | #: class-tgm-plugin-activation.php:335 22 | msgid "Install Plugins" 23 | msgstr "תוסף חדש" 24 | 25 | #. translators: %s: plugin name. 26 | #: class-tgm-plugin-activation.php:337 27 | #, php-format 28 | msgid "Installing Plugin: %s" 29 | msgstr "התקנת התוסף: %s" 30 | 31 | #. translators: %s: plugin name. 32 | #: class-tgm-plugin-activation.php:339 33 | #, php-format 34 | msgid "Updating Plugin: %s" 35 | msgstr "" 36 | 37 | #: class-tgm-plugin-activation.php:340 38 | msgid "Something went wrong with the plugin API." 39 | msgstr "" 40 | 41 | #. translators: 1: plugin name(s). 42 | #: class-tgm-plugin-activation.php:343 43 | #, php-format 44 | msgid "This theme requires the following plugin: %1$s." 45 | msgid_plural "This theme requires the following plugins: %1$s." 46 | msgstr[0] "התבנית דורשת את התוסף הבא: %1$s." 47 | msgstr[1] "התבנית דורשת את התוספים הבאים: %1$s." 48 | 49 | #. translators: 1: plugin name(s). 50 | #: class-tgm-plugin-activation.php:349 51 | #, php-format 52 | msgid "This theme recommends the following plugin: %1$s." 53 | msgid_plural "This theme recommends the following plugins: %1$s." 54 | msgstr[0] "התבנית ממליצה על התוסף הבא: %1$s." 55 | msgstr[1] "התבנית ממליצה על התוספים הבאים: %1$s." 56 | 57 | #. translators: 1: plugin name(s). 58 | #: class-tgm-plugin-activation.php:355 59 | #, php-format 60 | msgid "" 61 | "The following plugin needs to be updated to its latest version to ensure " 62 | "maximum compatibility with this theme: %1$s." 63 | msgid_plural "" 64 | "The following plugins need to be updated to their latest version to ensure " 65 | "maximum compatibility with this theme: %1$s." 66 | msgstr[0] "" 67 | "התוסף הבא צריך להיות מעודכן לגרסתו האחרונה על מנת להבטיח את התאימות " 68 | "המקסימלית לתבנית זו: %1$s." 69 | msgstr[1] "" 70 | "התוספים הבאים צריכים להיות מעודכים לגרסתם האחרונה על מנת להבטיח את התאימות " 71 | "המקסימלית לתבנית זו: %1$s." 72 | 73 | #. translators: 1: plugin name(s). 74 | #: class-tgm-plugin-activation.php:361 75 | #, php-format 76 | msgid "There is an update available for: %1$s." 77 | msgid_plural "There are updates available for the following plugins: %1$s." 78 | msgstr[0] "ישנו עדכון זמין עבור: %1$s." 79 | msgstr[1] "ישנם עדכונים זמינים עבור: %1$s." 80 | 81 | #. translators: 1: plugin name(s). 82 | #: class-tgm-plugin-activation.php:367 83 | #, php-format 84 | msgid "The following required plugin is currently inactive: %1$s." 85 | msgid_plural "The following required plugins are currently inactive: %1$s." 86 | msgstr[0] "התוסף הדרוש הבא לא פעיל כרגע: %1$s." 87 | msgstr[1] "התוספים הדרושים הבאים לא פעילים כרגע: %1$s." 88 | 89 | #. translators: 1: plugin name(s). 90 | #: class-tgm-plugin-activation.php:373 91 | #, php-format 92 | msgid "The following recommended plugin is currently inactive: %1$s." 93 | msgid_plural "The following recommended plugins are currently inactive: %1$s." 94 | msgstr[0] "התוסף המומלץ הבא לא פעיל כרגע: %1$s." 95 | msgstr[1] "התוספים המומלצים הבאים לא פעילים כרגע: %1$s." 96 | 97 | #: class-tgm-plugin-activation.php:378 98 | msgid "Begin installing plugin" 99 | msgid_plural "Begin installing plugins" 100 | msgstr[0] "החל בהתקנת התוסף" 101 | msgstr[1] "החל בהתקנת התוספים" 102 | 103 | #: class-tgm-plugin-activation.php:383 104 | msgid "Begin updating plugin" 105 | msgid_plural "Begin updating plugins" 106 | msgstr[0] "מתחיל לעדכן את התוסף" 107 | msgstr[1] "מתחיל לעדכן את התוספים" 108 | 109 | #: class-tgm-plugin-activation.php:388 110 | msgid "Begin activating plugin" 111 | msgid_plural "Begin activating plugins" 112 | msgstr[0] "החל בהפעלת התוסף" 113 | msgstr[1] "החל בהפעלת התוספים" 114 | 115 | #: class-tgm-plugin-activation.php:392 116 | msgid "Return to Required Plugins Installer" 117 | msgstr "חזרה להתקנת תוספים נדרשים" 118 | 119 | #: class-tgm-plugin-activation.php:393 class-tgm-plugin-activation.php:920 120 | #: class-tgm-plugin-activation.php:2626 class-tgm-plugin-activation.php:3673 121 | msgid "Return to the Dashboard" 122 | msgstr "חזרה ללוח הבקרה" 123 | 124 | #: class-tgm-plugin-activation.php:394 class-tgm-plugin-activation.php:3252 125 | msgid "Plugin activated successfully." 126 | msgstr "התוסף הופעל בהצלחה." 127 | 128 | #: class-tgm-plugin-activation.php:395 class-tgm-plugin-activation.php:3045 129 | msgid "The following plugin was activated successfully:" 130 | msgid_plural "The following plugins were activated successfully:" 131 | msgstr[0] "" 132 | msgstr[1] "" 133 | 134 | #. translators: 1: plugin name. 135 | #: class-tgm-plugin-activation.php:397 136 | #, php-format 137 | msgid "No action taken. Plugin %1$s was already active." 138 | msgstr "לא בוצעה כל פעולה. התוסף %1$s כבר הופעל." 139 | 140 | #. translators: 1: plugin name. 141 | #: class-tgm-plugin-activation.php:399 142 | #, php-format 143 | msgid "" 144 | "Plugin not activated. A higher version of %s is needed for this theme. " 145 | "Please update the plugin." 146 | msgstr "" 147 | "התוסף לא הופעל. תבנית זו דורשת גירסה עדכנית יותר של %s. נא לעדכן את התוסף." 148 | 149 | #. translators: 1: dashboard link. 150 | #: class-tgm-plugin-activation.php:401 151 | #, php-format 152 | msgid "All plugins installed and activated successfully. %1$s" 153 | msgstr "כל התוספים הותקנו והופעלו בהצלחה. %1$s" 154 | 155 | #: class-tgm-plugin-activation.php:402 156 | msgid "Dismiss this notice" 157 | msgstr "שחרר הודעה זו" 158 | 159 | #: class-tgm-plugin-activation.php:403 160 | msgid "" 161 | "There are one or more required or recommended plugins to install, update or " 162 | "activate." 163 | msgstr "" 164 | 165 | #: class-tgm-plugin-activation.php:404 166 | msgid "Please contact the administrator of this site for help." 167 | msgstr "לקבלת עזרה יש ליצור קשר עם הנהלת האתר." 168 | 169 | #: class-tgm-plugin-activation.php:607 170 | msgid "This plugin needs to be updated to be compatible with your theme." 171 | msgstr "יש לעדכן תוסף זה כדי שיתאים לתבנית." 172 | 173 | #: class-tgm-plugin-activation.php:608 174 | msgid "Update Required" 175 | msgstr "נדרש עדכון" 176 | 177 | #: class-tgm-plugin-activation.php:725 178 | msgid "Set the parent_slug config variable instead." 179 | msgstr "" 180 | 181 | #: class-tgm-plugin-activation.php:1027 182 | msgid "" 183 | "The remote plugin package does not contain a folder with the desired slug " 184 | "and renaming did not work." 185 | msgstr "" 186 | 187 | #: class-tgm-plugin-activation.php:1027 class-tgm-plugin-activation.php:1030 188 | msgid "" 189 | "Please contact the plugin provider and ask them to package their plugin " 190 | "according to the WordPress guidelines." 191 | msgstr "פנו בבקשה ליוצר התוסף ובקשו ממנו לארוז את התוסף בהתאם להנחיות וורדפרס." 192 | 193 | #: class-tgm-plugin-activation.php:1030 194 | msgid "" 195 | "The remote plugin package consists of more than one file, but the files are " 196 | "not packaged in a folder." 197 | msgstr "" 198 | 199 | #: class-tgm-plugin-activation.php:1214 class-tgm-plugin-activation.php:3041 200 | msgctxt "plugin A *and* plugin B" 201 | msgid "and" 202 | msgstr "ו" 203 | 204 | #. translators: %s: version number 205 | #: class-tgm-plugin-activation.php:2075 206 | #, fuzzy, php-format 207 | msgid "TGMPA v%s" 208 | msgstr "TGMPA v%s" 209 | 210 | #: class-tgm-plugin-activation.php:2366 211 | msgid "Required" 212 | msgstr "נדרש" 213 | 214 | #: class-tgm-plugin-activation.php:2369 215 | msgid "Recommended" 216 | msgstr "מומלץ" 217 | 218 | #: class-tgm-plugin-activation.php:2385 219 | msgid "WordPress Repository" 220 | msgstr "מאגר וורדפרס" 221 | 222 | #: class-tgm-plugin-activation.php:2388 223 | msgid "External Source" 224 | msgstr "מקור חיצוני" 225 | 226 | #: class-tgm-plugin-activation.php:2391 227 | msgid "Pre-Packaged" 228 | msgstr "ארוז מראש" 229 | 230 | #: class-tgm-plugin-activation.php:2408 231 | msgid "Not Installed" 232 | msgstr "לא מותקן" 233 | 234 | #: class-tgm-plugin-activation.php:2412 235 | msgid "Installed But Not Activated" 236 | msgstr "מותקן אך לא מופעל" 237 | 238 | #: class-tgm-plugin-activation.php:2414 239 | msgid "Active" 240 | msgstr "ערכה פעילה" 241 | 242 | #: class-tgm-plugin-activation.php:2420 243 | msgid "Required Update not Available" 244 | msgstr "העדכון הדרוש אינו זמין" 245 | 246 | #: class-tgm-plugin-activation.php:2423 247 | msgid "Requires Update" 248 | msgstr "דרוש עדכון" 249 | 250 | #: class-tgm-plugin-activation.php:2426 251 | msgid "Update recommended" 252 | msgstr "מומלץ לעדכן" 253 | 254 | #. translators: 1: install status, 2: update status 255 | #: class-tgm-plugin-activation.php:2435 256 | #, fuzzy, php-format 257 | msgctxt "Install/Update Status" 258 | msgid "%1$s, %2$s" 259 | msgstr "%1$s, %2$s" 260 | 261 | #. translators: 1: number of plugins. 262 | #: class-tgm-plugin-activation.php:2481 263 | #, php-format 264 | msgctxt "plugins" 265 | msgid "All (%s)" 266 | msgid_plural "All (%s)" 267 | msgstr[0] "הכל (%s)" 268 | msgstr[1] "הכל (%s)" 269 | 270 | #. translators: 1: number of plugins. 271 | #: class-tgm-plugin-activation.php:2485 272 | #, php-format 273 | msgid "To Install (%s)" 274 | msgid_plural "To Install (%s)" 275 | msgstr[0] "התקנה (%s)" 276 | msgstr[1] "התקנה (%s)" 277 | 278 | #. translators: 1: number of plugins. 279 | #: class-tgm-plugin-activation.php:2489 280 | #, php-format 281 | msgid "Update Available (%s)" 282 | msgid_plural "Update Available (%s)" 283 | msgstr[0] "עדכונים זמינים (%s)" 284 | msgstr[1] "עדכונים זמינים (%s)" 285 | 286 | #. translators: 1: number of plugins. 287 | #: class-tgm-plugin-activation.php:2493 288 | #, php-format 289 | msgid "To Activate (%s)" 290 | msgid_plural "To Activate (%s)" 291 | msgstr[0] "הפעלה (%s)" 292 | msgstr[1] "הפעלה (%s)" 293 | 294 | #: class-tgm-plugin-activation.php:2575 295 | msgctxt "as in: \"version nr unknown\"" 296 | msgid "unknown" 297 | msgstr "לא ידוע" 298 | 299 | #: class-tgm-plugin-activation.php:2583 300 | msgid "Installed version:" 301 | msgstr "גרסה מותקנת:" 302 | 303 | #: class-tgm-plugin-activation.php:2591 304 | msgid "Minimum required version:" 305 | msgstr "גירסה מינימלית נדרשת:" 306 | 307 | #: class-tgm-plugin-activation.php:2603 308 | msgid "Available version:" 309 | msgstr "גירסה זמינה:" 310 | 311 | #: class-tgm-plugin-activation.php:2626 312 | msgid "No plugins to install, update or activate." 313 | msgstr "אין תוספים להתקנה, עדכון או הפעלה." 314 | 315 | #: class-tgm-plugin-activation.php:2640 316 | msgid "Plugin" 317 | msgstr "תוסף" 318 | 319 | #: class-tgm-plugin-activation.php:2641 320 | msgid "Source" 321 | msgstr "מקור" 322 | 323 | #: class-tgm-plugin-activation.php:2642 324 | msgid "Type" 325 | msgstr "סוג משרה" 326 | 327 | #: class-tgm-plugin-activation.php:2646 328 | msgid "Version" 329 | msgstr "גרסא" 330 | 331 | #: class-tgm-plugin-activation.php:2647 332 | msgid "Status" 333 | msgstr "סטטוס הפוסט" 334 | 335 | #. translators: %2$s: plugin name in screen reader markup 336 | #: class-tgm-plugin-activation.php:2696 337 | #, fuzzy, php-format 338 | msgid "Install %2$s" 339 | msgstr "התקנת %2$s" 340 | 341 | #. translators: %2$s: plugin name in screen reader markup 342 | #: class-tgm-plugin-activation.php:2701 343 | #, fuzzy, php-format 344 | msgid "Update %2$s" 345 | msgstr " עדכון %2$s" 346 | 347 | #. translators: %2$s: plugin name in screen reader markup 348 | #: class-tgm-plugin-activation.php:2707 349 | #, fuzzy, php-format 350 | msgid "Activate %2$s" 351 | msgstr "%2$s מופעל" 352 | 353 | #: class-tgm-plugin-activation.php:2777 354 | msgid "Upgrade message from the plugin author:" 355 | msgstr "הודעת עדכון ממפתח התוסף:" 356 | 357 | #: class-tgm-plugin-activation.php:2810 358 | msgid "Install" 359 | msgstr "התקן" 360 | 361 | #: class-tgm-plugin-activation.php:2816 362 | msgid "Update" 363 | msgstr "עדכון" 364 | 365 | #: class-tgm-plugin-activation.php:2819 366 | msgid "Activate" 367 | msgstr "הפעלה" 368 | 369 | #: class-tgm-plugin-activation.php:2850 370 | msgid "No plugins were selected to be installed. No action taken." 371 | msgstr "לא נבחרו תוספים להתקנה. לא בוצעה שום פעולה." 372 | 373 | #: class-tgm-plugin-activation.php:2852 374 | msgid "No plugins were selected to be updated. No action taken." 375 | msgstr "לא נבחרו תוספים לעדכון. לא בוצעה שום פעולה." 376 | 377 | #: class-tgm-plugin-activation.php:2893 378 | msgid "No plugins are available to be installed at this time." 379 | msgstr "אין תוספים זמינים להתקנה." 380 | 381 | #: class-tgm-plugin-activation.php:2895 382 | msgid "No plugins are available to be updated at this time." 383 | msgstr "אין תוספים זמינים לעדכון." 384 | 385 | #: class-tgm-plugin-activation.php:3001 386 | msgid "No plugins were selected to be activated. No action taken." 387 | msgstr "לא נבחרו תוספים להפעלה. לא בוצעה שום פעולה." 388 | 389 | #: class-tgm-plugin-activation.php:3027 390 | msgid "No plugins are available to be activated at this time." 391 | msgstr "אין תוספים זמינים להפעלה." 392 | 393 | #: class-tgm-plugin-activation.php:3251 394 | msgid "Plugin activation failed." 395 | msgstr "הפעלת התוסף נכשלה." 396 | 397 | #. translators: 1: plugin name, 2: action number 3: total number of actions. 398 | #: class-tgm-plugin-activation.php:3591 399 | #, php-format 400 | msgid "Updating Plugin %1$s (%2$d/%3$d)" 401 | msgstr "שדרוג התוסף %1$s ‏(%2$d/%3$d)" 402 | 403 | #. translators: 1: plugin name, 2: error message. 404 | #: class-tgm-plugin-activation.php:3594 405 | #, php-format 406 | msgid "An error occurred while installing %1$s: %2$s." 407 | msgstr "ארעה שגיאה במהלך התקנת %1$s: %2$s." 408 | 409 | #. translators: 1: plugin name. 410 | #: class-tgm-plugin-activation.php:3596 411 | #, php-format 412 | msgid "The installation of %1$s failed." 413 | msgstr "ההתקנה של %1$s נכשלה." 414 | 415 | #: class-tgm-plugin-activation.php:3600 416 | msgid "" 417 | "The installation and activation process is starting. This process may take a " 418 | "while on some hosts, so please be patient." 419 | msgstr "" 420 | "תהליך ההתקנה וההפעלה מתחיל והוא יכול להמשך זמן מה בשרתים מסוימים. נא התאזרו " 421 | "בסבלנות." 422 | 423 | #. translators: 1: plugin name. 424 | #: class-tgm-plugin-activation.php:3602 425 | #, php-format 426 | msgid "%1$s installed and activated successfully." 427 | msgstr "%1$s הותקן והופעל בהצלחה." 428 | 429 | #: class-tgm-plugin-activation.php:3602 class-tgm-plugin-activation.php:3610 430 | msgid "Show Details" 431 | msgstr "הראה פרטים" 432 | 433 | #: class-tgm-plugin-activation.php:3602 class-tgm-plugin-activation.php:3610 434 | msgid "Hide Details" 435 | msgstr "הסתר מידע נוסף" 436 | 437 | #: class-tgm-plugin-activation.php:3603 438 | msgid "All installations and activations have been completed." 439 | msgstr "כל ההתקנות וההפעלות הושלמו." 440 | 441 | #. translators: 1: plugin name, 2: action number 3: total number of actions. 442 | #: class-tgm-plugin-activation.php:3605 443 | #, php-format 444 | msgid "Installing and Activating Plugin %1$s (%2$d/%3$d)" 445 | msgstr "מתקין ומפעיל את התוסף %1$s (%2$d/%3$d)" 446 | 447 | #: class-tgm-plugin-activation.php:3608 448 | msgid "" 449 | "The installation process is starting. This process may take a while on some " 450 | "hosts, so please be patient." 451 | msgstr "" 452 | "תהליך ההתקנה מתחיל. התהליך יכול לקחת זמן מה בשרתים מסוימים אז נא התאזרו " 453 | "בסבלנות." 454 | 455 | #. translators: 1: plugin name. 456 | #: class-tgm-plugin-activation.php:3610 457 | #, php-format 458 | msgid "%1$s installed successfully." 459 | msgstr "%1$s הותקן בהצלחה." 460 | 461 | #: class-tgm-plugin-activation.php:3611 462 | msgid "All installations have been completed." 463 | msgstr "כל ההתקנות הושלמו." 464 | 465 | #. translators: 1: plugin name, 2: action number 3: total number of actions. 466 | #: class-tgm-plugin-activation.php:3613 467 | #, php-format 468 | msgid "Installing Plugin %1$s (%2$d/%3$d)" 469 | msgstr "מתקין תוסף %1$s (%2$d/%3$d)" 470 | -------------------------------------------------------------------------------- /themes/wds_headless/inc/tgm/languages/tgmpa-hr_HR.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebDevStudios/wds-headless-wordpress/eefaafb5ac6c92667096c70d8b85e934e848792d/themes/wds_headless/inc/tgm/languages/tgmpa-hr_HR.mo -------------------------------------------------------------------------------- /themes/wds_headless/inc/tgm/languages/tgmpa-it_IT.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebDevStudios/wds-headless-wordpress/eefaafb5ac6c92667096c70d8b85e934e848792d/themes/wds_headless/inc/tgm/languages/tgmpa-it_IT.mo -------------------------------------------------------------------------------- /themes/wds_headless/inc/tgm/languages/tgmpa-it_IT.po: -------------------------------------------------------------------------------- 1 | # Translation of TGM Plugin Activation in Italian 2 | # This file is distributed under the same license as the TGMPA package. 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: TGM Plugin Activation v2.6.1\n" 6 | "POT-Creation-Date: 2016-05-19 03:03+0200\n" 7 | "PO-Revision-Date: 2016-05-19 03:03+0200\n" 8 | "Last-Translator: \n" 9 | "Language-Team: \n" 10 | "Language: it\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 15 | "X-Generator: Poedit 1.8.7\n" 16 | 17 | #: class-tgm-plugin-activation.php:334 18 | msgid "Install Required Plugins" 19 | msgstr "Installa i Plugins richiesti" 20 | 21 | #: class-tgm-plugin-activation.php:335 22 | msgid "Install Plugins" 23 | msgstr "Installa plugin" 24 | 25 | #. translators: %s: plugin name. 26 | #: class-tgm-plugin-activation.php:337 27 | #, php-format 28 | msgid "Installing Plugin: %s" 29 | msgstr "Installazione plugin: %s" 30 | 31 | #. translators: %s: plugin name. 32 | #: class-tgm-plugin-activation.php:339 33 | #, php-format 34 | msgid "Updating Plugin: %s" 35 | msgstr "" 36 | 37 | #: class-tgm-plugin-activation.php:340 38 | msgid "Something went wrong with the plugin API." 39 | msgstr "Qualcosa è andato storto con l'API plugin." 40 | 41 | #. translators: 1: plugin name(s). 42 | #: class-tgm-plugin-activation.php:343 43 | #, php-format 44 | msgid "This theme requires the following plugin: %1$s." 45 | msgid_plural "This theme requires the following plugins: %1$s." 46 | msgstr[0] "Questo tema richiede il seguente plugin: %1$s." 47 | msgstr[1] "Questo tema richiede i seguenti plugin: %1$s." 48 | 49 | #. translators: 1: plugin name(s). 50 | #: class-tgm-plugin-activation.php:349 51 | #, php-format 52 | msgid "This theme recommends the following plugin: %1$s." 53 | msgid_plural "This theme recommends the following plugins: %1$s." 54 | msgstr[0] "Questo tema raccomanda il seguente plugin: %1$s." 55 | msgstr[1] "Questo tema raccomanda i seguenti plugin: %1$s." 56 | 57 | #. translators: 1: plugin name(s). 58 | #: class-tgm-plugin-activation.php:355 59 | #, php-format 60 | msgid "" 61 | "The following plugin needs to be updated to its latest version to ensure " 62 | "maximum compatibility with this theme: %1$s." 63 | msgid_plural "" 64 | "The following plugins need to be updated to their latest version to ensure " 65 | "maximum compatibility with this theme: %1$s." 66 | msgstr[0] "" 67 | "Il seguente plugin deve essere aggiornato per garantire la massima " 68 | "compatibilità con questo tema: %1$s." 69 | msgstr[1] "" 70 | "I seguenti plugin devono essere aggiornati per garantire la massima " 71 | "compatibilità con questo tema: %1$s." 72 | 73 | #. translators: 1: plugin name(s). 74 | #: class-tgm-plugin-activation.php:361 75 | #, php-format 76 | msgid "There is an update available for: %1$s." 77 | msgid_plural "There are updates available for the following plugins: %1$s." 78 | msgstr[0] "C'è un aggiornamento disponibile per: %1$s." 79 | msgstr[1] "Sono disponibili degli aggiornamenti per i seguenti plugin: %1$s." 80 | 81 | #. translators: 1: plugin name(s). 82 | #: class-tgm-plugin-activation.php:367 83 | #, php-format 84 | msgid "The following required plugin is currently inactive: %1$s." 85 | msgid_plural "The following required plugins are currently inactive: %1$s." 86 | msgstr[0] "Il seguente plugin richiesto è al momento inattivo: %1$s." 87 | msgstr[1] "I seguenti plugin richiesti sono al momento inattivi: %1$s." 88 | 89 | #. translators: 1: plugin name(s). 90 | #: class-tgm-plugin-activation.php:373 91 | #, php-format 92 | msgid "The following recommended plugin is currently inactive: %1$s." 93 | msgid_plural "The following recommended plugins are currently inactive: %1$s." 94 | msgstr[0] "Il seguente plugin raccomandato è al momento inattivo: %1$s." 95 | msgstr[1] "I seguenti plugin raccomandati sono al momento inattivi: %1$s." 96 | 97 | #: class-tgm-plugin-activation.php:378 98 | msgid "Begin installing plugin" 99 | msgid_plural "Begin installing plugins" 100 | msgstr[0] "Inizio installazione plugin" 101 | msgstr[1] "Inizio installazione plugin" 102 | 103 | #: class-tgm-plugin-activation.php:383 104 | msgid "Begin updating plugin" 105 | msgid_plural "Begin updating plugins" 106 | msgstr[0] "Iniziare l'aggiornamento del plugin" 107 | msgstr[1] "Iniziare l'aggiornamento dei plugin" 108 | 109 | #: class-tgm-plugin-activation.php:388 110 | msgid "Begin activating plugin" 111 | msgid_plural "Begin activating plugins" 112 | msgstr[0] "Inizio attivazione plugin" 113 | msgstr[1] "Inizio attivazione plugin" 114 | 115 | #: class-tgm-plugin-activation.php:392 116 | msgid "Return to Required Plugins Installer" 117 | msgstr "Ritorna all' Installer del plugin richiesto" 118 | 119 | #: class-tgm-plugin-activation.php:393 class-tgm-plugin-activation.php:920 120 | #: class-tgm-plugin-activation.php:2626 class-tgm-plugin-activation.php:3673 121 | msgid "Return to the Dashboard" 122 | msgstr "Ritorna alla Bacheca" 123 | 124 | #: class-tgm-plugin-activation.php:394 class-tgm-plugin-activation.php:3252 125 | msgid "Plugin activated successfully." 126 | msgstr "Plugin installato corretamente" 127 | 128 | #: class-tgm-plugin-activation.php:395 class-tgm-plugin-activation.php:3045 129 | msgid "The following plugin was activated successfully:" 130 | msgid_plural "The following plugins were activated successfully:" 131 | msgstr[0] "" 132 | msgstr[1] "" 133 | 134 | #. translators: 1: plugin name. 135 | #: class-tgm-plugin-activation.php:397 136 | #, php-format 137 | msgid "No action taken. Plugin %1$s was already active." 138 | msgstr "Non verrà eseguita alcuna azione. Il plugin %1$s è già attivo. " 139 | 140 | #. translators: 1: plugin name. 141 | #: class-tgm-plugin-activation.php:399 142 | #, php-format 143 | msgid "" 144 | "Plugin not activated. A higher version of %s is needed for this theme. " 145 | "Please update the plugin." 146 | msgstr "" 147 | "Il plugin non è stato attivato. Per questo tema è necessaria una versione " 148 | "più recente di %s. Aggiornare il plugin. " 149 | 150 | #. translators: 1: dashboard link. 151 | #: class-tgm-plugin-activation.php:401 152 | #, php-format 153 | msgid "All plugins installed and activated successfully. %1$s" 154 | msgstr "Tutti i plugin installati e attivati ​​con successo. %1$s" 155 | 156 | #: class-tgm-plugin-activation.php:402 157 | msgid "Dismiss this notice" 158 | msgstr "Elimina questo avviso" 159 | 160 | #: class-tgm-plugin-activation.php:403 161 | msgid "" 162 | "There are one or more required or recommended plugins to install, update or " 163 | "activate." 164 | msgstr "" 165 | 166 | #: class-tgm-plugin-activation.php:404 167 | msgid "Please contact the administrator of this site for help." 168 | msgstr "Contattare l'amministratore del sito per chiedere aiuto. " 169 | 170 | #: class-tgm-plugin-activation.php:607 171 | msgid "This plugin needs to be updated to be compatible with your theme." 172 | msgstr "" 173 | "Questo plugin deve essere aggiornato per essere compatibile con il tema. " 174 | 175 | #: class-tgm-plugin-activation.php:608 176 | msgid "Update Required" 177 | msgstr "È richiesto l'aggiornamento " 178 | 179 | #: class-tgm-plugin-activation.php:725 180 | msgid "Set the parent_slug config variable instead." 181 | msgstr "Imposta la variabile di configurazione parent_slug" 182 | 183 | #: class-tgm-plugin-activation.php:1027 184 | msgid "" 185 | "The remote plugin package does not contain a folder with the desired slug " 186 | "and renaming did not work." 187 | msgstr "" 188 | "Il pacchetto remoto del plugin non contiene una cartella con lo slug " 189 | "desiderato e non è possibile rinominare. " 190 | 191 | #: class-tgm-plugin-activation.php:1027 class-tgm-plugin-activation.php:1030 192 | msgid "" 193 | "Please contact the plugin provider and ask them to package their plugin " 194 | "according to the WordPress guidelines." 195 | msgstr "" 196 | "Contatta il fornitore del plugin per chiedergli di preparare il plugin " 197 | "secondo le linee guida di WordPress. " 198 | 199 | #: class-tgm-plugin-activation.php:1030 200 | msgid "" 201 | "The remote plugin package consists of more than one file, but the files are " 202 | "not packaged in a folder." 203 | msgstr "" 204 | "Il pacchetto remoto del plugin comprende più file ma questi file on sono " 205 | "raggruppati in una cartella. " 206 | 207 | #: class-tgm-plugin-activation.php:1214 class-tgm-plugin-activation.php:3041 208 | msgctxt "plugin A *and* plugin B" 209 | msgid "and" 210 | msgstr "e" 211 | 212 | #. translators: %s: version number 213 | #: class-tgm-plugin-activation.php:2075 214 | #, php-format 215 | msgid "TGMPA v%s" 216 | msgstr "TGMPA v%s" 217 | 218 | #: class-tgm-plugin-activation.php:2366 219 | msgid "Required" 220 | msgstr "Obbligatorio" 221 | 222 | #: class-tgm-plugin-activation.php:2369 223 | msgid "Recommended" 224 | msgstr "Raccomandato" 225 | 226 | #: class-tgm-plugin-activation.php:2385 227 | msgid "WordPress Repository" 228 | msgstr "WordPress Repository" 229 | 230 | #: class-tgm-plugin-activation.php:2388 231 | msgid "External Source" 232 | msgstr "Fonte esterna " 233 | 234 | #: class-tgm-plugin-activation.php:2391 235 | msgid "Pre-Packaged" 236 | msgstr "Pre-Packaged" 237 | 238 | #: class-tgm-plugin-activation.php:2408 239 | msgid "Not Installed" 240 | msgstr "Non installato" 241 | 242 | #: class-tgm-plugin-activation.php:2412 243 | msgid "Installed But Not Activated" 244 | msgstr "Installato ma non attivato" 245 | 246 | #: class-tgm-plugin-activation.php:2414 247 | msgid "Active" 248 | msgstr "Attiva" 249 | 250 | #: class-tgm-plugin-activation.php:2420 251 | msgid "Required Update not Available" 252 | msgstr "L'aggiornamento richiesto non è disponibile" 253 | 254 | #: class-tgm-plugin-activation.php:2423 255 | msgid "Requires Update" 256 | msgstr "Aggiornamento richiesto" 257 | 258 | #: class-tgm-plugin-activation.php:2426 259 | msgid "Update recommended" 260 | msgstr "Aggiornamento consigliato" 261 | 262 | #. translators: 1: install status, 2: update status 263 | #: class-tgm-plugin-activation.php:2435 264 | #, php-format 265 | msgctxt "Install/Update Status" 266 | msgid "%1$s, %2$s" 267 | msgstr "%1$s, %2$s" 268 | 269 | #. translators: 1: number of plugins. 270 | #: class-tgm-plugin-activation.php:2481 271 | #, php-format 272 | msgctxt "plugins" 273 | msgid "All (%s)" 274 | msgid_plural "All (%s)" 275 | msgstr[0] "Tutto (%s)" 276 | msgstr[1] "Tutti (%s)" 277 | 278 | #. translators: 1: number of plugins. 279 | #: class-tgm-plugin-activation.php:2485 280 | #, php-format 281 | msgid "To Install (%s)" 282 | msgid_plural "To Install (%s)" 283 | msgstr[0] "Installare il (%s)" 284 | msgstr[1] "Installare i (%s)" 285 | 286 | #. translators: 1: number of plugins. 287 | #: class-tgm-plugin-activation.php:2489 288 | #, php-format 289 | msgid "Update Available (%s)" 290 | msgid_plural "Update Available (%s)" 291 | msgstr[0] "Aggiornamento disponibile (%s)" 292 | msgstr[1] "Aggiornamenti disponibili (%s)" 293 | 294 | #. translators: 1: number of plugins. 295 | #: class-tgm-plugin-activation.php:2493 296 | #, php-format 297 | msgid "To Activate (%s)" 298 | msgid_plural "To Activate (%s)" 299 | msgstr[0] "Attivare il (%s)" 300 | msgstr[1] "Attivare i (%s)" 301 | 302 | #: class-tgm-plugin-activation.php:2575 303 | msgctxt "as in: \"version nr unknown\"" 304 | msgid "unknown" 305 | msgstr "sconosciuto" 306 | 307 | #: class-tgm-plugin-activation.php:2583 308 | msgid "Installed version:" 309 | msgstr "Versione installata:" 310 | 311 | #: class-tgm-plugin-activation.php:2591 312 | msgid "Minimum required version:" 313 | msgstr "Versione minima richiesta:" 314 | 315 | #: class-tgm-plugin-activation.php:2603 316 | msgid "Available version:" 317 | msgstr "Versione disponibile:" 318 | 319 | #: class-tgm-plugin-activation.php:2626 320 | msgid "No plugins to install, update or activate." 321 | msgstr "Nessun plugin da installare, aggiornare o attivare." 322 | 323 | #: class-tgm-plugin-activation.php:2640 324 | msgid "Plugin" 325 | msgstr "Plugin (estensione)" 326 | 327 | #: class-tgm-plugin-activation.php:2641 328 | msgid "Source" 329 | msgstr "Sorgente" 330 | 331 | #: class-tgm-plugin-activation.php:2642 332 | msgid "Type" 333 | msgstr "Typo" 334 | 335 | #: class-tgm-plugin-activation.php:2646 336 | msgid "Version" 337 | msgstr "Versione" 338 | 339 | #: class-tgm-plugin-activation.php:2647 340 | msgid "Status" 341 | msgstr "Stato" 342 | 343 | #. translators: %2$s: plugin name in screen reader markup 344 | #: class-tgm-plugin-activation.php:2696 345 | #, php-format 346 | msgid "Install %2$s" 347 | msgstr "Installa %2$s" 348 | 349 | #. translators: %2$s: plugin name in screen reader markup 350 | #: class-tgm-plugin-activation.php:2701 351 | #, php-format 352 | msgid "Update %2$s" 353 | msgstr "Aggiorna %2$s" 354 | 355 | #. translators: %2$s: plugin name in screen reader markup 356 | #: class-tgm-plugin-activation.php:2707 357 | #, php-format 358 | msgid "Activate %2$s" 359 | msgstr "Attiva %2$s" 360 | 361 | #: class-tgm-plugin-activation.php:2777 362 | msgid "Upgrade message from the plugin author:" 363 | msgstr "Messaggio di aggiornamento dall'autore del plugin:" 364 | 365 | #: class-tgm-plugin-activation.php:2810 366 | msgid "Install" 367 | msgstr "Installa" 368 | 369 | #: class-tgm-plugin-activation.php:2816 370 | msgid "Update" 371 | msgstr "Aggiornare" 372 | 373 | #: class-tgm-plugin-activation.php:2819 374 | msgid "Activate" 375 | msgstr "Attivare" 376 | 377 | #: class-tgm-plugin-activation.php:2850 378 | msgid "No plugins were selected to be installed. No action taken." 379 | msgstr "" 380 | "Nessun plugin è stato selezionato per l'installazione. L'azione non è stata " 381 | "eseguita" 382 | 383 | #: class-tgm-plugin-activation.php:2852 384 | msgid "No plugins were selected to be updated. No action taken." 385 | msgstr "" 386 | "Nessun plugin è stato selezionato per l'aggiornamento. L'azione non è stata " 387 | "eseguita" 388 | 389 | #: class-tgm-plugin-activation.php:2893 390 | msgid "No plugins are available to be installed at this time." 391 | msgstr "Nessun plugin è disponibile per l'installazione. " 392 | 393 | #: class-tgm-plugin-activation.php:2895 394 | msgid "No plugins are available to be updated at this time." 395 | msgstr "Nessun plugin è al momento disponibile per l'aggiornamento. " 396 | 397 | #: class-tgm-plugin-activation.php:3001 398 | msgid "No plugins were selected to be activated. No action taken." 399 | msgstr "" 400 | "Nessun plugin è stato selezionato per l'attivazione. L'azione non è stata " 401 | "eseguita. " 402 | 403 | #: class-tgm-plugin-activation.php:3027 404 | msgid "No plugins are available to be activated at this time." 405 | msgstr "Nessun plugin è disponibile per l'attivazione. " 406 | 407 | #: class-tgm-plugin-activation.php:3251 408 | msgid "Plugin activation failed." 409 | msgstr "Attivazione plugin fallita" 410 | 411 | #. translators: 1: plugin name, 2: action number 3: total number of actions. 412 | #: class-tgm-plugin-activation.php:3591 413 | #, php-format 414 | msgid "Updating Plugin %1$s (%2$d/%3$d)" 415 | msgstr "Aggiornamento plugin %1$s (%2$d/%3$d)" 416 | 417 | #. translators: 1: plugin name, 2: error message. 418 | #: class-tgm-plugin-activation.php:3594 419 | #, php-format 420 | msgid "An error occurred while installing %1$s: %2$s." 421 | msgstr "Errore durante l'installazione %1$s: %2$s." 422 | 423 | #. translators: 1: plugin name. 424 | #: class-tgm-plugin-activation.php:3596 425 | #, php-format 426 | msgid "The installation of %1$s failed." 427 | msgstr "L'installazione di %1$s fallita" 428 | 429 | #: class-tgm-plugin-activation.php:3600 430 | msgid "" 431 | "The installation and activation process is starting. This process may take a " 432 | "while on some hosts, so please be patient." 433 | msgstr "" 434 | "Il processo di installazione e l'attivazione sta iniziando. Questo processo " 435 | "può richiedere tempo su alcuni host, quindi per favore sii paziente." 436 | 437 | #. translators: 1: plugin name. 438 | #: class-tgm-plugin-activation.php:3602 439 | #, php-format 440 | msgid "%1$s installed and activated successfully." 441 | msgstr "%1$s installato e attivato con successo" 442 | 443 | #: class-tgm-plugin-activation.php:3602 class-tgm-plugin-activation.php:3610 444 | msgid "Show Details" 445 | msgstr "Mostra dettagli" 446 | 447 | #: class-tgm-plugin-activation.php:3602 class-tgm-plugin-activation.php:3610 448 | msgid "Hide Details" 449 | msgstr "Nascondi dettagli" 450 | 451 | #: class-tgm-plugin-activation.php:3603 452 | msgid "All installations and activations have been completed." 453 | msgstr "Tutte le installazioni e le attivazioni sono state completate." 454 | 455 | #. translators: 1: plugin name, 2: action number 3: total number of actions. 456 | #: class-tgm-plugin-activation.php:3605 457 | #, php-format 458 | msgid "Installing and Activating Plugin %1$s (%2$d/%3$d)" 459 | msgstr "Installo e attivo plugin %1$s (%2$d/%3$d)" 460 | 461 | #: class-tgm-plugin-activation.php:3608 462 | msgid "" 463 | "The installation process is starting. This process may take a while on some " 464 | "hosts, so please be patient." 465 | msgstr "" 466 | "Il processo di installazione si avvia. Questo processo può richiedere tempo " 467 | "su alcuni host, quindi per favore sii paziente." 468 | 469 | #. translators: 1: plugin name. 470 | #: class-tgm-plugin-activation.php:3610 471 | #, php-format 472 | msgid "%1$s installed successfully." 473 | msgstr "%1$s installato con successo" 474 | 475 | #: class-tgm-plugin-activation.php:3611 476 | msgid "All installations have been completed." 477 | msgstr "Tutte le installazioni sono state completate." 478 | 479 | #. translators: 1: plugin name, 2: action number 3: total number of actions. 480 | #: class-tgm-plugin-activation.php:3613 481 | #, php-format 482 | msgid "Installing Plugin %1$s (%2$d/%3$d)" 483 | msgstr "Installazione Plugin %1$s (%2$d/%3$d)" 484 | -------------------------------------------------------------------------------- /themes/wds_headless/inc/tgm/languages/tgmpa-nl_NL.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebDevStudios/wds-headless-wordpress/eefaafb5ac6c92667096c70d8b85e934e848792d/themes/wds_headless/inc/tgm/languages/tgmpa-nl_NL.mo -------------------------------------------------------------------------------- /themes/wds_headless/inc/tgm/languages/tgmpa-pt_BR.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebDevStudios/wds-headless-wordpress/eefaafb5ac6c92667096c70d8b85e934e848792d/themes/wds_headless/inc/tgm/languages/tgmpa-pt_BR.mo -------------------------------------------------------------------------------- /themes/wds_headless/inc/tgm/languages/tgmpa-ro_RO.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebDevStudios/wds-headless-wordpress/eefaafb5ac6c92667096c70d8b85e934e848792d/themes/wds_headless/inc/tgm/languages/tgmpa-ro_RO.mo -------------------------------------------------------------------------------- /themes/wds_headless/inc/tgm/languages/tgmpa-ru_RU.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebDevStudios/wds-headless-wordpress/eefaafb5ac6c92667096c70d8b85e934e848792d/themes/wds_headless/inc/tgm/languages/tgmpa-ru_RU.mo -------------------------------------------------------------------------------- /themes/wds_headless/inc/tgm/languages/tgmpa-sr_RS.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebDevStudios/wds-headless-wordpress/eefaafb5ac6c92667096c70d8b85e934e848792d/themes/wds_headless/inc/tgm/languages/tgmpa-sr_RS.mo -------------------------------------------------------------------------------- /themes/wds_headless/inc/tgm/languages/tgmpa-sv_SE.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebDevStudios/wds-headless-wordpress/eefaafb5ac6c92667096c70d8b85e934e848792d/themes/wds_headless/inc/tgm/languages/tgmpa-sv_SE.mo -------------------------------------------------------------------------------- /themes/wds_headless/inc/tgm/languages/tgmpa-sv_SE.po: -------------------------------------------------------------------------------- 1 | # Translation of TGM Plugin Activation in Swedish (Sweden) 2 | # This file is distributed under the same license as the TGMPA package. 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: TGM Plugin Activation v2.6.1\n" 6 | "POT-Creation-Date: 2016-05-19 03:05+0200\n" 7 | "PO-Revision-Date: 2016-05-19 03:05+0200\n" 8 | "Last-Translator: \n" 9 | "Language-Team: TGMPA\n" 10 | "Language: sv_SE\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 15 | "X-Generator: Poedit 1.8.7\n" 16 | 17 | #: class-tgm-plugin-activation.php:334 18 | msgid "Install Required Plugins" 19 | msgstr "Installera obligatoriska tillägg" 20 | 21 | #: class-tgm-plugin-activation.php:335 22 | msgid "Install Plugins" 23 | msgstr "Installera tillägg" 24 | 25 | #. translators: %s: plugin name. 26 | #: class-tgm-plugin-activation.php:337 27 | #, php-format 28 | msgid "Installing Plugin: %s" 29 | msgstr "Installerar tillägg: %s" 30 | 31 | #. translators: %s: plugin name. 32 | #: class-tgm-plugin-activation.php:339 33 | #, php-format 34 | msgid "Updating Plugin: %s" 35 | msgstr "" 36 | 37 | #: class-tgm-plugin-activation.php:340 38 | msgid "Something went wrong with the plugin API." 39 | msgstr "Något gick fel med tilläggets API." 40 | 41 | #. translators: 1: plugin name(s). 42 | #: class-tgm-plugin-activation.php:343 43 | #, php-format 44 | msgid "This theme requires the following plugin: %1$s." 45 | msgid_plural "This theme requires the following plugins: %1$s." 46 | msgstr[0] "Detta tema kräver följande tillägg: %1$s." 47 | msgstr[1] "Detta tema kräver följande tillägg: %1$s." 48 | 49 | #. translators: 1: plugin name(s). 50 | #: class-tgm-plugin-activation.php:349 51 | #, php-format 52 | msgid "This theme recommends the following plugin: %1$s." 53 | msgid_plural "This theme recommends the following plugins: %1$s." 54 | msgstr[0] "Detta tema rekommenderar följande tillägg: %1$s." 55 | msgstr[1] "Detta tema rekommenderar följande tillägg: %1$s." 56 | 57 | #. translators: 1: plugin name(s). 58 | #: class-tgm-plugin-activation.php:355 59 | #, php-format 60 | msgid "" 61 | "The following plugin needs to be updated to its latest version to ensure " 62 | "maximum compatibility with this theme: %1$s." 63 | msgid_plural "" 64 | "The following plugins need to be updated to their latest version to ensure " 65 | "maximum compatibility with this theme: %1$s." 66 | msgstr[0] "" 67 | "Följande tillägget behöver uppdateras till den senaste versionen för att " 68 | "säkerställa maximal kompatibilitet med detta tema: %1$s." 69 | msgstr[1] "" 70 | "Följande tillägget behöver uppdateras till den senaste versionen för att " 71 | "säkerställa maximal kompatibilitet med detta tema: %1$s." 72 | 73 | #. translators: 1: plugin name(s). 74 | #: class-tgm-plugin-activation.php:361 75 | #, php-format 76 | msgid "There is an update available for: %1$s." 77 | msgid_plural "There are updates available for the following plugins: %1$s." 78 | msgstr[0] "Det finns en uppdatering tillgänglig för: %1$s." 79 | msgstr[1] "Det finns uppdateringar tillgängliga för de följande tillägg: %1$s." 80 | 81 | #. translators: 1: plugin name(s). 82 | #: class-tgm-plugin-activation.php:367 83 | #, php-format 84 | msgid "The following required plugin is currently inactive: %1$s." 85 | msgid_plural "The following required plugins are currently inactive: %1$s." 86 | msgstr[0] "Följande obligatoriska tillägg är för närvarande inaktivt: %1$s." 87 | msgstr[1] "Följande obligatoriska tillägg är för närvarande inaktiva: %1$s." 88 | 89 | #. translators: 1: plugin name(s). 90 | #: class-tgm-plugin-activation.php:373 91 | #, php-format 92 | msgid "The following recommended plugin is currently inactive: %1$s." 93 | msgid_plural "The following recommended plugins are currently inactive: %1$s." 94 | msgstr[0] "Följande rekommenderade tillägg är för närvarande inaktivt: %1$s." 95 | msgstr[1] "Följande rekommenderade tillägg är för närvarande inaktiva: %1$s." 96 | 97 | #: class-tgm-plugin-activation.php:378 98 | msgid "Begin installing plugin" 99 | msgid_plural "Begin installing plugins" 100 | msgstr[0] "Installera tillägg" 101 | msgstr[1] "Installera tillägg" 102 | 103 | #: class-tgm-plugin-activation.php:383 104 | msgid "Begin updating plugin" 105 | msgid_plural "Begin updating plugins" 106 | msgstr[0] "Uppdatera tillägg" 107 | msgstr[1] "Uppdatera tillägg" 108 | 109 | #: class-tgm-plugin-activation.php:388 110 | msgid "Begin activating plugin" 111 | msgid_plural "Begin activating plugins" 112 | msgstr[0] "Aktivera tillägg" 113 | msgstr[1] "Aktivera tillägg" 114 | 115 | #: class-tgm-plugin-activation.php:392 116 | msgid "Return to Required Plugins Installer" 117 | msgstr "Tillbaka" 118 | 119 | #: class-tgm-plugin-activation.php:393 class-tgm-plugin-activation.php:920 120 | #: class-tgm-plugin-activation.php:2626 class-tgm-plugin-activation.php:3673 121 | msgid "Return to the Dashboard" 122 | msgstr "Tillbaka till panelen" 123 | 124 | #: class-tgm-plugin-activation.php:394 class-tgm-plugin-activation.php:3252 125 | msgid "Plugin activated successfully." 126 | msgstr "Tillägget har aktiverats utan fel." 127 | 128 | #: class-tgm-plugin-activation.php:395 class-tgm-plugin-activation.php:3045 129 | msgid "The following plugin was activated successfully:" 130 | msgid_plural "The following plugins were activated successfully:" 131 | msgstr[0] "Följande tillägg har aktiverats utan fel: " 132 | msgstr[1] "Följande tillägg har aktiverats utan fel: " 133 | 134 | #. translators: 1: plugin name. 135 | #: class-tgm-plugin-activation.php:397 136 | #, php-format 137 | msgid "No action taken. Plugin %1$s was already active." 138 | msgstr "Ingen åtgärd utfördes. Tillägg %1$s är redan aktivt." 139 | 140 | #. translators: 1: plugin name. 141 | #: class-tgm-plugin-activation.php:399 142 | #, php-format 143 | msgid "" 144 | "Plugin not activated. A higher version of %s is needed for this theme. " 145 | "Please update the plugin." 146 | msgstr "" 147 | "Tillägg aktiverats inte. En nyare version av %s behövs för temat. Var god " 148 | "uppdatera tillägget." 149 | 150 | #. translators: 1: dashboard link. 151 | #: class-tgm-plugin-activation.php:401 152 | #, php-format 153 | msgid "All plugins installed and activated successfully. %1$s" 154 | msgstr "Alla tillägg installerades och aktiverades utan fel. %1$s" 155 | 156 | #: class-tgm-plugin-activation.php:402 157 | msgid "Dismiss this notice" 158 | msgstr "Avfärda" 159 | 160 | #: class-tgm-plugin-activation.php:403 161 | msgid "" 162 | "There are one or more required or recommended plugins to install, update or " 163 | "activate." 164 | msgstr "" 165 | 166 | #: class-tgm-plugin-activation.php:404 167 | msgid "Please contact the administrator of this site for help." 168 | msgstr "Var god kontakta hemsidans administratör för att få hjälp." 169 | 170 | #: class-tgm-plugin-activation.php:607 171 | msgid "This plugin needs to be updated to be compatible with your theme." 172 | msgstr "" 173 | "Detta tillägg behöver uppdateras för att vara kompatibelt med ditt tema." 174 | 175 | #: class-tgm-plugin-activation.php:608 176 | msgid "Update Required" 177 | msgstr "Uppdatering behövs" 178 | 179 | #: class-tgm-plugin-activation.php:725 180 | msgid "Set the parent_slug config variable instead." 181 | msgstr "Använd parent_slug konfigurationsvariabelen istället." 182 | 183 | #: class-tgm-plugin-activation.php:1027 184 | msgid "" 185 | "The remote plugin package does not contain a folder with the desired slug " 186 | "and renaming did not work." 187 | msgstr "" 188 | "Tilläggspaketet på servern innehåller ej en mapp som har önskad slug och det " 189 | "gick inte att byta namnet." 190 | 191 | #: class-tgm-plugin-activation.php:1027 class-tgm-plugin-activation.php:1030 192 | msgid "" 193 | "Please contact the plugin provider and ask them to package their plugin " 194 | "according to the WordPress guidelines." 195 | msgstr "" 196 | "Var god kontakta tilläggsleverantör och begära att de ska förpacka deras " 197 | "tillägg enligt WordPressriktlinjerna." 198 | 199 | #: class-tgm-plugin-activation.php:1030 200 | msgid "" 201 | "The remote plugin package consists of more than one file, but the files are " 202 | "not packaged in a folder." 203 | msgstr "" 204 | "Tilläggspaketet på servern bestå av mer än en fil, men filerna förpackats " 205 | "inte i en mapp." 206 | 207 | #: class-tgm-plugin-activation.php:1214 class-tgm-plugin-activation.php:3041 208 | msgctxt "plugin A *and* plugin B" 209 | msgid "and" 210 | msgstr "och" 211 | 212 | #. translators: %s: version number 213 | #: class-tgm-plugin-activation.php:2075 214 | #, php-format 215 | msgid "TGMPA v%s" 216 | msgstr "TGMPA v%s" 217 | 218 | #: class-tgm-plugin-activation.php:2366 219 | msgid "Required" 220 | msgstr "Behövde" 221 | 222 | #: class-tgm-plugin-activation.php:2369 223 | msgid "Recommended" 224 | msgstr "Rekommenderade" 225 | 226 | #: class-tgm-plugin-activation.php:2385 227 | msgid "WordPress Repository" 228 | msgstr "WordPress Repository" 229 | 230 | #: class-tgm-plugin-activation.php:2388 231 | msgid "External Source" 232 | msgstr "Extern källa" 233 | 234 | #: class-tgm-plugin-activation.php:2391 235 | msgid "Pre-Packaged" 236 | msgstr "Förpackad" 237 | 238 | #: class-tgm-plugin-activation.php:2408 239 | msgid "Not Installed" 240 | msgstr "Ej installerad" 241 | 242 | #: class-tgm-plugin-activation.php:2412 243 | msgid "Installed But Not Activated" 244 | msgstr "Installerad men inte aktiverad" 245 | 246 | #: class-tgm-plugin-activation.php:2414 247 | msgid "Active" 248 | msgstr "Aktiv" 249 | 250 | #: class-tgm-plugin-activation.php:2420 251 | msgid "Required Update not Available" 252 | msgstr "Obligatorisk uppdatering saknas" 253 | 254 | #: class-tgm-plugin-activation.php:2423 255 | msgid "Requires Update" 256 | msgstr "Uppdatering behövs" 257 | 258 | #: class-tgm-plugin-activation.php:2426 259 | msgid "Update recommended" 260 | msgstr "Uppdatering rekommenderades" 261 | 262 | #. translators: 1: install status, 2: update status 263 | #: class-tgm-plugin-activation.php:2435 264 | #, php-format 265 | msgctxt "Install/Update Status" 266 | msgid "%1$s, %2$s" 267 | msgstr "%1$s, %2$s" 268 | 269 | #. translators: 1: number of plugins. 270 | #: class-tgm-plugin-activation.php:2481 271 | #, php-format 272 | msgctxt "plugins" 273 | msgid "All (%s)" 274 | msgid_plural "All (%s)" 275 | msgstr[0] "Alla (%s)" 276 | msgstr[1] "Alla (%s)" 277 | 278 | #. translators: 1: number of plugins. 279 | #: class-tgm-plugin-activation.php:2485 280 | #, php-format 281 | msgid "To Install (%s)" 282 | msgid_plural "To Install (%s)" 283 | msgstr[0] "För att installera (%s)" 284 | msgstr[1] "För att installera (%s)" 285 | 286 | #. translators: 1: number of plugins. 287 | #: class-tgm-plugin-activation.php:2489 288 | #, php-format 289 | msgid "Update Available (%s)" 290 | msgid_plural "Update Available (%s)" 291 | msgstr[0] "Uppdatering tillgänglig (%s)" 292 | msgstr[1] "Uppdatering tillgänglig (%s)" 293 | 294 | #. translators: 1: number of plugins. 295 | #: class-tgm-plugin-activation.php:2493 296 | #, php-format 297 | msgid "To Activate (%s)" 298 | msgid_plural "To Activate (%s)" 299 | msgstr[0] "För att aktivera (%s)" 300 | msgstr[1] "För att aktivera (%s)" 301 | 302 | #: class-tgm-plugin-activation.php:2575 303 | msgctxt "as in: \"version nr unknown\"" 304 | msgid "unknown" 305 | msgstr "okänt" 306 | 307 | #: class-tgm-plugin-activation.php:2583 308 | msgid "Installed version:" 309 | msgstr "Installerade version:" 310 | 311 | #: class-tgm-plugin-activation.php:2591 312 | msgid "Minimum required version:" 313 | msgstr "Lägsta version som stöds:" 314 | 315 | #: class-tgm-plugin-activation.php:2603 316 | msgid "Available version:" 317 | msgstr "Tillgänglig version:" 318 | 319 | #: class-tgm-plugin-activation.php:2626 320 | msgid "No plugins to install, update or activate." 321 | msgstr "Inga tillägg att installera, uppdatera eller aktivera." 322 | 323 | #: class-tgm-plugin-activation.php:2640 324 | msgid "Plugin" 325 | msgstr "Tillägg" 326 | 327 | #: class-tgm-plugin-activation.php:2641 328 | msgid "Source" 329 | msgstr "Källa" 330 | 331 | #: class-tgm-plugin-activation.php:2642 332 | msgid "Type" 333 | msgstr "Typ" 334 | 335 | #: class-tgm-plugin-activation.php:2646 336 | msgid "Version" 337 | msgstr "Version" 338 | 339 | #: class-tgm-plugin-activation.php:2647 340 | msgid "Status" 341 | msgstr "Status" 342 | 343 | #. translators: %2$s: plugin name in screen reader markup 344 | #: class-tgm-plugin-activation.php:2696 345 | #, php-format 346 | msgid "Install %2$s" 347 | msgstr "Installera %2$s" 348 | 349 | #. translators: %2$s: plugin name in screen reader markup 350 | #: class-tgm-plugin-activation.php:2701 351 | #, php-format 352 | msgid "Update %2$s" 353 | msgstr "Uppdatera %2$s" 354 | 355 | #. translators: %2$s: plugin name in screen reader markup 356 | #: class-tgm-plugin-activation.php:2707 357 | #, php-format 358 | msgid "Activate %2$s" 359 | msgstr "Aktivera %2$s" 360 | 361 | #: class-tgm-plugin-activation.php:2777 362 | msgid "Upgrade message from the plugin author:" 363 | msgstr "Uppgraderingsmeddelande från tilläggets utvecklare:" 364 | 365 | #: class-tgm-plugin-activation.php:2810 366 | msgid "Install" 367 | msgstr "Installera" 368 | 369 | #: class-tgm-plugin-activation.php:2816 370 | msgid "Update" 371 | msgstr "Uppdatera" 372 | 373 | #: class-tgm-plugin-activation.php:2819 374 | msgid "Activate" 375 | msgstr "Aktivera" 376 | 377 | #: class-tgm-plugin-activation.php:2850 378 | msgid "No plugins were selected to be installed. No action taken." 379 | msgstr "Inga tillägg valdes för att installera. Ingen åtgärd utfördes." 380 | 381 | #: class-tgm-plugin-activation.php:2852 382 | msgid "No plugins were selected to be updated. No action taken." 383 | msgstr "Inga tillägg valdes för att uppdatera. Ingen åtgärd utfördes." 384 | 385 | #: class-tgm-plugin-activation.php:2893 386 | msgid "No plugins are available to be installed at this time." 387 | msgstr "Inga tillägg är tillgängliga för att installera vid denna tidpunkt." 388 | 389 | #: class-tgm-plugin-activation.php:2895 390 | msgid "No plugins are available to be updated at this time." 391 | msgstr "Inga tillägg är tillgängliga för att uppdatera vid denna tidpunkt." 392 | 393 | #: class-tgm-plugin-activation.php:3001 394 | msgid "No plugins were selected to be activated. No action taken." 395 | msgstr "Inga tillägg valdes för att aktivera. Ingen åtgärd utfördes." 396 | 397 | #: class-tgm-plugin-activation.php:3027 398 | msgid "No plugins are available to be activated at this time." 399 | msgstr "Inga tillägg är tillgängliga för att aktivera vid denna tidpunkt." 400 | 401 | #: class-tgm-plugin-activation.php:3251 402 | msgid "Plugin activation failed." 403 | msgstr "Aktivering av tillägg lyckades ej." 404 | 405 | #. translators: 1: plugin name, 2: action number 3: total number of actions. 406 | #: class-tgm-plugin-activation.php:3591 407 | #, php-format 408 | msgid "Updating Plugin %1$s (%2$d/%3$d)" 409 | msgstr "Uppdaterar tillägg %1$s (%2$d/%3$d)" 410 | 411 | #. translators: 1: plugin name, 2: error message. 412 | #: class-tgm-plugin-activation.php:3594 413 | #, php-format 414 | msgid "An error occurred while installing %1$s: %2$s." 415 | msgstr "Ett fel uppstöd under installation av %1$s: %2$s." 416 | 417 | #. translators: 1: plugin name. 418 | #: class-tgm-plugin-activation.php:3596 419 | #, php-format 420 | msgid "The installation of %1$s failed." 421 | msgstr "Installationen av %1$s lyckades ej." 422 | 423 | #: class-tgm-plugin-activation.php:3600 424 | msgid "" 425 | "The installation and activation process is starting. This process may take a " 426 | "while on some hosts, so please be patient." 427 | msgstr "" 428 | "Installation- och aktiveringsprocess påbörjar. Denna process kan ta lite tid " 429 | "på vissa värdar - var god vänta." 430 | 431 | #. translators: 1: plugin name. 432 | #: class-tgm-plugin-activation.php:3602 433 | #, php-format 434 | msgid "%1$s installed and activated successfully." 435 | msgstr "%1$s installerades och aktiverades utan fel." 436 | 437 | #: class-tgm-plugin-activation.php:3602 class-tgm-plugin-activation.php:3610 438 | msgid "Show Details" 439 | msgstr "Visa detaljer" 440 | 441 | #: class-tgm-plugin-activation.php:3602 class-tgm-plugin-activation.php:3610 442 | msgid "Hide Details" 443 | msgstr "Dölja detaljer" 444 | 445 | #: class-tgm-plugin-activation.php:3603 446 | msgid "All installations and activations have been completed." 447 | msgstr "Alla installationer och aktiveringar har utförts." 448 | 449 | #. translators: 1: plugin name, 2: action number 3: total number of actions. 450 | #: class-tgm-plugin-activation.php:3605 451 | #, php-format 452 | msgid "Installing and Activating Plugin %1$s (%2$d/%3$d)" 453 | msgstr "Installerar och aktiverar tillägg %1$s (%2$d/%3$d)" 454 | 455 | #: class-tgm-plugin-activation.php:3608 456 | msgid "" 457 | "The installation process is starting. This process may take a while on some " 458 | "hosts, so please be patient." 459 | msgstr "" 460 | "Installationsprocessen påbörjar. Denna process kan ta lite tid på vissa " 461 | "värdar - var god vänta." 462 | 463 | #. translators: 1: plugin name. 464 | #: class-tgm-plugin-activation.php:3610 465 | #, php-format 466 | msgid "%1$s installed successfully." 467 | msgstr "%1$s installerades utan fel." 468 | 469 | #: class-tgm-plugin-activation.php:3611 470 | msgid "All installations have been completed." 471 | msgstr "Alla installationer har utförts." 472 | 473 | #. translators: 1: plugin name, 2: action number 3: total number of actions. 474 | #: class-tgm-plugin-activation.php:3613 475 | #, php-format 476 | msgid "Installing Plugin %1$s (%2$d/%3$d)" 477 | msgstr "Installerar tillägg %1$s (%2$d/%3$d)" 478 | -------------------------------------------------------------------------------- /themes/wds_headless/inc/tgm/languages/tgmpa.pot: -------------------------------------------------------------------------------- 1 | #, fuzzy 2 | msgid "" 3 | msgstr "" 4 | "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" 5 | "Project-Id-Version: TGM Plugin Activation\n" 6 | "POT-Creation-Date: 2016-05-19 02:57+0200\n" 7 | "PO-Revision-Date: 2016-01-04 11:07+0100\n" 8 | "Last-Translator: Juliette Reinders Folmer \n" 9 | "Language-Team: TGMPA\n" 10 | "MIME-Version: 1.0\n" 11 | "Content-Type: text/plain; charset=UTF-8\n" 12 | "Content-Transfer-Encoding: 8bit\n" 13 | "X-Generator: Poedit 1.8.7\n" 14 | "X-Poedit-Basepath: ..\n" 15 | "X-Poedit-WPHeader: class-tgm-plugin-activation.php\n" 16 | "X-Poedit-SourceCharset: UTF-8\n" 17 | "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;" 18 | "esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;" 19 | "_nx_noop:3c,1,2;__ngettext_noop:1,2\n" 20 | "X-Poedit-SearchPath-0: .\n" 21 | "X-Poedit-SearchPathExcluded-0: *.js\n" 22 | "X-Poedit-SearchPathExcluded-1: example.php\n" 23 | 24 | #: class-tgm-plugin-activation.php:334 25 | msgid "Install Required Plugins" 26 | msgstr "" 27 | 28 | #: class-tgm-plugin-activation.php:335 29 | msgid "Install Plugins" 30 | msgstr "" 31 | 32 | #. translators: %s: plugin name. 33 | #: class-tgm-plugin-activation.php:337 34 | #, php-format 35 | msgid "Installing Plugin: %s" 36 | msgstr "" 37 | 38 | #. translators: %s: plugin name. 39 | #: class-tgm-plugin-activation.php:339 40 | #, php-format 41 | msgid "Updating Plugin: %s" 42 | msgstr "" 43 | 44 | #: class-tgm-plugin-activation.php:340 45 | msgid "Something went wrong with the plugin API." 46 | msgstr "" 47 | 48 | #. translators: 1: plugin name(s). 49 | #: class-tgm-plugin-activation.php:343 50 | #, php-format 51 | msgid "This theme requires the following plugin: %1$s." 52 | msgid_plural "This theme requires the following plugins: %1$s." 53 | msgstr[0] "" 54 | msgstr[1] "" 55 | 56 | #. translators: 1: plugin name(s). 57 | #: class-tgm-plugin-activation.php:349 58 | #, php-format 59 | msgid "This theme recommends the following plugin: %1$s." 60 | msgid_plural "This theme recommends the following plugins: %1$s." 61 | msgstr[0] "" 62 | msgstr[1] "" 63 | 64 | #. translators: 1: plugin name(s). 65 | #: class-tgm-plugin-activation.php:355 66 | #, php-format 67 | msgid "" 68 | "The following plugin needs to be updated to its latest version to ensure " 69 | "maximum compatibility with this theme: %1$s." 70 | msgid_plural "" 71 | "The following plugins need to be updated to their latest version to ensure " 72 | "maximum compatibility with this theme: %1$s." 73 | msgstr[0] "" 74 | msgstr[1] "" 75 | 76 | #. translators: 1: plugin name(s). 77 | #: class-tgm-plugin-activation.php:361 78 | #, php-format 79 | msgid "There is an update available for: %1$s." 80 | msgid_plural "There are updates available for the following plugins: %1$s." 81 | msgstr[0] "" 82 | msgstr[1] "" 83 | 84 | #. translators: 1: plugin name(s). 85 | #: class-tgm-plugin-activation.php:367 86 | #, php-format 87 | msgid "The following required plugin is currently inactive: %1$s." 88 | msgid_plural "The following required plugins are currently inactive: %1$s." 89 | msgstr[0] "" 90 | msgstr[1] "" 91 | 92 | #. translators: 1: plugin name(s). 93 | #: class-tgm-plugin-activation.php:373 94 | #, php-format 95 | msgid "The following recommended plugin is currently inactive: %1$s." 96 | msgid_plural "The following recommended plugins are currently inactive: %1$s." 97 | msgstr[0] "" 98 | msgstr[1] "" 99 | 100 | #: class-tgm-plugin-activation.php:378 101 | msgid "Begin installing plugin" 102 | msgid_plural "Begin installing plugins" 103 | msgstr[0] "" 104 | msgstr[1] "" 105 | 106 | #: class-tgm-plugin-activation.php:383 107 | msgid "Begin updating plugin" 108 | msgid_plural "Begin updating plugins" 109 | msgstr[0] "" 110 | msgstr[1] "" 111 | 112 | #: class-tgm-plugin-activation.php:388 113 | msgid "Begin activating plugin" 114 | msgid_plural "Begin activating plugins" 115 | msgstr[0] "" 116 | msgstr[1] "" 117 | 118 | #: class-tgm-plugin-activation.php:392 119 | msgid "Return to Required Plugins Installer" 120 | msgstr "" 121 | 122 | #: class-tgm-plugin-activation.php:393 class-tgm-plugin-activation.php:920 123 | #: class-tgm-plugin-activation.php:2626 class-tgm-plugin-activation.php:3673 124 | msgid "Return to the Dashboard" 125 | msgstr "" 126 | 127 | #: class-tgm-plugin-activation.php:394 class-tgm-plugin-activation.php:3252 128 | msgid "Plugin activated successfully." 129 | msgstr "" 130 | 131 | #: class-tgm-plugin-activation.php:395 class-tgm-plugin-activation.php:3045 132 | msgid "The following plugin was activated successfully:" 133 | msgid_plural "The following plugins were activated successfully:" 134 | msgstr[0] "" 135 | msgstr[1] "" 136 | 137 | #. translators: 1: plugin name. 138 | #: class-tgm-plugin-activation.php:397 139 | #, php-format 140 | msgid "No action taken. Plugin %1$s was already active." 141 | msgstr "" 142 | 143 | #. translators: 1: plugin name. 144 | #: class-tgm-plugin-activation.php:399 145 | #, php-format 146 | msgid "" 147 | "Plugin not activated. A higher version of %s is needed for this theme. " 148 | "Please update the plugin." 149 | msgstr "" 150 | 151 | #. translators: 1: dashboard link. 152 | #: class-tgm-plugin-activation.php:401 153 | #, php-format 154 | msgid "All plugins installed and activated successfully. %1$s" 155 | msgstr "" 156 | 157 | #: class-tgm-plugin-activation.php:402 158 | msgid "Dismiss this notice" 159 | msgstr "" 160 | 161 | #: class-tgm-plugin-activation.php:403 162 | msgid "" 163 | "There are one or more required or recommended plugins to install, update or " 164 | "activate." 165 | msgstr "" 166 | 167 | #: class-tgm-plugin-activation.php:404 168 | msgid "Please contact the administrator of this site for help." 169 | msgstr "" 170 | 171 | #: class-tgm-plugin-activation.php:607 172 | msgid "This plugin needs to be updated to be compatible with your theme." 173 | msgstr "" 174 | 175 | #: class-tgm-plugin-activation.php:608 176 | msgid "Update Required" 177 | msgstr "" 178 | 179 | #: class-tgm-plugin-activation.php:725 180 | msgid "Set the parent_slug config variable instead." 181 | msgstr "" 182 | 183 | #: class-tgm-plugin-activation.php:1027 184 | msgid "" 185 | "The remote plugin package does not contain a folder with the desired slug " 186 | "and renaming did not work." 187 | msgstr "" 188 | 189 | #: class-tgm-plugin-activation.php:1027 class-tgm-plugin-activation.php:1030 190 | msgid "" 191 | "Please contact the plugin provider and ask them to package their plugin " 192 | "according to the WordPress guidelines." 193 | msgstr "" 194 | 195 | #: class-tgm-plugin-activation.php:1030 196 | msgid "" 197 | "The remote plugin package consists of more than one file, but the files are " 198 | "not packaged in a folder." 199 | msgstr "" 200 | 201 | #: class-tgm-plugin-activation.php:1214 class-tgm-plugin-activation.php:3041 202 | msgctxt "plugin A *and* plugin B" 203 | msgid "and" 204 | msgstr "" 205 | 206 | #. translators: %s: version number 207 | #: class-tgm-plugin-activation.php:2075 208 | #, php-format 209 | msgid "TGMPA v%s" 210 | msgstr "" 211 | 212 | #: class-tgm-plugin-activation.php:2366 213 | msgid "Required" 214 | msgstr "" 215 | 216 | #: class-tgm-plugin-activation.php:2369 217 | msgid "Recommended" 218 | msgstr "" 219 | 220 | #: class-tgm-plugin-activation.php:2385 221 | msgid "WordPress Repository" 222 | msgstr "" 223 | 224 | #: class-tgm-plugin-activation.php:2388 225 | msgid "External Source" 226 | msgstr "" 227 | 228 | #: class-tgm-plugin-activation.php:2391 229 | msgid "Pre-Packaged" 230 | msgstr "" 231 | 232 | #: class-tgm-plugin-activation.php:2408 233 | msgid "Not Installed" 234 | msgstr "" 235 | 236 | #: class-tgm-plugin-activation.php:2412 237 | msgid "Installed But Not Activated" 238 | msgstr "" 239 | 240 | #: class-tgm-plugin-activation.php:2414 241 | msgid "Active" 242 | msgstr "" 243 | 244 | #: class-tgm-plugin-activation.php:2420 245 | msgid "Required Update not Available" 246 | msgstr "" 247 | 248 | #: class-tgm-plugin-activation.php:2423 249 | msgid "Requires Update" 250 | msgstr "" 251 | 252 | #: class-tgm-plugin-activation.php:2426 253 | msgid "Update recommended" 254 | msgstr "" 255 | 256 | #. translators: 1: install status, 2: update status 257 | #: class-tgm-plugin-activation.php:2435 258 | #, php-format 259 | msgctxt "Install/Update Status" 260 | msgid "%1$s, %2$s" 261 | msgstr "" 262 | 263 | #. translators: 1: number of plugins. 264 | #: class-tgm-plugin-activation.php:2481 265 | #, php-format 266 | msgctxt "plugins" 267 | msgid "All (%s)" 268 | msgid_plural "All (%s)" 269 | msgstr[0] "" 270 | msgstr[1] "" 271 | 272 | #. translators: 1: number of plugins. 273 | #: class-tgm-plugin-activation.php:2485 274 | #, php-format 275 | msgid "To Install (%s)" 276 | msgid_plural "To Install (%s)" 277 | msgstr[0] "" 278 | msgstr[1] "" 279 | 280 | #. translators: 1: number of plugins. 281 | #: class-tgm-plugin-activation.php:2489 282 | #, php-format 283 | msgid "Update Available (%s)" 284 | msgid_plural "Update Available (%s)" 285 | msgstr[0] "" 286 | msgstr[1] "" 287 | 288 | #. translators: 1: number of plugins. 289 | #: class-tgm-plugin-activation.php:2493 290 | #, php-format 291 | msgid "To Activate (%s)" 292 | msgid_plural "To Activate (%s)" 293 | msgstr[0] "" 294 | msgstr[1] "" 295 | 296 | #: class-tgm-plugin-activation.php:2575 297 | msgctxt "as in: \"version nr unknown\"" 298 | msgid "unknown" 299 | msgstr "" 300 | 301 | #: class-tgm-plugin-activation.php:2583 302 | msgid "Installed version:" 303 | msgstr "" 304 | 305 | #: class-tgm-plugin-activation.php:2591 306 | msgid "Minimum required version:" 307 | msgstr "" 308 | 309 | #: class-tgm-plugin-activation.php:2603 310 | msgid "Available version:" 311 | msgstr "" 312 | 313 | #: class-tgm-plugin-activation.php:2626 314 | msgid "No plugins to install, update or activate." 315 | msgstr "" 316 | 317 | #: class-tgm-plugin-activation.php:2640 318 | msgid "Plugin" 319 | msgstr "" 320 | 321 | #: class-tgm-plugin-activation.php:2641 322 | msgid "Source" 323 | msgstr "" 324 | 325 | #: class-tgm-plugin-activation.php:2642 326 | msgid "Type" 327 | msgstr "" 328 | 329 | #: class-tgm-plugin-activation.php:2646 330 | msgid "Version" 331 | msgstr "" 332 | 333 | #: class-tgm-plugin-activation.php:2647 334 | msgid "Status" 335 | msgstr "" 336 | 337 | #. translators: %2$s: plugin name in screen reader markup 338 | #: class-tgm-plugin-activation.php:2696 339 | #, php-format 340 | msgid "Install %2$s" 341 | msgstr "" 342 | 343 | #. translators: %2$s: plugin name in screen reader markup 344 | #: class-tgm-plugin-activation.php:2701 345 | #, php-format 346 | msgid "Update %2$s" 347 | msgstr "" 348 | 349 | #. translators: %2$s: plugin name in screen reader markup 350 | #: class-tgm-plugin-activation.php:2707 351 | #, php-format 352 | msgid "Activate %2$s" 353 | msgstr "" 354 | 355 | #: class-tgm-plugin-activation.php:2777 356 | msgid "Upgrade message from the plugin author:" 357 | msgstr "" 358 | 359 | #: class-tgm-plugin-activation.php:2810 360 | msgid "Install" 361 | msgstr "" 362 | 363 | #: class-tgm-plugin-activation.php:2816 364 | msgid "Update" 365 | msgstr "" 366 | 367 | #: class-tgm-plugin-activation.php:2819 368 | msgid "Activate" 369 | msgstr "" 370 | 371 | #: class-tgm-plugin-activation.php:2850 372 | msgid "No plugins were selected to be installed. No action taken." 373 | msgstr "" 374 | 375 | #: class-tgm-plugin-activation.php:2852 376 | msgid "No plugins were selected to be updated. No action taken." 377 | msgstr "" 378 | 379 | #: class-tgm-plugin-activation.php:2893 380 | msgid "No plugins are available to be installed at this time." 381 | msgstr "" 382 | 383 | #: class-tgm-plugin-activation.php:2895 384 | msgid "No plugins are available to be updated at this time." 385 | msgstr "" 386 | 387 | #: class-tgm-plugin-activation.php:3001 388 | msgid "No plugins were selected to be activated. No action taken." 389 | msgstr "" 390 | 391 | #: class-tgm-plugin-activation.php:3027 392 | msgid "No plugins are available to be activated at this time." 393 | msgstr "" 394 | 395 | #: class-tgm-plugin-activation.php:3251 396 | msgid "Plugin activation failed." 397 | msgstr "" 398 | 399 | #. translators: 1: plugin name, 2: action number 3: total number of actions. 400 | #: class-tgm-plugin-activation.php:3591 401 | #, php-format 402 | msgid "Updating Plugin %1$s (%2$d/%3$d)" 403 | msgstr "" 404 | 405 | #. translators: 1: plugin name, 2: error message. 406 | #: class-tgm-plugin-activation.php:3594 407 | #, php-format 408 | msgid "An error occurred while installing %1$s: %2$s." 409 | msgstr "" 410 | 411 | #. translators: 1: plugin name. 412 | #: class-tgm-plugin-activation.php:3596 413 | #, php-format 414 | msgid "The installation of %1$s failed." 415 | msgstr "" 416 | 417 | #: class-tgm-plugin-activation.php:3600 418 | msgid "" 419 | "The installation and activation process is starting. This process may take a " 420 | "while on some hosts, so please be patient." 421 | msgstr "" 422 | 423 | #. translators: 1: plugin name. 424 | #: class-tgm-plugin-activation.php:3602 425 | #, php-format 426 | msgid "%1$s installed and activated successfully." 427 | msgstr "" 428 | 429 | #: class-tgm-plugin-activation.php:3602 class-tgm-plugin-activation.php:3610 430 | msgid "Show Details" 431 | msgstr "" 432 | 433 | #: class-tgm-plugin-activation.php:3602 class-tgm-plugin-activation.php:3610 434 | msgid "Hide Details" 435 | msgstr "" 436 | 437 | #: class-tgm-plugin-activation.php:3603 438 | msgid "All installations and activations have been completed." 439 | msgstr "" 440 | 441 | #. translators: 1: plugin name, 2: action number 3: total number of actions. 442 | #: class-tgm-plugin-activation.php:3605 443 | #, php-format 444 | msgid "Installing and Activating Plugin %1$s (%2$d/%3$d)" 445 | msgstr "" 446 | 447 | #: class-tgm-plugin-activation.php:3608 448 | msgid "" 449 | "The installation process is starting. This process may take a while on some " 450 | "hosts, so please be patient." 451 | msgstr "" 452 | 453 | #. translators: 1: plugin name. 454 | #: class-tgm-plugin-activation.php:3610 455 | #, php-format 456 | msgid "%1$s installed successfully." 457 | msgstr "" 458 | 459 | #: class-tgm-plugin-activation.php:3611 460 | msgid "All installations have been completed." 461 | msgstr "" 462 | 463 | #. translators: 1: plugin name, 2: action number 3: total number of actions. 464 | #: class-tgm-plugin-activation.php:3613 465 | #, php-format 466 | msgid "Installing Plugin %1$s (%2$d/%3$d)" 467 | msgstr "" 468 | -------------------------------------------------------------------------------- /themes/wds_headless/inc/tgm/tgm.php: -------------------------------------------------------------------------------- 1 | 'WPGraphQL for Advanced Custom Fields', 27 | 'slug' => 'wp-graphql-acf', 28 | 'source' => 'https://github.com/wp-graphql/wp-graphql-acf/archive/develop.zip', 29 | 'required' => true, 30 | ], 31 | [ 32 | 'name' => 'WPGraphQL Gutenberg', 33 | 'slug' => 'wp-graphql-gutenberg', 34 | 'source' => 'https://github.com/pristas-peter/wp-graphql-gutenberg/archive/develop.zip', 35 | 'required' => true, 36 | ], 37 | [ 38 | 'name' => 'WPGraphQL Tax Query', 39 | 'slug' => 'wp-graphql-tax-query', 40 | 'source' => 'https://github.com/wp-graphql/wp-graphql-tax-query/archive/develop.zip', 41 | 'required' => true, 42 | ], 43 | 44 | // Plugins from the WordPress Plugin Repository. 45 | [ 46 | 'name' => 'Advanced Custom Fields', 47 | 'slug' => 'advanced-custom-fields', 48 | 'is_callable' => 'acf', 49 | 'required' => true, 50 | ], 51 | [ 52 | 'name' => 'Custom Post Type UI', 53 | 'slug' => 'custom-post-type-ui', 54 | ], 55 | [ 56 | 'name' => 'Gutenberg', 57 | 'slug' => 'gutenberg', 58 | ], 59 | [ 60 | 'name' => 'Gutenberg Block Manager', 61 | 'slug' => 'block-manager', 62 | 'required' => true, 63 | ], 64 | [ 65 | 'name' => 'WordPress SEO by Yoast', 66 | 'slug' => 'wordpress-seo', 67 | 'is_callable' => 'wpseo_init', 68 | 'required' => true, 69 | ], 70 | [ 71 | 'name' => 'WPGraphQL', 72 | 'slug' => 'wp-graphql', 73 | 'required' => true, 74 | ], 75 | [ 76 | 'name' => 'WPGraphQL Yoast SEO Addon', 77 | 'slug' => 'add-wpgraphql-seo', 78 | 'required' => true, 79 | ], 80 | [ 81 | 'name' => 'WP Search with Algolia', 82 | 'slug' => 'wp-search-with-algolia', 83 | 'required' => true, 84 | ], 85 | ]; 86 | 87 | // Configuration settings. 88 | $config = [ 89 | 'id' => 'wds', // Unique ID for hashing notices for multiple instances of TGMPA. 90 | 'default_path' => '', // Default absolute path to bundled plugins. 91 | 'menu' => 'tgmpa-install-plugins', // Menu slug. 92 | 'parent_slug' => 'themes.php', // Parent menu slug. 93 | 'capability' => 'edit_theme_options', // Capability needed to view plugin install page, should be a capability associated with the parent menu used. 94 | 'has_notices' => true, // Show admin notices or not. 95 | 'dismissable' => true, // If false, a user cannot dismiss the nag message. 96 | 'dismiss_msg' => '', // If 'dismissable' is false, this message will be output at top of nag. 97 | 'is_automatic' => true, // Automatically activate plugins after installation or not. 98 | 'message' => '', // Message to output right before the plugins table. 99 | ]; 100 | 101 | tgmpa( $plugins, $config ); 102 | } 103 | add_action( 'tgmpa_register', 'wds_register_required_plugins' ); 104 | -------------------------------------------------------------------------------- /themes/wds_headless/inc/wordpress.php: -------------------------------------------------------------------------------- 1 | ' . $html . ''; 23 | } 24 | add_filter( 'embed_oembed_html', 'wds_embed_wrapper', 10, 4 ); 25 | 26 | /** 27 | * Create custom block category. 28 | * 29 | * @author WebDevStudios 30 | * @since 1.0 31 | * @param array $categories Current block categories. 32 | * @param object $post WP Post object. 33 | * @return array $categories 34 | */ 35 | function wds_block_category( $categories, $post ) { 36 | return array_merge( 37 | $categories, 38 | [ 39 | [ 40 | 'slug' => 'client', 41 | 'title' => esc_html__( 'Client Name', 'wds' ), 42 | ], 43 | ] 44 | ); 45 | } 46 | add_filter( 'block_categories', 'wds_block_category', 10, 2 ); 47 | 48 | /** 49 | * Customize the preview button in the WordPress admin to point to the headless client. 50 | * 51 | * @author WebDevStudios 52 | * @since 1.0 53 | * @param string $link WordPress preview link. 54 | * @param WP_Post $post Current post object. 55 | * @return string The headless WordPress preview link. 56 | */ 57 | function wds_set_headless_preview_link( string $link, WP_Post $post ) { 58 | if ( ! defined( 'HEADLESS_FRONTEND_URL' ) ) { 59 | return $link; 60 | } 61 | 62 | $base_url = HEADLESS_FRONTEND_URL; 63 | $slug = strlen( $post->post_name ) > 0 ? $post->post_name : sanitize_title( $post->post_title ); 64 | 65 | // Get GraphQL single name. 66 | $post_type = get_post_type_object( $post->post_type )->graphql_single_name ?? $post->post_type; 67 | 68 | // Preview link will have format: /api/preview?name=&id=&post_type=&token=. 69 | return add_query_arg( 70 | [ 71 | 'name' => $slug, 72 | 'id' => $post->ID, 73 | 'post_type' => $post_type, 74 | 'token' => defined( 'PREVIEW_SECRET_TOKEN' ) ? PREVIEW_SECRET_TOKEN : '', 75 | ], 76 | "{$base_url}api/preview" 77 | ); 78 | } 79 | add_filter( 'preview_post_link', 'wds_set_headless_preview_link', 10, 2 ); 80 | 81 | /** 82 | * Customize WP home URL to point to frontend. 83 | * 84 | * @author WebDevStudios 85 | * @since 1.0 86 | * @param string $url Complete home URL, including path. 87 | * @param string $path Path relative to home URL. 88 | * @param string $scheme Context for home URL. 89 | * @return string Frontend home URL. 90 | */ 91 | function wds_set_headless_home_url( string $url, string $path, $scheme = null ) { 92 | if ( ! defined( 'HEADLESS_FRONTEND_URL' ) ) { 93 | return $url; 94 | } 95 | 96 | // Don't redirect REST requests. 97 | if ( 'rest' === $scheme ) { 98 | return $url; 99 | } 100 | 101 | // Don't redirect unless in WP admin. 102 | if ( ! is_admin() ) { 103 | return $url; 104 | } 105 | 106 | $base_url = HEADLESS_FRONTEND_URL; 107 | 108 | if ( ! $path ) { 109 | return $base_url; 110 | } 111 | 112 | // Remove excess slash from beginning of path. 113 | $path = ltrim( $path, '/' ); 114 | 115 | return "{$base_url}{$path}"; 116 | } 117 | add_filter( 'home_url', 'wds_set_headless_home_url', 10, 3 ); 118 | 119 | /** 120 | * Customize the REST preview link to point to the headless client. 121 | * 122 | * @author WebDevStudios 123 | * @since 1.0 124 | * @param WP_REST_Response $response Response object. 125 | * @param WP_Post $post Current post object. 126 | * @return WP_REST_Response Response object. 127 | */ 128 | function wds_set_headless_rest_preview_link( WP_REST_Response $response, WP_Post $post ) { 129 | if ( 'draft' === $post->post_status ) { 130 | 131 | // Manually call preview filter for draft posts. 132 | $response->data['link'] = get_preview_post_link( $post ); 133 | } elseif ( 'publish' === $post->post_status ) { 134 | 135 | // Override view link for published posts. 136 | if ( ! defined( 'HEADLESS_FRONTEND_URL' ) ) { 137 | return $response; 138 | } 139 | 140 | $base_url = HEADLESS_FRONTEND_URL; 141 | 142 | // Handle special-case pages. 143 | $homepage_id = intval( get_field( 'homepage', 'option' ) ); 144 | $error_page_id = get_field( 'error_404_page', 'option' ); 145 | 146 | if ( $post->ID === $homepage_id ) { 147 | 148 | // Return root FE URL for homepage. 149 | $response->data['link'] = $base_url; 150 | } elseif ( $post->ID === $error_page_id ) { 151 | 152 | // Return 404 URL for error page. 153 | $response->data['link'] = "{$base_url}/404"; 154 | } else { 155 | 156 | // Remove excess slash from end of base URL. 157 | $base_url = rtrim( $base_url, '/' ); 158 | 159 | // Return URL based on post name. 160 | $response->data['link'] = "{$base_url}/{$post->post_name}"; 161 | } 162 | } 163 | 164 | return $response; 165 | } 166 | add_filter( 'rest_prepare_page', 'wds_set_headless_rest_preview_link', 10, 2 ); 167 | add_filter( 'rest_prepare_post', 'wds_set_headless_rest_preview_link', 10, 2 ); 168 | -------------------------------------------------------------------------------- /themes/wds_headless/inc/wp-search-with-algolia.php: -------------------------------------------------------------------------------- 1 | post_type, $post_types, true ) ) { 61 | 62 | // Loop over each field... 63 | foreach ( $fields as $field ) { 64 | 65 | // Get field data. 66 | $data = get_field( $field, $post->ID ); 67 | 68 | /** 69 | * Due to Algolia size restrictions (10kb), we cannot index 70 | * every field. Only index if a field is a boolean or has 71 | * content. 72 | */ 73 | if ( is_bool( $data ) || ! empty( $data ) ) { 74 | 75 | // Append _meta to each field. 76 | $attributes[ $field . '_meta' ] = $data; 77 | } 78 | } 79 | } 80 | 81 | return $attributes; 82 | } 83 | add_filter( 'algolia_post_shared_attributes', 'wds_algolia_custom_fields', 10, 2 ); 84 | add_filter( 'algolia_searchable_post_shared_attributes', 'wds_algolia_custom_fields', 10, 2 ); 85 | 86 | /** 87 | * Send certain image sizes to Algolia. 88 | * 89 | * @author WebDevStudios 90 | * @since 1.0 91 | * @return array The list of known image sizes. 92 | */ 93 | function wds_algolia_set_image_sizes() { 94 | return [ 95 | 'nineteentwenty', 96 | 'thumbnail', 97 | ]; 98 | } 99 | add_filter( 'algolia_post_images_sizes', 'wds_algolia_set_image_sizes', 10, 2 ); 100 | 101 | } 102 | -------------------------------------------------------------------------------- /themes/wds_headless/inc/yoast-seo.php: -------------------------------------------------------------------------------- 1 | { 13 | wp.blocks.unregisterBlockStyle("core/image", "default"); 14 | wp.blocks.unregisterBlockStyle("core/separator", "dots"); 15 | wp.blocks.unregisterBlockStyle("core/separator", "wide"); 16 | wp.blocks.registerBlockStyle("core/separator", { 17 | name: "full-width", 18 | label: "Full Width", 19 | }); 20 | }); 21 | 22 | addFilter( 23 | "blocks.registerBlockType", 24 | "wds/filterBlockColorAttrs", 25 | wdsAddColorPaletteHexValues 26 | ); 27 | 28 | /** 29 | * Filter block registration to add custom color attributes to specified blocks. 30 | * 31 | * @author WebDevStudios 32 | * @param {object} settings Block settings config. 33 | * @return {object} Block settings config. 34 | */ 35 | function wdsAddColorPaletteHexValues(settings) { 36 | // Add background color hex attribute. 37 | if (settings.attributes.hasOwnProperty("backgroundColor")) { 38 | settings.attributes.backgroundColorHex = { 39 | type: "string", 40 | default: "", 41 | }; 42 | } 43 | 44 | // Add gradient background hex attribute. 45 | if (settings.attributes.hasOwnProperty("gradient")) { 46 | settings.attributes.gradientHex = { 47 | type: "string", 48 | default: "", 49 | }; 50 | } 51 | 52 | // Add main color hex attribute. 53 | if (settings.attributes.hasOwnProperty("mainColor")) { 54 | settings.attributes.mainColorHex = { 55 | type: "string", 56 | default: "", 57 | }; 58 | } 59 | 60 | // Add overlay color hex attribute. 61 | if (settings.attributes.hasOwnProperty("overlayColor")) { 62 | settings.attributes.overlayColorHex = { 63 | type: "string", 64 | default: "", 65 | }; 66 | } 67 | 68 | // Add text color hex attribute. 69 | if (settings.attributes.hasOwnProperty("textColor")) { 70 | settings.attributes.textColorHex = { 71 | type: "string", 72 | default: "", 73 | }; 74 | } 75 | 76 | return { 77 | ...settings, 78 | edit(props) { 79 | const { 80 | attributes: { 81 | backgroundColor, 82 | gradient, 83 | mainColor, 84 | overlayColor, 85 | textColor, 86 | }, 87 | } = props; 88 | 89 | useEffect(() => { 90 | // Note: This may not work as expected if a custom theme palette has been set. 91 | // In that case, this filter may need to be customized. 92 | const defaultColors = validateThemeColors(); 93 | 94 | const defaultGradients = validateThemeGradients(); 95 | 96 | // Check for presence of background color attr. 97 | if (backgroundColor) { 98 | // Get color object by slug. 99 | const backgroundColorObj = defaultColors.filter( 100 | (color) => color.slug === backgroundColor 101 | ); 102 | 103 | // Retrieve color hex value. 104 | props.attributes.backgroundColorHex = 105 | backgroundColorObj?.[0]?.color || null; 106 | } else { 107 | delete props.attributes.backgroundColorHex; 108 | } 109 | 110 | // Check for presence of gradient color attr. 111 | if (gradient) { 112 | // Get color object by slug. 113 | const gradientObj = defaultGradients.filter( 114 | (color) => color.slug === gradient 115 | ); 116 | 117 | // Retrieve color hex value. 118 | props.attributes.gradientHex = 119 | gradientObj?.[0]?.gradient || null; 120 | } else { 121 | delete props.attributes.gradientHex; 122 | } 123 | 124 | // Check for presence of main color attr. 125 | if (mainColor) { 126 | // Get color object by slug. 127 | const mainColorObj = defaultColors.filter( 128 | (color) => color.slug === mainColor 129 | ); 130 | 131 | // Retrieve color hex value. 132 | props.attributes.mainColorHex = 133 | mainColorObj?.[0]?.color || null; 134 | } else { 135 | delete props.attributes.mainColorHex; 136 | } 137 | 138 | // Check for presence of overlay color attr. 139 | if (overlayColor) { 140 | // Get color object by slug. 141 | const overlayColorObj = defaultColors.filter( 142 | (color) => color.slug === overlayColor 143 | ); 144 | 145 | // Retrieve color hex value. 146 | props.attributes.overlayColorHex = 147 | overlayColorObj?.[0]?.color || null; 148 | } else { 149 | delete props.attributes.overlayColorHex; 150 | } 151 | 152 | // Check for presence of text color attr. 153 | if (textColor) { 154 | // Get color object by slug. 155 | const textColorObj = defaultColors.filter( 156 | (color) => color.slug === textColor 157 | ); 158 | 159 | // Retrieve color hex value. 160 | props.attributes.textColorHex = 161 | textColorObj?.[0]?.color || null; 162 | } else { 163 | delete props.attributes.textColorHex; 164 | } 165 | }, [backgroundColor, mainColor, textColor]); 166 | 167 | return settings.edit(props); 168 | }, 169 | }; 170 | } 171 | -------------------------------------------------------------------------------- /themes/wds_headless/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebDevStudios/wds-headless-wordpress/eefaafb5ac6c92667096c70d8b85e934e848792d/themes/wds_headless/screenshot.png -------------------------------------------------------------------------------- /themes/wds_headless/style.css: -------------------------------------------------------------------------------- 1 | /* 2 | Theme Name: WDS Headless Theme 3 | Theme URI: https://webdevstudios.com 4 | Description: This theme supports the JAMStack-powered front-end. Do not deactivate! 5 | Author: WebDevStudios 6 | Author URI: https://webdevstudios.com/ 7 | Version: 1.0 8 | Requires at least: 5.6 9 | Tested up to: 5.6 10 | Requires PHP: 7.4 11 | Text Domain: wds 12 | */ 13 | 14 | .wp-block { 15 | width: 100%; 16 | max-width: 860px; 17 | } 18 | 19 | .wp-block .acf-field[data-type="message"] h2 { 20 | font-size: 22px; 21 | font-weight: 700; 22 | margin: -4px 0 6px; 23 | } 24 | 25 | .wp-block .acf-field[data-type="message"] .acf-label label { 26 | margin: 0; 27 | } 28 | 29 | .wp-block .acf-field[data-type="message"] .acf-input p { 30 | margin: 0; 31 | } 32 | 33 | .wp-block .acf-field[data-type="message"] img { 34 | border: 1px dashed #dfdfdf; 35 | display: block; 36 | margin: 0 0 10px; 37 | padding: 10px; 38 | position: relative; 39 | top: 10px; 40 | } 41 | 42 | .wp-block .acf-block-body .acf-fields > .acf-field { 43 | padding: 20px 20px; 44 | } 45 | 46 | .wp-block .acf-actions { 47 | background: #f9f9f9; 48 | border: 1px solid #dfdfdf; 49 | margin: 15px 0; 50 | padding-top: 15px; 51 | padding: 17px; 52 | text-align: inherit; 53 | } 54 | 55 | .wp-block .acf-actions .button { 56 | font-weight: 600; 57 | line-height: 1; 58 | min-height: 0; 59 | padding: 10px; 60 | } 61 | 62 | .acf-field .acf-input > p.description { 63 | margin-top: 8px; 64 | } 65 | 66 | .acf-field .acf-input > p.description, 67 | .acf-field .acf-label p.description { 68 | font-style: italic; 69 | } 70 | --------------------------------------------------------------------------------