├── .env.testing.slic ├── .github └── workflows │ └── tests-php.yml ├── .gitignore ├── .nvmrc ├── CONTRIBUTING.md ├── codeception.dist.yml ├── codeception.slic.yml ├── composer.json ├── composer.lock ├── demo ├── demo.php └── demo_data.xml ├── docs ├── docs.css ├── documentation.html └── documentation.md ├── gulpfile.js ├── lang ├── advanced-post-manager-af.mo ├── advanced-post-manager-af.po ├── advanced-post-manager-bg_BG.mo ├── advanced-post-manager-bg_BG.po ├── advanced-post-manager-ca.mo ├── advanced-post-manager-ca.po ├── advanced-post-manager-cs_CZ.mo ├── advanced-post-manager-cs_CZ.po ├── advanced-post-manager-da_DK.mo ├── advanced-post-manager-da_DK.po ├── advanced-post-manager-de_DE.mo ├── advanced-post-manager-de_DE.po ├── advanced-post-manager-el.mo ├── advanced-post-manager-el.po ├── advanced-post-manager-en_GB.mo ├── advanced-post-manager-en_GB.po ├── advanced-post-manager-es_ES.mo ├── advanced-post-manager-es_ES.po ├── advanced-post-manager-et.mo ├── advanced-post-manager-et.po ├── advanced-post-manager-fi.mo ├── advanced-post-manager-fi.po ├── advanced-post-manager-fr_FR.mo ├── advanced-post-manager-fr_FR.po ├── advanced-post-manager-hu_HU.mo ├── advanced-post-manager-hu_HU.po ├── advanced-post-manager-id_ID.mo ├── advanced-post-manager-id_ID.po ├── advanced-post-manager-is_IS.mo ├── advanced-post-manager-is_IS.po ├── advanced-post-manager-it_IT.mo ├── advanced-post-manager-it_IT.po ├── advanced-post-manager-lt_LT.mo ├── advanced-post-manager-lt_LT.po ├── advanced-post-manager-lv.mo ├── advanced-post-manager-lv.po ├── advanced-post-manager-nl_NL.mo ├── advanced-post-manager-nl_NL.po ├── advanced-post-manager-pt_BR.mo ├── advanced-post-manager-pt_BR.po ├── advanced-post-manager-pt_PT.mo ├── advanced-post-manager-pt_PT.po ├── advanced-post-manager-ro_RO.mo ├── advanced-post-manager-ro_RO.po ├── advanced-post-manager-ru_RU.mo ├── advanced-post-manager-ru_RU.po ├── advanced-post-manager-sk_SK.mo ├── advanced-post-manager-sk_SK.po ├── advanced-post-manager-sl_SI.mo ├── advanced-post-manager-sl_SI.po ├── advanced-post-manager-sr_RS.mo ├── advanced-post-manager-sr_RS.po ├── advanced-post-manager-sv_SE.mo ├── advanced-post-manager-sv_SE.po ├── advanced-post-manager-tr_TR.mo ├── advanced-post-manager-tr_TR.po ├── advanced-post-manager-uk.mo ├── advanced-post-manager-uk.po ├── advanced-post-manager-zh_TW.mo ├── advanced-post-manager-zh_TW.po ├── advanced-post-manager.pot ├── tribe-apm-af.mo ├── tribe-apm-af.po ├── tribe-apm-bg_BG.mo ├── tribe-apm-bg_BG.po ├── tribe-apm-ca.mo ├── tribe-apm-ca.po ├── tribe-apm-cs_CZ.mo ├── tribe-apm-cs_CZ.po ├── tribe-apm-da_DK.mo ├── tribe-apm-da_DK.po ├── tribe-apm-de_DE.mo ├── tribe-apm-de_DE.po ├── tribe-apm-el.mo ├── tribe-apm-el.po ├── tribe-apm-en_GB.mo ├── tribe-apm-en_GB.po ├── tribe-apm-es_ES.mo ├── tribe-apm-es_ES.po ├── tribe-apm-et.mo ├── tribe-apm-et.po ├── tribe-apm-fi.mo ├── tribe-apm-fi.po ├── tribe-apm-fr_FR.mo ├── tribe-apm-fr_FR.po ├── tribe-apm-hu_HU.mo ├── tribe-apm-hu_HU.po ├── tribe-apm-id_ID.mo ├── tribe-apm-id_ID.po ├── tribe-apm-is_IS.mo ├── tribe-apm-is_IS.po ├── tribe-apm-it_IT.mo ├── tribe-apm-it_IT.po ├── tribe-apm-lt_LT.mo ├── tribe-apm-lt_LT.po ├── tribe-apm-lv.mo ├── tribe-apm-lv.po ├── tribe-apm-nl_NL.mo ├── tribe-apm-nl_NL.po ├── tribe-apm-pt_BR.mo ├── tribe-apm-pt_BR.po ├── tribe-apm-pt_PT.mo ├── tribe-apm-pt_PT.po ├── tribe-apm-ro_RO.mo ├── tribe-apm-ro_RO.po ├── tribe-apm-ru_RU.mo ├── tribe-apm-ru_RU.po ├── tribe-apm-sk_SK.mo ├── tribe-apm-sk_SK.po ├── tribe-apm-sl_SI.mo ├── tribe-apm-sl_SI.po ├── tribe-apm-sr_RS.mo ├── tribe-apm-sr_RS.po ├── tribe-apm-sv_SE.mo ├── tribe-apm-sv_SE.po ├── tribe-apm-tr_TR.mo ├── tribe-apm-tr_TR.po ├── tribe-apm-uk.mo ├── tribe-apm-uk.po ├── tribe-apm-zh_TW.mo ├── tribe-apm-zh_TW.po └── tribe-apm.pot ├── lib ├── php-min-version.php ├── template-tags.php ├── tribe-columns.class.php ├── tribe-filters.class.php ├── tribe-meta-box-helper.php └── tribe-meta-box.php ├── package-lock.json ├── package-whitelist.json ├── package.json ├── readme.txt ├── resources ├── jquery-ui-datepicker.js ├── jquery-ui-datepicker.min.js ├── meta-box.css ├── meta-box.js ├── meta-box.min.css ├── meta-box.min.js ├── tribe-apm.css ├── tribe-apm.js ├── tribe-apm.min.css ├── tribe-apm.min.js ├── tribe-columns.js ├── tribe-columns.min.js ├── tribe-filters.js └── tribe-filters.min.js ├── scratch.php ├── screenshot-1.png ├── screenshot-2.png ├── tests ├── _autoload.php ├── _data │ └── .gitkeep ├── _output │ └── .gitignore ├── _support │ ├── Helper │ │ └── Integration.php │ ├── IntegrationTester.php │ └── _generated │ │ └── .gitignore ├── integration.suite.dist.yml └── integration │ └── Tribe_FiltersTest.php ├── tribe-apm.php └── views └── edit-filters.php /.env.testing.slic: -------------------------------------------------------------------------------- 1 | # This file will be consumed by both the CI and the tests. 2 | # Some environment variables might not apply to one but might apply to the other: modify with care. 3 | 4 | # What version of WordPress we want to install and test against. 5 | # This has to be compatible with the `wp core download` command, see https://developer.wordpress.org/cli/commands/core/download/. 6 | WP_VERSION=latest 7 | 8 | # This is where, in the context of the CI, we'll install and configure WordPress. 9 | # See `.travis.yml` for more information. 10 | WP_ROOT_FOLDER=/var/www/html 11 | 12 | # The WordPress installation will be served from the Docker container. 13 | # See `dev/docker/ci-compose.yml` for more information. 14 | WP_URL=http://wordpress.test 15 | WP_DOMAIN=wordpress.test 16 | 17 | # The credentials that will be used to access the site in acceptance tests 18 | # in methods like `$I->loginAsAdmin();`. 19 | WP_ADMIN_USERNAME=admin 20 | WP_ADMIN_PASSWORD=password 21 | 22 | WP_DB_PORT=3306 23 | 24 | # The databse is served from the Docker `db` container. 25 | # See `dev/docker/ci-compose.yml` for more information. 26 | WP_TABLE_PREFIX=wp_ 27 | WP_DB_HOST=db 28 | WP_DB_NAME=test 29 | WP_DB_USER=root 30 | WP_DB_PASSWORD=password 31 | 32 | # We're using Selenium and Chrome for acceptance testing. 33 | # In CI context we're starting a Docker container to handle that. 34 | # See the `dev/docker/ci-compose.yml` file. 35 | CHROMEDRIVER_HOST=chrome 36 | CHROMEDRIVER_PORT=4444 37 | 38 | # The URL of the WordPress installation from the point of view of the Chromedriver container. 39 | # Why not just use `wordpress`? While Chrome will accept an `http://wordpress` address WordPress 40 | # will not, we call the WordPress container with a seemingly looking legit URL and leverage the 41 | # lines that, in the `wp-config.php` file, will make it so that WordPress will use as its home 42 | # URL whatever URL we reach it with. 43 | # See the `dev/docker/wp-config.php` template for more information. 44 | WP_CHROMEDRIVER_URL=http://wordpress.test 45 | 46 | # To run the tests let's force the background-processing lib to run in synchronous (single PHP thread) mode. 47 | TRIBE_NO_ASYNC=1 48 | 49 | # We're using Docker to run the tests. 50 | USING_CONTAINERS=1 51 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | 3 | /vendor/ 4 | 5 | # Codeception configuration files. 6 | codeception.yml 7 | tests/*.suite.yml 8 | 9 | # /vendor/ 10 | .DS_Store 11 | .idea 12 | .vscode 13 | *.code-workspace 14 | 15 | # Composer / Package files 16 | node_modules 17 | /files 18 | /vcs 19 | /repo 20 | 21 | # Vendor handling. 22 | /vendor 23 | 24 | # Some people makes... 25 | Makefile 26 | 27 | # Tests - local config files 28 | codeception.yml 29 | tests/*.suite.yml 30 | phpunit.xml 31 | 32 | *.local 33 | *.test 34 | *.testing 35 | codeception.tric.yml 36 | codeception.slic.yml 37 | 38 | # Tests - local output files 39 | tests/_output 40 | tests/_support/_generated 41 | 42 | # Local packaging files 43 | .pup-* 44 | 45 | # get from translate.wordpress.org as needed 46 | lang/*.po 47 | -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 18.13.0 2 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | # How to contribute 2 | 3 | We happily review/accept third-party Pull Requests. To help get your 4 | patches adopted into our plugins, there's a few bits of info that are 5 | worth knowing. 6 | 7 | ## Standards 8 | 9 | We have a set of [coding standards](http://the-events-calendar.github.io/products-engineering/) 10 | that we follow and encourage others to follow as well. When you submit 11 | Pull Requests, you'll probably notice a friendly bot - `tr1b0t` - that 12 | comments on your PR and suggests changes. Be gentle with him, he's only 13 | trying to help. He also has a pretty good idea about what we'd like to 14 | see in terms of code formatting, so don't ignore him. 15 | 16 | ## Gulp 17 | 18 | We compress/uglify our CSS and JS files using [Gulp](http://gulpjs.com/) 19 | via our very own [`product-taskmaster`](https://github.com/the-events-calendar/product-taskmaster) 20 | repo - which is a collection of gulp tasks. Here's how you get rolling 21 | with that. 22 | 23 | ### Prerequisites 24 | 25 | #### Install Node.js 26 | 27 | If you don't already have Node.js installed, please do so first: 28 | 29 | [Download Node.js](http://nodejs.org/download/) 30 | 31 | #### Install Gulp 32 | 33 | The only requirement for Gulp is the Gulp CLI (Command Line Utility). If 34 | you don't already have that installed, install it globally. You can do 35 | that with the npm `-g` flag. 36 | 37 | ``` 38 | npm install -g gulp-cli 39 | ``` 40 | 41 | #### Install all the things 42 | 43 | With all of those in place, simply run: 44 | 45 | ``` 46 | npm install 47 | ``` 48 | 49 | If you run into any issues with some of the tasks down the road, run npm 50 | rebuild and try again. 51 | 52 | ``` 53 | npm rebuild 54 | ``` 55 | 56 | ### Using Gulp 57 | 58 | Our gulp tasks are documented in our [product-taskmanager README](https://github.com/the-events-calendar/product-taskmaster#gulp-tasks). 59 | -------------------------------------------------------------------------------- /codeception.dist.yml: -------------------------------------------------------------------------------- 1 | paths: 2 | tests: tests 3 | output: tests/_output 4 | data: tests/_data 5 | support: tests/_support 6 | envs: tests/_envs 7 | actor_suffix: Tester 8 | extensions: 9 | commands: 10 | - 'Codeception\Command\GenerateWPUnit' 11 | - 'Codeception\Command\GenerateWPRestApi' 12 | - 'Codeception\Command\GenerateWPRestController' 13 | - 'Codeception\Command\GenerateWPRestPostTypeController' 14 | - 'Codeception\Command\GenerateWPAjax' 15 | - 'Codeception\Command\GenerateWPCanonical' 16 | - 'Codeception\Command\GenerateWPXMLRPC' 17 | -------------------------------------------------------------------------------- /codeception.slic.yml: -------------------------------------------------------------------------------- 1 | params: 2 | # read dynamic configuration parameters from the .env file 3 | - .env.testing.slic -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "the-events-calendar/advanced-post-manager", 3 | "description": "Dialing custom post types to 11 with advanced filtering controls.", 4 | "type": "wordpress-plugin", 5 | "license": "GPLv2 or later", 6 | "authors": [ 7 | { 8 | "name": "The Events Calendar" 9 | } 10 | ], 11 | "minimum-stability": "stable", 12 | "require": {}, 13 | "require-dev": { 14 | "lucatume/wp-browser": "3.1.7" 15 | }, 16 | "autoload-dev": { 17 | "files": [ 18 | "tests/_autoload.php" 19 | ] 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- 1 | /** 2 | * This is a simple gulp file that loads gulp tasks from a tasks directory. 3 | * Whee. 4 | */ 5 | var gulp = require( 'gulp' ); 6 | 7 | require( 'product-taskmaster' )( gulp ); 8 | -------------------------------------------------------------------------------- /lang/advanced-post-manager-af.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-events-calendar/advanced-post-manager/921af81dfcda9421246f10e1f721ff5baaa903c0/lang/advanced-post-manager-af.mo -------------------------------------------------------------------------------- /lang/advanced-post-manager-af.po: -------------------------------------------------------------------------------- 1 | # Translation of Advanced Post Manager in Afrikaans 2 | # This file is distributed under the same license as the Advanced Post Manager package. 3 | msgid "" 4 | msgstr "" 5 | "PO-Revision-Date: 2016-08-30 02:20:49+0000\n" 6 | "MIME-Version: 1.0\n" 7 | "Content-Type: text/plain; charset=UTF-8\n" 8 | "Content-Transfer-Encoding: 8bit\n" 9 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 10 | "X-Generator: GlotPress/1.0-alpha-1100\n" 11 | "Project-Id-Version: Advanced Post Manager\n" 12 | 13 | #: views/edit-filters.php:8 14 | msgid "Filters & Columns" 15 | msgstr "" 16 | 17 | #: demo/demo.php:30 18 | msgid "It looks like you might not have any demo data. Download our data and use the WordPress Importer." 19 | msgstr "Dit lyk of jy dalk nie 'n demonstrasie inligting hetnie. Laai ons inligting af en gebruik die WordPress invoerder ." 20 | 21 | #: lib/tribe-columns.class.php:43 22 | msgid "Column Name" 23 | msgstr "Kolom Naam" 24 | 25 | #: lib/tribe-columns.class.php:144 lib/tribe-columns.class.php:165 26 | msgid "Comments" 27 | msgstr "Kommentaar" 28 | 29 | #: lib/tribe-columns.class.php:158 30 | msgid "Add a Column" 31 | msgstr "Voeg kommentaar by" 32 | 33 | #: lib/tribe-filters.class.php:52 lib/tribe-filters.class.php:72 34 | msgid "Is" 35 | msgstr "is" 36 | 37 | #: lib/tribe-filters.class.php:53 lib/tribe-filters.class.php:73 38 | msgid "Is Not" 39 | msgstr "is nie" 40 | 41 | #: lib/tribe-filters.class.php:71 42 | msgid "Search" 43 | msgstr "Soek" 44 | 45 | #: lib/tribe-filters.class.php:82 46 | msgid "Member Type" 47 | msgstr "Lid Tipe" 48 | 49 | #: lib/tribe-filters.class.php:86 50 | msgid "Cafe" 51 | msgstr "Kafee" 52 | 53 | #: lib/tribe-filters.class.php:87 54 | msgid "Private Desk" 55 | msgstr "Privaat lessenaar" 56 | 57 | #: lib/tribe-filters.class.php:88 58 | msgid "Office" 59 | msgstr "Kantoor" 60 | 61 | #: lib/tribe-filters.class.php:95 62 | msgid "what i’m querying. probably a key in the options array in $filters" 63 | msgstr "wat ek bevraagteken. waarskynlik 'n sleutelrol in die opsies skikking in $filters" 64 | 65 | #: lib/tribe-filters.class.php:181 66 | msgid "Active Filters" 67 | msgstr "" 68 | 69 | #: lib/tribe-filters.class.php:537 70 | msgid "Saved Filter Set" 71 | msgstr "" 72 | 73 | #: lib/tribe-filters.class.php:539 74 | msgid "Choose a Saved Filter" 75 | msgstr "Kies n gestoorde Filter" 76 | 77 | #: lib/tribe-filters.class.php:658 78 | msgid "Add a Filter" 79 | msgstr "Voeg 'n Filter by" 80 | 81 | #: lib/tribe-meta-box-helper.php:45 82 | msgid "Extended Information" 83 | msgstr "Uitgebreide Inligting" 84 | 85 | #: lib/tribe-meta-box.php:124 lib/tribe-meta-box.php:434 86 | msgid "Delete this image" 87 | msgstr "Verwyder hierdie beeld" 88 | 89 | #: lib/tribe-meta-box.php:124 lib/tribe-meta-box.php:387 90 | #: lib/tribe-meta-box.php:434 91 | msgid "Delete" 92 | msgstr "Verwyder" 93 | 94 | #: lib/tribe-meta-box.php:384 95 | msgid "Uploaded files" 96 | msgstr "Opgelaaide lêers" 97 | 98 | #: lib/tribe-meta-box.php:393 99 | msgid "Upload new files" 100 | msgstr "Laai nuwe lêers up" 101 | 102 | #: lib/tribe-meta-box.php:396 103 | msgid "Add another file" 104 | msgstr "Voeg nog 'n lêer by" 105 | 106 | #: lib/tribe-meta-box.php:441 107 | msgid "Add more images" 108 | msgstr "Voeg nog beelde by" 109 | 110 | #: lib/tribe-meta-box.php:452 111 | msgid "Select a color" 112 | msgstr "Kies 'n kleur" 113 | 114 | #: views/edit-filters.php:7 views/edit-filters.php:8 115 | msgid "Click to toggle" 116 | msgstr "Klik om te wissel" 117 | 118 | #: views/edit-filters.php:14 119 | msgid "Active Columns" 120 | msgstr "" 121 | 122 | #: views/edit-filters.php:15 123 | msgid "Drag and drop to order and select which columns are displayed in the entries table." 124 | msgstr "" 125 | 126 | #: views/edit-filters.php:20 127 | msgid "Apply" 128 | msgstr "Wend Aan" 129 | 130 | #: views/edit-filters.php:21 131 | msgid "Save Filter Set" 132 | msgstr "" 133 | 134 | #: views/edit-filters.php:23 135 | msgid "Export to CSV" 136 | msgstr "Voer uit na CSV" 137 | 138 | #: views/edit-filters.php:27 139 | msgid "Filter Name" 140 | msgstr "Filtreer Naam" 141 | 142 | #: views/edit-filters.php:28 143 | msgid "Save" 144 | msgstr "Stoor" 145 | 146 | #: views/edit-filters.php:29 147 | msgid "Cancel" 148 | msgstr "Kanselleer" 149 | 150 | #: views/edit-filters.php:32 151 | msgid "Reset to Default" 152 | msgstr "" 153 | 154 | #. Plugin Name of the plugin/theme 155 | msgid "Advanced Post Manager" 156 | msgstr "" 157 | 158 | #. Description of the plugin/theme 159 | msgid "Dialing custom post types to 11 with advanced filtering controls." 160 | msgstr "" 161 | 162 | #. Author of the plugin/theme 163 | msgid "Modern Tribe, Inc." 164 | msgstr "Modern Tribe, Inc." 165 | 166 | #. Author URI of the plugin/theme 167 | msgid "http://m.tri.be/4n" 168 | msgstr "" -------------------------------------------------------------------------------- /lang/advanced-post-manager-bg_BG.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-events-calendar/advanced-post-manager/921af81dfcda9421246f10e1f721ff5baaa903c0/lang/advanced-post-manager-bg_BG.mo -------------------------------------------------------------------------------- /lang/advanced-post-manager-ca.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-events-calendar/advanced-post-manager/921af81dfcda9421246f10e1f721ff5baaa903c0/lang/advanced-post-manager-ca.mo -------------------------------------------------------------------------------- /lang/advanced-post-manager-cs_CZ.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-events-calendar/advanced-post-manager/921af81dfcda9421246f10e1f721ff5baaa903c0/lang/advanced-post-manager-cs_CZ.mo -------------------------------------------------------------------------------- /lang/advanced-post-manager-da_DK.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-events-calendar/advanced-post-manager/921af81dfcda9421246f10e1f721ff5baaa903c0/lang/advanced-post-manager-da_DK.mo -------------------------------------------------------------------------------- /lang/advanced-post-manager-da_DK.po: -------------------------------------------------------------------------------- 1 | # Translation of Advanced Post Manager in Danish 2 | # This file is distributed under the same license as the Advanced Post Manager package. 3 | msgid "" 4 | msgstr "" 5 | "PO-Revision-Date: 2015-06-08 15:57:49+0000\n" 6 | "MIME-Version: 1.0\n" 7 | "Content-Type: text/plain; charset=UTF-8\n" 8 | "Content-Transfer-Encoding: 8bit\n" 9 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 10 | "X-Generator: GlotPress/1.0-alpha-1100\n" 11 | "Project-Id-Version: Advanced Post Manager\n" 12 | 13 | #: views/edit-filters.php:8 14 | msgid "Filters & Columns" 15 | msgstr "" 16 | 17 | #: demo/demo.php:30 18 | msgid "It looks like you might not have any demo data. Download our data and use the WordPress Importer." 19 | msgstr "Det lader til at du ikke har nogen demo data. Download vores og brug WordPress Importeren." 20 | 21 | #: lib/tribe-columns.class.php:43 22 | msgid "Column Name" 23 | msgstr "Kolonnenavn" 24 | 25 | #: lib/tribe-columns.class.php:144 lib/tribe-columns.class.php:165 26 | msgid "Comments" 27 | msgstr "Kommentarer" 28 | 29 | #: lib/tribe-columns.class.php:158 30 | msgid "Add a Column" 31 | msgstr "Tilføj en kolonne" 32 | 33 | #: lib/tribe-filters.class.php:52 lib/tribe-filters.class.php:72 34 | msgid "Is" 35 | msgstr "Er" 36 | 37 | #: lib/tribe-filters.class.php:53 lib/tribe-filters.class.php:73 38 | msgid "Is Not" 39 | msgstr "Er ikke" 40 | 41 | #: lib/tribe-filters.class.php:71 42 | msgid "Search" 43 | msgstr "Søg" 44 | 45 | #: lib/tribe-filters.class.php:82 46 | msgid "Member Type" 47 | msgstr "Medlemstype" 48 | 49 | #: lib/tribe-filters.class.php:86 50 | msgid "Cafe" 51 | msgstr "Cafe" 52 | 53 | #: lib/tribe-filters.class.php:87 54 | msgid "Private Desk" 55 | msgstr "Skrivebord" 56 | 57 | #: lib/tribe-filters.class.php:88 58 | msgid "Office" 59 | msgstr "Kontor" 60 | 61 | #: lib/tribe-filters.class.php:95 62 | msgid "what i’m querying. probably a key in the options array in $filters" 63 | msgstr "det jeg søger. Måske en nøgle i listen af indstillinger i $filters" 64 | 65 | #: lib/tribe-filters.class.php:181 66 | msgid "Active Filters" 67 | msgstr "" 68 | 69 | #: lib/tribe-filters.class.php:537 70 | msgid "Saved Filter Set" 71 | msgstr "" 72 | 73 | #: lib/tribe-filters.class.php:539 74 | msgid "Choose a Saved Filter" 75 | msgstr "Vælg et gemt filter" 76 | 77 | #: lib/tribe-filters.class.php:658 78 | msgid "Add a Filter" 79 | msgstr "Tilføj et filter" 80 | 81 | #: lib/tribe-meta-box-helper.php:45 82 | msgid "Extended Information" 83 | msgstr "Udvidet information" 84 | 85 | #: lib/tribe-meta-box.php:124 lib/tribe-meta-box.php:434 86 | msgid "Delete this image" 87 | msgstr "Slet dette billede" 88 | 89 | #: lib/tribe-meta-box.php:124 lib/tribe-meta-box.php:387 90 | #: lib/tribe-meta-box.php:434 91 | msgid "Delete" 92 | msgstr "Dlet" 93 | 94 | #: lib/tribe-meta-box.php:384 95 | msgid "Uploaded files" 96 | msgstr "Upload filer" 97 | 98 | #: lib/tribe-meta-box.php:393 99 | msgid "Upload new files" 100 | msgstr "Upload nye filer" 101 | 102 | #: lib/tribe-meta-box.php:396 103 | msgid "Add another file" 104 | msgstr "Tilføj filer" 105 | 106 | #: lib/tribe-meta-box.php:441 107 | msgid "Add more images" 108 | msgstr "Tilføj billeder" 109 | 110 | #: lib/tribe-meta-box.php:452 111 | msgid "Select a color" 112 | msgstr "Vælg en farve" 113 | 114 | #: views/edit-filters.php:7 views/edit-filters.php:8 115 | msgid "Click to toggle" 116 | msgstr "Klik for at ændre indstillingen" 117 | 118 | #: views/edit-filters.php:14 119 | msgid "Active Columns" 120 | msgstr "" 121 | 122 | #: views/edit-filters.php:15 123 | msgid "Drag and drop to order and select which columns are displayed in the entries table." 124 | msgstr "" 125 | 126 | #: views/edit-filters.php:20 127 | msgid "Apply" 128 | msgstr "Anvend" 129 | 130 | #: views/edit-filters.php:21 131 | msgid "Save Filter Set" 132 | msgstr "" 133 | 134 | #: views/edit-filters.php:23 135 | msgid "Export to CSV" 136 | msgstr "Eksport til CSV" 137 | 138 | #: views/edit-filters.php:27 139 | msgid "Filter Name" 140 | msgstr "Filternavn" 141 | 142 | #: views/edit-filters.php:28 143 | msgid "Save" 144 | msgstr "Gem" 145 | 146 | #: views/edit-filters.php:29 147 | msgid "Cancel" 148 | msgstr "Annuller" 149 | 150 | #: views/edit-filters.php:32 151 | msgid "Reset to Default" 152 | msgstr "" 153 | 154 | #. Plugin Name of the plugin/theme 155 | msgid "Advanced Post Manager" 156 | msgstr "" 157 | 158 | #. Description of the plugin/theme 159 | msgid "Dialing custom post types to 11 with advanced filtering controls." 160 | msgstr "" 161 | 162 | #. Author of the plugin/theme 163 | msgid "Modern Tribe, Inc." 164 | msgstr "" 165 | 166 | #. Author URI of the plugin/theme 167 | msgid "http://m.tri.be/4n" 168 | msgstr "" -------------------------------------------------------------------------------- /lang/advanced-post-manager-de_DE.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-events-calendar/advanced-post-manager/921af81dfcda9421246f10e1f721ff5baaa903c0/lang/advanced-post-manager-de_DE.mo -------------------------------------------------------------------------------- /lang/advanced-post-manager-el.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-events-calendar/advanced-post-manager/921af81dfcda9421246f10e1f721ff5baaa903c0/lang/advanced-post-manager-el.mo -------------------------------------------------------------------------------- /lang/advanced-post-manager-en_GB.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-events-calendar/advanced-post-manager/921af81dfcda9421246f10e1f721ff5baaa903c0/lang/advanced-post-manager-en_GB.mo -------------------------------------------------------------------------------- /lang/advanced-post-manager-en_GB.po: -------------------------------------------------------------------------------- 1 | # Translation of Advanced Post Manager in English (UK) 2 | # This file is distributed under the same license as the Advanced Post Manager package. 3 | msgid "" 4 | msgstr "" 5 | "PO-Revision-Date: 2015-06-08 15:55:17+0000\n" 6 | "MIME-Version: 1.0\n" 7 | "Content-Type: text/plain; charset=UTF-8\n" 8 | "Content-Transfer-Encoding: 8bit\n" 9 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 10 | "X-Generator: GlotPress/1.0-alpha-1100\n" 11 | "Project-Id-Version: Advanced Post Manager\n" 12 | 13 | #: views/edit-filters.php:8 14 | msgid "Filters & Columns" 15 | msgstr "" 16 | 17 | #: demo/demo.php:30 18 | msgid "It looks like you might not have any demo data. Download our data and use the WordPress Importer." 19 | msgstr "It looks like you might not have any demo data. Download our data and use the WordPress Importer." 20 | 21 | #: lib/tribe-columns.class.php:43 22 | msgid "Column Name" 23 | msgstr "Column Name" 24 | 25 | #: lib/tribe-columns.class.php:144 lib/tribe-columns.class.php:165 26 | msgid "Comments" 27 | msgstr "Comments" 28 | 29 | #: lib/tribe-columns.class.php:158 30 | msgid "Add a Column" 31 | msgstr "Add a Column" 32 | 33 | #: lib/tribe-filters.class.php:52 lib/tribe-filters.class.php:72 34 | msgid "Is" 35 | msgstr "Is" 36 | 37 | #: lib/tribe-filters.class.php:53 lib/tribe-filters.class.php:73 38 | msgid "Is Not" 39 | msgstr "Is Not" 40 | 41 | #: lib/tribe-filters.class.php:71 42 | msgid "Search" 43 | msgstr "Search" 44 | 45 | #: lib/tribe-filters.class.php:82 46 | msgid "Member Type" 47 | msgstr "Member Type" 48 | 49 | #: lib/tribe-filters.class.php:86 50 | msgid "Cafe" 51 | msgstr "Cafe" 52 | 53 | #: lib/tribe-filters.class.php:87 54 | msgid "Private Desk" 55 | msgstr "Private Desk" 56 | 57 | #: lib/tribe-filters.class.php:88 58 | msgid "Office" 59 | msgstr "Office" 60 | 61 | #: lib/tribe-filters.class.php:95 62 | msgid "what i’m querying. probably a key in the options array in $filters" 63 | msgstr "what i’m querying. probably a key in the options array in $filters" 64 | 65 | #: lib/tribe-filters.class.php:181 66 | msgid "Active Filters" 67 | msgstr "" 68 | 69 | #: lib/tribe-filters.class.php:537 70 | msgid "Saved Filter Set" 71 | msgstr "" 72 | 73 | #: lib/tribe-filters.class.php:539 74 | msgid "Choose a Saved Filter" 75 | msgstr "Choose a Saved Filter" 76 | 77 | #: lib/tribe-filters.class.php:658 78 | msgid "Add a Filter" 79 | msgstr "Add a Filter" 80 | 81 | #: lib/tribe-meta-box-helper.php:45 82 | msgid "Extended Information" 83 | msgstr "Extended Information" 84 | 85 | #: lib/tribe-meta-box.php:124 lib/tribe-meta-box.php:434 86 | msgid "Delete this image" 87 | msgstr "Delete this image" 88 | 89 | #: lib/tribe-meta-box.php:124 lib/tribe-meta-box.php:387 90 | #: lib/tribe-meta-box.php:434 91 | msgid "Delete" 92 | msgstr "Delete" 93 | 94 | #: lib/tribe-meta-box.php:384 95 | msgid "Uploaded files" 96 | msgstr "Uploaded files" 97 | 98 | #: lib/tribe-meta-box.php:393 99 | msgid "Upload new files" 100 | msgstr "Upload new files" 101 | 102 | #: lib/tribe-meta-box.php:396 103 | msgid "Add another file" 104 | msgstr "Add another file" 105 | 106 | #: lib/tribe-meta-box.php:441 107 | msgid "Add more images" 108 | msgstr "Add more images" 109 | 110 | #: lib/tribe-meta-box.php:452 111 | msgid "Select a color" 112 | msgstr "Select a color" 113 | 114 | #: views/edit-filters.php:7 views/edit-filters.php:8 115 | msgid "Click to toggle" 116 | msgstr "Click to toggle" 117 | 118 | #: views/edit-filters.php:14 119 | msgid "Active Columns" 120 | msgstr "" 121 | 122 | #: views/edit-filters.php:15 123 | msgid "Drag and drop to order and select which columns are displayed in the entries table." 124 | msgstr "" 125 | 126 | #: views/edit-filters.php:20 127 | msgid "Apply" 128 | msgstr "Apply" 129 | 130 | #: views/edit-filters.php:21 131 | msgid "Save Filter Set" 132 | msgstr "" 133 | 134 | #: views/edit-filters.php:23 135 | msgid "Export to CSV" 136 | msgstr "Export to CSV" 137 | 138 | #: views/edit-filters.php:27 139 | msgid "Filter Name" 140 | msgstr "Filter Name" 141 | 142 | #: views/edit-filters.php:28 143 | msgid "Save" 144 | msgstr "Save" 145 | 146 | #: views/edit-filters.php:29 147 | msgid "Cancel" 148 | msgstr "Cancel" 149 | 150 | #: views/edit-filters.php:32 151 | msgid "Reset to Default" 152 | msgstr "" 153 | 154 | #. Plugin Name of the plugin/theme 155 | msgid "Advanced Post Manager" 156 | msgstr "" 157 | 158 | #. Description of the plugin/theme 159 | msgid "Dialing custom post types to 11 with advanced filtering controls." 160 | msgstr "" 161 | 162 | #. Author of the plugin/theme 163 | msgid "Modern Tribe, Inc." 164 | msgstr "" 165 | 166 | #. Author URI of the plugin/theme 167 | msgid "http://m.tri.be/4n" 168 | msgstr "" -------------------------------------------------------------------------------- /lang/advanced-post-manager-es_ES.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-events-calendar/advanced-post-manager/921af81dfcda9421246f10e1f721ff5baaa903c0/lang/advanced-post-manager-es_ES.mo -------------------------------------------------------------------------------- /lang/advanced-post-manager-et.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-events-calendar/advanced-post-manager/921af81dfcda9421246f10e1f721ff5baaa903c0/lang/advanced-post-manager-et.mo -------------------------------------------------------------------------------- /lang/advanced-post-manager-et.po: -------------------------------------------------------------------------------- 1 | # Translation of Advanced Post Manager in Estonian 2 | # This file is distributed under the same license as the Advanced Post Manager package. 3 | msgid "" 4 | msgstr "" 5 | "PO-Revision-Date: 2015-06-08 15:57:34+0000\n" 6 | "MIME-Version: 1.0\n" 7 | "Content-Type: text/plain; charset=UTF-8\n" 8 | "Content-Transfer-Encoding: 8bit\n" 9 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 10 | "X-Generator: GlotPress/1.0-alpha-1100\n" 11 | "Project-Id-Version: Advanced Post Manager\n" 12 | 13 | #: views/edit-filters.php:8 14 | msgid "Filters & Columns" 15 | msgstr "" 16 | 17 | #: demo/demo.php:30 18 | msgid "It looks like you might not have any demo data. Download our data and use the WordPress Importer." 19 | msgstr "Parece que usted no tiene datos de demostración. Descargue nuestros datos y use el WordPress Importer." 20 | 21 | #: lib/tribe-columns.class.php:43 22 | msgid "Column Name" 23 | msgstr "Nombre de Columna" 24 | 25 | #: lib/tribe-columns.class.php:144 lib/tribe-columns.class.php:165 26 | msgid "Comments" 27 | msgstr "Comentarios" 28 | 29 | #: lib/tribe-columns.class.php:158 30 | msgid "Add a Column" 31 | msgstr "Agregar una columna" 32 | 33 | #: lib/tribe-filters.class.php:52 lib/tribe-filters.class.php:72 34 | msgid "Is" 35 | msgstr "Es" 36 | 37 | #: lib/tribe-filters.class.php:53 lib/tribe-filters.class.php:73 38 | msgid "Is Not" 39 | msgstr "No Es" 40 | 41 | #: lib/tribe-filters.class.php:71 42 | msgid "Search" 43 | msgstr "Buscar" 44 | 45 | #: lib/tribe-filters.class.php:82 46 | msgid "Member Type" 47 | msgstr "Tipo de Miembro" 48 | 49 | #: lib/tribe-filters.class.php:86 50 | msgid "Cafe" 51 | msgstr "Café" 52 | 53 | #: lib/tribe-filters.class.php:87 54 | msgid "Private Desk" 55 | msgstr "Escritorio Privado" 56 | 57 | #: lib/tribe-filters.class.php:88 58 | msgid "Office" 59 | msgstr "Oficina" 60 | 61 | #: lib/tribe-filters.class.php:95 62 | msgid "what i’m querying. probably a key in the options array in $filters" 63 | msgstr "qué estoy consultando. probablemente una clave en la matriz opciones en $filters" 64 | 65 | #: lib/tribe-filters.class.php:181 66 | msgid "Active Filters" 67 | msgstr "" 68 | 69 | #: lib/tribe-filters.class.php:537 70 | msgid "Saved Filter Set" 71 | msgstr "" 72 | 73 | #: lib/tribe-filters.class.php:539 74 | msgid "Choose a Saved Filter" 75 | msgstr "Elija un Filtro guardado" 76 | 77 | #: lib/tribe-filters.class.php:658 78 | msgid "Add a Filter" 79 | msgstr "Egregar un Filtro" 80 | 81 | #: lib/tribe-meta-box-helper.php:45 82 | msgid "Extended Information" 83 | msgstr "Información extendida" 84 | 85 | #: lib/tribe-meta-box.php:124 lib/tribe-meta-box.php:434 86 | msgid "Delete this image" 87 | msgstr "Borrar esta imagen" 88 | 89 | #: lib/tribe-meta-box.php:124 lib/tribe-meta-box.php:387 90 | #: lib/tribe-meta-box.php:434 91 | msgid "Delete" 92 | msgstr "Borrar" 93 | 94 | #: lib/tribe-meta-box.php:384 95 | msgid "Uploaded files" 96 | msgstr "Subir archivos" 97 | 98 | #: lib/tribe-meta-box.php:393 99 | msgid "Upload new files" 100 | msgstr "Subir nuevos archivos" 101 | 102 | #: lib/tribe-meta-box.php:396 103 | msgid "Add another file" 104 | msgstr "Agregar otro archivo" 105 | 106 | #: lib/tribe-meta-box.php:441 107 | msgid "Add more images" 108 | msgstr "Agregar más imagenes" 109 | 110 | #: lib/tribe-meta-box.php:452 111 | msgid "Select a color" 112 | msgstr "Escoga un color" 113 | 114 | #: views/edit-filters.php:7 views/edit-filters.php:8 115 | msgid "Click to toggle" 116 | msgstr "Click para alternar" 117 | 118 | #: views/edit-filters.php:14 119 | msgid "Active Columns" 120 | msgstr "" 121 | 122 | #: views/edit-filters.php:15 123 | msgid "Drag and drop to order and select which columns are displayed in the entries table." 124 | msgstr "" 125 | 126 | #: views/edit-filters.php:20 127 | msgid "Apply" 128 | msgstr "Aplicar" 129 | 130 | #: views/edit-filters.php:21 131 | msgid "Save Filter Set" 132 | msgstr "" 133 | 134 | #: views/edit-filters.php:23 135 | msgid "Export to CSV" 136 | msgstr "Exportar a CSV" 137 | 138 | #: views/edit-filters.php:27 139 | msgid "Filter Name" 140 | msgstr "Nombre del Filtro" 141 | 142 | #: views/edit-filters.php:28 143 | msgid "Save" 144 | msgstr "Guardar" 145 | 146 | #: views/edit-filters.php:29 147 | msgid "Cancel" 148 | msgstr "Cancelar" 149 | 150 | #: views/edit-filters.php:32 151 | msgid "Reset to Default" 152 | msgstr "" 153 | 154 | #. Plugin Name of the plugin/theme 155 | msgid "Advanced Post Manager" 156 | msgstr "" 157 | 158 | #. Description of the plugin/theme 159 | msgid "Dialing custom post types to 11 with advanced filtering controls." 160 | msgstr "" 161 | 162 | #. Author of the plugin/theme 163 | msgid "Modern Tribe, Inc." 164 | msgstr "" 165 | 166 | #. Author URI of the plugin/theme 167 | msgid "http://m.tri.be/4n" 168 | msgstr "" -------------------------------------------------------------------------------- /lang/advanced-post-manager-fi.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-events-calendar/advanced-post-manager/921af81dfcda9421246f10e1f721ff5baaa903c0/lang/advanced-post-manager-fi.mo -------------------------------------------------------------------------------- /lang/advanced-post-manager-fi.po: -------------------------------------------------------------------------------- 1 | # Translation of Advanced Post Manager in Finnish 2 | # This file is distributed under the same license as the Advanced Post Manager package. 3 | msgid "" 4 | msgstr "" 5 | "PO-Revision-Date: 2015-10-29 20:02:52+0000\n" 6 | "MIME-Version: 1.0\n" 7 | "Content-Type: text/plain; charset=UTF-8\n" 8 | "Content-Transfer-Encoding: 8bit\n" 9 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 10 | "X-Generator: GlotPress/1.0-alpha-1100\n" 11 | "Project-Id-Version: Advanced Post Manager\n" 12 | 13 | #: views/edit-filters.php:8 14 | msgid "Filters & Columns" 15 | msgstr "" 16 | 17 | #: demo/demo.php:30 18 | msgid "It looks like you might not have any demo data. Download our data and use the WordPress Importer." 19 | msgstr "Näyttää siltä, ettei sinulla ehkä ole testidataa. Lataa meidän datamme ja käytä WordPress tuontityökalua." 20 | 21 | #: lib/tribe-columns.class.php:43 22 | msgid "Column Name" 23 | msgstr "Sarakkeen nimi" 24 | 25 | #: lib/tribe-columns.class.php:144 lib/tribe-columns.class.php:165 26 | msgid "Comments" 27 | msgstr "Kommentit" 28 | 29 | #: lib/tribe-columns.class.php:158 30 | msgid "Add a Column" 31 | msgstr "Lisää sarake" 32 | 33 | #: lib/tribe-filters.class.php:52 lib/tribe-filters.class.php:72 34 | msgid "Is" 35 | msgstr "On" 36 | 37 | #: lib/tribe-filters.class.php:53 lib/tribe-filters.class.php:73 38 | msgid "Is Not" 39 | msgstr "Ei ole" 40 | 41 | #: lib/tribe-filters.class.php:71 42 | msgid "Search" 43 | msgstr "Etsi" 44 | 45 | #: lib/tribe-filters.class.php:82 46 | msgid "Member Type" 47 | msgstr "Jäsentyyppi" 48 | 49 | #: lib/tribe-filters.class.php:86 50 | msgid "Cafe" 51 | msgstr "Kahvila" 52 | 53 | #: lib/tribe-filters.class.php:87 54 | msgid "Private Desk" 55 | msgstr "Työpiste" 56 | 57 | #: lib/tribe-filters.class.php:88 58 | msgid "Office" 59 | msgstr "Toimisto" 60 | 61 | #: lib/tribe-filters.class.php:95 62 | msgid "what i’m querying. probably a key in the options array in $filters" 63 | msgstr "mitä haen. luultavasti avainta vaihtoehtoryhmässä $filters" 64 | 65 | #: lib/tribe-filters.class.php:181 66 | msgid "Active Filters" 67 | msgstr "" 68 | 69 | #: lib/tribe-filters.class.php:537 70 | msgid "Saved Filter Set" 71 | msgstr "" 72 | 73 | #: lib/tribe-filters.class.php:539 74 | msgid "Choose a Saved Filter" 75 | msgstr "Valitse tallennettu suodatin" 76 | 77 | #: lib/tribe-filters.class.php:658 78 | msgid "Add a Filter" 79 | msgstr "Lisää suodatin" 80 | 81 | #: lib/tribe-meta-box-helper.php:45 82 | msgid "Extended Information" 83 | msgstr "Laajennetut tiedot" 84 | 85 | #: lib/tribe-meta-box.php:124 lib/tribe-meta-box.php:434 86 | msgid "Delete this image" 87 | msgstr "Poista tämä kuva" 88 | 89 | #: lib/tribe-meta-box.php:124 lib/tribe-meta-box.php:387 90 | #: lib/tribe-meta-box.php:434 91 | msgid "Delete" 92 | msgstr "Poista" 93 | 94 | #: lib/tribe-meta-box.php:384 95 | msgid "Uploaded files" 96 | msgstr "Lähetetyt tiedostot" 97 | 98 | #: lib/tribe-meta-box.php:393 99 | msgid "Upload new files" 100 | msgstr "Lisää uusia tiedostoja" 101 | 102 | #: lib/tribe-meta-box.php:396 103 | msgid "Add another file" 104 | msgstr "Lisää toinen tiedosto" 105 | 106 | #: lib/tribe-meta-box.php:441 107 | msgid "Add more images" 108 | msgstr "Lisää kuvia" 109 | 110 | #: lib/tribe-meta-box.php:452 111 | msgid "Select a color" 112 | msgstr "Valitse väri" 113 | 114 | #: views/edit-filters.php:7 views/edit-filters.php:8 115 | msgid "Click to toggle" 116 | msgstr "Klikkaa vaihtaaksesi" 117 | 118 | #: views/edit-filters.php:14 119 | msgid "Active Columns" 120 | msgstr "" 121 | 122 | #: views/edit-filters.php:15 123 | msgid "Drag and drop to order and select which columns are displayed in the entries table." 124 | msgstr "" 125 | 126 | #: views/edit-filters.php:20 127 | msgid "Apply" 128 | msgstr "Käytä" 129 | 130 | #: views/edit-filters.php:21 131 | msgid "Save Filter Set" 132 | msgstr "" 133 | 134 | #: views/edit-filters.php:23 135 | msgid "Export to CSV" 136 | msgstr "Vie CSV-tiedostoon" 137 | 138 | #: views/edit-filters.php:27 139 | msgid "Filter Name" 140 | msgstr "Suodattimen nimi" 141 | 142 | #: views/edit-filters.php:28 143 | msgid "Save" 144 | msgstr "Tallenna" 145 | 146 | #: views/edit-filters.php:29 147 | msgid "Cancel" 148 | msgstr "Peruuta" 149 | 150 | #: views/edit-filters.php:32 151 | msgid "Reset to Default" 152 | msgstr "" 153 | 154 | #. Plugin Name of the plugin/theme 155 | msgid "Advanced Post Manager" 156 | msgstr "" 157 | 158 | #. Description of the plugin/theme 159 | msgid "Dialing custom post types to 11 with advanced filtering controls." 160 | msgstr "" 161 | 162 | #. Author of the plugin/theme 163 | msgid "Modern Tribe, Inc." 164 | msgstr "Modern Tribe, Inc." 165 | 166 | #. Author URI of the plugin/theme 167 | msgid "http://m.tri.be/4n" 168 | msgstr "" -------------------------------------------------------------------------------- /lang/advanced-post-manager-fr_FR.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-events-calendar/advanced-post-manager/921af81dfcda9421246f10e1f721ff5baaa903c0/lang/advanced-post-manager-fr_FR.mo -------------------------------------------------------------------------------- /lang/advanced-post-manager-hu_HU.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-events-calendar/advanced-post-manager/921af81dfcda9421246f10e1f721ff5baaa903c0/lang/advanced-post-manager-hu_HU.mo -------------------------------------------------------------------------------- /lang/advanced-post-manager-hu_HU.po: -------------------------------------------------------------------------------- 1 | # Translation of Advanced Post Manager in Hungarian 2 | # This file is distributed under the same license as the Advanced Post Manager package. 3 | msgid "" 4 | msgstr "" 5 | "PO-Revision-Date: 2015-06-08 15:51:04+0000\n" 6 | "MIME-Version: 1.0\n" 7 | "Content-Type: text/plain; charset=UTF-8\n" 8 | "Content-Transfer-Encoding: 8bit\n" 9 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 10 | "X-Generator: GlotPress/1.0-alpha-1100\n" 11 | "Project-Id-Version: Advanced Post Manager\n" 12 | 13 | #: views/edit-filters.php:8 14 | msgid "Filters & Columns" 15 | msgstr "" 16 | 17 | #: demo/demo.php:30 18 | msgid "It looks like you might not have any demo data. Download our data and use the WordPress Importer." 19 | msgstr "Úgy néz ki, hogy még nincs demo adatod. Töltsd le az adatokat és használd a WordPress importálót." 20 | 21 | #: lib/tribe-columns.class.php:43 22 | msgid "Column Name" 23 | msgstr "Oszlop neve" 24 | 25 | #: lib/tribe-columns.class.php:144 lib/tribe-columns.class.php:165 26 | msgid "Comments" 27 | msgstr "Hozzászólások" 28 | 29 | #: lib/tribe-columns.class.php:158 30 | msgid "Add a Column" 31 | msgstr "Oszlop hozzáadása" 32 | 33 | #: lib/tribe-filters.class.php:52 lib/tribe-filters.class.php:72 34 | msgid "Is" 35 | msgstr "Egyezik" 36 | 37 | #: lib/tribe-filters.class.php:53 lib/tribe-filters.class.php:73 38 | msgid "Is Not" 39 | msgstr "Nem egyezik" 40 | 41 | #: lib/tribe-filters.class.php:71 42 | msgid "Search" 43 | msgstr "Keresés" 44 | 45 | #: lib/tribe-filters.class.php:82 46 | msgid "Member Type" 47 | msgstr "Tagság típusa" 48 | 49 | #: lib/tribe-filters.class.php:86 50 | msgid "Cafe" 51 | msgstr "Kávézó" 52 | 53 | #: lib/tribe-filters.class.php:87 54 | msgid "Private Desk" 55 | msgstr "Saját asztal" 56 | 57 | #: lib/tribe-filters.class.php:88 58 | msgid "Office" 59 | msgstr "Iroda" 60 | 61 | #: lib/tribe-filters.class.php:95 62 | msgid "what i’m querying. probably a key in the options array in $filters" 63 | msgstr "amit próbálok lekérdezni. valószínűleg a $filters (szűrők) sor egyik bejegyzése" 64 | 65 | #: lib/tribe-filters.class.php:181 66 | msgid "Active Filters" 67 | msgstr "" 68 | 69 | #: lib/tribe-filters.class.php:537 70 | msgid "Saved Filter Set" 71 | msgstr "" 72 | 73 | #: lib/tribe-filters.class.php:539 74 | msgid "Choose a Saved Filter" 75 | msgstr "Válassz egy mentett szűrőt" 76 | 77 | #: lib/tribe-filters.class.php:658 78 | msgid "Add a Filter" 79 | msgstr "Szűrő hozzáadása" 80 | 81 | #: lib/tribe-meta-box-helper.php:45 82 | msgid "Extended Information" 83 | msgstr "Kibővített információk" 84 | 85 | #: lib/tribe-meta-box.php:124 lib/tribe-meta-box.php:434 86 | msgid "Delete this image" 87 | msgstr "Kép törlése" 88 | 89 | #: lib/tribe-meta-box.php:124 lib/tribe-meta-box.php:387 90 | #: lib/tribe-meta-box.php:434 91 | msgid "Delete" 92 | msgstr "Törlés" 93 | 94 | #: lib/tribe-meta-box.php:384 95 | msgid "Uploaded files" 96 | msgstr "Feltöltött fájlok" 97 | 98 | #: lib/tribe-meta-box.php:393 99 | msgid "Upload new files" 100 | msgstr "Új fájl feltöltése" 101 | 102 | #: lib/tribe-meta-box.php:396 103 | msgid "Add another file" 104 | msgstr "További fájl hozzáadása" 105 | 106 | #: lib/tribe-meta-box.php:441 107 | msgid "Add more images" 108 | msgstr "Több kép hozzáadása" 109 | 110 | #: lib/tribe-meta-box.php:452 111 | msgid "Select a color" 112 | msgstr "Válassz színt" 113 | 114 | #: views/edit-filters.php:7 views/edit-filters.php:8 115 | msgid "Click to toggle" 116 | msgstr "Kattints a lenyitáshoz" 117 | 118 | #: views/edit-filters.php:14 119 | msgid "Active Columns" 120 | msgstr "" 121 | 122 | #: views/edit-filters.php:15 123 | msgid "Drag and drop to order and select which columns are displayed in the entries table." 124 | msgstr "" 125 | 126 | #: views/edit-filters.php:20 127 | msgid "Apply" 128 | msgstr "Alkalmaz" 129 | 130 | #: views/edit-filters.php:21 131 | msgid "Save Filter Set" 132 | msgstr "" 133 | 134 | #: views/edit-filters.php:23 135 | msgid "Export to CSV" 136 | msgstr "Exportálás CSV-be" 137 | 138 | #: views/edit-filters.php:27 139 | msgid "Filter Name" 140 | msgstr "Szűrő neve" 141 | 142 | #: views/edit-filters.php:28 143 | msgid "Save" 144 | msgstr "Mentés" 145 | 146 | #: views/edit-filters.php:29 147 | msgid "Cancel" 148 | msgstr "Mégse" 149 | 150 | #: views/edit-filters.php:32 151 | msgid "Reset to Default" 152 | msgstr "" 153 | 154 | #. Plugin Name of the plugin/theme 155 | msgid "Advanced Post Manager" 156 | msgstr "" 157 | 158 | #. Description of the plugin/theme 159 | msgid "Dialing custom post types to 11 with advanced filtering controls." 160 | msgstr "" 161 | 162 | #. Author of the plugin/theme 163 | msgid "Modern Tribe, Inc." 164 | msgstr "" 165 | 166 | #. Author URI of the plugin/theme 167 | msgid "http://m.tri.be/4n" 168 | msgstr "" -------------------------------------------------------------------------------- /lang/advanced-post-manager-id_ID.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-events-calendar/advanced-post-manager/921af81dfcda9421246f10e1f721ff5baaa903c0/lang/advanced-post-manager-id_ID.mo -------------------------------------------------------------------------------- /lang/advanced-post-manager-id_ID.po: -------------------------------------------------------------------------------- 1 | # Translation of Advanced Post Manager in Indonesian 2 | # This file is distributed under the same license as the Advanced Post Manager package. 3 | msgid "" 4 | msgstr "" 5 | "PO-Revision-Date: 2015-06-08 15:51:55+0000\n" 6 | "MIME-Version: 1.0\n" 7 | "Content-Type: text/plain; charset=UTF-8\n" 8 | "Content-Transfer-Encoding: 8bit\n" 9 | "Plural-Forms: nplurals=2; plural=n > 1;\n" 10 | "X-Generator: GlotPress/1.0-alpha-1100\n" 11 | "Project-Id-Version: Advanced Post Manager\n" 12 | 13 | #: views/edit-filters.php:8 14 | msgid "Filters & Columns" 15 | msgstr "" 16 | 17 | #: demo/demo.php:30 18 | msgid "It looks like you might not have any demo data. Download our data and use the WordPress Importer." 19 | msgstr "Sepertinya Anda mungkin tidak memiliki data demo. Download data kami dan gunakan WordPress Importer." 20 | 21 | #: lib/tribe-columns.class.php:43 22 | msgid "Column Name" 23 | msgstr "Nama Kolom" 24 | 25 | #: lib/tribe-columns.class.php:144 lib/tribe-columns.class.php:165 26 | msgid "Comments" 27 | msgstr "Komentar" 28 | 29 | #: lib/tribe-columns.class.php:158 30 | msgid "Add a Column" 31 | msgstr "Tambah Kolom" 32 | 33 | #: lib/tribe-filters.class.php:52 lib/tribe-filters.class.php:72 34 | msgid "Is" 35 | msgstr "Adalah" 36 | 37 | #: lib/tribe-filters.class.php:53 lib/tribe-filters.class.php:73 38 | msgid "Is Not" 39 | msgstr "Bukan" 40 | 41 | #: lib/tribe-filters.class.php:71 42 | msgid "Search" 43 | msgstr "Pencarian" 44 | 45 | #: lib/tribe-filters.class.php:82 46 | msgid "Member Type" 47 | msgstr "Tipe Anggota" 48 | 49 | #: lib/tribe-filters.class.php:86 50 | msgid "Cafe" 51 | msgstr "Kafe" 52 | 53 | #: lib/tribe-filters.class.php:87 54 | msgid "Private Desk" 55 | msgstr "Private Desk" 56 | 57 | #: lib/tribe-filters.class.php:88 58 | msgid "Office" 59 | msgstr "Kantor" 60 | 61 | #: lib/tribe-filters.class.php:95 62 | msgid "what i’m querying. probably a key in the options array in $filters" 63 | msgstr "apa yang saya query. mungkin kunci dalam pilihan array dalam $filters" 64 | 65 | #: lib/tribe-filters.class.php:181 66 | msgid "Active Filters" 67 | msgstr "" 68 | 69 | #: lib/tribe-filters.class.php:537 70 | msgid "Saved Filter Set" 71 | msgstr "" 72 | 73 | #: lib/tribe-filters.class.php:539 74 | msgid "Choose a Saved Filter" 75 | msgstr "Pilih Filter Tersimpan" 76 | 77 | #: lib/tribe-filters.class.php:658 78 | msgid "Add a Filter" 79 | msgstr "Tambahkan Filter" 80 | 81 | #: lib/tribe-meta-box-helper.php:45 82 | msgid "Extended Information" 83 | msgstr "Informasi Tambahan" 84 | 85 | #: lib/tribe-meta-box.php:124 lib/tribe-meta-box.php:434 86 | msgid "Delete this image" 87 | msgstr "Hapus gambar ini" 88 | 89 | #: lib/tribe-meta-box.php:124 lib/tribe-meta-box.php:387 90 | #: lib/tribe-meta-box.php:434 91 | msgid "Delete" 92 | msgstr "Hapus" 93 | 94 | #: lib/tribe-meta-box.php:384 95 | msgid "Uploaded files" 96 | msgstr "File upload" 97 | 98 | #: lib/tribe-meta-box.php:393 99 | msgid "Upload new files" 100 | msgstr "Upload file baru" 101 | 102 | #: lib/tribe-meta-box.php:396 103 | msgid "Add another file" 104 | msgstr "Tambah file lain" 105 | 106 | #: lib/tribe-meta-box.php:441 107 | msgid "Add more images" 108 | msgstr "Tambahkan lebih banyak gambar" 109 | 110 | #: lib/tribe-meta-box.php:452 111 | msgid "Select a color" 112 | msgstr "Pilih warna" 113 | 114 | #: views/edit-filters.php:7 views/edit-filters.php:8 115 | msgid "Click to toggle" 116 | msgstr "Klik untuk toggle" 117 | 118 | #: views/edit-filters.php:14 119 | msgid "Active Columns" 120 | msgstr "" 121 | 122 | #: views/edit-filters.php:15 123 | msgid "Drag and drop to order and select which columns are displayed in the entries table." 124 | msgstr "" 125 | 126 | #: views/edit-filters.php:20 127 | msgid "Apply" 128 | msgstr "Terapkan" 129 | 130 | #: views/edit-filters.php:21 131 | msgid "Save Filter Set" 132 | msgstr "" 133 | 134 | #: views/edit-filters.php:23 135 | msgid "Export to CSV" 136 | msgstr "Ekspor ke CSV" 137 | 138 | #: views/edit-filters.php:27 139 | msgid "Filter Name" 140 | msgstr "Nama Filter" 141 | 142 | #: views/edit-filters.php:28 143 | msgid "Save" 144 | msgstr "Simpan" 145 | 146 | #: views/edit-filters.php:29 147 | msgid "Cancel" 148 | msgstr "Batalkan" 149 | 150 | #: views/edit-filters.php:32 151 | msgid "Reset to Default" 152 | msgstr "" 153 | 154 | #. Plugin Name of the plugin/theme 155 | msgid "Advanced Post Manager" 156 | msgstr "" 157 | 158 | #. Description of the plugin/theme 159 | msgid "Dialing custom post types to 11 with advanced filtering controls." 160 | msgstr "" 161 | 162 | #. Author of the plugin/theme 163 | msgid "Modern Tribe, Inc." 164 | msgstr "" 165 | 166 | #. Author URI of the plugin/theme 167 | msgid "http://m.tri.be/4n" 168 | msgstr "" -------------------------------------------------------------------------------- /lang/advanced-post-manager-is_IS.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-events-calendar/advanced-post-manager/921af81dfcda9421246f10e1f721ff5baaa903c0/lang/advanced-post-manager-is_IS.mo -------------------------------------------------------------------------------- /lang/advanced-post-manager-it_IT.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-events-calendar/advanced-post-manager/921af81dfcda9421246f10e1f721ff5baaa903c0/lang/advanced-post-manager-it_IT.mo -------------------------------------------------------------------------------- /lang/advanced-post-manager-it_IT.po: -------------------------------------------------------------------------------- 1 | # Translation of Advanced Post Manager in Italian 2 | # This file is distributed under the same license as the Advanced Post Manager package. 3 | msgid "" 4 | msgstr "" 5 | "PO-Revision-Date: 2015-06-08 15:55:33+0000\n" 6 | "MIME-Version: 1.0\n" 7 | "Content-Type: text/plain; charset=UTF-8\n" 8 | "Content-Transfer-Encoding: 8bit\n" 9 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 10 | "X-Generator: GlotPress/1.0-alpha-1100\n" 11 | "Project-Id-Version: Advanced Post Manager\n" 12 | 13 | #: views/edit-filters.php:8 14 | msgid "Filters & Columns" 15 | msgstr "" 16 | 17 | #: demo/demo.php:30 18 | msgid "It looks like you might not have any demo data. Download our data and use the WordPress Importer." 19 | msgstr "Pare che non ci siano dati dimostrativi. Scarica i nostri dati e utilizza l'Importatore di WordPress ." 20 | 21 | #: lib/tribe-columns.class.php:43 22 | msgid "Column Name" 23 | msgstr "Nome colonna" 24 | 25 | #: lib/tribe-columns.class.php:144 lib/tribe-columns.class.php:165 26 | msgid "Comments" 27 | msgstr "Commenti" 28 | 29 | #: lib/tribe-columns.class.php:158 30 | msgid "Add a Column" 31 | msgstr "Aggiungi una colonna" 32 | 33 | #: lib/tribe-filters.class.php:52 lib/tribe-filters.class.php:72 34 | msgid "Is" 35 | msgstr "è" 36 | 37 | #: lib/tribe-filters.class.php:53 lib/tribe-filters.class.php:73 38 | msgid "Is Not" 39 | msgstr "non è" 40 | 41 | #: lib/tribe-filters.class.php:71 42 | msgid "Search" 43 | msgstr "Cerca" 44 | 45 | #: lib/tribe-filters.class.php:82 46 | msgid "Member Type" 47 | msgstr "Tipo socio" 48 | 49 | #: lib/tribe-filters.class.php:86 50 | msgid "Cafe" 51 | msgstr "Caffè" 52 | 53 | #: lib/tribe-filters.class.php:87 54 | msgid "Private Desk" 55 | msgstr "Desk privato" 56 | 57 | #: lib/tribe-filters.class.php:88 58 | msgid "Office" 59 | msgstr "Ufficio" 60 | 61 | #: lib/tribe-filters.class.php:95 62 | msgid "what i’m querying. probably a key in the options array in $filters" 63 | msgstr "quello che sto interrogando. Probabilmente una chiave nella matrice opzioni in $filters" 64 | 65 | #: lib/tribe-filters.class.php:181 66 | msgid "Active Filters" 67 | msgstr "" 68 | 69 | #: lib/tribe-filters.class.php:537 70 | msgid "Saved Filter Set" 71 | msgstr "" 72 | 73 | #: lib/tribe-filters.class.php:539 74 | msgid "Choose a Saved Filter" 75 | msgstr "Scegli un filtro salvato" 76 | 77 | #: lib/tribe-filters.class.php:658 78 | msgid "Add a Filter" 79 | msgstr "Aggiungi un filtro" 80 | 81 | #: lib/tribe-meta-box-helper.php:45 82 | msgid "Extended Information" 83 | msgstr "Informazioni supplementari" 84 | 85 | #: lib/tribe-meta-box.php:124 lib/tribe-meta-box.php:434 86 | msgid "Delete this image" 87 | msgstr "Elimina quest'immagine" 88 | 89 | #: lib/tribe-meta-box.php:124 lib/tribe-meta-box.php:387 90 | #: lib/tribe-meta-box.php:434 91 | msgid "Delete" 92 | msgstr "Cancella" 93 | 94 | #: lib/tribe-meta-box.php:384 95 | msgid "Uploaded files" 96 | msgstr "File caricati" 97 | 98 | #: lib/tribe-meta-box.php:393 99 | msgid "Upload new files" 100 | msgstr "Carica nuovi file" 101 | 102 | #: lib/tribe-meta-box.php:396 103 | msgid "Add another file" 104 | msgstr "Aggiungi un altro file" 105 | 106 | #: lib/tribe-meta-box.php:441 107 | msgid "Add more images" 108 | msgstr "Aggiungi altre immagini" 109 | 110 | #: lib/tribe-meta-box.php:452 111 | msgid "Select a color" 112 | msgstr "Seleziona un colore" 113 | 114 | #: views/edit-filters.php:7 views/edit-filters.php:8 115 | msgid "Click to toggle" 116 | msgstr "Clicca per passare oltre" 117 | 118 | #: views/edit-filters.php:14 119 | msgid "Active Columns" 120 | msgstr "" 121 | 122 | #: views/edit-filters.php:15 123 | msgid "Drag and drop to order and select which columns are displayed in the entries table." 124 | msgstr "" 125 | 126 | #: views/edit-filters.php:20 127 | msgid "Apply" 128 | msgstr "Applica" 129 | 130 | #: views/edit-filters.php:21 131 | msgid "Save Filter Set" 132 | msgstr "" 133 | 134 | #: views/edit-filters.php:23 135 | msgid "Export to CSV" 136 | msgstr "Esporta in CSV" 137 | 138 | #: views/edit-filters.php:27 139 | msgid "Filter Name" 140 | msgstr "Nome filtro" 141 | 142 | #: views/edit-filters.php:28 143 | msgid "Save" 144 | msgstr "Salva" 145 | 146 | #: views/edit-filters.php:29 147 | msgid "Cancel" 148 | msgstr "Cancella" 149 | 150 | #: views/edit-filters.php:32 151 | msgid "Reset to Default" 152 | msgstr "" 153 | 154 | #. Plugin Name of the plugin/theme 155 | msgid "Advanced Post Manager" 156 | msgstr "" 157 | 158 | #. Description of the plugin/theme 159 | msgid "Dialing custom post types to 11 with advanced filtering controls." 160 | msgstr "" 161 | 162 | #. Author of the plugin/theme 163 | msgid "Modern Tribe, Inc." 164 | msgstr "" 165 | 166 | #. Author URI of the plugin/theme 167 | msgid "http://m.tri.be/4n" 168 | msgstr "" -------------------------------------------------------------------------------- /lang/advanced-post-manager-lt_LT.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-events-calendar/advanced-post-manager/921af81dfcda9421246f10e1f721ff5baaa903c0/lang/advanced-post-manager-lt_LT.mo -------------------------------------------------------------------------------- /lang/advanced-post-manager-lv.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-events-calendar/advanced-post-manager/921af81dfcda9421246f10e1f721ff5baaa903c0/lang/advanced-post-manager-lv.mo -------------------------------------------------------------------------------- /lang/advanced-post-manager-lv.po: -------------------------------------------------------------------------------- 1 | # Translation of Advanced Post Manager in Latvian 2 | # This file is distributed under the same license as the Advanced Post Manager package. 3 | msgid "" 4 | msgstr "" 5 | "PO-Revision-Date: 2015-06-08 15:47:33+0000\n" 6 | "MIME-Version: 1.0\n" 7 | "Content-Type: text/plain; charset=UTF-8\n" 8 | "Content-Transfer-Encoding: 8bit\n" 9 | "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" 10 | "X-Generator: GlotPress/1.0-alpha-1100\n" 11 | "Project-Id-Version: Advanced Post Manager\n" 12 | 13 | #: views/edit-filters.php:8 14 | msgid "Filters & Columns" 15 | msgstr "" 16 | 17 | #: demo/demo.php:30 18 | msgid "It looks like you might not have any demo data. Download our data and use the WordPress Importer." 19 | msgstr "Izskatās, ka Jums nav demo datu. Paņemiet mūsu un izmantojiet WordPress Importer." 20 | 21 | #: lib/tribe-columns.class.php:43 22 | msgid "Column Name" 23 | msgstr "Kolonnas nosaukums" 24 | 25 | #: lib/tribe-columns.class.php:144 lib/tribe-columns.class.php:165 26 | msgid "Comments" 27 | msgstr "Komentāri" 28 | 29 | #: lib/tribe-columns.class.php:158 30 | msgid "Add a Column" 31 | msgstr "Pievienot kolonnu" 32 | 33 | #: lib/tribe-filters.class.php:52 lib/tribe-filters.class.php:72 34 | msgid "Is" 35 | msgstr "Ir" 36 | 37 | #: lib/tribe-filters.class.php:53 lib/tribe-filters.class.php:73 38 | msgid "Is Not" 39 | msgstr "Nav" 40 | 41 | #: lib/tribe-filters.class.php:71 42 | msgid "Search" 43 | msgstr "Meklēt" 44 | 45 | #: lib/tribe-filters.class.php:82 46 | msgid "Member Type" 47 | msgstr "Biedra tips" 48 | 49 | #: lib/tribe-filters.class.php:86 50 | msgid "Cafe" 51 | msgstr "Kafejnīca" 52 | 53 | #: lib/tribe-filters.class.php:87 54 | msgid "Private Desk" 55 | msgstr "Privātais galds" 56 | 57 | #: lib/tribe-filters.class.php:88 58 | msgid "Office" 59 | msgstr "Birojs" 60 | 61 | #: lib/tribe-filters.class.php:95 62 | msgid "what i’m querying. probably a key in the options array in $filters" 63 | msgstr "what i’m querying. probably a key in the options array in $filters" 64 | 65 | #: lib/tribe-filters.class.php:181 66 | msgid "Active Filters" 67 | msgstr "" 68 | 69 | #: lib/tribe-filters.class.php:537 70 | msgid "Saved Filter Set" 71 | msgstr "" 72 | 73 | #: lib/tribe-filters.class.php:539 74 | msgid "Choose a Saved Filter" 75 | msgstr "Izvēlieties saglabāto filtru" 76 | 77 | #: lib/tribe-filters.class.php:658 78 | msgid "Add a Filter" 79 | msgstr "Pievienot filtru" 80 | 81 | #: lib/tribe-meta-box-helper.php:45 82 | msgid "Extended Information" 83 | msgstr "Papildus informācija" 84 | 85 | #: lib/tribe-meta-box.php:124 lib/tribe-meta-box.php:434 86 | msgid "Delete this image" 87 | msgstr "Dzēst šo attēlu" 88 | 89 | #: lib/tribe-meta-box.php:124 lib/tribe-meta-box.php:387 90 | #: lib/tribe-meta-box.php:434 91 | msgid "Delete" 92 | msgstr "Dzēst" 93 | 94 | #: lib/tribe-meta-box.php:384 95 | msgid "Uploaded files" 96 | msgstr "Pievienotie faili" 97 | 98 | #: lib/tribe-meta-box.php:393 99 | msgid "Upload new files" 100 | msgstr "Pievienot jaunu failu" 101 | 102 | #: lib/tribe-meta-box.php:396 103 | msgid "Add another file" 104 | msgstr "Pievienot vēl vienu failu" 105 | 106 | #: lib/tribe-meta-box.php:441 107 | msgid "Add more images" 108 | msgstr "Pievienot vēl attēlus" 109 | 110 | #: lib/tribe-meta-box.php:452 111 | msgid "Select a color" 112 | msgstr "Izvēlēties krāsu" 113 | 114 | #: views/edit-filters.php:7 views/edit-filters.php:8 115 | msgid "Click to toggle" 116 | msgstr "Klikšķiniet lai pārslēgtu" 117 | 118 | #: views/edit-filters.php:14 119 | msgid "Active Columns" 120 | msgstr "" 121 | 122 | #: views/edit-filters.php:15 123 | msgid "Drag and drop to order and select which columns are displayed in the entries table." 124 | msgstr "" 125 | 126 | #: views/edit-filters.php:20 127 | msgid "Apply" 128 | msgstr "Pielietot" 129 | 130 | #: views/edit-filters.php:21 131 | msgid "Save Filter Set" 132 | msgstr "" 133 | 134 | #: views/edit-filters.php:23 135 | msgid "Export to CSV" 136 | msgstr "Eksportēt uz CSV" 137 | 138 | #: views/edit-filters.php:27 139 | msgid "Filter Name" 140 | msgstr "Filtra nosaukums" 141 | 142 | #: views/edit-filters.php:28 143 | msgid "Save" 144 | msgstr "Saglabāt" 145 | 146 | #: views/edit-filters.php:29 147 | msgid "Cancel" 148 | msgstr "Atcelt" 149 | 150 | #: views/edit-filters.php:32 151 | msgid "Reset to Default" 152 | msgstr "" 153 | 154 | #. Plugin Name of the plugin/theme 155 | msgid "Advanced Post Manager" 156 | msgstr "" 157 | 158 | #. Description of the plugin/theme 159 | msgid "Dialing custom post types to 11 with advanced filtering controls." 160 | msgstr "" 161 | 162 | #. Author of the plugin/theme 163 | msgid "Modern Tribe, Inc." 164 | msgstr "" 165 | 166 | #. Author URI of the plugin/theme 167 | msgid "http://m.tri.be/4n" 168 | msgstr "" -------------------------------------------------------------------------------- /lang/advanced-post-manager-nl_NL.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-events-calendar/advanced-post-manager/921af81dfcda9421246f10e1f721ff5baaa903c0/lang/advanced-post-manager-nl_NL.mo -------------------------------------------------------------------------------- /lang/advanced-post-manager-pt_BR.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-events-calendar/advanced-post-manager/921af81dfcda9421246f10e1f721ff5baaa903c0/lang/advanced-post-manager-pt_BR.mo -------------------------------------------------------------------------------- /lang/advanced-post-manager-pt_PT.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-events-calendar/advanced-post-manager/921af81dfcda9421246f10e1f721ff5baaa903c0/lang/advanced-post-manager-pt_PT.mo -------------------------------------------------------------------------------- /lang/advanced-post-manager-ro_RO.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-events-calendar/advanced-post-manager/921af81dfcda9421246f10e1f721ff5baaa903c0/lang/advanced-post-manager-ro_RO.mo -------------------------------------------------------------------------------- /lang/advanced-post-manager-ru_RU.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-events-calendar/advanced-post-manager/921af81dfcda9421246f10e1f721ff5baaa903c0/lang/advanced-post-manager-ru_RU.mo -------------------------------------------------------------------------------- /lang/advanced-post-manager-ru_RU.po: -------------------------------------------------------------------------------- 1 | # Translation of Advanced Post Manager in Russian 2 | # This file is distributed under the same license as the Advanced Post Manager package. 3 | msgid "" 4 | msgstr "" 5 | "PO-Revision-Date: 2015-06-08 15:50:36+0000\n" 6 | "MIME-Version: 1.0\n" 7 | "Content-Type: text/plain; charset=UTF-8\n" 8 | "Content-Transfer-Encoding: 8bit\n" 9 | "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" 10 | "X-Generator: GlotPress/1.0-alpha-1100\n" 11 | "Project-Id-Version: Advanced Post Manager\n" 12 | 13 | #: views/edit-filters.php:8 14 | msgid "Filters & Columns" 15 | msgstr "" 16 | 17 | #: demo/demo.php:30 18 | msgid "It looks like you might not have any demo data. Download our data and use the WordPress Importer." 19 | msgstr "Кажется, у вас может не быть данных демо. Загрузите наши данные и используйте WordPress Importer." 20 | 21 | #: lib/tribe-columns.class.php:43 22 | msgid "Column Name" 23 | msgstr "Название колонки" 24 | 25 | #: lib/tribe-columns.class.php:144 lib/tribe-columns.class.php:165 26 | msgid "Comments" 27 | msgstr "Комментарии" 28 | 29 | #: lib/tribe-columns.class.php:158 30 | msgid "Add a Column" 31 | msgstr "Добавить колонку" 32 | 33 | #: lib/tribe-filters.class.php:52 lib/tribe-filters.class.php:72 34 | msgid "Is" 35 | msgstr "Есть" 36 | 37 | #: lib/tribe-filters.class.php:53 lib/tribe-filters.class.php:73 38 | msgid "Is Not" 39 | msgstr "Нет" 40 | 41 | #: lib/tribe-filters.class.php:71 42 | msgid "Search" 43 | msgstr "Поиск" 44 | 45 | #: lib/tribe-filters.class.php:82 46 | msgid "Member Type" 47 | msgstr "Тип участника" 48 | 49 | #: lib/tribe-filters.class.php:86 50 | msgid "Cafe" 51 | msgstr "Кафе" 52 | 53 | #: lib/tribe-filters.class.php:87 54 | msgid "Private Desk" 55 | msgstr "Личный стол" 56 | 57 | #: lib/tribe-filters.class.php:88 58 | msgid "Office" 59 | msgstr "Офис" 60 | 61 | #: lib/tribe-filters.class.php:95 62 | msgid "what i’m querying. probably a key in the options array in $filters" 63 | msgstr "" 64 | 65 | #: lib/tribe-filters.class.php:181 66 | msgid "Active Filters" 67 | msgstr "" 68 | 69 | #: lib/tribe-filters.class.php:537 70 | msgid "Saved Filter Set" 71 | msgstr "" 72 | 73 | #: lib/tribe-filters.class.php:539 74 | msgid "Choose a Saved Filter" 75 | msgstr "Выбрать сохраненный фильтр" 76 | 77 | #: lib/tribe-filters.class.php:658 78 | msgid "Add a Filter" 79 | msgstr "Добавить фильтр" 80 | 81 | #: lib/tribe-meta-box-helper.php:45 82 | msgid "Extended Information" 83 | msgstr "Расширенная информация" 84 | 85 | #: lib/tribe-meta-box.php:124 lib/tribe-meta-box.php:434 86 | msgid "Delete this image" 87 | msgstr "Удалить это изображение" 88 | 89 | #: lib/tribe-meta-box.php:124 lib/tribe-meta-box.php:387 90 | #: lib/tribe-meta-box.php:434 91 | msgid "Delete" 92 | msgstr "Удалить" 93 | 94 | #: lib/tribe-meta-box.php:384 95 | msgid "Uploaded files" 96 | msgstr "Загруженные файлы" 97 | 98 | #: lib/tribe-meta-box.php:393 99 | msgid "Upload new files" 100 | msgstr "Загрузить новые файлы" 101 | 102 | #: lib/tribe-meta-box.php:396 103 | msgid "Add another file" 104 | msgstr "Добавить еще один файл" 105 | 106 | #: lib/tribe-meta-box.php:441 107 | msgid "Add more images" 108 | msgstr "Добавить еще изображения" 109 | 110 | #: lib/tribe-meta-box.php:452 111 | msgid "Select a color" 112 | msgstr "Выбрать цвет" 113 | 114 | #: views/edit-filters.php:7 views/edit-filters.php:8 115 | msgid "Click to toggle" 116 | msgstr "Нажать для переключения" 117 | 118 | #: views/edit-filters.php:14 119 | msgid "Active Columns" 120 | msgstr "" 121 | 122 | #: views/edit-filters.php:15 123 | msgid "Drag and drop to order and select which columns are displayed in the entries table." 124 | msgstr "" 125 | 126 | #: views/edit-filters.php:20 127 | msgid "Apply" 128 | msgstr "Применить" 129 | 130 | #: views/edit-filters.php:21 131 | msgid "Save Filter Set" 132 | msgstr "" 133 | 134 | #: views/edit-filters.php:23 135 | msgid "Export to CSV" 136 | msgstr "Экспорт в CSV" 137 | 138 | #: views/edit-filters.php:27 139 | msgid "Filter Name" 140 | msgstr "Название фильтра" 141 | 142 | #: views/edit-filters.php:28 143 | msgid "Save" 144 | msgstr "Сохранить" 145 | 146 | #: views/edit-filters.php:29 147 | msgid "Cancel" 148 | msgstr "Отмена" 149 | 150 | #: views/edit-filters.php:32 151 | msgid "Reset to Default" 152 | msgstr "" 153 | 154 | #. Plugin Name of the plugin/theme 155 | msgid "Advanced Post Manager" 156 | msgstr "" 157 | 158 | #. Description of the plugin/theme 159 | msgid "Dialing custom post types to 11 with advanced filtering controls." 160 | msgstr "" 161 | 162 | #. Author of the plugin/theme 163 | msgid "Modern Tribe, Inc." 164 | msgstr "" 165 | 166 | #. Author URI of the plugin/theme 167 | msgid "http://m.tri.be/4n" 168 | msgstr "" -------------------------------------------------------------------------------- /lang/advanced-post-manager-sk_SK.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-events-calendar/advanced-post-manager/921af81dfcda9421246f10e1f721ff5baaa903c0/lang/advanced-post-manager-sk_SK.mo -------------------------------------------------------------------------------- /lang/advanced-post-manager-sk_SK.po: -------------------------------------------------------------------------------- 1 | # Translation of Advanced Post Manager in Slovak 2 | # This file is distributed under the same license as the Advanced Post Manager package. 3 | msgid "" 4 | msgstr "" 5 | "PO-Revision-Date: 2015-06-08 15:50:17+0000\n" 6 | "MIME-Version: 1.0\n" 7 | "Content-Type: text/plain; charset=UTF-8\n" 8 | "Content-Transfer-Encoding: 8bit\n" 9 | "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" 10 | "X-Generator: GlotPress/1.0-alpha-1100\n" 11 | "Project-Id-Version: Advanced Post Manager\n" 12 | 13 | #: views/edit-filters.php:8 14 | msgid "Filters & Columns" 15 | msgstr "" 16 | 17 | #: demo/demo.php:30 18 | msgid "It looks like you might not have any demo data. Download our data and use the WordPress Importer." 19 | msgstr "Vyzerá to, že nemáte žiadne demo dáta. Stiahnite si naše dáta a použite ich pomocou WordPress Importer." 20 | 21 | #: lib/tribe-columns.class.php:43 22 | msgid "Column Name" 23 | msgstr "Názov stĺpca" 24 | 25 | #: lib/tribe-columns.class.php:144 lib/tribe-columns.class.php:165 26 | msgid "Comments" 27 | msgstr "Komentáre" 28 | 29 | #: lib/tribe-columns.class.php:158 30 | msgid "Add a Column" 31 | msgstr "Pridať stĺpec" 32 | 33 | #: lib/tribe-filters.class.php:52 lib/tribe-filters.class.php:72 34 | msgid "Is" 35 | msgstr "je" 36 | 37 | #: lib/tribe-filters.class.php:53 lib/tribe-filters.class.php:73 38 | msgid "Is Not" 39 | msgstr "nie je" 40 | 41 | #: lib/tribe-filters.class.php:71 42 | msgid "Search" 43 | msgstr "Vyhľadať" 44 | 45 | #: lib/tribe-filters.class.php:82 46 | msgid "Member Type" 47 | msgstr "Typ člena" 48 | 49 | #: lib/tribe-filters.class.php:86 50 | msgid "Cafe" 51 | msgstr "Kaviareň" 52 | 53 | #: lib/tribe-filters.class.php:87 54 | msgid "Private Desk" 55 | msgstr "Private Desk" 56 | 57 | #: lib/tribe-filters.class.php:88 58 | msgid "Office" 59 | msgstr "Kancelária" 60 | 61 | #: lib/tribe-filters.class.php:95 62 | msgid "what i’m querying. probably a key in the options array in $filters" 63 | msgstr "na čo sa dotazujete. pravdepodobne kľúč v poli options v premennej $filters" 64 | 65 | #: lib/tribe-filters.class.php:181 66 | msgid "Active Filters" 67 | msgstr "" 68 | 69 | #: lib/tribe-filters.class.php:537 70 | msgid "Saved Filter Set" 71 | msgstr "" 72 | 73 | #: lib/tribe-filters.class.php:539 74 | msgid "Choose a Saved Filter" 75 | msgstr "Vybrať uložený filter" 76 | 77 | #: lib/tribe-filters.class.php:658 78 | msgid "Add a Filter" 79 | msgstr "Pridať filter" 80 | 81 | #: lib/tribe-meta-box-helper.php:45 82 | msgid "Extended Information" 83 | msgstr "Rozšírené informácie" 84 | 85 | #: lib/tribe-meta-box.php:124 lib/tribe-meta-box.php:434 86 | msgid "Delete this image" 87 | msgstr "Odstrániť tento obrázok" 88 | 89 | #: lib/tribe-meta-box.php:124 lib/tribe-meta-box.php:387 90 | #: lib/tribe-meta-box.php:434 91 | msgid "Delete" 92 | msgstr "Odstrániť" 93 | 94 | #: lib/tribe-meta-box.php:384 95 | msgid "Uploaded files" 96 | msgstr "Nahrané súbory" 97 | 98 | #: lib/tribe-meta-box.php:393 99 | msgid "Upload new files" 100 | msgstr "Nahrať nový súbor" 101 | 102 | #: lib/tribe-meta-box.php:396 103 | msgid "Add another file" 104 | msgstr "Pridať ďalší súbor" 105 | 106 | #: lib/tribe-meta-box.php:441 107 | msgid "Add more images" 108 | msgstr "Pridať ďalšie obrázky" 109 | 110 | #: lib/tribe-meta-box.php:452 111 | msgid "Select a color" 112 | msgstr "Vybrať farbu" 113 | 114 | #: views/edit-filters.php:7 views/edit-filters.php:8 115 | msgid "Click to toggle" 116 | msgstr "Kliknutím rozbaliť/zbaliť" 117 | 118 | #: views/edit-filters.php:14 119 | msgid "Active Columns" 120 | msgstr "" 121 | 122 | #: views/edit-filters.php:15 123 | msgid "Drag and drop to order and select which columns are displayed in the entries table." 124 | msgstr "" 125 | 126 | #: views/edit-filters.php:20 127 | msgid "Apply" 128 | msgstr "Použiť" 129 | 130 | #: views/edit-filters.php:21 131 | msgid "Save Filter Set" 132 | msgstr "" 133 | 134 | #: views/edit-filters.php:23 135 | msgid "Export to CSV" 136 | msgstr "Export do CSV" 137 | 138 | #: views/edit-filters.php:27 139 | msgid "Filter Name" 140 | msgstr "Názov filtra" 141 | 142 | #: views/edit-filters.php:28 143 | msgid "Save" 144 | msgstr "Uložiť" 145 | 146 | #: views/edit-filters.php:29 147 | msgid "Cancel" 148 | msgstr "Zrušiť" 149 | 150 | #: views/edit-filters.php:32 151 | msgid "Reset to Default" 152 | msgstr "" 153 | 154 | #. Plugin Name of the plugin/theme 155 | msgid "Advanced Post Manager" 156 | msgstr "" 157 | 158 | #. Description of the plugin/theme 159 | msgid "Dialing custom post types to 11 with advanced filtering controls." 160 | msgstr "" 161 | 162 | #. Author of the plugin/theme 163 | msgid "Modern Tribe, Inc." 164 | msgstr "" 165 | 166 | #. Author URI of the plugin/theme 167 | msgid "http://m.tri.be/4n" 168 | msgstr "" -------------------------------------------------------------------------------- /lang/advanced-post-manager-sl_SI.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-events-calendar/advanced-post-manager/921af81dfcda9421246f10e1f721ff5baaa903c0/lang/advanced-post-manager-sl_SI.mo -------------------------------------------------------------------------------- /lang/advanced-post-manager-sl_SI.po: -------------------------------------------------------------------------------- 1 | # Translation of Advanced Post Manager in Slovenian 2 | # This file is distributed under the same license as the Advanced Post Manager package. 3 | msgid "" 4 | msgstr "" 5 | "PO-Revision-Date: 2015-06-08 15:49:53+0000\n" 6 | "MIME-Version: 1.0\n" 7 | "Content-Type: text/plain; charset=UTF-8\n" 8 | "Content-Transfer-Encoding: 8bit\n" 9 | "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" 10 | "X-Generator: GlotPress/1.0-alpha-1100\n" 11 | "Project-Id-Version: Advanced Post Manager\n" 12 | 13 | #: views/edit-filters.php:8 14 | msgid "Filters & Columns" 15 | msgstr "" 16 | 17 | #: demo/demo.php:30 18 | msgid "It looks like you might not have any demo data. Download our data and use the WordPress Importer." 19 | msgstr "Izgleda kot da nimate nobenih demo podatkov. Prenesite si naše podatke in uporabite WordPress Importer." 20 | 21 | #: lib/tribe-columns.class.php:43 22 | msgid "Column Name" 23 | msgstr "Ime stolpca" 24 | 25 | #: lib/tribe-columns.class.php:144 lib/tribe-columns.class.php:165 26 | msgid "Comments" 27 | msgstr "Komentarji" 28 | 29 | #: lib/tribe-columns.class.php:158 30 | msgid "Add a Column" 31 | msgstr "Dodaj stolpec" 32 | 33 | #: lib/tribe-filters.class.php:52 lib/tribe-filters.class.php:72 34 | msgid "Is" 35 | msgstr "Je" 36 | 37 | #: lib/tribe-filters.class.php:53 lib/tribe-filters.class.php:73 38 | msgid "Is Not" 39 | msgstr "Ni" 40 | 41 | #: lib/tribe-filters.class.php:71 42 | msgid "Search" 43 | msgstr "Iskanje" 44 | 45 | #: lib/tribe-filters.class.php:82 46 | msgid "Member Type" 47 | msgstr "Tip člana" 48 | 49 | #: lib/tribe-filters.class.php:86 50 | msgid "Cafe" 51 | msgstr "Cafe" 52 | 53 | #: lib/tribe-filters.class.php:87 54 | msgid "Private Desk" 55 | msgstr "Zasebna miza" 56 | 57 | #: lib/tribe-filters.class.php:88 58 | msgid "Office" 59 | msgstr "Pisarna" 60 | 61 | #: lib/tribe-filters.class.php:95 62 | msgid "what i’m querying. probably a key in the options array in $filters" 63 | msgstr "kaj poizvedujem. najbrž ključ med možnostmi izbire v $filtrih." 64 | 65 | #: lib/tribe-filters.class.php:181 66 | msgid "Active Filters" 67 | msgstr "" 68 | 69 | #: lib/tribe-filters.class.php:537 70 | msgid "Saved Filter Set" 71 | msgstr "" 72 | 73 | #: lib/tribe-filters.class.php:539 74 | msgid "Choose a Saved Filter" 75 | msgstr "Izberi shranjen filter" 76 | 77 | #: lib/tribe-filters.class.php:658 78 | msgid "Add a Filter" 79 | msgstr "Dodaj filter" 80 | 81 | #: lib/tribe-meta-box-helper.php:45 82 | msgid "Extended Information" 83 | msgstr "Razširjene informacije" 84 | 85 | #: lib/tribe-meta-box.php:124 lib/tribe-meta-box.php:434 86 | msgid "Delete this image" 87 | msgstr "Izbriši to sliko" 88 | 89 | #: lib/tribe-meta-box.php:124 lib/tribe-meta-box.php:387 90 | #: lib/tribe-meta-box.php:434 91 | msgid "Delete" 92 | msgstr "Izbriši" 93 | 94 | #: lib/tribe-meta-box.php:384 95 | msgid "Uploaded files" 96 | msgstr "Naložene datoteke" 97 | 98 | #: lib/tribe-meta-box.php:393 99 | msgid "Upload new files" 100 | msgstr "Naloži nove datoteke" 101 | 102 | #: lib/tribe-meta-box.php:396 103 | msgid "Add another file" 104 | msgstr "Dodaj novo datoteko" 105 | 106 | #: lib/tribe-meta-box.php:441 107 | msgid "Add more images" 108 | msgstr "Dodaj več slik" 109 | 110 | #: lib/tribe-meta-box.php:452 111 | msgid "Select a color" 112 | msgstr "Izberi barvo" 113 | 114 | #: views/edit-filters.php:7 views/edit-filters.php:8 115 | msgid "Click to toggle" 116 | msgstr "Klikni stikalo" 117 | 118 | #: views/edit-filters.php:14 119 | msgid "Active Columns" 120 | msgstr "" 121 | 122 | #: views/edit-filters.php:15 123 | msgid "Drag and drop to order and select which columns are displayed in the entries table." 124 | msgstr "" 125 | 126 | #: views/edit-filters.php:20 127 | msgid "Apply" 128 | msgstr "Uporabi" 129 | 130 | #: views/edit-filters.php:21 131 | msgid "Save Filter Set" 132 | msgstr "" 133 | 134 | #: views/edit-filters.php:23 135 | msgid "Export to CSV" 136 | msgstr "Izvozi v CSV" 137 | 138 | #: views/edit-filters.php:27 139 | msgid "Filter Name" 140 | msgstr "Ime filtra" 141 | 142 | #: views/edit-filters.php:28 143 | msgid "Save" 144 | msgstr "Shrani" 145 | 146 | #: views/edit-filters.php:29 147 | msgid "Cancel" 148 | msgstr "Prekliči" 149 | 150 | #: views/edit-filters.php:32 151 | msgid "Reset to Default" 152 | msgstr "" 153 | 154 | #. Plugin Name of the plugin/theme 155 | msgid "Advanced Post Manager" 156 | msgstr "" 157 | 158 | #. Description of the plugin/theme 159 | msgid "Dialing custom post types to 11 with advanced filtering controls." 160 | msgstr "" 161 | 162 | #. Author of the plugin/theme 163 | msgid "Modern Tribe, Inc." 164 | msgstr "" 165 | 166 | #. Author URI of the plugin/theme 167 | msgid "http://m.tri.be/4n" 168 | msgstr "" -------------------------------------------------------------------------------- /lang/advanced-post-manager-sr_RS.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-events-calendar/advanced-post-manager/921af81dfcda9421246f10e1f721ff5baaa903c0/lang/advanced-post-manager-sr_RS.mo -------------------------------------------------------------------------------- /lang/advanced-post-manager-sr_RS.po: -------------------------------------------------------------------------------- 1 | # Translation of Advanced Post Manager in Serbian 2 | # This file is distributed under the same license as the Advanced Post Manager package. 3 | msgid "" 4 | msgstr "" 5 | "PO-Revision-Date: 2015-06-08 15:48:15+0000\n" 6 | "MIME-Version: 1.0\n" 7 | "Content-Type: text/plain; charset=UTF-8\n" 8 | "Content-Transfer-Encoding: 8bit\n" 9 | "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" 10 | "X-Generator: GlotPress/1.0-alpha-1100\n" 11 | "Project-Id-Version: Advanced Post Manager\n" 12 | 13 | #: views/edit-filters.php:8 14 | msgid "Filters & Columns" 15 | msgstr "" 16 | 17 | #: demo/demo.php:30 18 | msgid "It looks like you might not have any demo data. Download our data and use the WordPress Importer." 19 | msgstr "Izgleda da nemate demo podataka. Skinite naše podatke i koristite WordPress importer." 20 | 21 | #: lib/tribe-columns.class.php:43 22 | msgid "Column Name" 23 | msgstr "Naziv kolone" 24 | 25 | #: lib/tribe-columns.class.php:144 lib/tribe-columns.class.php:165 26 | msgid "Comments" 27 | msgstr "Komentari" 28 | 29 | #: lib/tribe-columns.class.php:158 30 | msgid "Add a Column" 31 | msgstr "Dodajte kolonu" 32 | 33 | #: lib/tribe-filters.class.php:52 lib/tribe-filters.class.php:72 34 | msgid "Is" 35 | msgstr "Je" 36 | 37 | #: lib/tribe-filters.class.php:53 lib/tribe-filters.class.php:73 38 | msgid "Is Not" 39 | msgstr "Nije" 40 | 41 | #: lib/tribe-filters.class.php:71 42 | msgid "Search" 43 | msgstr "Pretraga" 44 | 45 | #: lib/tribe-filters.class.php:82 46 | msgid "Member Type" 47 | msgstr "Tip člana" 48 | 49 | #: lib/tribe-filters.class.php:86 50 | msgid "Cafe" 51 | msgstr "Kafe" 52 | 53 | #: lib/tribe-filters.class.php:87 54 | msgid "Private Desk" 55 | msgstr "Privatna firma" 56 | 57 | #: lib/tribe-filters.class.php:88 58 | msgid "Office" 59 | msgstr "Kancelarija" 60 | 61 | #: lib/tribe-filters.class.php:95 62 | msgid "what i’m querying. probably a key in the options array in $filters" 63 | msgstr "koji je upit. vjerovatno ključ u nizu opcija u $filters" 64 | 65 | #: lib/tribe-filters.class.php:181 66 | msgid "Active Filters" 67 | msgstr "" 68 | 69 | #: lib/tribe-filters.class.php:537 70 | msgid "Saved Filter Set" 71 | msgstr "" 72 | 73 | #: lib/tribe-filters.class.php:539 74 | msgid "Choose a Saved Filter" 75 | msgstr "Odaberite sačuvani filter" 76 | 77 | #: lib/tribe-filters.class.php:658 78 | msgid "Add a Filter" 79 | msgstr "Dodajte filter" 80 | 81 | #: lib/tribe-meta-box-helper.php:45 82 | msgid "Extended Information" 83 | msgstr "Detaljne informacije" 84 | 85 | #: lib/tribe-meta-box.php:124 lib/tribe-meta-box.php:434 86 | msgid "Delete this image" 87 | msgstr "Obrišite ovu sliku" 88 | 89 | #: lib/tribe-meta-box.php:124 lib/tribe-meta-box.php:387 90 | #: lib/tribe-meta-box.php:434 91 | msgid "Delete" 92 | msgstr "Obriši" 93 | 94 | #: lib/tribe-meta-box.php:384 95 | msgid "Uploaded files" 96 | msgstr "Dodati fajlovi" 97 | 98 | #: lib/tribe-meta-box.php:393 99 | msgid "Upload new files" 100 | msgstr "Dodaj nove fajlove" 101 | 102 | #: lib/tribe-meta-box.php:396 103 | msgid "Add another file" 104 | msgstr "Dodaj još jedan fajl" 105 | 106 | #: lib/tribe-meta-box.php:441 107 | msgid "Add more images" 108 | msgstr "Dodajte još slika" 109 | 110 | #: lib/tribe-meta-box.php:452 111 | msgid "Select a color" 112 | msgstr "Odaberite boju" 113 | 114 | #: views/edit-filters.php:7 views/edit-filters.php:8 115 | msgid "Click to toggle" 116 | msgstr "Kliknite da bi ste otvorili" 117 | 118 | #: views/edit-filters.php:14 119 | msgid "Active Columns" 120 | msgstr "" 121 | 122 | #: views/edit-filters.php:15 123 | msgid "Drag and drop to order and select which columns are displayed in the entries table." 124 | msgstr "" 125 | 126 | #: views/edit-filters.php:20 127 | msgid "Apply" 128 | msgstr "Potvrdi" 129 | 130 | #: views/edit-filters.php:21 131 | msgid "Save Filter Set" 132 | msgstr "" 133 | 134 | #: views/edit-filters.php:23 135 | msgid "Export to CSV" 136 | msgstr "Izvezi u CSV" 137 | 138 | #: views/edit-filters.php:27 139 | msgid "Filter Name" 140 | msgstr "Naziv filtera" 141 | 142 | #: views/edit-filters.php:28 143 | msgid "Save" 144 | msgstr "Sačuvaj" 145 | 146 | #: views/edit-filters.php:29 147 | msgid "Cancel" 148 | msgstr "Otkaži" 149 | 150 | #: views/edit-filters.php:32 151 | msgid "Reset to Default" 152 | msgstr "" 153 | 154 | #. Plugin Name of the plugin/theme 155 | msgid "Advanced Post Manager" 156 | msgstr "" 157 | 158 | #. Description of the plugin/theme 159 | msgid "Dialing custom post types to 11 with advanced filtering controls." 160 | msgstr "" 161 | 162 | #. Author of the plugin/theme 163 | msgid "Modern Tribe, Inc." 164 | msgstr "" 165 | 166 | #. Author URI of the plugin/theme 167 | msgid "http://m.tri.be/4n" 168 | msgstr "" -------------------------------------------------------------------------------- /lang/advanced-post-manager-sv_SE.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-events-calendar/advanced-post-manager/921af81dfcda9421246f10e1f721ff5baaa903c0/lang/advanced-post-manager-sv_SE.mo -------------------------------------------------------------------------------- /lang/advanced-post-manager-sv_SE.po: -------------------------------------------------------------------------------- 1 | # Translation of Advanced Post Manager in Swedish 2 | # This file is distributed under the same license as the Advanced Post Manager package. 3 | msgid "" 4 | msgstr "" 5 | "PO-Revision-Date: 2015-06-08 15:47:51+0000\n" 6 | "MIME-Version: 1.0\n" 7 | "Content-Type: text/plain; charset=UTF-8\n" 8 | "Content-Transfer-Encoding: 8bit\n" 9 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 10 | "X-Generator: GlotPress/1.0-alpha-1100\n" 11 | "Project-Id-Version: Advanced Post Manager\n" 12 | 13 | #: views/edit-filters.php:8 14 | msgid "Filters & Columns" 15 | msgstr "" 16 | 17 | #: demo/demo.php:30 18 | msgid "It looks like you might not have any demo data. Download our data and use the WordPress Importer." 19 | msgstr "Det verkar som du kanske inte har någon demodata. Ladda ner vår data och använd WordPress importerade." 20 | 21 | #: lib/tribe-columns.class.php:43 22 | msgid "Column Name" 23 | msgstr "Kolumnnamn" 24 | 25 | #: lib/tribe-columns.class.php:144 lib/tribe-columns.class.php:165 26 | msgid "Comments" 27 | msgstr "Kommentarer" 28 | 29 | #: lib/tribe-columns.class.php:158 30 | msgid "Add a Column" 31 | msgstr "Lägg till en kolumn" 32 | 33 | #: lib/tribe-filters.class.php:52 lib/tribe-filters.class.php:72 34 | msgid "Is" 35 | msgstr "är" 36 | 37 | #: lib/tribe-filters.class.php:53 lib/tribe-filters.class.php:73 38 | msgid "Is Not" 39 | msgstr "är ej" 40 | 41 | #: lib/tribe-filters.class.php:71 42 | msgid "Search" 43 | msgstr "Sök" 44 | 45 | #: lib/tribe-filters.class.php:82 46 | msgid "Member Type" 47 | msgstr "Medlemstyp" 48 | 49 | #: lib/tribe-filters.class.php:86 50 | msgid "Cafe" 51 | msgstr "Café" 52 | 53 | #: lib/tribe-filters.class.php:87 54 | msgid "Private Desk" 55 | msgstr "Privat arbetshörna" 56 | 57 | #: lib/tribe-filters.class.php:88 58 | msgid "Office" 59 | msgstr "Kontor" 60 | 61 | #: lib/tribe-filters.class.php:95 62 | msgid "what i’m querying. probably a key in the options array in $filters" 63 | msgstr "min fråga. antagligen en nyckel i inställningslistan $filter" 64 | 65 | #: lib/tribe-filters.class.php:181 66 | msgid "Active Filters" 67 | msgstr "" 68 | 69 | #: lib/tribe-filters.class.php:537 70 | msgid "Saved Filter Set" 71 | msgstr "" 72 | 73 | #: lib/tribe-filters.class.php:539 74 | msgid "Choose a Saved Filter" 75 | msgstr "Välj ett sparat filter" 76 | 77 | #: lib/tribe-filters.class.php:658 78 | msgid "Add a Filter" 79 | msgstr "Lägg till ett filter" 80 | 81 | #: lib/tribe-meta-box-helper.php:45 82 | msgid "Extended Information" 83 | msgstr "Ytterligare information" 84 | 85 | #: lib/tribe-meta-box.php:124 lib/tribe-meta-box.php:434 86 | msgid "Delete this image" 87 | msgstr "Radera denna bild" 88 | 89 | #: lib/tribe-meta-box.php:124 lib/tribe-meta-box.php:387 90 | #: lib/tribe-meta-box.php:434 91 | msgid "Delete" 92 | msgstr "Radera" 93 | 94 | #: lib/tribe-meta-box.php:384 95 | msgid "Uploaded files" 96 | msgstr "Uppladdade filer" 97 | 98 | #: lib/tribe-meta-box.php:393 99 | msgid "Upload new files" 100 | msgstr "Ladda upp nya filer" 101 | 102 | #: lib/tribe-meta-box.php:396 103 | msgid "Add another file" 104 | msgstr "Lägg till en ytterligare fil" 105 | 106 | #: lib/tribe-meta-box.php:441 107 | msgid "Add more images" 108 | msgstr "Lägg till fler bilder" 109 | 110 | #: lib/tribe-meta-box.php:452 111 | msgid "Select a color" 112 | msgstr "Välj en färg" 113 | 114 | #: views/edit-filters.php:7 views/edit-filters.php:8 115 | msgid "Click to toggle" 116 | msgstr "Klicka för att växla" 117 | 118 | #: views/edit-filters.php:14 119 | msgid "Active Columns" 120 | msgstr "" 121 | 122 | #: views/edit-filters.php:15 123 | msgid "Drag and drop to order and select which columns are displayed in the entries table." 124 | msgstr "" 125 | 126 | #: views/edit-filters.php:20 127 | msgid "Apply" 128 | msgstr "Tillämpa" 129 | 130 | #: views/edit-filters.php:21 131 | msgid "Save Filter Set" 132 | msgstr "" 133 | 134 | #: views/edit-filters.php:23 135 | msgid "Export to CSV" 136 | msgstr "Exportera till CSV" 137 | 138 | #: views/edit-filters.php:27 139 | msgid "Filter Name" 140 | msgstr "Filternamn" 141 | 142 | #: views/edit-filters.php:28 143 | msgid "Save" 144 | msgstr "Spara" 145 | 146 | #: views/edit-filters.php:29 147 | msgid "Cancel" 148 | msgstr "Avbryt" 149 | 150 | #: views/edit-filters.php:32 151 | msgid "Reset to Default" 152 | msgstr "" 153 | 154 | #. Plugin Name of the plugin/theme 155 | msgid "Advanced Post Manager" 156 | msgstr "" 157 | 158 | #. Description of the plugin/theme 159 | msgid "Dialing custom post types to 11 with advanced filtering controls." 160 | msgstr "" 161 | 162 | #. Author of the plugin/theme 163 | msgid "Modern Tribe, Inc." 164 | msgstr "" 165 | 166 | #. Author URI of the plugin/theme 167 | msgid "http://m.tri.be/4n" 168 | msgstr "" -------------------------------------------------------------------------------- /lang/advanced-post-manager-tr_TR.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-events-calendar/advanced-post-manager/921af81dfcda9421246f10e1f721ff5baaa903c0/lang/advanced-post-manager-tr_TR.mo -------------------------------------------------------------------------------- /lang/advanced-post-manager-tr_TR.po: -------------------------------------------------------------------------------- 1 | # Translation of Advanced Post Manager in Turkish 2 | # This file is distributed under the same license as the Advanced Post Manager package. 3 | msgid "" 4 | msgstr "" 5 | "PO-Revision-Date: 2016-10-13 05:53:45+0000\n" 6 | "MIME-Version: 1.0\n" 7 | "Content-Type: text/plain; charset=UTF-8\n" 8 | "Content-Transfer-Encoding: 8bit\n" 9 | "Plural-Forms: nplurals=2; plural=(n > 1);\n" 10 | "X-Generator: GlotPress/1.0-alpha-1100\n" 11 | "Project-Id-Version: Advanced Post Manager\n" 12 | 13 | #: views/edit-filters.php:8 14 | msgid "Filters & Columns" 15 | msgstr "" 16 | 17 | #: demo/demo.php:30 18 | msgid "It looks like you might not have any demo data. Download our data and use the WordPress Importer." 19 | msgstr "It looks like you might not have any demo data. Download our data and use the WordPress Importer." 20 | 21 | #: lib/tribe-columns.class.php:43 22 | msgid "Column Name" 23 | msgstr "Sütun Adı" 24 | 25 | #: lib/tribe-columns.class.php:144 lib/tribe-columns.class.php:165 26 | msgid "Comments" 27 | msgstr "Yorumlar" 28 | 29 | #: lib/tribe-columns.class.php:158 30 | msgid "Add a Column" 31 | msgstr "Sütun Ekle" 32 | 33 | #: lib/tribe-filters.class.php:52 lib/tribe-filters.class.php:72 34 | msgid "Is" 35 | msgstr "Öyle" 36 | 37 | #: lib/tribe-filters.class.php:53 lib/tribe-filters.class.php:73 38 | msgid "Is Not" 39 | msgstr "Öyle değil" 40 | 41 | #: lib/tribe-filters.class.php:71 42 | msgid "Search" 43 | msgstr "Ara" 44 | 45 | #: lib/tribe-filters.class.php:82 46 | msgid "Member Type" 47 | msgstr "Üye Tipi" 48 | 49 | #: lib/tribe-filters.class.php:86 50 | msgid "Cafe" 51 | msgstr "Kafe" 52 | 53 | #: lib/tribe-filters.class.php:87 54 | msgid "Private Desk" 55 | msgstr "Özel masa" 56 | 57 | #: lib/tribe-filters.class.php:88 58 | msgid "Office" 59 | msgstr "Ofis" 60 | 61 | #: lib/tribe-filters.class.php:95 62 | msgid "what i’m querying. probably a key in the options array in $filters" 63 | msgstr "what i’m querying. probably a key in the options array in $filters" 64 | 65 | #: lib/tribe-filters.class.php:181 66 | msgid "Active Filters" 67 | msgstr "Aktif Filtreler" 68 | 69 | #: lib/tribe-filters.class.php:537 70 | msgid "Saved Filter Set" 71 | msgstr "" 72 | 73 | #: lib/tribe-filters.class.php:539 74 | msgid "Choose a Saved Filter" 75 | msgstr "Kaydedilmiş filtre seç" 76 | 77 | #: lib/tribe-filters.class.php:658 78 | msgid "Add a Filter" 79 | msgstr "Filtre Ekle" 80 | 81 | #: lib/tribe-meta-box-helper.php:45 82 | msgid "Extended Information" 83 | msgstr "Genişletilmiş Bilgi" 84 | 85 | #: lib/tribe-meta-box.php:124 lib/tribe-meta-box.php:434 86 | msgid "Delete this image" 87 | msgstr "Bu resimi sil" 88 | 89 | #: lib/tribe-meta-box.php:124 lib/tribe-meta-box.php:387 90 | #: lib/tribe-meta-box.php:434 91 | msgid "Delete" 92 | msgstr "Sil" 93 | 94 | #: lib/tribe-meta-box.php:384 95 | msgid "Uploaded files" 96 | msgstr "Yüklenmiş dosyalar" 97 | 98 | #: lib/tribe-meta-box.php:393 99 | msgid "Upload new files" 100 | msgstr "Yeni dosya yükle" 101 | 102 | #: lib/tribe-meta-box.php:396 103 | msgid "Add another file" 104 | msgstr "Başka dosya ekle" 105 | 106 | #: lib/tribe-meta-box.php:441 107 | msgid "Add more images" 108 | msgstr "Daha fazla resim ekle" 109 | 110 | #: lib/tribe-meta-box.php:452 111 | msgid "Select a color" 112 | msgstr "Renk seç" 113 | 114 | #: views/edit-filters.php:7 views/edit-filters.php:8 115 | msgid "Click to toggle" 116 | msgstr "Geçiş yapmak için tıklayın" 117 | 118 | #: views/edit-filters.php:14 119 | msgid "Active Columns" 120 | msgstr "" 121 | 122 | #: views/edit-filters.php:15 123 | msgid "Drag and drop to order and select which columns are displayed in the entries table." 124 | msgstr "" 125 | 126 | #: views/edit-filters.php:20 127 | msgid "Apply" 128 | msgstr "Uygula" 129 | 130 | #: views/edit-filters.php:21 131 | msgid "Save Filter Set" 132 | msgstr "" 133 | 134 | #: views/edit-filters.php:23 135 | msgid "Export to CSV" 136 | msgstr "CSV olarak aktar" 137 | 138 | #: views/edit-filters.php:27 139 | msgid "Filter Name" 140 | msgstr "Filtre Adı" 141 | 142 | #: views/edit-filters.php:28 143 | msgid "Save" 144 | msgstr "Kaydet" 145 | 146 | #: views/edit-filters.php:29 147 | msgid "Cancel" 148 | msgstr "İptal" 149 | 150 | #: views/edit-filters.php:32 151 | msgid "Reset to Default" 152 | msgstr "" 153 | 154 | #. Plugin Name of the plugin/theme 155 | msgid "Advanced Post Manager" 156 | msgstr "" 157 | 158 | #. Description of the plugin/theme 159 | msgid "Dialing custom post types to 11 with advanced filtering controls." 160 | msgstr "" 161 | 162 | #. Author of the plugin/theme 163 | msgid "Modern Tribe, Inc." 164 | msgstr "Modern Tribe, Inc." 165 | 166 | #. Author URI of the plugin/theme 167 | msgid "http://m.tri.be/4n" 168 | msgstr "" -------------------------------------------------------------------------------- /lang/advanced-post-manager-uk.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-events-calendar/advanced-post-manager/921af81dfcda9421246f10e1f721ff5baaa903c0/lang/advanced-post-manager-uk.mo -------------------------------------------------------------------------------- /lang/advanced-post-manager-zh_TW.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-events-calendar/advanced-post-manager/921af81dfcda9421246f10e1f721ff5baaa903c0/lang/advanced-post-manager-zh_TW.mo -------------------------------------------------------------------------------- /lang/advanced-post-manager-zh_TW.po: -------------------------------------------------------------------------------- 1 | # Translation of Advanced Post Manager in Chinese (Taiwan) 2 | # This file is distributed under the same license as the Advanced Post Manager package. 3 | msgid "" 4 | msgstr "" 5 | "PO-Revision-Date: 2015-06-08 15:54:59+0000\n" 6 | "MIME-Version: 1.0\n" 7 | "Content-Type: text/plain; charset=UTF-8\n" 8 | "Content-Transfer-Encoding: 8bit\n" 9 | "Plural-Forms: nplurals=1; plural=0;\n" 10 | "X-Generator: GlotPress/1.0-alpha-1100\n" 11 | "Project-Id-Version: Advanced Post Manager\n" 12 | 13 | #: views/edit-filters.php:8 14 | msgid "Filters & Columns" 15 | msgstr "" 16 | 17 | #: demo/demo.php:30 18 | msgid "It looks like you might not have any demo data. Download our data and use the WordPress Importer." 19 | msgstr "似乎你可能沒有我們任何的樣本資料,下載我們的資料 並使用 WordPress Importer。" 20 | 21 | #: lib/tribe-columns.class.php:43 22 | msgid "Column Name" 23 | msgstr "欄名稱" 24 | 25 | #: lib/tribe-columns.class.php:144 lib/tribe-columns.class.php:165 26 | msgid "Comments" 27 | msgstr "評論" 28 | 29 | #: lib/tribe-columns.class.php:158 30 | msgid "Add a Column" 31 | msgstr "新增欄" 32 | 33 | #: lib/tribe-filters.class.php:52 lib/tribe-filters.class.php:72 34 | msgid "Is" 35 | msgstr "是" 36 | 37 | #: lib/tribe-filters.class.php:53 lib/tribe-filters.class.php:73 38 | msgid "Is Not" 39 | msgstr "不是" 40 | 41 | #: lib/tribe-filters.class.php:71 42 | msgid "Search" 43 | msgstr "搜尋" 44 | 45 | #: lib/tribe-filters.class.php:82 46 | msgid "Member Type" 47 | msgstr "會員類型" 48 | 49 | #: lib/tribe-filters.class.php:86 50 | msgid "Cafe" 51 | msgstr "咖啡館" 52 | 53 | #: lib/tribe-filters.class.php:87 54 | msgid "Private Desk" 55 | msgstr "私人辦公桌" 56 | 57 | #: lib/tribe-filters.class.php:88 58 | msgid "Office" 59 | msgstr "辦公室" 60 | 61 | #: lib/tribe-filters.class.php:95 62 | msgid "what i’m querying. probably a key in the options array in $filters" 63 | msgstr "我所要查詢的,大概是 a key in the options array in $filters。" 64 | 65 | #: lib/tribe-filters.class.php:181 66 | msgid "Active Filters" 67 | msgstr "" 68 | 69 | #: lib/tribe-filters.class.php:537 70 | msgid "Saved Filter Set" 71 | msgstr "" 72 | 73 | #: lib/tribe-filters.class.php:539 74 | msgid "Choose a Saved Filter" 75 | msgstr "選擇現有的篩選" 76 | 77 | #: lib/tribe-filters.class.php:658 78 | msgid "Add a Filter" 79 | msgstr "新增篩選" 80 | 81 | #: lib/tribe-meta-box-helper.php:45 82 | msgid "Extended Information" 83 | msgstr "延伸訊息:" 84 | 85 | #: lib/tribe-meta-box.php:124 lib/tribe-meta-box.php:434 86 | msgid "Delete this image" 87 | msgstr "刪除此圖片" 88 | 89 | #: lib/tribe-meta-box.php:124 lib/tribe-meta-box.php:387 90 | #: lib/tribe-meta-box.php:434 91 | msgid "Delete" 92 | msgstr "刪除" 93 | 94 | #: lib/tribe-meta-box.php:384 95 | msgid "Uploaded files" 96 | msgstr "上傳檔案" 97 | 98 | #: lib/tribe-meta-box.php:393 99 | msgid "Upload new files" 100 | msgstr "上傳新檔案" 101 | 102 | #: lib/tribe-meta-box.php:396 103 | msgid "Add another file" 104 | msgstr "新增另一檔案" 105 | 106 | #: lib/tribe-meta-box.php:441 107 | msgid "Add more images" 108 | msgstr "新增更多圖片" 109 | 110 | #: lib/tribe-meta-box.php:452 111 | msgid "Select a color" 112 | msgstr "選擇顏色" 113 | 114 | #: views/edit-filters.php:7 views/edit-filters.php:8 115 | msgid "Click to toggle" 116 | msgstr "點擊以切換" 117 | 118 | #: views/edit-filters.php:14 119 | msgid "Active Columns" 120 | msgstr "" 121 | 122 | #: views/edit-filters.php:15 123 | msgid "Drag and drop to order and select which columns are displayed in the entries table." 124 | msgstr "" 125 | 126 | #: views/edit-filters.php:20 127 | msgid "Apply" 128 | msgstr "套用" 129 | 130 | #: views/edit-filters.php:21 131 | msgid "Save Filter Set" 132 | msgstr "" 133 | 134 | #: views/edit-filters.php:23 135 | msgid "Export to CSV" 136 | msgstr "匯出至 CSV" 137 | 138 | #: views/edit-filters.php:27 139 | msgid "Filter Name" 140 | msgstr "篩選名稱" 141 | 142 | #: views/edit-filters.php:28 143 | msgid "Save" 144 | msgstr "儲存" 145 | 146 | #: views/edit-filters.php:29 147 | msgid "Cancel" 148 | msgstr "取消" 149 | 150 | #: views/edit-filters.php:32 151 | msgid "Reset to Default" 152 | msgstr "" 153 | 154 | #. Plugin Name of the plugin/theme 155 | msgid "Advanced Post Manager" 156 | msgstr "" 157 | 158 | #. Description of the plugin/theme 159 | msgid "Dialing custom post types to 11 with advanced filtering controls." 160 | msgstr "" 161 | 162 | #. Author of the plugin/theme 163 | msgid "Modern Tribe, Inc." 164 | msgstr "" 165 | 166 | #. Author URI of the plugin/theme 167 | msgid "http://m.tri.be/4n" 168 | msgstr "" -------------------------------------------------------------------------------- /lang/advanced-post-manager.pot: -------------------------------------------------------------------------------- 1 | # Copyright (C) 2017 Advanced Post Manager 4.4.0 2 | # This file is distributed under the same license as the Advanced Post Manager 4.4.0 package. 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: Advanced Post Manager 4.4.0\n" 6 | "Report-Msgid-Bugs-To: http://m.tri.be/191x\n" 7 | "MIME-Version: 1.0\n" 8 | "Content-Type: text/plain; charset=UTF-8\n" 9 | "Content-Transfer-Encoding: 8bit\n" 10 | "PO-Revision-Date: 2017-MO-DA HO:MI+ZONE\n" 11 | "X-Generated-Time: 2017-01-05T22:52:46.790Z\n" 12 | "X-Poedit-Basepath: ..\n" 13 | "X-Poedit-SourceCharset: UTF-8\n" 14 | "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;_nx_noop:3c,1,2;__ngettext_noop:1,2\n" 15 | "X-Poedit-SearchPath-0: .\n" 16 | "X-Poedit-SearchPathExcluded-0: *.js\n" 17 | "X-Poedit-SearchPathExcluded-1: common\n" 18 | "X-Poedit-SearchPathExcluded-2: lang\n" 19 | "X-Poedit-SearchPathExcluded-3: tests\n" 20 | "X-Poedit-SearchPathExcluded-4: vendor\n" 21 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 22 | 23 | #: demo/demo.php:30 24 | msgid "It looks like you might not have any demo data. Download our data and use the WordPress Importer." 25 | msgstr "" 26 | 27 | #: lib/tribe-columns.class.php:43 28 | msgid "Column Name" 29 | msgstr "" 30 | 31 | #: lib/tribe-columns.class.php:158 32 | msgid "Add a Column" 33 | msgstr "" 34 | 35 | #: lib/tribe-filters.class.php:52, lib/tribe-filters.class.php:72 36 | msgid "Is" 37 | msgstr "" 38 | 39 | #: lib/tribe-filters.class.php:53, lib/tribe-filters.class.php:73 40 | msgid "Is Not" 41 | msgstr "" 42 | 43 | #: lib/tribe-filters.class.php:71 44 | msgid "Search" 45 | msgstr "" 46 | 47 | #: lib/tribe-filters.class.php:82 48 | msgid "Member Type" 49 | msgstr "" 50 | 51 | #: lib/tribe-filters.class.php:86 52 | msgid "Cafe" 53 | msgstr "" 54 | 55 | #: lib/tribe-filters.class.php:87 56 | msgid "Private Desk" 57 | msgstr "" 58 | 59 | #: lib/tribe-filters.class.php:88 60 | msgid "Office" 61 | msgstr "" 62 | 63 | #: lib/tribe-filters.class.php:95 64 | msgid "what i’m querying. probably a key in the options array in $filters" 65 | msgstr "" 66 | 67 | #: lib/tribe-filters.class.php:181 68 | msgid "Active Filters" 69 | msgstr "" 70 | 71 | #: lib/tribe-filters.class.php:537 72 | msgid "Saved Filter Set" 73 | msgstr "" 74 | 75 | #: lib/tribe-filters.class.php:539 76 | msgid "Choose a Saved Filter" 77 | msgstr "" 78 | 79 | #: lib/tribe-filters.class.php:658 80 | msgid "Add a Filter" 81 | msgstr "" 82 | 83 | #: lib/tribe-meta-box-helper.php:45 84 | msgid "Extended Information" 85 | msgstr "" 86 | 87 | #: lib/tribe-meta-box.php:124, lib/tribe-meta-box.php:434 88 | msgid "Delete this image" 89 | msgstr "" 90 | 91 | #: lib/tribe-meta-box.php:124, lib/tribe-meta-box.php:387, lib/tribe-meta-box.php:434 92 | msgid "Delete" 93 | msgstr "" 94 | 95 | #: lib/tribe-meta-box.php:384 96 | msgid "Uploaded files" 97 | msgstr "" 98 | 99 | #: lib/tribe-meta-box.php:393 100 | msgid "Upload new files" 101 | msgstr "" 102 | 103 | #: lib/tribe-meta-box.php:396 104 | msgid "Add another file" 105 | msgstr "" 106 | 107 | #: lib/tribe-meta-box.php:441 108 | msgid "Add more images" 109 | msgstr "" 110 | 111 | #: lib/tribe-meta-box.php:452 112 | msgid "Select a color" 113 | msgstr "" 114 | 115 | #: views/edit-filters.php:10, views/edit-filters.php:11 116 | msgid "Click to toggle" 117 | msgstr "" 118 | 119 | #: views/edit-filters.php:11 120 | msgid "Filters & Columns" 121 | msgstr "" 122 | 123 | #: views/edit-filters.php:17 124 | msgid "Active Columns" 125 | msgstr "" 126 | 127 | #: views/edit-filters.php:18 128 | msgid "Drag and drop to order and select which columns are displayed in the entries table." 129 | msgstr "" 130 | 131 | #: views/edit-filters.php:23 132 | msgid "Apply" 133 | msgstr "" 134 | 135 | #: views/edit-filters.php:24 136 | msgid "Save Filter Set" 137 | msgstr "" 138 | 139 | #: views/edit-filters.php:26 140 | msgid "Export to CSV" 141 | msgstr "" 142 | 143 | #: views/edit-filters.php:30 144 | msgid "Filter Name" 145 | msgstr "" 146 | 147 | #: views/edit-filters.php:31 148 | msgid "Save" 149 | msgstr "" 150 | 151 | #: views/edit-filters.php:32 152 | msgid "Cancel" 153 | msgstr "" 154 | 155 | #: views/edit-filters.php:35 156 | msgid "Reset to Default" 157 | msgstr "" 158 | -------------------------------------------------------------------------------- /lang/tribe-apm-af.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-events-calendar/advanced-post-manager/921af81dfcda9421246f10e1f721ff5baaa903c0/lang/tribe-apm-af.mo -------------------------------------------------------------------------------- /lang/tribe-apm-af.po: -------------------------------------------------------------------------------- 1 | # Translation of Advanced Post Manager in Afrikaans 2 | # This file is distributed under the same license as the Advanced Post Manager package. 3 | msgid "" 4 | msgstr "" 5 | "PO-Revision-Date: 2016-08-30 02:20:49+0000\n" 6 | "MIME-Version: 1.0\n" 7 | "Content-Type: text/plain; charset=UTF-8\n" 8 | "Content-Transfer-Encoding: 8bit\n" 9 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 10 | "X-Generator: GlotPress/1.0-alpha-1100\n" 11 | "Project-Id-Version: Advanced Post Manager\n" 12 | 13 | #: views/edit-filters.php:8 14 | msgid "Filters & Columns" 15 | msgstr "" 16 | 17 | #: demo/demo.php:30 18 | msgid "It looks like you might not have any demo data. Download our data and use the WordPress Importer." 19 | msgstr "Dit lyk of jy dalk nie 'n demonstrasie inligting hetnie. Laai ons inligting af en gebruik die WordPress invoerder ." 20 | 21 | #: lib/tribe-columns.class.php:43 22 | msgid "Column Name" 23 | msgstr "Kolom Naam" 24 | 25 | #: lib/tribe-columns.class.php:144 lib/tribe-columns.class.php:165 26 | msgid "Comments" 27 | msgstr "Kommentaar" 28 | 29 | #: lib/tribe-columns.class.php:158 30 | msgid "Add a Column" 31 | msgstr "Voeg kommentaar by" 32 | 33 | #: lib/tribe-filters.class.php:52 lib/tribe-filters.class.php:72 34 | msgid "Is" 35 | msgstr "is" 36 | 37 | #: lib/tribe-filters.class.php:53 lib/tribe-filters.class.php:73 38 | msgid "Is Not" 39 | msgstr "is nie" 40 | 41 | #: lib/tribe-filters.class.php:71 42 | msgid "Search" 43 | msgstr "Soek" 44 | 45 | #: lib/tribe-filters.class.php:82 46 | msgid "Member Type" 47 | msgstr "Lid Tipe" 48 | 49 | #: lib/tribe-filters.class.php:86 50 | msgid "Cafe" 51 | msgstr "Kafee" 52 | 53 | #: lib/tribe-filters.class.php:87 54 | msgid "Private Desk" 55 | msgstr "Privaat lessenaar" 56 | 57 | #: lib/tribe-filters.class.php:88 58 | msgid "Office" 59 | msgstr "Kantoor" 60 | 61 | #: lib/tribe-filters.class.php:95 62 | msgid "what i’m querying. probably a key in the options array in $filters" 63 | msgstr "wat ek bevraagteken. waarskynlik 'n sleutelrol in die opsies skikking in $filters" 64 | 65 | #: lib/tribe-filters.class.php:181 66 | msgid "Active Filters" 67 | msgstr "" 68 | 69 | #: lib/tribe-filters.class.php:537 70 | msgid "Saved Filter Set" 71 | msgstr "" 72 | 73 | #: lib/tribe-filters.class.php:539 74 | msgid "Choose a Saved Filter" 75 | msgstr "Kies n gestoorde Filter" 76 | 77 | #: lib/tribe-filters.class.php:658 78 | msgid "Add a Filter" 79 | msgstr "Voeg 'n Filter by" 80 | 81 | #: lib/tribe-meta-box-helper.php:45 82 | msgid "Extended Information" 83 | msgstr "Uitgebreide Inligting" 84 | 85 | #: lib/tribe-meta-box.php:124 lib/tribe-meta-box.php:434 86 | msgid "Delete this image" 87 | msgstr "Verwyder hierdie beeld" 88 | 89 | #: lib/tribe-meta-box.php:124 lib/tribe-meta-box.php:387 90 | #: lib/tribe-meta-box.php:434 91 | msgid "Delete" 92 | msgstr "Verwyder" 93 | 94 | #: lib/tribe-meta-box.php:384 95 | msgid "Uploaded files" 96 | msgstr "Opgelaaide lêers" 97 | 98 | #: lib/tribe-meta-box.php:393 99 | msgid "Upload new files" 100 | msgstr "Laai nuwe lêers up" 101 | 102 | #: lib/tribe-meta-box.php:396 103 | msgid "Add another file" 104 | msgstr "Voeg nog 'n lêer by" 105 | 106 | #: lib/tribe-meta-box.php:441 107 | msgid "Add more images" 108 | msgstr "Voeg nog beelde by" 109 | 110 | #: lib/tribe-meta-box.php:452 111 | msgid "Select a color" 112 | msgstr "Kies 'n kleur" 113 | 114 | #: views/edit-filters.php:7 views/edit-filters.php:8 115 | msgid "Click to toggle" 116 | msgstr "Klik om te wissel" 117 | 118 | #: views/edit-filters.php:14 119 | msgid "Active Columns" 120 | msgstr "" 121 | 122 | #: views/edit-filters.php:15 123 | msgid "Drag and drop to order and select which columns are displayed in the entries table." 124 | msgstr "" 125 | 126 | #: views/edit-filters.php:20 127 | msgid "Apply" 128 | msgstr "Wend Aan" 129 | 130 | #: views/edit-filters.php:21 131 | msgid "Save Filter Set" 132 | msgstr "" 133 | 134 | #: views/edit-filters.php:23 135 | msgid "Export to CSV" 136 | msgstr "Voer uit na CSV" 137 | 138 | #: views/edit-filters.php:27 139 | msgid "Filter Name" 140 | msgstr "Filtreer Naam" 141 | 142 | #: views/edit-filters.php:28 143 | msgid "Save" 144 | msgstr "Stoor" 145 | 146 | #: views/edit-filters.php:29 147 | msgid "Cancel" 148 | msgstr "Kanselleer" 149 | 150 | #: views/edit-filters.php:32 151 | msgid "Reset to Default" 152 | msgstr "" 153 | 154 | #. Plugin Name of the plugin/theme 155 | msgid "Advanced Post Manager" 156 | msgstr "" 157 | 158 | #. Description of the plugin/theme 159 | msgid "Dialing custom post types to 11 with advanced filtering controls." 160 | msgstr "" 161 | 162 | #. Author of the plugin/theme 163 | msgid "Modern Tribe, Inc." 164 | msgstr "Modern Tribe, Inc." 165 | 166 | #. Author URI of the plugin/theme 167 | msgid "http://m.tri.be/4n" 168 | msgstr "" -------------------------------------------------------------------------------- /lang/tribe-apm-bg_BG.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-events-calendar/advanced-post-manager/921af81dfcda9421246f10e1f721ff5baaa903c0/lang/tribe-apm-bg_BG.mo -------------------------------------------------------------------------------- /lang/tribe-apm-ca.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-events-calendar/advanced-post-manager/921af81dfcda9421246f10e1f721ff5baaa903c0/lang/tribe-apm-ca.mo -------------------------------------------------------------------------------- /lang/tribe-apm-cs_CZ.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-events-calendar/advanced-post-manager/921af81dfcda9421246f10e1f721ff5baaa903c0/lang/tribe-apm-cs_CZ.mo -------------------------------------------------------------------------------- /lang/tribe-apm-da_DK.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-events-calendar/advanced-post-manager/921af81dfcda9421246f10e1f721ff5baaa903c0/lang/tribe-apm-da_DK.mo -------------------------------------------------------------------------------- /lang/tribe-apm-da_DK.po: -------------------------------------------------------------------------------- 1 | # Translation of Advanced Post Manager in Danish 2 | # This file is distributed under the same license as the Advanced Post Manager package. 3 | msgid "" 4 | msgstr "" 5 | "PO-Revision-Date: 2015-06-08 15:57:49+0000\n" 6 | "MIME-Version: 1.0\n" 7 | "Content-Type: text/plain; charset=UTF-8\n" 8 | "Content-Transfer-Encoding: 8bit\n" 9 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 10 | "X-Generator: GlotPress/1.0-alpha-1100\n" 11 | "Project-Id-Version: Advanced Post Manager\n" 12 | 13 | #: views/edit-filters.php:8 14 | msgid "Filters & Columns" 15 | msgstr "" 16 | 17 | #: demo/demo.php:30 18 | msgid "It looks like you might not have any demo data. Download our data and use the WordPress Importer." 19 | msgstr "Det lader til at du ikke har nogen demo data. Download vores og brug WordPress Importeren." 20 | 21 | #: lib/tribe-columns.class.php:43 22 | msgid "Column Name" 23 | msgstr "Kolonnenavn" 24 | 25 | #: lib/tribe-columns.class.php:144 lib/tribe-columns.class.php:165 26 | msgid "Comments" 27 | msgstr "Kommentarer" 28 | 29 | #: lib/tribe-columns.class.php:158 30 | msgid "Add a Column" 31 | msgstr "Tilføj en kolonne" 32 | 33 | #: lib/tribe-filters.class.php:52 lib/tribe-filters.class.php:72 34 | msgid "Is" 35 | msgstr "Er" 36 | 37 | #: lib/tribe-filters.class.php:53 lib/tribe-filters.class.php:73 38 | msgid "Is Not" 39 | msgstr "Er ikke" 40 | 41 | #: lib/tribe-filters.class.php:71 42 | msgid "Search" 43 | msgstr "Søg" 44 | 45 | #: lib/tribe-filters.class.php:82 46 | msgid "Member Type" 47 | msgstr "Medlemstype" 48 | 49 | #: lib/tribe-filters.class.php:86 50 | msgid "Cafe" 51 | msgstr "Cafe" 52 | 53 | #: lib/tribe-filters.class.php:87 54 | msgid "Private Desk" 55 | msgstr "Skrivebord" 56 | 57 | #: lib/tribe-filters.class.php:88 58 | msgid "Office" 59 | msgstr "Kontor" 60 | 61 | #: lib/tribe-filters.class.php:95 62 | msgid "what i’m querying. probably a key in the options array in $filters" 63 | msgstr "det jeg søger. Måske en nøgle i listen af indstillinger i $filters" 64 | 65 | #: lib/tribe-filters.class.php:181 66 | msgid "Active Filters" 67 | msgstr "" 68 | 69 | #: lib/tribe-filters.class.php:537 70 | msgid "Saved Filter Set" 71 | msgstr "" 72 | 73 | #: lib/tribe-filters.class.php:539 74 | msgid "Choose a Saved Filter" 75 | msgstr "Vælg et gemt filter" 76 | 77 | #: lib/tribe-filters.class.php:658 78 | msgid "Add a Filter" 79 | msgstr "Tilføj et filter" 80 | 81 | #: lib/tribe-meta-box-helper.php:45 82 | msgid "Extended Information" 83 | msgstr "Udvidet information" 84 | 85 | #: lib/tribe-meta-box.php:124 lib/tribe-meta-box.php:434 86 | msgid "Delete this image" 87 | msgstr "Slet dette billede" 88 | 89 | #: lib/tribe-meta-box.php:124 lib/tribe-meta-box.php:387 90 | #: lib/tribe-meta-box.php:434 91 | msgid "Delete" 92 | msgstr "Dlet" 93 | 94 | #: lib/tribe-meta-box.php:384 95 | msgid "Uploaded files" 96 | msgstr "Upload filer" 97 | 98 | #: lib/tribe-meta-box.php:393 99 | msgid "Upload new files" 100 | msgstr "Upload nye filer" 101 | 102 | #: lib/tribe-meta-box.php:396 103 | msgid "Add another file" 104 | msgstr "Tilføj filer" 105 | 106 | #: lib/tribe-meta-box.php:441 107 | msgid "Add more images" 108 | msgstr "Tilføj billeder" 109 | 110 | #: lib/tribe-meta-box.php:452 111 | msgid "Select a color" 112 | msgstr "Vælg en farve" 113 | 114 | #: views/edit-filters.php:7 views/edit-filters.php:8 115 | msgid "Click to toggle" 116 | msgstr "Klik for at ændre indstillingen" 117 | 118 | #: views/edit-filters.php:14 119 | msgid "Active Columns" 120 | msgstr "" 121 | 122 | #: views/edit-filters.php:15 123 | msgid "Drag and drop to order and select which columns are displayed in the entries table." 124 | msgstr "" 125 | 126 | #: views/edit-filters.php:20 127 | msgid "Apply" 128 | msgstr "Anvend" 129 | 130 | #: views/edit-filters.php:21 131 | msgid "Save Filter Set" 132 | msgstr "" 133 | 134 | #: views/edit-filters.php:23 135 | msgid "Export to CSV" 136 | msgstr "Eksport til CSV" 137 | 138 | #: views/edit-filters.php:27 139 | msgid "Filter Name" 140 | msgstr "Filternavn" 141 | 142 | #: views/edit-filters.php:28 143 | msgid "Save" 144 | msgstr "Gem" 145 | 146 | #: views/edit-filters.php:29 147 | msgid "Cancel" 148 | msgstr "Annuller" 149 | 150 | #: views/edit-filters.php:32 151 | msgid "Reset to Default" 152 | msgstr "" 153 | 154 | #. Plugin Name of the plugin/theme 155 | msgid "Advanced Post Manager" 156 | msgstr "" 157 | 158 | #. Description of the plugin/theme 159 | msgid "Dialing custom post types to 11 with advanced filtering controls." 160 | msgstr "" 161 | 162 | #. Author of the plugin/theme 163 | msgid "Modern Tribe, Inc." 164 | msgstr "" 165 | 166 | #. Author URI of the plugin/theme 167 | msgid "http://m.tri.be/4n" 168 | msgstr "" -------------------------------------------------------------------------------- /lang/tribe-apm-de_DE.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-events-calendar/advanced-post-manager/921af81dfcda9421246f10e1f721ff5baaa903c0/lang/tribe-apm-de_DE.mo -------------------------------------------------------------------------------- /lang/tribe-apm-el.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-events-calendar/advanced-post-manager/921af81dfcda9421246f10e1f721ff5baaa903c0/lang/tribe-apm-el.mo -------------------------------------------------------------------------------- /lang/tribe-apm-en_GB.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-events-calendar/advanced-post-manager/921af81dfcda9421246f10e1f721ff5baaa903c0/lang/tribe-apm-en_GB.mo -------------------------------------------------------------------------------- /lang/tribe-apm-en_GB.po: -------------------------------------------------------------------------------- 1 | # Translation of Advanced Post Manager in English (UK) 2 | # This file is distributed under the same license as the Advanced Post Manager package. 3 | msgid "" 4 | msgstr "" 5 | "PO-Revision-Date: 2015-06-08 15:55:17+0000\n" 6 | "MIME-Version: 1.0\n" 7 | "Content-Type: text/plain; charset=UTF-8\n" 8 | "Content-Transfer-Encoding: 8bit\n" 9 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 10 | "X-Generator: GlotPress/1.0-alpha-1100\n" 11 | "Project-Id-Version: Advanced Post Manager\n" 12 | 13 | #: views/edit-filters.php:8 14 | msgid "Filters & Columns" 15 | msgstr "" 16 | 17 | #: demo/demo.php:30 18 | msgid "It looks like you might not have any demo data. Download our data and use the WordPress Importer." 19 | msgstr "It looks like you might not have any demo data. Download our data and use the WordPress Importer." 20 | 21 | #: lib/tribe-columns.class.php:43 22 | msgid "Column Name" 23 | msgstr "Column Name" 24 | 25 | #: lib/tribe-columns.class.php:144 lib/tribe-columns.class.php:165 26 | msgid "Comments" 27 | msgstr "Comments" 28 | 29 | #: lib/tribe-columns.class.php:158 30 | msgid "Add a Column" 31 | msgstr "Add a Column" 32 | 33 | #: lib/tribe-filters.class.php:52 lib/tribe-filters.class.php:72 34 | msgid "Is" 35 | msgstr "Is" 36 | 37 | #: lib/tribe-filters.class.php:53 lib/tribe-filters.class.php:73 38 | msgid "Is Not" 39 | msgstr "Is Not" 40 | 41 | #: lib/tribe-filters.class.php:71 42 | msgid "Search" 43 | msgstr "Search" 44 | 45 | #: lib/tribe-filters.class.php:82 46 | msgid "Member Type" 47 | msgstr "Member Type" 48 | 49 | #: lib/tribe-filters.class.php:86 50 | msgid "Cafe" 51 | msgstr "Cafe" 52 | 53 | #: lib/tribe-filters.class.php:87 54 | msgid "Private Desk" 55 | msgstr "Private Desk" 56 | 57 | #: lib/tribe-filters.class.php:88 58 | msgid "Office" 59 | msgstr "Office" 60 | 61 | #: lib/tribe-filters.class.php:95 62 | msgid "what i’m querying. probably a key in the options array in $filters" 63 | msgstr "what i’m querying. probably a key in the options array in $filters" 64 | 65 | #: lib/tribe-filters.class.php:181 66 | msgid "Active Filters" 67 | msgstr "" 68 | 69 | #: lib/tribe-filters.class.php:537 70 | msgid "Saved Filter Set" 71 | msgstr "" 72 | 73 | #: lib/tribe-filters.class.php:539 74 | msgid "Choose a Saved Filter" 75 | msgstr "Choose a Saved Filter" 76 | 77 | #: lib/tribe-filters.class.php:658 78 | msgid "Add a Filter" 79 | msgstr "Add a Filter" 80 | 81 | #: lib/tribe-meta-box-helper.php:45 82 | msgid "Extended Information" 83 | msgstr "Extended Information" 84 | 85 | #: lib/tribe-meta-box.php:124 lib/tribe-meta-box.php:434 86 | msgid "Delete this image" 87 | msgstr "Delete this image" 88 | 89 | #: lib/tribe-meta-box.php:124 lib/tribe-meta-box.php:387 90 | #: lib/tribe-meta-box.php:434 91 | msgid "Delete" 92 | msgstr "Delete" 93 | 94 | #: lib/tribe-meta-box.php:384 95 | msgid "Uploaded files" 96 | msgstr "Uploaded files" 97 | 98 | #: lib/tribe-meta-box.php:393 99 | msgid "Upload new files" 100 | msgstr "Upload new files" 101 | 102 | #: lib/tribe-meta-box.php:396 103 | msgid "Add another file" 104 | msgstr "Add another file" 105 | 106 | #: lib/tribe-meta-box.php:441 107 | msgid "Add more images" 108 | msgstr "Add more images" 109 | 110 | #: lib/tribe-meta-box.php:452 111 | msgid "Select a color" 112 | msgstr "Select a color" 113 | 114 | #: views/edit-filters.php:7 views/edit-filters.php:8 115 | msgid "Click to toggle" 116 | msgstr "Click to toggle" 117 | 118 | #: views/edit-filters.php:14 119 | msgid "Active Columns" 120 | msgstr "" 121 | 122 | #: views/edit-filters.php:15 123 | msgid "Drag and drop to order and select which columns are displayed in the entries table." 124 | msgstr "" 125 | 126 | #: views/edit-filters.php:20 127 | msgid "Apply" 128 | msgstr "Apply" 129 | 130 | #: views/edit-filters.php:21 131 | msgid "Save Filter Set" 132 | msgstr "" 133 | 134 | #: views/edit-filters.php:23 135 | msgid "Export to CSV" 136 | msgstr "Export to CSV" 137 | 138 | #: views/edit-filters.php:27 139 | msgid "Filter Name" 140 | msgstr "Filter Name" 141 | 142 | #: views/edit-filters.php:28 143 | msgid "Save" 144 | msgstr "Save" 145 | 146 | #: views/edit-filters.php:29 147 | msgid "Cancel" 148 | msgstr "Cancel" 149 | 150 | #: views/edit-filters.php:32 151 | msgid "Reset to Default" 152 | msgstr "" 153 | 154 | #. Plugin Name of the plugin/theme 155 | msgid "Advanced Post Manager" 156 | msgstr "" 157 | 158 | #. Description of the plugin/theme 159 | msgid "Dialing custom post types to 11 with advanced filtering controls." 160 | msgstr "" 161 | 162 | #. Author of the plugin/theme 163 | msgid "Modern Tribe, Inc." 164 | msgstr "" 165 | 166 | #. Author URI of the plugin/theme 167 | msgid "http://m.tri.be/4n" 168 | msgstr "" -------------------------------------------------------------------------------- /lang/tribe-apm-es_ES.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-events-calendar/advanced-post-manager/921af81dfcda9421246f10e1f721ff5baaa903c0/lang/tribe-apm-es_ES.mo -------------------------------------------------------------------------------- /lang/tribe-apm-et.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-events-calendar/advanced-post-manager/921af81dfcda9421246f10e1f721ff5baaa903c0/lang/tribe-apm-et.mo -------------------------------------------------------------------------------- /lang/tribe-apm-et.po: -------------------------------------------------------------------------------- 1 | # Translation of Advanced Post Manager in Estonian 2 | # This file is distributed under the same license as the Advanced Post Manager package. 3 | msgid "" 4 | msgstr "" 5 | "PO-Revision-Date: 2015-06-08 15:57:34+0000\n" 6 | "MIME-Version: 1.0\n" 7 | "Content-Type: text/plain; charset=UTF-8\n" 8 | "Content-Transfer-Encoding: 8bit\n" 9 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 10 | "X-Generator: GlotPress/1.0-alpha-1100\n" 11 | "Project-Id-Version: Advanced Post Manager\n" 12 | 13 | #: views/edit-filters.php:8 14 | msgid "Filters & Columns" 15 | msgstr "" 16 | 17 | #: demo/demo.php:30 18 | msgid "It looks like you might not have any demo data. Download our data and use the WordPress Importer." 19 | msgstr "Parece que usted no tiene datos de demostración. Descargue nuestros datos y use el WordPress Importer." 20 | 21 | #: lib/tribe-columns.class.php:43 22 | msgid "Column Name" 23 | msgstr "Nombre de Columna" 24 | 25 | #: lib/tribe-columns.class.php:144 lib/tribe-columns.class.php:165 26 | msgid "Comments" 27 | msgstr "Comentarios" 28 | 29 | #: lib/tribe-columns.class.php:158 30 | msgid "Add a Column" 31 | msgstr "Agregar una columna" 32 | 33 | #: lib/tribe-filters.class.php:52 lib/tribe-filters.class.php:72 34 | msgid "Is" 35 | msgstr "Es" 36 | 37 | #: lib/tribe-filters.class.php:53 lib/tribe-filters.class.php:73 38 | msgid "Is Not" 39 | msgstr "No Es" 40 | 41 | #: lib/tribe-filters.class.php:71 42 | msgid "Search" 43 | msgstr "Buscar" 44 | 45 | #: lib/tribe-filters.class.php:82 46 | msgid "Member Type" 47 | msgstr "Tipo de Miembro" 48 | 49 | #: lib/tribe-filters.class.php:86 50 | msgid "Cafe" 51 | msgstr "Café" 52 | 53 | #: lib/tribe-filters.class.php:87 54 | msgid "Private Desk" 55 | msgstr "Escritorio Privado" 56 | 57 | #: lib/tribe-filters.class.php:88 58 | msgid "Office" 59 | msgstr "Oficina" 60 | 61 | #: lib/tribe-filters.class.php:95 62 | msgid "what i’m querying. probably a key in the options array in $filters" 63 | msgstr "qué estoy consultando. probablemente una clave en la matriz opciones en $filters" 64 | 65 | #: lib/tribe-filters.class.php:181 66 | msgid "Active Filters" 67 | msgstr "" 68 | 69 | #: lib/tribe-filters.class.php:537 70 | msgid "Saved Filter Set" 71 | msgstr "" 72 | 73 | #: lib/tribe-filters.class.php:539 74 | msgid "Choose a Saved Filter" 75 | msgstr "Elija un Filtro guardado" 76 | 77 | #: lib/tribe-filters.class.php:658 78 | msgid "Add a Filter" 79 | msgstr "Egregar un Filtro" 80 | 81 | #: lib/tribe-meta-box-helper.php:45 82 | msgid "Extended Information" 83 | msgstr "Información extendida" 84 | 85 | #: lib/tribe-meta-box.php:124 lib/tribe-meta-box.php:434 86 | msgid "Delete this image" 87 | msgstr "Borrar esta imagen" 88 | 89 | #: lib/tribe-meta-box.php:124 lib/tribe-meta-box.php:387 90 | #: lib/tribe-meta-box.php:434 91 | msgid "Delete" 92 | msgstr "Borrar" 93 | 94 | #: lib/tribe-meta-box.php:384 95 | msgid "Uploaded files" 96 | msgstr "Subir archivos" 97 | 98 | #: lib/tribe-meta-box.php:393 99 | msgid "Upload new files" 100 | msgstr "Subir nuevos archivos" 101 | 102 | #: lib/tribe-meta-box.php:396 103 | msgid "Add another file" 104 | msgstr "Agregar otro archivo" 105 | 106 | #: lib/tribe-meta-box.php:441 107 | msgid "Add more images" 108 | msgstr "Agregar más imagenes" 109 | 110 | #: lib/tribe-meta-box.php:452 111 | msgid "Select a color" 112 | msgstr "Escoga un color" 113 | 114 | #: views/edit-filters.php:7 views/edit-filters.php:8 115 | msgid "Click to toggle" 116 | msgstr "Click para alternar" 117 | 118 | #: views/edit-filters.php:14 119 | msgid "Active Columns" 120 | msgstr "" 121 | 122 | #: views/edit-filters.php:15 123 | msgid "Drag and drop to order and select which columns are displayed in the entries table." 124 | msgstr "" 125 | 126 | #: views/edit-filters.php:20 127 | msgid "Apply" 128 | msgstr "Aplicar" 129 | 130 | #: views/edit-filters.php:21 131 | msgid "Save Filter Set" 132 | msgstr "" 133 | 134 | #: views/edit-filters.php:23 135 | msgid "Export to CSV" 136 | msgstr "Exportar a CSV" 137 | 138 | #: views/edit-filters.php:27 139 | msgid "Filter Name" 140 | msgstr "Nombre del Filtro" 141 | 142 | #: views/edit-filters.php:28 143 | msgid "Save" 144 | msgstr "Guardar" 145 | 146 | #: views/edit-filters.php:29 147 | msgid "Cancel" 148 | msgstr "Cancelar" 149 | 150 | #: views/edit-filters.php:32 151 | msgid "Reset to Default" 152 | msgstr "" 153 | 154 | #. Plugin Name of the plugin/theme 155 | msgid "Advanced Post Manager" 156 | msgstr "" 157 | 158 | #. Description of the plugin/theme 159 | msgid "Dialing custom post types to 11 with advanced filtering controls." 160 | msgstr "" 161 | 162 | #. Author of the plugin/theme 163 | msgid "Modern Tribe, Inc." 164 | msgstr "" 165 | 166 | #. Author URI of the plugin/theme 167 | msgid "http://m.tri.be/4n" 168 | msgstr "" -------------------------------------------------------------------------------- /lang/tribe-apm-fi.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-events-calendar/advanced-post-manager/921af81dfcda9421246f10e1f721ff5baaa903c0/lang/tribe-apm-fi.mo -------------------------------------------------------------------------------- /lang/tribe-apm-fi.po: -------------------------------------------------------------------------------- 1 | # Translation of Advanced Post Manager in Finnish 2 | # This file is distributed under the same license as the Advanced Post Manager package. 3 | msgid "" 4 | msgstr "" 5 | "PO-Revision-Date: 2015-10-29 20:02:52+0000\n" 6 | "MIME-Version: 1.0\n" 7 | "Content-Type: text/plain; charset=UTF-8\n" 8 | "Content-Transfer-Encoding: 8bit\n" 9 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 10 | "X-Generator: GlotPress/1.0-alpha-1100\n" 11 | "Project-Id-Version: Advanced Post Manager\n" 12 | 13 | #: views/edit-filters.php:8 14 | msgid "Filters & Columns" 15 | msgstr "" 16 | 17 | #: demo/demo.php:30 18 | msgid "It looks like you might not have any demo data. Download our data and use the WordPress Importer." 19 | msgstr "Näyttää siltä, ettei sinulla ehkä ole testidataa. Lataa meidän datamme ja käytä WordPress tuontityökalua." 20 | 21 | #: lib/tribe-columns.class.php:43 22 | msgid "Column Name" 23 | msgstr "Sarakkeen nimi" 24 | 25 | #: lib/tribe-columns.class.php:144 lib/tribe-columns.class.php:165 26 | msgid "Comments" 27 | msgstr "Kommentit" 28 | 29 | #: lib/tribe-columns.class.php:158 30 | msgid "Add a Column" 31 | msgstr "Lisää sarake" 32 | 33 | #: lib/tribe-filters.class.php:52 lib/tribe-filters.class.php:72 34 | msgid "Is" 35 | msgstr "On" 36 | 37 | #: lib/tribe-filters.class.php:53 lib/tribe-filters.class.php:73 38 | msgid "Is Not" 39 | msgstr "Ei ole" 40 | 41 | #: lib/tribe-filters.class.php:71 42 | msgid "Search" 43 | msgstr "Etsi" 44 | 45 | #: lib/tribe-filters.class.php:82 46 | msgid "Member Type" 47 | msgstr "Jäsentyyppi" 48 | 49 | #: lib/tribe-filters.class.php:86 50 | msgid "Cafe" 51 | msgstr "Kahvila" 52 | 53 | #: lib/tribe-filters.class.php:87 54 | msgid "Private Desk" 55 | msgstr "Työpiste" 56 | 57 | #: lib/tribe-filters.class.php:88 58 | msgid "Office" 59 | msgstr "Toimisto" 60 | 61 | #: lib/tribe-filters.class.php:95 62 | msgid "what i’m querying. probably a key in the options array in $filters" 63 | msgstr "mitä haen. luultavasti avainta vaihtoehtoryhmässä $filters" 64 | 65 | #: lib/tribe-filters.class.php:181 66 | msgid "Active Filters" 67 | msgstr "" 68 | 69 | #: lib/tribe-filters.class.php:537 70 | msgid "Saved Filter Set" 71 | msgstr "" 72 | 73 | #: lib/tribe-filters.class.php:539 74 | msgid "Choose a Saved Filter" 75 | msgstr "Valitse tallennettu suodatin" 76 | 77 | #: lib/tribe-filters.class.php:658 78 | msgid "Add a Filter" 79 | msgstr "Lisää suodatin" 80 | 81 | #: lib/tribe-meta-box-helper.php:45 82 | msgid "Extended Information" 83 | msgstr "Laajennetut tiedot" 84 | 85 | #: lib/tribe-meta-box.php:124 lib/tribe-meta-box.php:434 86 | msgid "Delete this image" 87 | msgstr "Poista tämä kuva" 88 | 89 | #: lib/tribe-meta-box.php:124 lib/tribe-meta-box.php:387 90 | #: lib/tribe-meta-box.php:434 91 | msgid "Delete" 92 | msgstr "Poista" 93 | 94 | #: lib/tribe-meta-box.php:384 95 | msgid "Uploaded files" 96 | msgstr "Lähetetyt tiedostot" 97 | 98 | #: lib/tribe-meta-box.php:393 99 | msgid "Upload new files" 100 | msgstr "Lisää uusia tiedostoja" 101 | 102 | #: lib/tribe-meta-box.php:396 103 | msgid "Add another file" 104 | msgstr "Lisää toinen tiedosto" 105 | 106 | #: lib/tribe-meta-box.php:441 107 | msgid "Add more images" 108 | msgstr "Lisää kuvia" 109 | 110 | #: lib/tribe-meta-box.php:452 111 | msgid "Select a color" 112 | msgstr "Valitse väri" 113 | 114 | #: views/edit-filters.php:7 views/edit-filters.php:8 115 | msgid "Click to toggle" 116 | msgstr "Klikkaa vaihtaaksesi" 117 | 118 | #: views/edit-filters.php:14 119 | msgid "Active Columns" 120 | msgstr "" 121 | 122 | #: views/edit-filters.php:15 123 | msgid "Drag and drop to order and select which columns are displayed in the entries table." 124 | msgstr "" 125 | 126 | #: views/edit-filters.php:20 127 | msgid "Apply" 128 | msgstr "Käytä" 129 | 130 | #: views/edit-filters.php:21 131 | msgid "Save Filter Set" 132 | msgstr "" 133 | 134 | #: views/edit-filters.php:23 135 | msgid "Export to CSV" 136 | msgstr "Vie CSV-tiedostoon" 137 | 138 | #: views/edit-filters.php:27 139 | msgid "Filter Name" 140 | msgstr "Suodattimen nimi" 141 | 142 | #: views/edit-filters.php:28 143 | msgid "Save" 144 | msgstr "Tallenna" 145 | 146 | #: views/edit-filters.php:29 147 | msgid "Cancel" 148 | msgstr "Peruuta" 149 | 150 | #: views/edit-filters.php:32 151 | msgid "Reset to Default" 152 | msgstr "" 153 | 154 | #. Plugin Name of the plugin/theme 155 | msgid "Advanced Post Manager" 156 | msgstr "" 157 | 158 | #. Description of the plugin/theme 159 | msgid "Dialing custom post types to 11 with advanced filtering controls." 160 | msgstr "" 161 | 162 | #. Author of the plugin/theme 163 | msgid "Modern Tribe, Inc." 164 | msgstr "Modern Tribe, Inc." 165 | 166 | #. Author URI of the plugin/theme 167 | msgid "http://m.tri.be/4n" 168 | msgstr "" -------------------------------------------------------------------------------- /lang/tribe-apm-fr_FR.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-events-calendar/advanced-post-manager/921af81dfcda9421246f10e1f721ff5baaa903c0/lang/tribe-apm-fr_FR.mo -------------------------------------------------------------------------------- /lang/tribe-apm-hu_HU.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-events-calendar/advanced-post-manager/921af81dfcda9421246f10e1f721ff5baaa903c0/lang/tribe-apm-hu_HU.mo -------------------------------------------------------------------------------- /lang/tribe-apm-hu_HU.po: -------------------------------------------------------------------------------- 1 | # Translation of Advanced Post Manager in Hungarian 2 | # This file is distributed under the same license as the Advanced Post Manager package. 3 | msgid "" 4 | msgstr "" 5 | "PO-Revision-Date: 2015-06-08 15:51:04+0000\n" 6 | "MIME-Version: 1.0\n" 7 | "Content-Type: text/plain; charset=UTF-8\n" 8 | "Content-Transfer-Encoding: 8bit\n" 9 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 10 | "X-Generator: GlotPress/1.0-alpha-1100\n" 11 | "Project-Id-Version: Advanced Post Manager\n" 12 | 13 | #: views/edit-filters.php:8 14 | msgid "Filters & Columns" 15 | msgstr "" 16 | 17 | #: demo/demo.php:30 18 | msgid "It looks like you might not have any demo data. Download our data and use the WordPress Importer." 19 | msgstr "Úgy néz ki, hogy még nincs demo adatod. Töltsd le az adatokat és használd a WordPress importálót." 20 | 21 | #: lib/tribe-columns.class.php:43 22 | msgid "Column Name" 23 | msgstr "Oszlop neve" 24 | 25 | #: lib/tribe-columns.class.php:144 lib/tribe-columns.class.php:165 26 | msgid "Comments" 27 | msgstr "Hozzászólások" 28 | 29 | #: lib/tribe-columns.class.php:158 30 | msgid "Add a Column" 31 | msgstr "Oszlop hozzáadása" 32 | 33 | #: lib/tribe-filters.class.php:52 lib/tribe-filters.class.php:72 34 | msgid "Is" 35 | msgstr "Egyezik" 36 | 37 | #: lib/tribe-filters.class.php:53 lib/tribe-filters.class.php:73 38 | msgid "Is Not" 39 | msgstr "Nem egyezik" 40 | 41 | #: lib/tribe-filters.class.php:71 42 | msgid "Search" 43 | msgstr "Keresés" 44 | 45 | #: lib/tribe-filters.class.php:82 46 | msgid "Member Type" 47 | msgstr "Tagság típusa" 48 | 49 | #: lib/tribe-filters.class.php:86 50 | msgid "Cafe" 51 | msgstr "Kávézó" 52 | 53 | #: lib/tribe-filters.class.php:87 54 | msgid "Private Desk" 55 | msgstr "Saját asztal" 56 | 57 | #: lib/tribe-filters.class.php:88 58 | msgid "Office" 59 | msgstr "Iroda" 60 | 61 | #: lib/tribe-filters.class.php:95 62 | msgid "what i’m querying. probably a key in the options array in $filters" 63 | msgstr "amit próbálok lekérdezni. valószínűleg a $filters (szűrők) sor egyik bejegyzése" 64 | 65 | #: lib/tribe-filters.class.php:181 66 | msgid "Active Filters" 67 | msgstr "" 68 | 69 | #: lib/tribe-filters.class.php:537 70 | msgid "Saved Filter Set" 71 | msgstr "" 72 | 73 | #: lib/tribe-filters.class.php:539 74 | msgid "Choose a Saved Filter" 75 | msgstr "Válassz egy mentett szűrőt" 76 | 77 | #: lib/tribe-filters.class.php:658 78 | msgid "Add a Filter" 79 | msgstr "Szűrő hozzáadása" 80 | 81 | #: lib/tribe-meta-box-helper.php:45 82 | msgid "Extended Information" 83 | msgstr "Kibővített információk" 84 | 85 | #: lib/tribe-meta-box.php:124 lib/tribe-meta-box.php:434 86 | msgid "Delete this image" 87 | msgstr "Kép törlése" 88 | 89 | #: lib/tribe-meta-box.php:124 lib/tribe-meta-box.php:387 90 | #: lib/tribe-meta-box.php:434 91 | msgid "Delete" 92 | msgstr "Törlés" 93 | 94 | #: lib/tribe-meta-box.php:384 95 | msgid "Uploaded files" 96 | msgstr "Feltöltött fájlok" 97 | 98 | #: lib/tribe-meta-box.php:393 99 | msgid "Upload new files" 100 | msgstr "Új fájl feltöltése" 101 | 102 | #: lib/tribe-meta-box.php:396 103 | msgid "Add another file" 104 | msgstr "További fájl hozzáadása" 105 | 106 | #: lib/tribe-meta-box.php:441 107 | msgid "Add more images" 108 | msgstr "Több kép hozzáadása" 109 | 110 | #: lib/tribe-meta-box.php:452 111 | msgid "Select a color" 112 | msgstr "Válassz színt" 113 | 114 | #: views/edit-filters.php:7 views/edit-filters.php:8 115 | msgid "Click to toggle" 116 | msgstr "Kattints a lenyitáshoz" 117 | 118 | #: views/edit-filters.php:14 119 | msgid "Active Columns" 120 | msgstr "" 121 | 122 | #: views/edit-filters.php:15 123 | msgid "Drag and drop to order and select which columns are displayed in the entries table." 124 | msgstr "" 125 | 126 | #: views/edit-filters.php:20 127 | msgid "Apply" 128 | msgstr "Alkalmaz" 129 | 130 | #: views/edit-filters.php:21 131 | msgid "Save Filter Set" 132 | msgstr "" 133 | 134 | #: views/edit-filters.php:23 135 | msgid "Export to CSV" 136 | msgstr "Exportálás CSV-be" 137 | 138 | #: views/edit-filters.php:27 139 | msgid "Filter Name" 140 | msgstr "Szűrő neve" 141 | 142 | #: views/edit-filters.php:28 143 | msgid "Save" 144 | msgstr "Mentés" 145 | 146 | #: views/edit-filters.php:29 147 | msgid "Cancel" 148 | msgstr "Mégse" 149 | 150 | #: views/edit-filters.php:32 151 | msgid "Reset to Default" 152 | msgstr "" 153 | 154 | #. Plugin Name of the plugin/theme 155 | msgid "Advanced Post Manager" 156 | msgstr "" 157 | 158 | #. Description of the plugin/theme 159 | msgid "Dialing custom post types to 11 with advanced filtering controls." 160 | msgstr "" 161 | 162 | #. Author of the plugin/theme 163 | msgid "Modern Tribe, Inc." 164 | msgstr "" 165 | 166 | #. Author URI of the plugin/theme 167 | msgid "http://m.tri.be/4n" 168 | msgstr "" -------------------------------------------------------------------------------- /lang/tribe-apm-id_ID.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-events-calendar/advanced-post-manager/921af81dfcda9421246f10e1f721ff5baaa903c0/lang/tribe-apm-id_ID.mo -------------------------------------------------------------------------------- /lang/tribe-apm-id_ID.po: -------------------------------------------------------------------------------- 1 | # Translation of Advanced Post Manager in Indonesian 2 | # This file is distributed under the same license as the Advanced Post Manager package. 3 | msgid "" 4 | msgstr "" 5 | "PO-Revision-Date: 2015-06-08 15:51:55+0000\n" 6 | "MIME-Version: 1.0\n" 7 | "Content-Type: text/plain; charset=UTF-8\n" 8 | "Content-Transfer-Encoding: 8bit\n" 9 | "Plural-Forms: nplurals=2; plural=n > 1;\n" 10 | "X-Generator: GlotPress/1.0-alpha-1100\n" 11 | "Project-Id-Version: Advanced Post Manager\n" 12 | 13 | #: views/edit-filters.php:8 14 | msgid "Filters & Columns" 15 | msgstr "" 16 | 17 | #: demo/demo.php:30 18 | msgid "It looks like you might not have any demo data. Download our data and use the WordPress Importer." 19 | msgstr "Sepertinya Anda mungkin tidak memiliki data demo. Download data kami dan gunakan WordPress Importer." 20 | 21 | #: lib/tribe-columns.class.php:43 22 | msgid "Column Name" 23 | msgstr "Nama Kolom" 24 | 25 | #: lib/tribe-columns.class.php:144 lib/tribe-columns.class.php:165 26 | msgid "Comments" 27 | msgstr "Komentar" 28 | 29 | #: lib/tribe-columns.class.php:158 30 | msgid "Add a Column" 31 | msgstr "Tambah Kolom" 32 | 33 | #: lib/tribe-filters.class.php:52 lib/tribe-filters.class.php:72 34 | msgid "Is" 35 | msgstr "Adalah" 36 | 37 | #: lib/tribe-filters.class.php:53 lib/tribe-filters.class.php:73 38 | msgid "Is Not" 39 | msgstr "Bukan" 40 | 41 | #: lib/tribe-filters.class.php:71 42 | msgid "Search" 43 | msgstr "Pencarian" 44 | 45 | #: lib/tribe-filters.class.php:82 46 | msgid "Member Type" 47 | msgstr "Tipe Anggota" 48 | 49 | #: lib/tribe-filters.class.php:86 50 | msgid "Cafe" 51 | msgstr "Kafe" 52 | 53 | #: lib/tribe-filters.class.php:87 54 | msgid "Private Desk" 55 | msgstr "Private Desk" 56 | 57 | #: lib/tribe-filters.class.php:88 58 | msgid "Office" 59 | msgstr "Kantor" 60 | 61 | #: lib/tribe-filters.class.php:95 62 | msgid "what i’m querying. probably a key in the options array in $filters" 63 | msgstr "apa yang saya query. mungkin kunci dalam pilihan array dalam $filters" 64 | 65 | #: lib/tribe-filters.class.php:181 66 | msgid "Active Filters" 67 | msgstr "" 68 | 69 | #: lib/tribe-filters.class.php:537 70 | msgid "Saved Filter Set" 71 | msgstr "" 72 | 73 | #: lib/tribe-filters.class.php:539 74 | msgid "Choose a Saved Filter" 75 | msgstr "Pilih Filter Tersimpan" 76 | 77 | #: lib/tribe-filters.class.php:658 78 | msgid "Add a Filter" 79 | msgstr "Tambahkan Filter" 80 | 81 | #: lib/tribe-meta-box-helper.php:45 82 | msgid "Extended Information" 83 | msgstr "Informasi Tambahan" 84 | 85 | #: lib/tribe-meta-box.php:124 lib/tribe-meta-box.php:434 86 | msgid "Delete this image" 87 | msgstr "Hapus gambar ini" 88 | 89 | #: lib/tribe-meta-box.php:124 lib/tribe-meta-box.php:387 90 | #: lib/tribe-meta-box.php:434 91 | msgid "Delete" 92 | msgstr "Hapus" 93 | 94 | #: lib/tribe-meta-box.php:384 95 | msgid "Uploaded files" 96 | msgstr "File upload" 97 | 98 | #: lib/tribe-meta-box.php:393 99 | msgid "Upload new files" 100 | msgstr "Upload file baru" 101 | 102 | #: lib/tribe-meta-box.php:396 103 | msgid "Add another file" 104 | msgstr "Tambah file lain" 105 | 106 | #: lib/tribe-meta-box.php:441 107 | msgid "Add more images" 108 | msgstr "Tambahkan lebih banyak gambar" 109 | 110 | #: lib/tribe-meta-box.php:452 111 | msgid "Select a color" 112 | msgstr "Pilih warna" 113 | 114 | #: views/edit-filters.php:7 views/edit-filters.php:8 115 | msgid "Click to toggle" 116 | msgstr "Klik untuk toggle" 117 | 118 | #: views/edit-filters.php:14 119 | msgid "Active Columns" 120 | msgstr "" 121 | 122 | #: views/edit-filters.php:15 123 | msgid "Drag and drop to order and select which columns are displayed in the entries table." 124 | msgstr "" 125 | 126 | #: views/edit-filters.php:20 127 | msgid "Apply" 128 | msgstr "Terapkan" 129 | 130 | #: views/edit-filters.php:21 131 | msgid "Save Filter Set" 132 | msgstr "" 133 | 134 | #: views/edit-filters.php:23 135 | msgid "Export to CSV" 136 | msgstr "Ekspor ke CSV" 137 | 138 | #: views/edit-filters.php:27 139 | msgid "Filter Name" 140 | msgstr "Nama Filter" 141 | 142 | #: views/edit-filters.php:28 143 | msgid "Save" 144 | msgstr "Simpan" 145 | 146 | #: views/edit-filters.php:29 147 | msgid "Cancel" 148 | msgstr "Batalkan" 149 | 150 | #: views/edit-filters.php:32 151 | msgid "Reset to Default" 152 | msgstr "" 153 | 154 | #. Plugin Name of the plugin/theme 155 | msgid "Advanced Post Manager" 156 | msgstr "" 157 | 158 | #. Description of the plugin/theme 159 | msgid "Dialing custom post types to 11 with advanced filtering controls." 160 | msgstr "" 161 | 162 | #. Author of the plugin/theme 163 | msgid "Modern Tribe, Inc." 164 | msgstr "" 165 | 166 | #. Author URI of the plugin/theme 167 | msgid "http://m.tri.be/4n" 168 | msgstr "" -------------------------------------------------------------------------------- /lang/tribe-apm-is_IS.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-events-calendar/advanced-post-manager/921af81dfcda9421246f10e1f721ff5baaa903c0/lang/tribe-apm-is_IS.mo -------------------------------------------------------------------------------- /lang/tribe-apm-it_IT.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-events-calendar/advanced-post-manager/921af81dfcda9421246f10e1f721ff5baaa903c0/lang/tribe-apm-it_IT.mo -------------------------------------------------------------------------------- /lang/tribe-apm-it_IT.po: -------------------------------------------------------------------------------- 1 | # Translation of Advanced Post Manager in Italian 2 | # This file is distributed under the same license as the Advanced Post Manager package. 3 | msgid "" 4 | msgstr "" 5 | "PO-Revision-Date: 2015-06-08 15:55:33+0000\n" 6 | "MIME-Version: 1.0\n" 7 | "Content-Type: text/plain; charset=UTF-8\n" 8 | "Content-Transfer-Encoding: 8bit\n" 9 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 10 | "X-Generator: GlotPress/1.0-alpha-1100\n" 11 | "Project-Id-Version: Advanced Post Manager\n" 12 | 13 | #: views/edit-filters.php:8 14 | msgid "Filters & Columns" 15 | msgstr "" 16 | 17 | #: demo/demo.php:30 18 | msgid "It looks like you might not have any demo data. Download our data and use the WordPress Importer." 19 | msgstr "Pare che non ci siano dati dimostrativi. Scarica i nostri dati e utilizza l'Importatore di WordPress ." 20 | 21 | #: lib/tribe-columns.class.php:43 22 | msgid "Column Name" 23 | msgstr "Nome colonna" 24 | 25 | #: lib/tribe-columns.class.php:144 lib/tribe-columns.class.php:165 26 | msgid "Comments" 27 | msgstr "Commenti" 28 | 29 | #: lib/tribe-columns.class.php:158 30 | msgid "Add a Column" 31 | msgstr "Aggiungi una colonna" 32 | 33 | #: lib/tribe-filters.class.php:52 lib/tribe-filters.class.php:72 34 | msgid "Is" 35 | msgstr "è" 36 | 37 | #: lib/tribe-filters.class.php:53 lib/tribe-filters.class.php:73 38 | msgid "Is Not" 39 | msgstr "non è" 40 | 41 | #: lib/tribe-filters.class.php:71 42 | msgid "Search" 43 | msgstr "Cerca" 44 | 45 | #: lib/tribe-filters.class.php:82 46 | msgid "Member Type" 47 | msgstr "Tipo socio" 48 | 49 | #: lib/tribe-filters.class.php:86 50 | msgid "Cafe" 51 | msgstr "Caffè" 52 | 53 | #: lib/tribe-filters.class.php:87 54 | msgid "Private Desk" 55 | msgstr "Desk privato" 56 | 57 | #: lib/tribe-filters.class.php:88 58 | msgid "Office" 59 | msgstr "Ufficio" 60 | 61 | #: lib/tribe-filters.class.php:95 62 | msgid "what i’m querying. probably a key in the options array in $filters" 63 | msgstr "quello che sto interrogando. Probabilmente una chiave nella matrice opzioni in $filters" 64 | 65 | #: lib/tribe-filters.class.php:181 66 | msgid "Active Filters" 67 | msgstr "" 68 | 69 | #: lib/tribe-filters.class.php:537 70 | msgid "Saved Filter Set" 71 | msgstr "" 72 | 73 | #: lib/tribe-filters.class.php:539 74 | msgid "Choose a Saved Filter" 75 | msgstr "Scegli un filtro salvato" 76 | 77 | #: lib/tribe-filters.class.php:658 78 | msgid "Add a Filter" 79 | msgstr "Aggiungi un filtro" 80 | 81 | #: lib/tribe-meta-box-helper.php:45 82 | msgid "Extended Information" 83 | msgstr "Informazioni supplementari" 84 | 85 | #: lib/tribe-meta-box.php:124 lib/tribe-meta-box.php:434 86 | msgid "Delete this image" 87 | msgstr "Elimina quest'immagine" 88 | 89 | #: lib/tribe-meta-box.php:124 lib/tribe-meta-box.php:387 90 | #: lib/tribe-meta-box.php:434 91 | msgid "Delete" 92 | msgstr "Cancella" 93 | 94 | #: lib/tribe-meta-box.php:384 95 | msgid "Uploaded files" 96 | msgstr "File caricati" 97 | 98 | #: lib/tribe-meta-box.php:393 99 | msgid "Upload new files" 100 | msgstr "Carica nuovi file" 101 | 102 | #: lib/tribe-meta-box.php:396 103 | msgid "Add another file" 104 | msgstr "Aggiungi un altro file" 105 | 106 | #: lib/tribe-meta-box.php:441 107 | msgid "Add more images" 108 | msgstr "Aggiungi altre immagini" 109 | 110 | #: lib/tribe-meta-box.php:452 111 | msgid "Select a color" 112 | msgstr "Seleziona un colore" 113 | 114 | #: views/edit-filters.php:7 views/edit-filters.php:8 115 | msgid "Click to toggle" 116 | msgstr "Clicca per passare oltre" 117 | 118 | #: views/edit-filters.php:14 119 | msgid "Active Columns" 120 | msgstr "" 121 | 122 | #: views/edit-filters.php:15 123 | msgid "Drag and drop to order and select which columns are displayed in the entries table." 124 | msgstr "" 125 | 126 | #: views/edit-filters.php:20 127 | msgid "Apply" 128 | msgstr "Applica" 129 | 130 | #: views/edit-filters.php:21 131 | msgid "Save Filter Set" 132 | msgstr "" 133 | 134 | #: views/edit-filters.php:23 135 | msgid "Export to CSV" 136 | msgstr "Esporta in CSV" 137 | 138 | #: views/edit-filters.php:27 139 | msgid "Filter Name" 140 | msgstr "Nome filtro" 141 | 142 | #: views/edit-filters.php:28 143 | msgid "Save" 144 | msgstr "Salva" 145 | 146 | #: views/edit-filters.php:29 147 | msgid "Cancel" 148 | msgstr "Cancella" 149 | 150 | #: views/edit-filters.php:32 151 | msgid "Reset to Default" 152 | msgstr "" 153 | 154 | #. Plugin Name of the plugin/theme 155 | msgid "Advanced Post Manager" 156 | msgstr "" 157 | 158 | #. Description of the plugin/theme 159 | msgid "Dialing custom post types to 11 with advanced filtering controls." 160 | msgstr "" 161 | 162 | #. Author of the plugin/theme 163 | msgid "Modern Tribe, Inc." 164 | msgstr "" 165 | 166 | #. Author URI of the plugin/theme 167 | msgid "http://m.tri.be/4n" 168 | msgstr "" -------------------------------------------------------------------------------- /lang/tribe-apm-lt_LT.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-events-calendar/advanced-post-manager/921af81dfcda9421246f10e1f721ff5baaa903c0/lang/tribe-apm-lt_LT.mo -------------------------------------------------------------------------------- /lang/tribe-apm-lv.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-events-calendar/advanced-post-manager/921af81dfcda9421246f10e1f721ff5baaa903c0/lang/tribe-apm-lv.mo -------------------------------------------------------------------------------- /lang/tribe-apm-lv.po: -------------------------------------------------------------------------------- 1 | # Translation of Advanced Post Manager in Latvian 2 | # This file is distributed under the same license as the Advanced Post Manager package. 3 | msgid "" 4 | msgstr "" 5 | "PO-Revision-Date: 2015-06-08 15:47:33+0000\n" 6 | "MIME-Version: 1.0\n" 7 | "Content-Type: text/plain; charset=UTF-8\n" 8 | "Content-Transfer-Encoding: 8bit\n" 9 | "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" 10 | "X-Generator: GlotPress/1.0-alpha-1100\n" 11 | "Project-Id-Version: Advanced Post Manager\n" 12 | 13 | #: views/edit-filters.php:8 14 | msgid "Filters & Columns" 15 | msgstr "" 16 | 17 | #: demo/demo.php:30 18 | msgid "It looks like you might not have any demo data. Download our data and use the WordPress Importer." 19 | msgstr "Izskatās, ka Jums nav demo datu. Paņemiet mūsu un izmantojiet WordPress Importer." 20 | 21 | #: lib/tribe-columns.class.php:43 22 | msgid "Column Name" 23 | msgstr "Kolonnas nosaukums" 24 | 25 | #: lib/tribe-columns.class.php:144 lib/tribe-columns.class.php:165 26 | msgid "Comments" 27 | msgstr "Komentāri" 28 | 29 | #: lib/tribe-columns.class.php:158 30 | msgid "Add a Column" 31 | msgstr "Pievienot kolonnu" 32 | 33 | #: lib/tribe-filters.class.php:52 lib/tribe-filters.class.php:72 34 | msgid "Is" 35 | msgstr "Ir" 36 | 37 | #: lib/tribe-filters.class.php:53 lib/tribe-filters.class.php:73 38 | msgid "Is Not" 39 | msgstr "Nav" 40 | 41 | #: lib/tribe-filters.class.php:71 42 | msgid "Search" 43 | msgstr "Meklēt" 44 | 45 | #: lib/tribe-filters.class.php:82 46 | msgid "Member Type" 47 | msgstr "Biedra tips" 48 | 49 | #: lib/tribe-filters.class.php:86 50 | msgid "Cafe" 51 | msgstr "Kafejnīca" 52 | 53 | #: lib/tribe-filters.class.php:87 54 | msgid "Private Desk" 55 | msgstr "Privātais galds" 56 | 57 | #: lib/tribe-filters.class.php:88 58 | msgid "Office" 59 | msgstr "Birojs" 60 | 61 | #: lib/tribe-filters.class.php:95 62 | msgid "what i’m querying. probably a key in the options array in $filters" 63 | msgstr "what i’m querying. probably a key in the options array in $filters" 64 | 65 | #: lib/tribe-filters.class.php:181 66 | msgid "Active Filters" 67 | msgstr "" 68 | 69 | #: lib/tribe-filters.class.php:537 70 | msgid "Saved Filter Set" 71 | msgstr "" 72 | 73 | #: lib/tribe-filters.class.php:539 74 | msgid "Choose a Saved Filter" 75 | msgstr "Izvēlieties saglabāto filtru" 76 | 77 | #: lib/tribe-filters.class.php:658 78 | msgid "Add a Filter" 79 | msgstr "Pievienot filtru" 80 | 81 | #: lib/tribe-meta-box-helper.php:45 82 | msgid "Extended Information" 83 | msgstr "Papildus informācija" 84 | 85 | #: lib/tribe-meta-box.php:124 lib/tribe-meta-box.php:434 86 | msgid "Delete this image" 87 | msgstr "Dzēst šo attēlu" 88 | 89 | #: lib/tribe-meta-box.php:124 lib/tribe-meta-box.php:387 90 | #: lib/tribe-meta-box.php:434 91 | msgid "Delete" 92 | msgstr "Dzēst" 93 | 94 | #: lib/tribe-meta-box.php:384 95 | msgid "Uploaded files" 96 | msgstr "Pievienotie faili" 97 | 98 | #: lib/tribe-meta-box.php:393 99 | msgid "Upload new files" 100 | msgstr "Pievienot jaunu failu" 101 | 102 | #: lib/tribe-meta-box.php:396 103 | msgid "Add another file" 104 | msgstr "Pievienot vēl vienu failu" 105 | 106 | #: lib/tribe-meta-box.php:441 107 | msgid "Add more images" 108 | msgstr "Pievienot vēl attēlus" 109 | 110 | #: lib/tribe-meta-box.php:452 111 | msgid "Select a color" 112 | msgstr "Izvēlēties krāsu" 113 | 114 | #: views/edit-filters.php:7 views/edit-filters.php:8 115 | msgid "Click to toggle" 116 | msgstr "Klikšķiniet lai pārslēgtu" 117 | 118 | #: views/edit-filters.php:14 119 | msgid "Active Columns" 120 | msgstr "" 121 | 122 | #: views/edit-filters.php:15 123 | msgid "Drag and drop to order and select which columns are displayed in the entries table." 124 | msgstr "" 125 | 126 | #: views/edit-filters.php:20 127 | msgid "Apply" 128 | msgstr "Pielietot" 129 | 130 | #: views/edit-filters.php:21 131 | msgid "Save Filter Set" 132 | msgstr "" 133 | 134 | #: views/edit-filters.php:23 135 | msgid "Export to CSV" 136 | msgstr "Eksportēt uz CSV" 137 | 138 | #: views/edit-filters.php:27 139 | msgid "Filter Name" 140 | msgstr "Filtra nosaukums" 141 | 142 | #: views/edit-filters.php:28 143 | msgid "Save" 144 | msgstr "Saglabāt" 145 | 146 | #: views/edit-filters.php:29 147 | msgid "Cancel" 148 | msgstr "Atcelt" 149 | 150 | #: views/edit-filters.php:32 151 | msgid "Reset to Default" 152 | msgstr "" 153 | 154 | #. Plugin Name of the plugin/theme 155 | msgid "Advanced Post Manager" 156 | msgstr "" 157 | 158 | #. Description of the plugin/theme 159 | msgid "Dialing custom post types to 11 with advanced filtering controls." 160 | msgstr "" 161 | 162 | #. Author of the plugin/theme 163 | msgid "Modern Tribe, Inc." 164 | msgstr "" 165 | 166 | #. Author URI of the plugin/theme 167 | msgid "http://m.tri.be/4n" 168 | msgstr "" -------------------------------------------------------------------------------- /lang/tribe-apm-nl_NL.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-events-calendar/advanced-post-manager/921af81dfcda9421246f10e1f721ff5baaa903c0/lang/tribe-apm-nl_NL.mo -------------------------------------------------------------------------------- /lang/tribe-apm-pt_BR.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-events-calendar/advanced-post-manager/921af81dfcda9421246f10e1f721ff5baaa903c0/lang/tribe-apm-pt_BR.mo -------------------------------------------------------------------------------- /lang/tribe-apm-pt_PT.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-events-calendar/advanced-post-manager/921af81dfcda9421246f10e1f721ff5baaa903c0/lang/tribe-apm-pt_PT.mo -------------------------------------------------------------------------------- /lang/tribe-apm-ro_RO.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-events-calendar/advanced-post-manager/921af81dfcda9421246f10e1f721ff5baaa903c0/lang/tribe-apm-ro_RO.mo -------------------------------------------------------------------------------- /lang/tribe-apm-ru_RU.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-events-calendar/advanced-post-manager/921af81dfcda9421246f10e1f721ff5baaa903c0/lang/tribe-apm-ru_RU.mo -------------------------------------------------------------------------------- /lang/tribe-apm-ru_RU.po: -------------------------------------------------------------------------------- 1 | # Translation of Advanced Post Manager in Russian 2 | # This file is distributed under the same license as the Advanced Post Manager package. 3 | msgid "" 4 | msgstr "" 5 | "PO-Revision-Date: 2015-06-08 15:50:36+0000\n" 6 | "MIME-Version: 1.0\n" 7 | "Content-Type: text/plain; charset=UTF-8\n" 8 | "Content-Transfer-Encoding: 8bit\n" 9 | "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" 10 | "X-Generator: GlotPress/1.0-alpha-1100\n" 11 | "Project-Id-Version: Advanced Post Manager\n" 12 | 13 | #: views/edit-filters.php:8 14 | msgid "Filters & Columns" 15 | msgstr "" 16 | 17 | #: demo/demo.php:30 18 | msgid "It looks like you might not have any demo data. Download our data and use the WordPress Importer." 19 | msgstr "Кажется, у вас может не быть данных демо. Загрузите наши данные и используйте WordPress Importer." 20 | 21 | #: lib/tribe-columns.class.php:43 22 | msgid "Column Name" 23 | msgstr "Название колонки" 24 | 25 | #: lib/tribe-columns.class.php:144 lib/tribe-columns.class.php:165 26 | msgid "Comments" 27 | msgstr "Комментарии" 28 | 29 | #: lib/tribe-columns.class.php:158 30 | msgid "Add a Column" 31 | msgstr "Добавить колонку" 32 | 33 | #: lib/tribe-filters.class.php:52 lib/tribe-filters.class.php:72 34 | msgid "Is" 35 | msgstr "Есть" 36 | 37 | #: lib/tribe-filters.class.php:53 lib/tribe-filters.class.php:73 38 | msgid "Is Not" 39 | msgstr "Нет" 40 | 41 | #: lib/tribe-filters.class.php:71 42 | msgid "Search" 43 | msgstr "Поиск" 44 | 45 | #: lib/tribe-filters.class.php:82 46 | msgid "Member Type" 47 | msgstr "Тип участника" 48 | 49 | #: lib/tribe-filters.class.php:86 50 | msgid "Cafe" 51 | msgstr "Кафе" 52 | 53 | #: lib/tribe-filters.class.php:87 54 | msgid "Private Desk" 55 | msgstr "Личный стол" 56 | 57 | #: lib/tribe-filters.class.php:88 58 | msgid "Office" 59 | msgstr "Офис" 60 | 61 | #: lib/tribe-filters.class.php:95 62 | msgid "what i’m querying. probably a key in the options array in $filters" 63 | msgstr "" 64 | 65 | #: lib/tribe-filters.class.php:181 66 | msgid "Active Filters" 67 | msgstr "" 68 | 69 | #: lib/tribe-filters.class.php:537 70 | msgid "Saved Filter Set" 71 | msgstr "" 72 | 73 | #: lib/tribe-filters.class.php:539 74 | msgid "Choose a Saved Filter" 75 | msgstr "Выбрать сохраненный фильтр" 76 | 77 | #: lib/tribe-filters.class.php:658 78 | msgid "Add a Filter" 79 | msgstr "Добавить фильтр" 80 | 81 | #: lib/tribe-meta-box-helper.php:45 82 | msgid "Extended Information" 83 | msgstr "Расширенная информация" 84 | 85 | #: lib/tribe-meta-box.php:124 lib/tribe-meta-box.php:434 86 | msgid "Delete this image" 87 | msgstr "Удалить это изображение" 88 | 89 | #: lib/tribe-meta-box.php:124 lib/tribe-meta-box.php:387 90 | #: lib/tribe-meta-box.php:434 91 | msgid "Delete" 92 | msgstr "Удалить" 93 | 94 | #: lib/tribe-meta-box.php:384 95 | msgid "Uploaded files" 96 | msgstr "Загруженные файлы" 97 | 98 | #: lib/tribe-meta-box.php:393 99 | msgid "Upload new files" 100 | msgstr "Загрузить новые файлы" 101 | 102 | #: lib/tribe-meta-box.php:396 103 | msgid "Add another file" 104 | msgstr "Добавить еще один файл" 105 | 106 | #: lib/tribe-meta-box.php:441 107 | msgid "Add more images" 108 | msgstr "Добавить еще изображения" 109 | 110 | #: lib/tribe-meta-box.php:452 111 | msgid "Select a color" 112 | msgstr "Выбрать цвет" 113 | 114 | #: views/edit-filters.php:7 views/edit-filters.php:8 115 | msgid "Click to toggle" 116 | msgstr "Нажать для переключения" 117 | 118 | #: views/edit-filters.php:14 119 | msgid "Active Columns" 120 | msgstr "" 121 | 122 | #: views/edit-filters.php:15 123 | msgid "Drag and drop to order and select which columns are displayed in the entries table." 124 | msgstr "" 125 | 126 | #: views/edit-filters.php:20 127 | msgid "Apply" 128 | msgstr "Применить" 129 | 130 | #: views/edit-filters.php:21 131 | msgid "Save Filter Set" 132 | msgstr "" 133 | 134 | #: views/edit-filters.php:23 135 | msgid "Export to CSV" 136 | msgstr "Экспорт в CSV" 137 | 138 | #: views/edit-filters.php:27 139 | msgid "Filter Name" 140 | msgstr "Название фильтра" 141 | 142 | #: views/edit-filters.php:28 143 | msgid "Save" 144 | msgstr "Сохранить" 145 | 146 | #: views/edit-filters.php:29 147 | msgid "Cancel" 148 | msgstr "Отмена" 149 | 150 | #: views/edit-filters.php:32 151 | msgid "Reset to Default" 152 | msgstr "" 153 | 154 | #. Plugin Name of the plugin/theme 155 | msgid "Advanced Post Manager" 156 | msgstr "" 157 | 158 | #. Description of the plugin/theme 159 | msgid "Dialing custom post types to 11 with advanced filtering controls." 160 | msgstr "" 161 | 162 | #. Author of the plugin/theme 163 | msgid "Modern Tribe, Inc." 164 | msgstr "" 165 | 166 | #. Author URI of the plugin/theme 167 | msgid "http://m.tri.be/4n" 168 | msgstr "" -------------------------------------------------------------------------------- /lang/tribe-apm-sk_SK.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-events-calendar/advanced-post-manager/921af81dfcda9421246f10e1f721ff5baaa903c0/lang/tribe-apm-sk_SK.mo -------------------------------------------------------------------------------- /lang/tribe-apm-sk_SK.po: -------------------------------------------------------------------------------- 1 | # Translation of Advanced Post Manager in Slovak 2 | # This file is distributed under the same license as the Advanced Post Manager package. 3 | msgid "" 4 | msgstr "" 5 | "PO-Revision-Date: 2015-06-08 15:50:17+0000\n" 6 | "MIME-Version: 1.0\n" 7 | "Content-Type: text/plain; charset=UTF-8\n" 8 | "Content-Transfer-Encoding: 8bit\n" 9 | "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" 10 | "X-Generator: GlotPress/1.0-alpha-1100\n" 11 | "Project-Id-Version: Advanced Post Manager\n" 12 | 13 | #: views/edit-filters.php:8 14 | msgid "Filters & Columns" 15 | msgstr "" 16 | 17 | #: demo/demo.php:30 18 | msgid "It looks like you might not have any demo data. Download our data and use the WordPress Importer." 19 | msgstr "Vyzerá to, že nemáte žiadne demo dáta. Stiahnite si naše dáta a použite ich pomocou WordPress Importer." 20 | 21 | #: lib/tribe-columns.class.php:43 22 | msgid "Column Name" 23 | msgstr "Názov stĺpca" 24 | 25 | #: lib/tribe-columns.class.php:144 lib/tribe-columns.class.php:165 26 | msgid "Comments" 27 | msgstr "Komentáre" 28 | 29 | #: lib/tribe-columns.class.php:158 30 | msgid "Add a Column" 31 | msgstr "Pridať stĺpec" 32 | 33 | #: lib/tribe-filters.class.php:52 lib/tribe-filters.class.php:72 34 | msgid "Is" 35 | msgstr "je" 36 | 37 | #: lib/tribe-filters.class.php:53 lib/tribe-filters.class.php:73 38 | msgid "Is Not" 39 | msgstr "nie je" 40 | 41 | #: lib/tribe-filters.class.php:71 42 | msgid "Search" 43 | msgstr "Vyhľadať" 44 | 45 | #: lib/tribe-filters.class.php:82 46 | msgid "Member Type" 47 | msgstr "Typ člena" 48 | 49 | #: lib/tribe-filters.class.php:86 50 | msgid "Cafe" 51 | msgstr "Kaviareň" 52 | 53 | #: lib/tribe-filters.class.php:87 54 | msgid "Private Desk" 55 | msgstr "Private Desk" 56 | 57 | #: lib/tribe-filters.class.php:88 58 | msgid "Office" 59 | msgstr "Kancelária" 60 | 61 | #: lib/tribe-filters.class.php:95 62 | msgid "what i’m querying. probably a key in the options array in $filters" 63 | msgstr "na čo sa dotazujete. pravdepodobne kľúč v poli options v premennej $filters" 64 | 65 | #: lib/tribe-filters.class.php:181 66 | msgid "Active Filters" 67 | msgstr "" 68 | 69 | #: lib/tribe-filters.class.php:537 70 | msgid "Saved Filter Set" 71 | msgstr "" 72 | 73 | #: lib/tribe-filters.class.php:539 74 | msgid "Choose a Saved Filter" 75 | msgstr "Vybrať uložený filter" 76 | 77 | #: lib/tribe-filters.class.php:658 78 | msgid "Add a Filter" 79 | msgstr "Pridať filter" 80 | 81 | #: lib/tribe-meta-box-helper.php:45 82 | msgid "Extended Information" 83 | msgstr "Rozšírené informácie" 84 | 85 | #: lib/tribe-meta-box.php:124 lib/tribe-meta-box.php:434 86 | msgid "Delete this image" 87 | msgstr "Odstrániť tento obrázok" 88 | 89 | #: lib/tribe-meta-box.php:124 lib/tribe-meta-box.php:387 90 | #: lib/tribe-meta-box.php:434 91 | msgid "Delete" 92 | msgstr "Odstrániť" 93 | 94 | #: lib/tribe-meta-box.php:384 95 | msgid "Uploaded files" 96 | msgstr "Nahrané súbory" 97 | 98 | #: lib/tribe-meta-box.php:393 99 | msgid "Upload new files" 100 | msgstr "Nahrať nový súbor" 101 | 102 | #: lib/tribe-meta-box.php:396 103 | msgid "Add another file" 104 | msgstr "Pridať ďalší súbor" 105 | 106 | #: lib/tribe-meta-box.php:441 107 | msgid "Add more images" 108 | msgstr "Pridať ďalšie obrázky" 109 | 110 | #: lib/tribe-meta-box.php:452 111 | msgid "Select a color" 112 | msgstr "Vybrať farbu" 113 | 114 | #: views/edit-filters.php:7 views/edit-filters.php:8 115 | msgid "Click to toggle" 116 | msgstr "Kliknutím rozbaliť/zbaliť" 117 | 118 | #: views/edit-filters.php:14 119 | msgid "Active Columns" 120 | msgstr "" 121 | 122 | #: views/edit-filters.php:15 123 | msgid "Drag and drop to order and select which columns are displayed in the entries table." 124 | msgstr "" 125 | 126 | #: views/edit-filters.php:20 127 | msgid "Apply" 128 | msgstr "Použiť" 129 | 130 | #: views/edit-filters.php:21 131 | msgid "Save Filter Set" 132 | msgstr "" 133 | 134 | #: views/edit-filters.php:23 135 | msgid "Export to CSV" 136 | msgstr "Export do CSV" 137 | 138 | #: views/edit-filters.php:27 139 | msgid "Filter Name" 140 | msgstr "Názov filtra" 141 | 142 | #: views/edit-filters.php:28 143 | msgid "Save" 144 | msgstr "Uložiť" 145 | 146 | #: views/edit-filters.php:29 147 | msgid "Cancel" 148 | msgstr "Zrušiť" 149 | 150 | #: views/edit-filters.php:32 151 | msgid "Reset to Default" 152 | msgstr "" 153 | 154 | #. Plugin Name of the plugin/theme 155 | msgid "Advanced Post Manager" 156 | msgstr "" 157 | 158 | #. Description of the plugin/theme 159 | msgid "Dialing custom post types to 11 with advanced filtering controls." 160 | msgstr "" 161 | 162 | #. Author of the plugin/theme 163 | msgid "Modern Tribe, Inc." 164 | msgstr "" 165 | 166 | #. Author URI of the plugin/theme 167 | msgid "http://m.tri.be/4n" 168 | msgstr "" -------------------------------------------------------------------------------- /lang/tribe-apm-sl_SI.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-events-calendar/advanced-post-manager/921af81dfcda9421246f10e1f721ff5baaa903c0/lang/tribe-apm-sl_SI.mo -------------------------------------------------------------------------------- /lang/tribe-apm-sl_SI.po: -------------------------------------------------------------------------------- 1 | # Translation of Advanced Post Manager in Slovenian 2 | # This file is distributed under the same license as the Advanced Post Manager package. 3 | msgid "" 4 | msgstr "" 5 | "PO-Revision-Date: 2015-06-08 15:49:53+0000\n" 6 | "MIME-Version: 1.0\n" 7 | "Content-Type: text/plain; charset=UTF-8\n" 8 | "Content-Transfer-Encoding: 8bit\n" 9 | "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" 10 | "X-Generator: GlotPress/1.0-alpha-1100\n" 11 | "Project-Id-Version: Advanced Post Manager\n" 12 | 13 | #: views/edit-filters.php:8 14 | msgid "Filters & Columns" 15 | msgstr "" 16 | 17 | #: demo/demo.php:30 18 | msgid "It looks like you might not have any demo data. Download our data and use the WordPress Importer." 19 | msgstr "Izgleda kot da nimate nobenih demo podatkov. Prenesite si naše podatke in uporabite WordPress Importer." 20 | 21 | #: lib/tribe-columns.class.php:43 22 | msgid "Column Name" 23 | msgstr "Ime stolpca" 24 | 25 | #: lib/tribe-columns.class.php:144 lib/tribe-columns.class.php:165 26 | msgid "Comments" 27 | msgstr "Komentarji" 28 | 29 | #: lib/tribe-columns.class.php:158 30 | msgid "Add a Column" 31 | msgstr "Dodaj stolpec" 32 | 33 | #: lib/tribe-filters.class.php:52 lib/tribe-filters.class.php:72 34 | msgid "Is" 35 | msgstr "Je" 36 | 37 | #: lib/tribe-filters.class.php:53 lib/tribe-filters.class.php:73 38 | msgid "Is Not" 39 | msgstr "Ni" 40 | 41 | #: lib/tribe-filters.class.php:71 42 | msgid "Search" 43 | msgstr "Iskanje" 44 | 45 | #: lib/tribe-filters.class.php:82 46 | msgid "Member Type" 47 | msgstr "Tip člana" 48 | 49 | #: lib/tribe-filters.class.php:86 50 | msgid "Cafe" 51 | msgstr "Cafe" 52 | 53 | #: lib/tribe-filters.class.php:87 54 | msgid "Private Desk" 55 | msgstr "Zasebna miza" 56 | 57 | #: lib/tribe-filters.class.php:88 58 | msgid "Office" 59 | msgstr "Pisarna" 60 | 61 | #: lib/tribe-filters.class.php:95 62 | msgid "what i’m querying. probably a key in the options array in $filters" 63 | msgstr "kaj poizvedujem. najbrž ključ med možnostmi izbire v $filtrih." 64 | 65 | #: lib/tribe-filters.class.php:181 66 | msgid "Active Filters" 67 | msgstr "" 68 | 69 | #: lib/tribe-filters.class.php:537 70 | msgid "Saved Filter Set" 71 | msgstr "" 72 | 73 | #: lib/tribe-filters.class.php:539 74 | msgid "Choose a Saved Filter" 75 | msgstr "Izberi shranjen filter" 76 | 77 | #: lib/tribe-filters.class.php:658 78 | msgid "Add a Filter" 79 | msgstr "Dodaj filter" 80 | 81 | #: lib/tribe-meta-box-helper.php:45 82 | msgid "Extended Information" 83 | msgstr "Razširjene informacije" 84 | 85 | #: lib/tribe-meta-box.php:124 lib/tribe-meta-box.php:434 86 | msgid "Delete this image" 87 | msgstr "Izbriši to sliko" 88 | 89 | #: lib/tribe-meta-box.php:124 lib/tribe-meta-box.php:387 90 | #: lib/tribe-meta-box.php:434 91 | msgid "Delete" 92 | msgstr "Izbriši" 93 | 94 | #: lib/tribe-meta-box.php:384 95 | msgid "Uploaded files" 96 | msgstr "Naložene datoteke" 97 | 98 | #: lib/tribe-meta-box.php:393 99 | msgid "Upload new files" 100 | msgstr "Naloži nove datoteke" 101 | 102 | #: lib/tribe-meta-box.php:396 103 | msgid "Add another file" 104 | msgstr "Dodaj novo datoteko" 105 | 106 | #: lib/tribe-meta-box.php:441 107 | msgid "Add more images" 108 | msgstr "Dodaj več slik" 109 | 110 | #: lib/tribe-meta-box.php:452 111 | msgid "Select a color" 112 | msgstr "Izberi barvo" 113 | 114 | #: views/edit-filters.php:7 views/edit-filters.php:8 115 | msgid "Click to toggle" 116 | msgstr "Klikni stikalo" 117 | 118 | #: views/edit-filters.php:14 119 | msgid "Active Columns" 120 | msgstr "" 121 | 122 | #: views/edit-filters.php:15 123 | msgid "Drag and drop to order and select which columns are displayed in the entries table." 124 | msgstr "" 125 | 126 | #: views/edit-filters.php:20 127 | msgid "Apply" 128 | msgstr "Uporabi" 129 | 130 | #: views/edit-filters.php:21 131 | msgid "Save Filter Set" 132 | msgstr "" 133 | 134 | #: views/edit-filters.php:23 135 | msgid "Export to CSV" 136 | msgstr "Izvozi v CSV" 137 | 138 | #: views/edit-filters.php:27 139 | msgid "Filter Name" 140 | msgstr "Ime filtra" 141 | 142 | #: views/edit-filters.php:28 143 | msgid "Save" 144 | msgstr "Shrani" 145 | 146 | #: views/edit-filters.php:29 147 | msgid "Cancel" 148 | msgstr "Prekliči" 149 | 150 | #: views/edit-filters.php:32 151 | msgid "Reset to Default" 152 | msgstr "" 153 | 154 | #. Plugin Name of the plugin/theme 155 | msgid "Advanced Post Manager" 156 | msgstr "" 157 | 158 | #. Description of the plugin/theme 159 | msgid "Dialing custom post types to 11 with advanced filtering controls." 160 | msgstr "" 161 | 162 | #. Author of the plugin/theme 163 | msgid "Modern Tribe, Inc." 164 | msgstr "" 165 | 166 | #. Author URI of the plugin/theme 167 | msgid "http://m.tri.be/4n" 168 | msgstr "" -------------------------------------------------------------------------------- /lang/tribe-apm-sr_RS.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-events-calendar/advanced-post-manager/921af81dfcda9421246f10e1f721ff5baaa903c0/lang/tribe-apm-sr_RS.mo -------------------------------------------------------------------------------- /lang/tribe-apm-sr_RS.po: -------------------------------------------------------------------------------- 1 | # Translation of Advanced Post Manager in Serbian 2 | # This file is distributed under the same license as the Advanced Post Manager package. 3 | msgid "" 4 | msgstr "" 5 | "PO-Revision-Date: 2015-06-08 15:48:15+0000\n" 6 | "MIME-Version: 1.0\n" 7 | "Content-Type: text/plain; charset=UTF-8\n" 8 | "Content-Transfer-Encoding: 8bit\n" 9 | "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" 10 | "X-Generator: GlotPress/1.0-alpha-1100\n" 11 | "Project-Id-Version: Advanced Post Manager\n" 12 | 13 | #: views/edit-filters.php:8 14 | msgid "Filters & Columns" 15 | msgstr "" 16 | 17 | #: demo/demo.php:30 18 | msgid "It looks like you might not have any demo data. Download our data and use the WordPress Importer." 19 | msgstr "Izgleda da nemate demo podataka. Skinite naše podatke i koristite WordPress importer." 20 | 21 | #: lib/tribe-columns.class.php:43 22 | msgid "Column Name" 23 | msgstr "Naziv kolone" 24 | 25 | #: lib/tribe-columns.class.php:144 lib/tribe-columns.class.php:165 26 | msgid "Comments" 27 | msgstr "Komentari" 28 | 29 | #: lib/tribe-columns.class.php:158 30 | msgid "Add a Column" 31 | msgstr "Dodajte kolonu" 32 | 33 | #: lib/tribe-filters.class.php:52 lib/tribe-filters.class.php:72 34 | msgid "Is" 35 | msgstr "Je" 36 | 37 | #: lib/tribe-filters.class.php:53 lib/tribe-filters.class.php:73 38 | msgid "Is Not" 39 | msgstr "Nije" 40 | 41 | #: lib/tribe-filters.class.php:71 42 | msgid "Search" 43 | msgstr "Pretraga" 44 | 45 | #: lib/tribe-filters.class.php:82 46 | msgid "Member Type" 47 | msgstr "Tip člana" 48 | 49 | #: lib/tribe-filters.class.php:86 50 | msgid "Cafe" 51 | msgstr "Kafe" 52 | 53 | #: lib/tribe-filters.class.php:87 54 | msgid "Private Desk" 55 | msgstr "Privatna firma" 56 | 57 | #: lib/tribe-filters.class.php:88 58 | msgid "Office" 59 | msgstr "Kancelarija" 60 | 61 | #: lib/tribe-filters.class.php:95 62 | msgid "what i’m querying. probably a key in the options array in $filters" 63 | msgstr "koji je upit. vjerovatno ključ u nizu opcija u $filters" 64 | 65 | #: lib/tribe-filters.class.php:181 66 | msgid "Active Filters" 67 | msgstr "" 68 | 69 | #: lib/tribe-filters.class.php:537 70 | msgid "Saved Filter Set" 71 | msgstr "" 72 | 73 | #: lib/tribe-filters.class.php:539 74 | msgid "Choose a Saved Filter" 75 | msgstr "Odaberite sačuvani filter" 76 | 77 | #: lib/tribe-filters.class.php:658 78 | msgid "Add a Filter" 79 | msgstr "Dodajte filter" 80 | 81 | #: lib/tribe-meta-box-helper.php:45 82 | msgid "Extended Information" 83 | msgstr "Detaljne informacije" 84 | 85 | #: lib/tribe-meta-box.php:124 lib/tribe-meta-box.php:434 86 | msgid "Delete this image" 87 | msgstr "Obrišite ovu sliku" 88 | 89 | #: lib/tribe-meta-box.php:124 lib/tribe-meta-box.php:387 90 | #: lib/tribe-meta-box.php:434 91 | msgid "Delete" 92 | msgstr "Obriši" 93 | 94 | #: lib/tribe-meta-box.php:384 95 | msgid "Uploaded files" 96 | msgstr "Dodati fajlovi" 97 | 98 | #: lib/tribe-meta-box.php:393 99 | msgid "Upload new files" 100 | msgstr "Dodaj nove fajlove" 101 | 102 | #: lib/tribe-meta-box.php:396 103 | msgid "Add another file" 104 | msgstr "Dodaj još jedan fajl" 105 | 106 | #: lib/tribe-meta-box.php:441 107 | msgid "Add more images" 108 | msgstr "Dodajte još slika" 109 | 110 | #: lib/tribe-meta-box.php:452 111 | msgid "Select a color" 112 | msgstr "Odaberite boju" 113 | 114 | #: views/edit-filters.php:7 views/edit-filters.php:8 115 | msgid "Click to toggle" 116 | msgstr "Kliknite da bi ste otvorili" 117 | 118 | #: views/edit-filters.php:14 119 | msgid "Active Columns" 120 | msgstr "" 121 | 122 | #: views/edit-filters.php:15 123 | msgid "Drag and drop to order and select which columns are displayed in the entries table." 124 | msgstr "" 125 | 126 | #: views/edit-filters.php:20 127 | msgid "Apply" 128 | msgstr "Potvrdi" 129 | 130 | #: views/edit-filters.php:21 131 | msgid "Save Filter Set" 132 | msgstr "" 133 | 134 | #: views/edit-filters.php:23 135 | msgid "Export to CSV" 136 | msgstr "Izvezi u CSV" 137 | 138 | #: views/edit-filters.php:27 139 | msgid "Filter Name" 140 | msgstr "Naziv filtera" 141 | 142 | #: views/edit-filters.php:28 143 | msgid "Save" 144 | msgstr "Sačuvaj" 145 | 146 | #: views/edit-filters.php:29 147 | msgid "Cancel" 148 | msgstr "Otkaži" 149 | 150 | #: views/edit-filters.php:32 151 | msgid "Reset to Default" 152 | msgstr "" 153 | 154 | #. Plugin Name of the plugin/theme 155 | msgid "Advanced Post Manager" 156 | msgstr "" 157 | 158 | #. Description of the plugin/theme 159 | msgid "Dialing custom post types to 11 with advanced filtering controls." 160 | msgstr "" 161 | 162 | #. Author of the plugin/theme 163 | msgid "Modern Tribe, Inc." 164 | msgstr "" 165 | 166 | #. Author URI of the plugin/theme 167 | msgid "http://m.tri.be/4n" 168 | msgstr "" -------------------------------------------------------------------------------- /lang/tribe-apm-sv_SE.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-events-calendar/advanced-post-manager/921af81dfcda9421246f10e1f721ff5baaa903c0/lang/tribe-apm-sv_SE.mo -------------------------------------------------------------------------------- /lang/tribe-apm-sv_SE.po: -------------------------------------------------------------------------------- 1 | # Translation of Advanced Post Manager in Swedish 2 | # This file is distributed under the same license as the Advanced Post Manager package. 3 | msgid "" 4 | msgstr "" 5 | "PO-Revision-Date: 2015-06-08 15:47:51+0000\n" 6 | "MIME-Version: 1.0\n" 7 | "Content-Type: text/plain; charset=UTF-8\n" 8 | "Content-Transfer-Encoding: 8bit\n" 9 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 10 | "X-Generator: GlotPress/1.0-alpha-1100\n" 11 | "Project-Id-Version: Advanced Post Manager\n" 12 | 13 | #: views/edit-filters.php:8 14 | msgid "Filters & Columns" 15 | msgstr "" 16 | 17 | #: demo/demo.php:30 18 | msgid "It looks like you might not have any demo data. Download our data and use the WordPress Importer." 19 | msgstr "Det verkar som du kanske inte har någon demodata. Ladda ner vår data och använd WordPress importerade." 20 | 21 | #: lib/tribe-columns.class.php:43 22 | msgid "Column Name" 23 | msgstr "Kolumnnamn" 24 | 25 | #: lib/tribe-columns.class.php:144 lib/tribe-columns.class.php:165 26 | msgid "Comments" 27 | msgstr "Kommentarer" 28 | 29 | #: lib/tribe-columns.class.php:158 30 | msgid "Add a Column" 31 | msgstr "Lägg till en kolumn" 32 | 33 | #: lib/tribe-filters.class.php:52 lib/tribe-filters.class.php:72 34 | msgid "Is" 35 | msgstr "är" 36 | 37 | #: lib/tribe-filters.class.php:53 lib/tribe-filters.class.php:73 38 | msgid "Is Not" 39 | msgstr "är ej" 40 | 41 | #: lib/tribe-filters.class.php:71 42 | msgid "Search" 43 | msgstr "Sök" 44 | 45 | #: lib/tribe-filters.class.php:82 46 | msgid "Member Type" 47 | msgstr "Medlemstyp" 48 | 49 | #: lib/tribe-filters.class.php:86 50 | msgid "Cafe" 51 | msgstr "Café" 52 | 53 | #: lib/tribe-filters.class.php:87 54 | msgid "Private Desk" 55 | msgstr "Privat arbetshörna" 56 | 57 | #: lib/tribe-filters.class.php:88 58 | msgid "Office" 59 | msgstr "Kontor" 60 | 61 | #: lib/tribe-filters.class.php:95 62 | msgid "what i’m querying. probably a key in the options array in $filters" 63 | msgstr "min fråga. antagligen en nyckel i inställningslistan $filter" 64 | 65 | #: lib/tribe-filters.class.php:181 66 | msgid "Active Filters" 67 | msgstr "" 68 | 69 | #: lib/tribe-filters.class.php:537 70 | msgid "Saved Filter Set" 71 | msgstr "" 72 | 73 | #: lib/tribe-filters.class.php:539 74 | msgid "Choose a Saved Filter" 75 | msgstr "Välj ett sparat filter" 76 | 77 | #: lib/tribe-filters.class.php:658 78 | msgid "Add a Filter" 79 | msgstr "Lägg till ett filter" 80 | 81 | #: lib/tribe-meta-box-helper.php:45 82 | msgid "Extended Information" 83 | msgstr "Ytterligare information" 84 | 85 | #: lib/tribe-meta-box.php:124 lib/tribe-meta-box.php:434 86 | msgid "Delete this image" 87 | msgstr "Radera denna bild" 88 | 89 | #: lib/tribe-meta-box.php:124 lib/tribe-meta-box.php:387 90 | #: lib/tribe-meta-box.php:434 91 | msgid "Delete" 92 | msgstr "Radera" 93 | 94 | #: lib/tribe-meta-box.php:384 95 | msgid "Uploaded files" 96 | msgstr "Uppladdade filer" 97 | 98 | #: lib/tribe-meta-box.php:393 99 | msgid "Upload new files" 100 | msgstr "Ladda upp nya filer" 101 | 102 | #: lib/tribe-meta-box.php:396 103 | msgid "Add another file" 104 | msgstr "Lägg till en ytterligare fil" 105 | 106 | #: lib/tribe-meta-box.php:441 107 | msgid "Add more images" 108 | msgstr "Lägg till fler bilder" 109 | 110 | #: lib/tribe-meta-box.php:452 111 | msgid "Select a color" 112 | msgstr "Välj en färg" 113 | 114 | #: views/edit-filters.php:7 views/edit-filters.php:8 115 | msgid "Click to toggle" 116 | msgstr "Klicka för att växla" 117 | 118 | #: views/edit-filters.php:14 119 | msgid "Active Columns" 120 | msgstr "" 121 | 122 | #: views/edit-filters.php:15 123 | msgid "Drag and drop to order and select which columns are displayed in the entries table." 124 | msgstr "" 125 | 126 | #: views/edit-filters.php:20 127 | msgid "Apply" 128 | msgstr "Tillämpa" 129 | 130 | #: views/edit-filters.php:21 131 | msgid "Save Filter Set" 132 | msgstr "" 133 | 134 | #: views/edit-filters.php:23 135 | msgid "Export to CSV" 136 | msgstr "Exportera till CSV" 137 | 138 | #: views/edit-filters.php:27 139 | msgid "Filter Name" 140 | msgstr "Filternamn" 141 | 142 | #: views/edit-filters.php:28 143 | msgid "Save" 144 | msgstr "Spara" 145 | 146 | #: views/edit-filters.php:29 147 | msgid "Cancel" 148 | msgstr "Avbryt" 149 | 150 | #: views/edit-filters.php:32 151 | msgid "Reset to Default" 152 | msgstr "" 153 | 154 | #. Plugin Name of the plugin/theme 155 | msgid "Advanced Post Manager" 156 | msgstr "" 157 | 158 | #. Description of the plugin/theme 159 | msgid "Dialing custom post types to 11 with advanced filtering controls." 160 | msgstr "" 161 | 162 | #. Author of the plugin/theme 163 | msgid "Modern Tribe, Inc." 164 | msgstr "" 165 | 166 | #. Author URI of the plugin/theme 167 | msgid "http://m.tri.be/4n" 168 | msgstr "" -------------------------------------------------------------------------------- /lang/tribe-apm-tr_TR.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-events-calendar/advanced-post-manager/921af81dfcda9421246f10e1f721ff5baaa903c0/lang/tribe-apm-tr_TR.mo -------------------------------------------------------------------------------- /lang/tribe-apm-tr_TR.po: -------------------------------------------------------------------------------- 1 | # Translation of Advanced Post Manager in Turkish 2 | # This file is distributed under the same license as the Advanced Post Manager package. 3 | msgid "" 4 | msgstr "" 5 | "PO-Revision-Date: 2016-10-13 05:53:45+0000\n" 6 | "MIME-Version: 1.0\n" 7 | "Content-Type: text/plain; charset=UTF-8\n" 8 | "Content-Transfer-Encoding: 8bit\n" 9 | "Plural-Forms: nplurals=2; plural=(n > 1);\n" 10 | "X-Generator: GlotPress/1.0-alpha-1100\n" 11 | "Project-Id-Version: Advanced Post Manager\n" 12 | 13 | #: views/edit-filters.php:8 14 | msgid "Filters & Columns" 15 | msgstr "" 16 | 17 | #: demo/demo.php:30 18 | msgid "It looks like you might not have any demo data. Download our data and use the WordPress Importer." 19 | msgstr "It looks like you might not have any demo data. Download our data and use the WordPress Importer." 20 | 21 | #: lib/tribe-columns.class.php:43 22 | msgid "Column Name" 23 | msgstr "Sütun Adı" 24 | 25 | #: lib/tribe-columns.class.php:144 lib/tribe-columns.class.php:165 26 | msgid "Comments" 27 | msgstr "Yorumlar" 28 | 29 | #: lib/tribe-columns.class.php:158 30 | msgid "Add a Column" 31 | msgstr "Sütun Ekle" 32 | 33 | #: lib/tribe-filters.class.php:52 lib/tribe-filters.class.php:72 34 | msgid "Is" 35 | msgstr "Öyle" 36 | 37 | #: lib/tribe-filters.class.php:53 lib/tribe-filters.class.php:73 38 | msgid "Is Not" 39 | msgstr "Öyle değil" 40 | 41 | #: lib/tribe-filters.class.php:71 42 | msgid "Search" 43 | msgstr "Ara" 44 | 45 | #: lib/tribe-filters.class.php:82 46 | msgid "Member Type" 47 | msgstr "Üye Tipi" 48 | 49 | #: lib/tribe-filters.class.php:86 50 | msgid "Cafe" 51 | msgstr "Kafe" 52 | 53 | #: lib/tribe-filters.class.php:87 54 | msgid "Private Desk" 55 | msgstr "Özel masa" 56 | 57 | #: lib/tribe-filters.class.php:88 58 | msgid "Office" 59 | msgstr "Ofis" 60 | 61 | #: lib/tribe-filters.class.php:95 62 | msgid "what i’m querying. probably a key in the options array in $filters" 63 | msgstr "what i’m querying. probably a key in the options array in $filters" 64 | 65 | #: lib/tribe-filters.class.php:181 66 | msgid "Active Filters" 67 | msgstr "Aktif Filtreler" 68 | 69 | #: lib/tribe-filters.class.php:537 70 | msgid "Saved Filter Set" 71 | msgstr "" 72 | 73 | #: lib/tribe-filters.class.php:539 74 | msgid "Choose a Saved Filter" 75 | msgstr "Kaydedilmiş filtre seç" 76 | 77 | #: lib/tribe-filters.class.php:658 78 | msgid "Add a Filter" 79 | msgstr "Filtre Ekle" 80 | 81 | #: lib/tribe-meta-box-helper.php:45 82 | msgid "Extended Information" 83 | msgstr "Genişletilmiş Bilgi" 84 | 85 | #: lib/tribe-meta-box.php:124 lib/tribe-meta-box.php:434 86 | msgid "Delete this image" 87 | msgstr "Bu resimi sil" 88 | 89 | #: lib/tribe-meta-box.php:124 lib/tribe-meta-box.php:387 90 | #: lib/tribe-meta-box.php:434 91 | msgid "Delete" 92 | msgstr "Sil" 93 | 94 | #: lib/tribe-meta-box.php:384 95 | msgid "Uploaded files" 96 | msgstr "Yüklenmiş dosyalar" 97 | 98 | #: lib/tribe-meta-box.php:393 99 | msgid "Upload new files" 100 | msgstr "Yeni dosya yükle" 101 | 102 | #: lib/tribe-meta-box.php:396 103 | msgid "Add another file" 104 | msgstr "Başka dosya ekle" 105 | 106 | #: lib/tribe-meta-box.php:441 107 | msgid "Add more images" 108 | msgstr "Daha fazla resim ekle" 109 | 110 | #: lib/tribe-meta-box.php:452 111 | msgid "Select a color" 112 | msgstr "Renk seç" 113 | 114 | #: views/edit-filters.php:7 views/edit-filters.php:8 115 | msgid "Click to toggle" 116 | msgstr "Geçiş yapmak için tıklayın" 117 | 118 | #: views/edit-filters.php:14 119 | msgid "Active Columns" 120 | msgstr "" 121 | 122 | #: views/edit-filters.php:15 123 | msgid "Drag and drop to order and select which columns are displayed in the entries table." 124 | msgstr "" 125 | 126 | #: views/edit-filters.php:20 127 | msgid "Apply" 128 | msgstr "Uygula" 129 | 130 | #: views/edit-filters.php:21 131 | msgid "Save Filter Set" 132 | msgstr "" 133 | 134 | #: views/edit-filters.php:23 135 | msgid "Export to CSV" 136 | msgstr "CSV olarak aktar" 137 | 138 | #: views/edit-filters.php:27 139 | msgid "Filter Name" 140 | msgstr "Filtre Adı" 141 | 142 | #: views/edit-filters.php:28 143 | msgid "Save" 144 | msgstr "Kaydet" 145 | 146 | #: views/edit-filters.php:29 147 | msgid "Cancel" 148 | msgstr "İptal" 149 | 150 | #: views/edit-filters.php:32 151 | msgid "Reset to Default" 152 | msgstr "" 153 | 154 | #. Plugin Name of the plugin/theme 155 | msgid "Advanced Post Manager" 156 | msgstr "" 157 | 158 | #. Description of the plugin/theme 159 | msgid "Dialing custom post types to 11 with advanced filtering controls." 160 | msgstr "" 161 | 162 | #. Author of the plugin/theme 163 | msgid "Modern Tribe, Inc." 164 | msgstr "Modern Tribe, Inc." 165 | 166 | #. Author URI of the plugin/theme 167 | msgid "http://m.tri.be/4n" 168 | msgstr "" -------------------------------------------------------------------------------- /lang/tribe-apm-uk.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-events-calendar/advanced-post-manager/921af81dfcda9421246f10e1f721ff5baaa903c0/lang/tribe-apm-uk.mo -------------------------------------------------------------------------------- /lang/tribe-apm-zh_TW.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-events-calendar/advanced-post-manager/921af81dfcda9421246f10e1f721ff5baaa903c0/lang/tribe-apm-zh_TW.mo -------------------------------------------------------------------------------- /lang/tribe-apm-zh_TW.po: -------------------------------------------------------------------------------- 1 | # Translation of Advanced Post Manager in Chinese (Taiwan) 2 | # This file is distributed under the same license as the Advanced Post Manager package. 3 | msgid "" 4 | msgstr "" 5 | "PO-Revision-Date: 2015-06-08 15:54:59+0000\n" 6 | "MIME-Version: 1.0\n" 7 | "Content-Type: text/plain; charset=UTF-8\n" 8 | "Content-Transfer-Encoding: 8bit\n" 9 | "Plural-Forms: nplurals=1; plural=0;\n" 10 | "X-Generator: GlotPress/1.0-alpha-1100\n" 11 | "Project-Id-Version: Advanced Post Manager\n" 12 | 13 | #: views/edit-filters.php:8 14 | msgid "Filters & Columns" 15 | msgstr "" 16 | 17 | #: demo/demo.php:30 18 | msgid "It looks like you might not have any demo data. Download our data and use the WordPress Importer." 19 | msgstr "似乎你可能沒有我們任何的樣本資料,下載我們的資料 並使用 WordPress Importer。" 20 | 21 | #: lib/tribe-columns.class.php:43 22 | msgid "Column Name" 23 | msgstr "欄名稱" 24 | 25 | #: lib/tribe-columns.class.php:144 lib/tribe-columns.class.php:165 26 | msgid "Comments" 27 | msgstr "評論" 28 | 29 | #: lib/tribe-columns.class.php:158 30 | msgid "Add a Column" 31 | msgstr "新增欄" 32 | 33 | #: lib/tribe-filters.class.php:52 lib/tribe-filters.class.php:72 34 | msgid "Is" 35 | msgstr "是" 36 | 37 | #: lib/tribe-filters.class.php:53 lib/tribe-filters.class.php:73 38 | msgid "Is Not" 39 | msgstr "不是" 40 | 41 | #: lib/tribe-filters.class.php:71 42 | msgid "Search" 43 | msgstr "搜尋" 44 | 45 | #: lib/tribe-filters.class.php:82 46 | msgid "Member Type" 47 | msgstr "會員類型" 48 | 49 | #: lib/tribe-filters.class.php:86 50 | msgid "Cafe" 51 | msgstr "咖啡館" 52 | 53 | #: lib/tribe-filters.class.php:87 54 | msgid "Private Desk" 55 | msgstr "私人辦公桌" 56 | 57 | #: lib/tribe-filters.class.php:88 58 | msgid "Office" 59 | msgstr "辦公室" 60 | 61 | #: lib/tribe-filters.class.php:95 62 | msgid "what i’m querying. probably a key in the options array in $filters" 63 | msgstr "我所要查詢的,大概是 a key in the options array in $filters。" 64 | 65 | #: lib/tribe-filters.class.php:181 66 | msgid "Active Filters" 67 | msgstr "" 68 | 69 | #: lib/tribe-filters.class.php:537 70 | msgid "Saved Filter Set" 71 | msgstr "" 72 | 73 | #: lib/tribe-filters.class.php:539 74 | msgid "Choose a Saved Filter" 75 | msgstr "選擇現有的篩選" 76 | 77 | #: lib/tribe-filters.class.php:658 78 | msgid "Add a Filter" 79 | msgstr "新增篩選" 80 | 81 | #: lib/tribe-meta-box-helper.php:45 82 | msgid "Extended Information" 83 | msgstr "延伸訊息:" 84 | 85 | #: lib/tribe-meta-box.php:124 lib/tribe-meta-box.php:434 86 | msgid "Delete this image" 87 | msgstr "刪除此圖片" 88 | 89 | #: lib/tribe-meta-box.php:124 lib/tribe-meta-box.php:387 90 | #: lib/tribe-meta-box.php:434 91 | msgid "Delete" 92 | msgstr "刪除" 93 | 94 | #: lib/tribe-meta-box.php:384 95 | msgid "Uploaded files" 96 | msgstr "上傳檔案" 97 | 98 | #: lib/tribe-meta-box.php:393 99 | msgid "Upload new files" 100 | msgstr "上傳新檔案" 101 | 102 | #: lib/tribe-meta-box.php:396 103 | msgid "Add another file" 104 | msgstr "新增另一檔案" 105 | 106 | #: lib/tribe-meta-box.php:441 107 | msgid "Add more images" 108 | msgstr "新增更多圖片" 109 | 110 | #: lib/tribe-meta-box.php:452 111 | msgid "Select a color" 112 | msgstr "選擇顏色" 113 | 114 | #: views/edit-filters.php:7 views/edit-filters.php:8 115 | msgid "Click to toggle" 116 | msgstr "點擊以切換" 117 | 118 | #: views/edit-filters.php:14 119 | msgid "Active Columns" 120 | msgstr "" 121 | 122 | #: views/edit-filters.php:15 123 | msgid "Drag and drop to order and select which columns are displayed in the entries table." 124 | msgstr "" 125 | 126 | #: views/edit-filters.php:20 127 | msgid "Apply" 128 | msgstr "套用" 129 | 130 | #: views/edit-filters.php:21 131 | msgid "Save Filter Set" 132 | msgstr "" 133 | 134 | #: views/edit-filters.php:23 135 | msgid "Export to CSV" 136 | msgstr "匯出至 CSV" 137 | 138 | #: views/edit-filters.php:27 139 | msgid "Filter Name" 140 | msgstr "篩選名稱" 141 | 142 | #: views/edit-filters.php:28 143 | msgid "Save" 144 | msgstr "儲存" 145 | 146 | #: views/edit-filters.php:29 147 | msgid "Cancel" 148 | msgstr "取消" 149 | 150 | #: views/edit-filters.php:32 151 | msgid "Reset to Default" 152 | msgstr "" 153 | 154 | #. Plugin Name of the plugin/theme 155 | msgid "Advanced Post Manager" 156 | msgstr "" 157 | 158 | #. Description of the plugin/theme 159 | msgid "Dialing custom post types to 11 with advanced filtering controls." 160 | msgstr "" 161 | 162 | #. Author of the plugin/theme 163 | msgid "Modern Tribe, Inc." 164 | msgstr "" 165 | 166 | #. Author URI of the plugin/theme 167 | msgid "http://m.tri.be/4n" 168 | msgstr "" -------------------------------------------------------------------------------- /lang/tribe-apm.pot: -------------------------------------------------------------------------------- 1 | # Copyright (C) 2016 Modern Tribe 2 | # This file is distributed under the same license as the Advanced Post Manager package. 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: Advanced Post Manager 4.2.2\n" 6 | "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/advanced-post-manager\n" 7 | "POT-Creation-Date: 2016-07-06 12:51:38+00:00\n" 8 | "MIME-Version: 1.0\n" 9 | "Content-Type: text/plain; charset=UTF-8\n" 10 | "Content-Transfer-Encoding: 8bit\n" 11 | "PO-Revision-Date: 2016-07-06 12:51\n" 12 | "Last-Translator: \n" 13 | "Language-Team: \n" 14 | 15 | #: demo/demo.php:30 16 | msgid "It looks like you might not have any demo data. Download our data and use the WordPress Importer." 17 | msgstr "" 18 | 19 | #: lib/tribe-columns.class.php:43 20 | msgid "Column Name" 21 | msgstr "" 22 | 23 | #: lib/tribe-columns.class.php:144 lib/tribe-columns.class.php:165 24 | msgid "Comments" 25 | msgstr "" 26 | 27 | #: lib/tribe-columns.class.php:158 28 | msgid "Add a Column" 29 | msgstr "" 30 | 31 | #: lib/tribe-filters.class.php:52 lib/tribe-filters.class.php:72 32 | msgid "Is" 33 | msgstr "" 34 | 35 | #: lib/tribe-filters.class.php:53 lib/tribe-filters.class.php:73 36 | msgid "Is Not" 37 | msgstr "" 38 | 39 | #: lib/tribe-filters.class.php:71 40 | msgid "Search" 41 | msgstr "" 42 | 43 | #: lib/tribe-filters.class.php:82 44 | msgid "Member Type" 45 | msgstr "" 46 | 47 | #: lib/tribe-filters.class.php:86 48 | msgid "Cafe" 49 | msgstr "" 50 | 51 | #: lib/tribe-filters.class.php:87 52 | msgid "Private Desk" 53 | msgstr "" 54 | 55 | #: lib/tribe-filters.class.php:88 56 | msgid "Office" 57 | msgstr "" 58 | 59 | #: lib/tribe-filters.class.php:95 60 | msgid "what i’m querying. probably a key in the options array in $filters" 61 | msgstr "" 62 | 63 | #: lib/tribe-filters.class.php:181 64 | msgid "Active Filters" 65 | msgstr "" 66 | 67 | #: lib/tribe-filters.class.php:537 68 | msgid "Saved Filter Set" 69 | msgstr "" 70 | 71 | #: lib/tribe-filters.class.php:539 72 | msgid "Choose a Saved Filter" 73 | msgstr "" 74 | 75 | #: lib/tribe-filters.class.php:658 76 | msgid "Add a Filter" 77 | msgstr "" 78 | 79 | #: lib/tribe-meta-box-helper.php:45 80 | msgid "Extended Information" 81 | msgstr "" 82 | 83 | #: lib/tribe-meta-box.php:124 lib/tribe-meta-box.php:434 84 | msgid "Delete this image" 85 | msgstr "" 86 | 87 | #: lib/tribe-meta-box.php:124 lib/tribe-meta-box.php:387 88 | #: lib/tribe-meta-box.php:434 89 | msgid "Delete" 90 | msgstr "" 91 | 92 | #: lib/tribe-meta-box.php:384 93 | msgid "Uploaded files" 94 | msgstr "" 95 | 96 | #: lib/tribe-meta-box.php:393 97 | msgid "Upload new files" 98 | msgstr "" 99 | 100 | #: lib/tribe-meta-box.php:396 101 | msgid "Add another file" 102 | msgstr "" 103 | 104 | #: lib/tribe-meta-box.php:441 105 | msgid "Add more images" 106 | msgstr "" 107 | 108 | #: lib/tribe-meta-box.php:452 109 | msgid "Select a color" 110 | msgstr "" 111 | 112 | #: views/edit-filters.php:7 views/edit-filters.php:8 113 | msgid "Click to toggle" 114 | msgstr "" 115 | 116 | #: views/edit-filters.php:8 117 | msgid "Filters & Columns" 118 | msgstr "" 119 | 120 | #: views/edit-filters.php:14 121 | msgid "Active Columns" 122 | msgstr "" 123 | 124 | #: views/edit-filters.php:15 125 | msgid "Drag and drop to order and select which columns are displayed in the entries table." 126 | msgstr "" 127 | 128 | #: views/edit-filters.php:20 129 | msgid "Apply" 130 | msgstr "" 131 | 132 | #: views/edit-filters.php:21 133 | msgid "Save Filter Set" 134 | msgstr "" 135 | 136 | #: views/edit-filters.php:23 137 | msgid "Export to CSV" 138 | msgstr "" 139 | 140 | #: views/edit-filters.php:27 141 | msgid "Filter Name" 142 | msgstr "" 143 | 144 | #: views/edit-filters.php:28 145 | msgid "Save" 146 | msgstr "" 147 | 148 | #: views/edit-filters.php:29 149 | msgid "Cancel" 150 | msgstr "" 151 | 152 | #: views/edit-filters.php:32 153 | msgid "Reset to Default" 154 | msgstr "" 155 | #. Plugin Name of the plugin/theme 156 | msgid "Advanced Post Manager" 157 | msgstr "" 158 | 159 | #. Description of the plugin/theme 160 | msgid "Dialing custom post types to 11 with advanced filtering controls." 161 | msgstr "" 162 | 163 | #. Author of the plugin/theme 164 | msgid "Modern Tribe, Inc." 165 | msgstr "" 166 | 167 | #. Author URI of the plugin/theme 168 | msgid "http://m.tri.be/4n" 169 | msgstr "" 170 | -------------------------------------------------------------------------------- /lib/php-min-version.php: -------------------------------------------------------------------------------- 1 | %1$s requires PHP %2$s or higher.', 'advanced-post-manager' ), 65 | esc_html( $label_names ), 66 | tribe_get_php_min_version() 67 | ) ) . 68 | '
' . 69 | esc_html__( 'To allow better control over dates, advanced security improvements and performance gain.', 'advanced-post-manager' ) . 70 | '
' . 71 | esc_html( sprintf( 72 | __( 'Contact your Hosting or your system administrator and ask to Upgrade to version %1$s of PHP.', 'advanced-post-manager' ), 73 | tribe_get_php_min_version() 74 | ) ); 75 | } 76 | 77 | /** 78 | * Fetches the name of the plugins that are not compatible with current PHP version 79 | * 80 | * @since TBD 81 | * 82 | * @return array 83 | */ 84 | function tribe_not_php_version_names() { 85 | /** 86 | * Allow us to include more plugins without increasing the number of notices 87 | * 88 | * @since TBD 89 | * 90 | * @param array $names Name of the plugins that are not compatible 91 | */ 92 | return apply_filters( 'tribe_not_php_version_names', array() ); 93 | } 94 | 95 | /** 96 | * Echoes out the error for the PHP min version as a WordPress admin Notice 97 | * 98 | * @since TBD 99 | * 100 | * @return void 101 | */ 102 | function tribe_not_php_version_notice() { 103 | echo '

' . tribe_not_php_version_message() . '

'; 104 | } 105 | 106 | /** 107 | * Loads the Text domain for non-compatible PHP versions 108 | * 109 | * @since TBD 110 | * 111 | * @param string $domain Which domain we will try to translate to 112 | * @param string $file Where to look for the lang folder 113 | * 114 | * @return void 115 | */ 116 | function tribe_not_php_version_textdomain( $domain, $file ) { 117 | load_plugin_textdomain( 118 | $domain, 119 | false, 120 | plugin_basename( $file ) . DIRECTORY_SEPARATOR . 'lang' . DIRECTORY_SEPARATOR 121 | ); 122 | } 123 | 124 | endif; -------------------------------------------------------------------------------- /lib/template-tags.php: -------------------------------------------------------------------------------- 1 | field 6 | * @param $options array An array of $key=>$value pairs, producing in the dropdown 7 | * @param $active string|array The active state of the field. Values correspond to the $key's in $options 8 | * @param $allow_multi boolean Whether or not this field should be expandable to a multi-select field 9 | * @return string HTML %title%',n=e(".showMediaButtons");n.each(function(t){i=e("#media-buttons").clone(),e(this).before(i)}),e(".p2p-drop").change(function(){var t,i=e(this),n=i.val(),r=i.find("option[value="+n+"]");""!==n&&(t=a.replace("%name%",i.attr("name")).replace("%val%",n).replace("%title%",r.text()),i.parent().find(".p2p-connected").append(t),r.remove())}),e(".tribe-multi-text-wrap").delegate("a","click",function(t){var i=e(this),a=i.parent(),n=a.parent().children(),r=n.parent(),l="hide-remove",o=n.length;i.hasClass("tribe-add")?(newRow=a.clone(),newRow.find("input").val(""),a.after(newRow),o++):i.hasClass("tribe-remove")&&(a.remove(),o--),1==o?r.addClass(l):r.removeClass(l)}),e(".tribe-date").each(function(){var t=e(this),i=t.attr("rel");t.datepicker({showButtonPanel:!0,dateFormat:i})}),e(".tribe-time").each(function(){var t=e(this),i=t.attr("rel");t.timepicker({showSecond:!0,timeFormat:i})}),e(".tribe-color-picker").each(function(){var t=e(this),i=t.attr("rel");t.farbtastic("#"+i)}),e(".tribe-color-select").click(function(){return e(this).siblings(".tribe-color-picker").toggle(),!1}),e(".tribe-add-file").click(function(){var t=e(this).parent().find(".file-input:first");return t.clone().insertAfter(t).show(),!1}),e(".tribe-upload").delegate(".tribe-delete-file","click",function(){var t=e(this),i=t.parent(),a=t.attr("rel");return e.post(ajaxurl,{action:"tribe_delete_file",data:a},function(e){"0"==e?(alert("File has been successfully deleted."),i.remove()):alert("You do NOT have permission to delete this file.")}),!1}),e(".tribe-images").each(function(){var t,i,a=e(this);a.sortable({placeholder:"ui-state-highlight",update:function(){t=a.sortable("serialize"),i=t+"|"+a.siblings(".tribe-images-data").val(),e.post(ajaxurl,{action:"tribe_reorder_images",data:i},function(e){"0"==e?alert("Order saved"):alert("You don't have permission to reorder images.")})}})}),e(".tribe-upload-button").click(function(){var t=e(this).attr("rel").split("|"),i=t[0],a=t[1],n=window.send_to_editor;return window.send_to_editor=function(t){e("#tribe-images-"+a).append(e(t)),tb_remove(),window.send_to_editor=n},tb_show("","media-upload.php?post_id="+i+"&field_id="+a+"&type=image&TB_iframe=true"),!1}),e("#media-items .new").each(function(){var t=e(this).parent().attr("id").split("-")[2];e(this).prepend(' ')}),e(".ml-submit").live("mouseenter",function(){e("#media-items .new").each(function(){var t=e(this).parent().children('input[value="image"]').attr("id");t&&(t=t.split("-")[2],e(this).not(':has("input")').prepend(' '))})});var r=t("field_id");e(".ml-submit:first").append(' ')}); -------------------------------------------------------------------------------- /resources/tribe-apm.js: -------------------------------------------------------------------------------- 1 | jQuery(document).ready(function($) { 2 | 3 | // filters & columns box. Move into place. Show/hide. 4 | var theFilters = $("#the-filters"), 5 | tribeFilters = $("#tribe-filters"), 6 | tribeFiltersHeader = tribeFilters.find("h3"); 7 | 8 | tribeFilters 9 | .insertAfter(".wrap > h2:first") 10 | .removeClass("wrap"); 11 | tribeFiltersHeader.click(function() { 12 | if ( theFilters.is(':visible') ) 13 | $.cookie("hideFiltersAndColumns", "true"); // cookies only store strings 14 | else 15 | $.cookie("hideFiltersAndColumns", "false"); 16 | 17 | theFilters.toggle(); 18 | $("#filters-wrap").toggleClass("closed"); 19 | }); 20 | // hide it if it was hidden 21 | if ( $.cookie("hideFiltersAndColumns") === "true" ) 22 | tribeFiltersHeader.click(); 23 | 24 | // Also the arrow 25 | tribeFilters.find(".handlediv").click(function() { tribeFiltersHeader.click() }); 26 | 27 | // so we preserve our state when clicking on all/published/drafts 28 | /* 29 | $(".subsubsub a").click(function(event) { 30 | event.preventDefault(); 31 | var url = $(this).attr("href"), 32 | form = $("#the-filters"); 33 | form.attr("action", url).submit(); 34 | }); 35 | */ 36 | 37 | // un-fixed width columns 38 | $("#posts-filter .fixed").removeClass("fixed"); 39 | 40 | // Save/Cancel Filters 41 | $("#the-filters .save.button-secondary").click(function(ev) { 42 | $(this).parent().hide().find("input").prop("disabled", true); 43 | $("#the-filters .save-options").show(); 44 | $("#filter_name").focus(); 45 | ev.preventDefault(); 46 | }); 47 | $("#cancel-save").click(function(ev) { 48 | $(this).parent().hide(); 49 | $("#the-filters .actions").show().find("input").prop("disabled", false); 50 | ev.preventDefault(); 51 | }); 52 | 53 | // Save that Filter 54 | $("#filter_name").keypress(function(ev){ 55 | if ( ev.keyCode == 13 ) { 56 | ev.preventDefault() 57 | $(this).next().click() 58 | } 59 | }); 60 | 61 | // Maintain sorting 62 | $(".tribe-filters-active .wp-list-table .sortable a").click(function(ev) { 63 | theFilters.attr("action", this.href).submit() 64 | ev.preventDefault() 65 | }) 66 | 67 | }); 68 | 69 | /** 70 | * Cookie plugin 71 | * 72 | * Copyright (c) 2006 Klaus Hartl (stilbuero.de) 73 | * Dual licensed under the MIT and GPL licenses: 74 | * http://www.opensource.org/licenses/mit-license.php 75 | * http://www.gnu.org/licenses/gpl.html 76 | * 77 | * @url http://plugins.jquery.com/files/jquery.cookie.js.txt 78 | */ 79 | jQuery.cookie=function(B,I,L){if (typeof I!="undefined"){L=L||{};if (I===null){I="";L.expires=-1;}var E="";if (L.expires&&(typeof L.expires=="number"||L.expires.toUTCString)){var F;if (typeof L.expires=="number"){F=new Date();F.setTime(F.getTime()+(L.expires*24*60*60*1000));} 80 | else {F=L.expires;}E="; expires="+F.toUTCString();}var K=L.path?"; path="+(L.path):"";var G=L.domain?"; domain="+(L.domain):"";var A=L.secure?"; secure":"";document.cookie=[B,"=",encodeURIComponent(I),E,K,G,A].join("");} 81 | else {var D=null;if (document.cookie&&document.cookie!=""){var J=document.cookie.split(";");for(var H=0;H h2:first").removeClass("wrap"),n.click(function(){i.is(":visible")?e.cookie("hideFiltersAndColumns","true"):e.cookie("hideFiltersAndColumns","false"),i.toggle(),e("#filters-wrap").toggleClass("closed")}),"true"===e.cookie("hideFiltersAndColumns")&&n.click(),t.find(".handlediv").click(function(){n.click()}),e("#posts-filter .fixed").removeClass("fixed"),e("#the-filters .save.button-secondary").click(function(i){e(this).parent().hide().find("input").prop("disabled",!0),e("#the-filters .save-options").show(),e("#filter_name").focus(),i.preventDefault()}),e("#cancel-save").click(function(i){e(this).parent().hide(),e("#the-filters .actions").show().find("input").prop("disabled",!1),i.preventDefault()}),e("#filter_name").keypress(function(i){13==i.keyCode&&(i.preventDefault(),e(this).next().click())}),e(".tribe-filters-active .wp-list-table .sortable a").click(function(e){i.attr("action",this.href).submit(),e.preventDefault()})}),jQuery.cookie=function(e,i,t){if("undefined"==typeof i){var n=null;if(document.cookie&&""!=document.cookie)for(var r=document.cookie.split(";"),o=0;o').val(value).text(name); 35 | 36 | option.appendTo(dropdown); 37 | 38 | active.remove(); 39 | normalizeActiveInputs(); 40 | }); 41 | 42 | function normalizeActiveInputs() { 43 | activeList.children().each(function(idx) { 44 | var i = idx + 1; 45 | $(this).find("input").attr("name", Tribe_Columns.prefix + i ); 46 | }); 47 | } 48 | }); 49 | -------------------------------------------------------------------------------- /resources/tribe-columns.min.js: -------------------------------------------------------------------------------- 1 | jQuery(document).ready(function(e){function t(){o.children().each(function(t){var n=t+1;e(this).find("input").attr("name",Tribe_Columns.prefix+n)})}var n=e("#tribe-cols-drop"),o=e("#tribe-cols-active");o.sortable({placeholder:"ui-sortable-placeholder",stop:t}),n.change(function(){var n=e(this).find(":selected"),i=Tribe_Columns.item.replace("%name%",n.text()),r=Tribe_Columns.input.replace("%value%",n.val());return 0!=n.val()&&(e(i).prepend(r).appendTo(o),n.remove(),void t())}),o.delegate(".close","click",function(){var o=e(this).parent();e(this).remove();var i=o.find("input").val(),r=o.text();"comments"==i&&(r="Comments"),option=e("").val(i).text(r),option.appendTo(n),o.remove(),t()})}); -------------------------------------------------------------------------------- /resources/tribe-filters.js: -------------------------------------------------------------------------------- 1 | jQuery(document).ready(function($) { 2 | 3 | var form = $("#the-filters"), 4 | saved= $('#tribe-saved-filters' ), 5 | inactive = $("#tribe-filters-inactive"), 6 | active = $("#tribe-filters-active"); 7 | 8 | inactive.change(function() { 9 | var picked = $(this).find(":selected"), 10 | val = picked.val(), 11 | html = Tribe_Filters.template[val]; 12 | if ( val == "0" ) // ignore the pseudo-header 13 | return false; 14 | $(html).css({opacity:0}).appendTo(active).animate({opacity:1}); 15 | $('#tribe-filters-active').find('select.multi-active:visible').select2(); 16 | picked.remove(); 17 | }); 18 | 19 | active.delegate(".close", "click", function(){ 20 | var clicked = $(this), 21 | row = clicked.parent().parent("tr"), 22 | val = row.find(":input:last").attr("name"); 23 | val = cleanUpKey(val); 24 | inactive.append(Tribe_Filters.option[val]); 25 | row.fadeRemove() 26 | }); 27 | 28 | $('#tribe-filters-active select.multi-active') 29 | .each( function() { 30 | $(this).select2(); 31 | }); 32 | 33 | if(saved.length && saved.find('option' ).length > 2){ 34 | $('h2.select-saved-filter span' ).show(); 35 | } 36 | 37 | 38 | function cleanUpKey(val) { 39 | return val 40 | .replace(Tribe_Filters.valPrefix, "") 41 | .replace(Tribe_Filters.prefix, "") 42 | .replace(/\[\]$/, ""); 43 | } 44 | 45 | // toggle single- or multi-selct 46 | active.delegate('.multi-toggle', 'click', function(event) { 47 | var me = $(this), 48 | select = me.prev(), 49 | name = select.attr("name"); 50 | 51 | if ( me.hasClass("on") ) { 52 | select.attr("multiple", "multiple").attr("name", name+"[]"); 53 | me.hide(); 54 | select.select2(); 55 | } 56 | else { 57 | select.removeAttr("multiple").attr("name", name.replace(/\[\]$/, "")); 58 | me.text("+"); 59 | } 60 | select.toggleClass("multi-active"); 61 | me.toggleClass("on"); 62 | 63 | }); 64 | 65 | // view a saved filter 66 | $("#tribe-saved-filters").change(function(){ 67 | var me = $(this), 68 | id = me.val(), 69 | url = me.attr("data:submit_url") + id; 70 | 71 | if ( id > 0 ) 72 | window.location = url; 73 | }); 74 | 75 | // clicking on page numbers - need to save the goodness 76 | $("#posts-filter .tablenav-pages").delegate('a', 'click', function(ev) { 77 | ev.preventDefault(); 78 | var base_url = $(this).attr("href"); 79 | 80 | form.attr("action", base_url).submit(); 81 | }); 82 | 83 | // Update Filters 84 | form.find("input[name=tribe-update-saved-filter]").click(function() { 85 | // change to current URL to keep the saved_filter bit. 86 | form.attr("action", window.location.href); 87 | }); 88 | 89 | // add the # of posts found, if applicable 90 | if ( 0 == $(".tablenav-pages").size() ) { 91 | $("
"+ Tribe_Filters.displaying +"
").prependTo(".tablenav"); 92 | } 93 | 94 | // Datepicker 95 | active.delegate('.tribe-datepicker', 'focusin', function(event) { 96 | $(this).datepicker({ 97 | dateFormat: 'yy-mm-dd', 98 | changeYear: true, 99 | changeMonth: true, 100 | numberOfMonths: 2 101 | }); 102 | }); 103 | 104 | }); 105 | 106 | 107 | (function($){ 108 | $.fn.fadeRemove = function(speed) { 109 | return $(this).animate({opacity: 0}, speed, function() { 110 | $(this).remove(); 111 | }); 112 | }; 113 | })(jQuery); -------------------------------------------------------------------------------- /resources/tribe-filters.min.js: -------------------------------------------------------------------------------- 1 | jQuery(document).ready(function(e){function t(e){return e.replace(Tribe_Filters.valPrefix,"").replace(Tribe_Filters.prefix,"").replace(/\[\]$/,"")}var i=e("#the-filters"),a=e("#tribe-saved-filters"),n=e("#tribe-filters-inactive"),r=e("#tribe-filters-active");n.change(function(){var t=e(this).find(":selected"),i=t.val(),a=Tribe_Filters.template[i];return"0"!=i&&(e(a).css({opacity:0}).appendTo(r).animate({opacity:1}),e("#tribe-filters-active").find("select.multi-active:visible").select2(),void t.remove())}),r.delegate(".close","click",function(){var i=e(this),a=i.parent().parent("tr"),r=a.find(":input:last").attr("name");r=t(r),n.append(Tribe_Filters.option[r]),a.fadeRemove()}),e("#tribe-filters-active select.multi-active").each(function(){e(this).select2()}),a.length&&a.find("option").length>2&&e("h2.select-saved-filter span").show(),r.delegate(".multi-toggle","click",function(t){var i=e(this),a=i.prev(),n=a.attr("name");i.hasClass("on")?(a.attr("multiple","multiple").attr("name",n+"[]"),i.hide(),a.select2()):(a.removeAttr("multiple").attr("name",n.replace(/\[\]$/,"")),i.text("+")),a.toggleClass("multi-active"),i.toggleClass("on")}),e("#tribe-saved-filters").change(function(){var t=e(this),i=t.val(),a=t.attr("data:submit_url")+i;i>0&&(window.location=a)}),e("#posts-filter .tablenav-pages").delegate("a","click",function(t){t.preventDefault();var a=e(this).attr("href");i.attr("action",a).submit()}),i.find("input[name=tribe-update-saved-filter]").click(function(){i.attr("action",window.location.href)}),0==e(".tablenav-pages").size()&&e("
"+Tribe_Filters.displaying+"
").prependTo(".tablenav"),r.delegate(".tribe-datepicker","focusin",function(t){e(this).datepicker({dateFormat:"yy-mm-dd",changeYear:!0,changeMonth:!0,numberOfMonths:2})})}),function(e){e.fn.fadeRemove=function(t){return e(this).animate({opacity:0},t,function(){e(this).remove()})}}(jQuery); -------------------------------------------------------------------------------- /scratch.php: -------------------------------------------------------------------------------- 1 | array( // Key is required. 9 | // Required 10 | 'name' => 'Filter / Column title', 11 | // If it's a meta query, set this to the meta key to be queried 12 | 'meta' => 'Piece of post meta to query', 13 | // The taxonomy. APM by default automatically adds taxonomies. 14 | 'taxonomy' => 'registered taxonomy', 15 | // Your query type doesn't fit the standard kind 16 | 'custom_type' => 'a key for registering your own query handlers', 17 | // A way to limit the queried field to a dropdown rather than a search box 18 | 'options' => array( 19 | 'meta_value' => 'Nicer Title', 20 | 'another_meta_value' => 'another_meta_value', 21 | ), 22 | // optional, for use with "meta" filters. Useful for when you want ordering to assume that meta_values are a certain type, such as numeric or date. 23 | 'cast' => 'SIGNED', 24 | // what type of field to use in the meta box 25 | 'field' => 'text', 26 | // read the value. 27 | 'desc' => 'Optional supporting text for display inside a metabox', 28 | // explicitly put in a particular metabox. Pay attention to the $metaboxes arg on tribe_setup_apm() 29 | 'metabox' => 'somemetaboxid', 30 | // Set an explicit order inside a metabox 31 | 'meta_order' => 3, 32 | // Some 'types' take additional arguments 33 | ), 34 | ); 35 | 36 | -------------------------------------------------------------------------------- /screenshot-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-events-calendar/advanced-post-manager/921af81dfcda9421246f10e1f721ff5baaa903c0/screenshot-1.png -------------------------------------------------------------------------------- /screenshot-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-events-calendar/advanced-post-manager/921af81dfcda9421246f10e1f721ff5baaa903c0/screenshot-2.png -------------------------------------------------------------------------------- /tests/_autoload.php: -------------------------------------------------------------------------------- 1 | $root_dir . '/lib/tribe-columns.class.php', 8 | 'Tribe_Filters' => $root_dir . '/lib/tribe-filters.class.php', 9 | 'Tribe_Meta_Box' => $root_dir . '/lib/tribe-meta-box.class.php', 10 | 'Tribe_Meta_Box_Helper' => $root_dir . '/lib/tribe-meta-box-helper.class.php', 11 | ]; 12 | 13 | spl_autoload_register( static function ( string $class ) use ( $tec_apm_class_map ): void { 14 | 15 | if ( ! isset( $tec_apm_class_map[ $class ] ) ) { 16 | return; 17 | } 18 | 19 | require_once $tec_apm_class_map[ $class ]; 20 | } ); 21 | } )(); 22 | -------------------------------------------------------------------------------- /tests/_data/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-events-calendar/advanced-post-manager/921af81dfcda9421246f10e1f721ff5baaa903c0/tests/_data/.gitkeep -------------------------------------------------------------------------------- /tests/_output/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /tests/_support/Helper/Integration.php: -------------------------------------------------------------------------------- 1 | assertInstanceOf( Tribe_Filters::class, $filters ); 9 | } 10 | 11 | public function bad_last_user_filters_data(): array { 12 | return [ 13 | 'null' => [ null ], 14 | 'empty string' => [ '' ], 15 | 'bad json' => [ 'bad json' ], 16 | 'zero' => [ 0 ], 17 | 'zero string' => [ 0 ], 18 | 'integer' => [ 23 ], 19 | 'integer string' => [ '89' ], 20 | 'float' => [ 3.14 ], 21 | 'float string' => [ '3.14' ], 22 | 'false' => [ false ], 23 | 'true' => [ true ], 24 | ]; 25 | } 26 | 27 | /** 28 | * @dataProvider bad_last_user_filters_data 29 | */ 30 | public function test_init_active_with_bad_last_user_filters_data( $last_used_filters ): void { 31 | unset( $_GET['saved_filter'] ); 32 | $_POST = []; 33 | $user = set_current_user( static::factory()->user->create( [ 'role' => 'administrator' ] ) ); 34 | update_user_meta( $user->ID, 'last_used_filters_post', $last_used_filters ); 35 | 36 | // PHPUnit will be implicitly strict about errors and warnings. 37 | $filters = new Tribe_Filters( 'post', [] ); 38 | $filters->init_active(); 39 | 40 | $this->assertEquals( [], $filters->get_active() ); 41 | } 42 | } 43 | -------------------------------------------------------------------------------- /views/edit-filters.php: -------------------------------------------------------------------------------- 1 | 8 |
9 |
10 |
11 |

12 |
13 |
14 | filters->output_form(); ?> 15 |
16 |
17 |

18 |

19 | columns->output_form(); ?> 20 |
21 |
22 |
23 | 24 | 25 | export ) : ?> 26 | 27 | 28 |
29 |
30 | 31 | 32 | 33 |
34 |
35 | 36 |
37 |
38 |
39 |
40 |
41 | --------------------------------------------------------------------------------