├── .gitignore ├── .gitmodules ├── Gruntfile.js ├── class-post-connector.php ├── languages ├── post-connector-de_DE.mo ├── post-connector-de_DE.po ├── post-connector-es_ES.mo ├── post-connector-es_ES.po ├── post-connector-fa_IR.mo ├── post-connector-fa_IR.po ├── post-connector-he_IL.mo ├── post-connector-he_IL.po ├── post-connector-hi_IN.mo ├── post-connector-hi_IN.po ├── post-connector-hu_HU.mo ├── post-connector-hu_HU.po ├── post-connector-it_IT.mo ├── post-connector-it_IT.po ├── post-connector-nl_NL.mo ├── post-connector-nl_NL.po ├── post-connector-ro_RO.mo ├── post-connector-ro_RO.po ├── post-connector-ru_RU.mo ├── post-connector-ru_RU.po └── post-connector.pot ├── package.json ├── post-connector.php └── readme.txt /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | .DS_Store 3 | node_modules/* 4 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | [submodule "core"] 2 | path = core 3 | url = git@github.com:barrykooij/post-connector-core.git 4 | -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- 1 | module.exports = function(grunt) { 2 | 3 | // Project configuration. 4 | grunt.initConfig({ 5 | pkg: grunt.file.readJSON('package.json'), 6 | makepot: { 7 | target: { 8 | options: { 9 | domainPath: '/languages', 10 | potFilename: 'post-connector.pot', 11 | processPot: function(pot, options) { 12 | pot.headers['report-msgid-bugs-to'] = 'https://yoast.com/wordpress/plugins/post-connector\n'; 13 | pot.headers['plural-forms'] = 'nplurals=2; plural=n != 1;'; 14 | pot.headers['last-translator'] = 'Remkus de Vries \n'; 15 | pot.headers['language-team'] = 'Yoast Translate \n'; 16 | pot.headers['x-generator'] = 'CSL v1.x\n'; 17 | pot.headers['x-poedit-basepath'] = '.\n'; 18 | pot.headers['x-poedit-language'] = 'English\n'; 19 | pot.headers['x-poedit-country'] = 'UNITED STATES\n'; 20 | pot.headers['x-poedit-sourcecharset'] = 'utf-8\n'; 21 | pot.headers['x-poedit-keywordslist'] = '__;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;\n'; 22 | pot.headers['x-poedit-bookmarks'] = '\n'; 23 | pot.headers['x-poedit-searchpath-0'] = '.\n'; 24 | pot.headers['x-textdomain-support'] = 'yes\n'; 25 | return pot; 26 | }, 27 | type: 'wp-plugin' 28 | } 29 | } 30 | } 31 | }); 32 | 33 | grunt.loadNpmTasks('grunt-wp-i18n'); 34 | 35 | }; -------------------------------------------------------------------------------- /class-post-connector.php: -------------------------------------------------------------------------------- 1 | load_filters(); 28 | 29 | // Setup core only hooks 30 | $manager_hooks = new SP_Manager_Hook( self::get_core_dir() . 'classes/co-hooks/' ); 31 | $manager_hooks->load_hooks(); 32 | } 33 | 34 | /** 35 | * Get filename of plugin 36 | * 37 | * @access public 38 | * @static 39 | * @return String 40 | */ 41 | public static function get_plugin_file() { 42 | return __FILE__; 43 | } 44 | 45 | } -------------------------------------------------------------------------------- /languages/post-connector-de_DE.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barrykooij/post-connector-old/20cabb84d60342946a283e685233de8db6058163/languages/post-connector-de_DE.mo -------------------------------------------------------------------------------- /languages/post-connector-de_DE.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) 2016 Never5 2 | # This file is distributed under the same license as the Post Connector Premium package. 3 | # Translators: 4 | msgid "" 5 | msgstr "" 6 | "Project-Id-Version: Post Connector\n" 7 | "Report-Msgid-Bugs-To: https://github.com/barrykooij/post-connector/issues\n" 8 | "POT-Creation-Date: 2016-01-21 12:53:41+00:00\n" 9 | "PO-Revision-Date: 2016-01-21 12:54+0000\n" 10 | "Last-Translator: Barry Kooij \n" 11 | "Language-Team: German (Germany) (http://www.transifex.com/barrykooijplugins/post-connector/language/de_DE/)\n" 12 | "MIME-Version: 1.0\n" 13 | "Content-Type: text/plain; charset=UTF-8\n" 14 | "Content-Transfer-Encoding: 8bit\n" 15 | "Language: de_DE\n" 16 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 17 | "X-Generator: grunt-wp-i18n 0.4.9\n" 18 | 19 | #: core/assets/js/tinymce/editor_plugin_lang.php:5 20 | msgid "Post Connector" 21 | msgstr "" 22 | 23 | #: core/assets/js/tinymce/editor_plugin_lang.php:6 24 | msgid "Show Children" 25 | msgstr "" 26 | 27 | #: core/classes/class-admin-menu.php:36 core/classes/class-admin-menu.php:340 28 | msgid "Add New" 29 | msgstr "Hinzufügen" 30 | 31 | #: core/classes/class-admin-menu.php:139 32 | msgid "Plugin version" 33 | msgstr "" 34 | 35 | #: core/classes/class-admin-menu.php:141 36 | msgid "PHP version:" 37 | msgstr "" 38 | 39 | #: core/classes/class-admin-menu.php:149 40 | msgid "More information" 41 | msgstr "" 42 | 43 | #: core/classes/class-admin-menu.php:151 44 | msgid "Configuration Guide" 45 | msgstr "" 46 | 47 | #: core/classes/class-admin-menu.php:153 48 | msgid "Change log" 49 | msgstr "" 50 | 51 | #: core/classes/class-admin-menu.php:155 52 | msgid "API" 53 | msgstr "" 54 | 55 | #: core/classes/class-admin-menu.php:159 56 | msgid "About the developer" 57 | msgstr "" 58 | 59 | #: core/classes/class-admin-menu.php:161 60 | msgid "" 61 | "Barry has been a WordPress deleveloper for years and is the author of " 62 | "various WordPress plugins." 63 | msgstr "" 64 | 65 | #: core/classes/class-admin-menu.php:163 66 | msgid "" 67 | "In his free time, Barry likes giving back by contributing various opensource" 68 | " projects. He also likes to visit and speak at WordPress meetups and " 69 | "WordCamps and is the organiser of the Dutch WordPress meetup in Tilburg." 70 | msgstr "" 71 | 72 | #: core/classes/class-admin-menu.php:165 73 | msgid "You can follow Barry on Twitter here." 74 | msgstr "" 75 | 76 | #: core/classes/class-admin-menu.php:181 77 | msgid "Connections" 78 | msgstr "" 79 | 80 | #: core/classes/class-admin-menu.php:188 81 | msgid "" 82 | "Post Connector connections are the connections you've created between post " 83 | "types. Post Connector will add a meta box to the post edit screens of these " 84 | "post types so you can link post to each other in minutes." 85 | msgstr "" 86 | 87 | #: core/classes/class-admin-menu.php:190 88 | msgid "Active Connections" 89 | msgstr "" 90 | 91 | #: core/classes/class-admin-menu.php:197 core/classes/class-admin-menu.php:203 92 | #: core/classes/class-admin-menu.php:248 93 | msgid "Create a new connection" 94 | msgstr "" 95 | 96 | #: core/classes/class-admin-menu.php:199 97 | msgid "" 98 | "Before you can link posts to each other you need to create a connection " 99 | "between their post types first. Click the 'Create a new connection' button " 100 | "to get started." 101 | msgstr "" 102 | 103 | #: core/classes/class-admin-menu.php:231 104 | msgid "Posts" 105 | msgstr "Beiträge" 106 | 107 | #: core/classes/class-admin-menu.php:232 108 | msgid "Pages" 109 | msgstr "Seiten" 110 | 111 | #: core/classes/class-admin-menu.php:246 112 | msgid "Edit connection" 113 | msgstr "" 114 | 115 | #: core/classes/class-admin-menu.php:267 116 | msgid "" 117 | "To create or edit a post connection, fill in the below form and press the " 118 | "'save connection' button." 119 | msgstr "" 120 | 121 | #: core/classes/class-admin-menu.php:269 122 | msgid "Main settings" 123 | msgstr "" 124 | 125 | #: core/classes/class-admin-menu.php:276 126 | msgid "Connection Title" 127 | msgstr "" 128 | 129 | #: core/classes/class-admin-menu.php:279 130 | #: core/classes/class-create-link-list-table.php:75 131 | #: core/classes/class-manage-links-list-table.php:20 132 | #: core/classes/widgets/class-widget-show-children.php:102 133 | #: premium/classes/widgets/class-widget-show-parents.php:126 134 | msgid "Title" 135 | msgstr "Titel" 136 | 137 | #: core/classes/class-admin-menu.php:281 138 | msgid "" 139 | "The title of the connection, can be automatically shown above linked posts." 140 | msgstr "" 141 | 142 | #: core/classes/class-admin-menu.php:287 143 | msgid "Connection Slug" 144 | msgstr "" 145 | 146 | #: core/classes/class-admin-menu.php:289 147 | #: core/classes/class-manage-links-list-table.php:21 148 | msgid "Slug" 149 | msgstr "Permalinkteil" 150 | 151 | #: core/classes/class-admin-menu.php:291 152 | msgid "" 153 | "Unique identifier of the connection, will automatically generate if left " 154 | "empty." 155 | msgstr "" 156 | 157 | #: core/classes/class-admin-menu.php:297 158 | msgid "Parent post type" 159 | msgstr "" 160 | 161 | #: core/classes/class-admin-menu.php:301 core/classes/class-admin-menu.php:319 162 | msgid "Select a post type" 163 | msgstr "Einen Inhaltstyp auswählen" 164 | 165 | #: core/classes/class-admin-menu.php:315 166 | msgid "Child post type" 167 | msgstr "" 168 | 169 | #: core/classes/class-admin-menu.php:334 170 | msgid "Create new link settings" 171 | msgstr "" 172 | 173 | #: core/classes/class-admin-menu.php:342 174 | msgid "Allow users to create and link new posts." 175 | msgstr "" 176 | 177 | #: core/classes/class-admin-menu.php:348 178 | msgid "Add Existing" 179 | msgstr "Bestehenden hinzufügen" 180 | 181 | #: core/classes/class-admin-menu.php:350 182 | msgid "Allow users to link existing posts." 183 | msgstr "" 184 | 185 | #: core/classes/class-admin-menu.php:358 186 | msgid "Automatically display linked children" 187 | msgstr "" 188 | 189 | #: core/classes/class-admin-menu.php:364 190 | msgid "Display linked children?" 191 | msgstr "" 192 | 193 | #: core/classes/class-admin-menu.php:366 194 | msgid "Display the linked child posts under each parent post." 195 | msgstr "" 196 | 197 | #: core/classes/class-admin-menu.php:393 198 | msgid "Save Connection" 199 | msgstr "" 200 | 201 | #: core/classes/class-create-link-list-table.php:46 202 | msgid "All" 203 | msgstr "" 204 | 205 | #: core/classes/class-create-link-list-table.php:177 206 | #: core/classes/class-create-link-list-table.php:212 207 | msgid "Link" 208 | msgstr "Link" 209 | 210 | #: core/classes/class-javascript-strings.php:11 211 | msgid "Are you sure you want to delete this post?" 212 | msgstr "Sind sie sicher, das sie diesen Beitrag löschen wollen?" 213 | 214 | #: core/classes/class-javascript-strings.php:12 215 | msgid "Are you sure you want to delete this link?" 216 | msgstr "Sind sie sicher das sie diesen Link löschen wollen?" 217 | 218 | #: core/classes/class-javascript-strings.php:13 219 | #: core/classes/widgets/class-widget-show-children.php:141 220 | #: premium/classes/widgets/class-widget-show-parents.php:165 221 | msgid "Current page" 222 | msgstr "" 223 | 224 | #: core/classes/class-manage-links-list-table.php:22 225 | msgid "Parent post" 226 | msgstr "Übergeordneter Post" 227 | 228 | #: core/classes/class-manage-links-list-table.php:23 229 | msgid "Child post" 230 | msgstr "Kind Post" 231 | 232 | #: core/classes/class-manage-links-list-table.php:93 233 | #: core/classes/meta-boxes/class-meta-box-manage.php:146 234 | #: premium/classes/meta-boxes/class-meta-box-manage-parent.php:126 235 | msgid "Edit" 236 | msgstr "Bearbeiten" 237 | 238 | #: core/classes/class-manage-links-list-table.php:98 239 | #: core/classes/meta-boxes/class-meta-box-manage.php:149 240 | #: premium/classes/meta-boxes/class-meta-box-manage-parent.php:129 241 | msgid "Delete" 242 | msgstr "Löschen" 243 | 244 | #: core/classes/class-post-link-manager.php:165 245 | msgid "Slug '%s' does not exists" 246 | msgstr "Permalinkteil '%s' existiert nicht" 247 | 248 | #: core/classes/co-filters/class-co-filter-plugin-links.php:12 249 | #: premium/classes/filters/class-filter-plugin-links.php:13 250 | msgid "Manage" 251 | msgstr "Verwalten" 252 | 253 | #: core/classes/co-filters/class-co-filter-plugin-links.php:13 254 | msgid "GO PRO" 255 | msgstr "" 256 | 257 | #: core/classes/co-hooks/class-co-hook-menu.php:8 258 | msgid "Upgrade to Pro" 259 | msgstr "" 260 | 261 | #. Plugin Name of the plugin/theme 262 | msgid "Post Connector Premium" 263 | msgstr "" 264 | 265 | #: core/classes/co-hooks/class-co-hook-sidebar.php:12 266 | msgid "" 267 | "This plugin has an even better premium version, I am sure you will love it." 268 | msgstr "" 269 | 270 | #: core/classes/co-hooks/class-co-hook-sidebar.php:13 271 | msgid "" 272 | "Pro features include sortable post connections, backwards linking, a " 273 | "developer friendly API and priority support." 274 | msgstr "" 275 | 276 | #: core/classes/co-hooks/class-co-hook-sidebar.php:14 277 | msgid "%sMore information about Post Connector Premium »%s" 278 | msgstr "" 279 | 280 | #: core/classes/co-hooks/class-co-hook-sidebar.php:18 281 | #: premium/classes/hooks/class-hook-sidebar.php:9 282 | msgid "Looking for support?" 283 | msgstr "" 284 | 285 | #: core/classes/co-hooks/class-co-hook-sidebar.php:20 286 | msgid "For support please visit the WordPress.org forums." 287 | msgstr "" 288 | 289 | #: core/classes/co-hooks/class-co-hook-sidebar.php:22 290 | msgid "" 291 | "Did you know that Post Connector Premium clients get priority email support?" 292 | " %sClick here to upgrade.%s" 293 | msgstr "" 294 | 295 | #: core/classes/co-hooks/class-co-hook-sidebar.php:26 296 | msgid "Show a token of your appreciation" 297 | msgstr "" 298 | 299 | #: core/classes/co-hooks/class-co-hook-sidebar.php:28 300 | msgid "" 301 | "Leave a ★★★★★ plugin review on " 302 | "WordPress.org." 303 | msgstr "" 304 | 305 | #: core/classes/co-hooks/class-co-hook-sidebar.php:29 306 | msgid "Tweet about Post Connector." 307 | msgstr "" 308 | 309 | #: core/classes/co-hooks/class-co-hook-sidebar.php:30 310 | msgid "" 311 | "Review the plugin on your blog and link to the " 312 | "plugin page." 313 | msgstr "" 314 | 315 | #: core/classes/co-hooks/class-co-hook-sidebar.php:31 316 | msgid "" 317 | "Vote 'works' on the WordPress.org plugin " 318 | "page." 319 | msgstr "" 320 | 321 | #: core/classes/hooks/class-hook-footer-tickbox-shortcode.php:19 322 | msgid "Insert Post Connector show_children shortcode" 323 | msgstr "" 324 | 325 | #: core/classes/hooks/class-hook-footer-tickbox-shortcode.php:20 326 | msgid "Use the form below to generate a show_children shortcode." 327 | msgstr "" 328 | 329 | #: core/classes/hooks/class-hook-footer-tickbox-shortcode.php:32 330 | msgid "Connection" 331 | msgstr "" 332 | 333 | #: core/classes/hooks/class-hook-footer-tickbox-shortcode.php:39 334 | msgid "Select Connection" 335 | msgstr "" 336 | 337 | #: core/classes/hooks/class-hook-footer-tickbox-shortcode.php:49 338 | #: core/classes/widgets/class-widget-show-children.php:129 339 | msgid "Parent" 340 | msgstr "Übergeordnet" 341 | 342 | #: core/classes/hooks/class-hook-footer-tickbox-shortcode.php:56 343 | #: core/classes/widgets/class-widget-show-children.php:156 344 | #: premium/classes/widgets/class-widget-show-parents.php:180 345 | msgid "Make children clickable" 346 | msgstr "" 347 | 348 | #: core/classes/hooks/class-hook-footer-tickbox-shortcode.php:64 349 | #: core/classes/widgets/class-widget-show-children.php:164 350 | #: premium/classes/widgets/class-widget-show-parents.php:188 351 | msgid "Display excerpt" 352 | msgstr "Auszug zeigen" 353 | 354 | #: core/classes/hooks/class-hook-footer-tickbox-shortcode.php:78 355 | msgid "Insert Shortcode" 356 | msgstr "Shortcode einfügen" 357 | 358 | #: core/classes/hooks/class-hook-footer-tickbox-shortcode.php:79 359 | msgid "Cancel" 360 | msgstr "Abbrechen" 361 | 362 | #: core/classes/hooks/class-hook-link-post-screen.php:33 363 | #: core/classes/hooks/class-hook-link-post-screen.php:40 364 | #: core/classes/meta-boxes/class-meta-box-meta.php:51 365 | msgid "You're not allowed to do this." 366 | msgstr "Sie sind nicht berechtigt, dies zu tun." 367 | 368 | #: core/classes/hooks/class-hook-link-post-screen.php:203 369 | msgid "Cancel linking" 370 | msgstr "Verlinkung abbrechen" 371 | 372 | #: core/classes/hooks/class-hook-link-post-screen.php:219 373 | msgid "Search" 374 | msgstr "Suchen" 375 | 376 | #: core/classes/meta-boxes/class-meta-box-manage.php:86 377 | #: premium/classes/meta-boxes/class-meta-box-manage-parent.php:85 378 | msgid "Add new %s" 379 | msgstr "%s hinzufügen" 380 | 381 | #: core/classes/meta-boxes/class-meta-box-manage.php:112 382 | #: premium/classes/meta-boxes/class-meta-box-manage-parent.php:103 383 | msgid "Add existing %s" 384 | msgstr "Bestehenden %s hinzufügen" 385 | 386 | #: core/classes/meta-boxes/class-meta-box-manage.php:145 387 | #: premium/classes/meta-boxes/class-meta-box-manage-parent.php:125 388 | msgid "Edit this item" 389 | msgstr "Diesen Eintrag bearbeiten" 390 | 391 | #: core/classes/meta-boxes/class-meta-box-manage.php:148 392 | #: premium/classes/meta-boxes/class-meta-box-manage-parent.php:128 393 | msgid "Delete this item" 394 | msgstr "Diesen Eintrag löschen" 395 | 396 | #: core/classes/meta-boxes/class-meta-box-manage.php:162 397 | #: premium/classes/meta-boxes/class-meta-box-manage-parent.php:141 398 | msgid "No %s found." 399 | msgstr "Keine %s gefunden." 400 | 401 | #: core/classes/widgets/class-widget-show-children.php:22 402 | msgid "Post Connector - Show Children" 403 | msgstr "" 404 | 405 | #: core/classes/widgets/class-widget-show-children.php:23 406 | msgid "Display linked children by a parent or current post" 407 | msgstr "" 408 | 409 | #: core/classes/widgets/class-widget-show-children.php:107 410 | #: premium/classes/widgets/class-widget-show-parents.php:131 411 | msgid "Post Link" 412 | msgstr "Beitragslink" 413 | 414 | #: core/classes/widgets/class-widget-show-children.php:114 415 | #: premium/classes/widgets/class-widget-show-parents.php:138 416 | msgid "Select Post Link" 417 | msgstr "Beitragslink wählen" 418 | 419 | #: core/classes/widgets/class-widget-show-children.php:172 420 | #: premium/classes/widgets/class-widget-show-parents.php:196 421 | msgid "Display thumbnail" 422 | msgstr "" 423 | 424 | #: premium/classes/filters/class-filter-plugin-links.php:12 425 | #: premium/classes/hooks/class-hook-license-page-multisite.php:12 426 | #: premium/classes/hooks/class-hook-license-page.php:12 427 | msgid "License" 428 | msgstr "Lizenz" 429 | 430 | #: premium/classes/hooks/class-hook-connection-edit-display-linked-children-fields.php:14 431 | msgid "Display excerpt?" 432 | msgstr "" 433 | 434 | #: premium/classes/hooks/class-hook-connection-edit-display-linked-children-fields.php:16 435 | msgid "Display the excerpt of linked children." 436 | msgstr "" 437 | 438 | #: premium/classes/hooks/class-hook-connection-edit-display-linked-children-fields.php:22 439 | msgid "Display image?" 440 | msgstr "" 441 | 442 | #: premium/classes/hooks/class-hook-connection-edit-display-linked-children-fields.php:24 443 | msgid "Display the featured image of linked children." 444 | msgstr "" 445 | 446 | #: premium/classes/hooks/class-hook-connection-edit-premium-fields.php:14 447 | msgid "Automatically display linked parents" 448 | msgstr "" 449 | 450 | #: premium/classes/hooks/class-hook-connection-edit-premium-fields.php:20 451 | msgid "Display linked parents?" 452 | msgstr "" 453 | 454 | #: premium/classes/hooks/class-hook-connection-edit-premium-fields.php:22 455 | msgid "Display the linked parent posts under each child post." 456 | msgstr "" 457 | 458 | #: premium/classes/hooks/class-hook-connection-edit-premium-fields.php:30 459 | #: premium/classes/hooks/class-hook-connection-edit-premium-fields.php:36 460 | msgid "Sortable" 461 | msgstr "Sortierbar" 462 | 463 | #: premium/classes/hooks/class-hook-connection-edit-premium-fields.php:39 464 | msgid "Allow users to sort children in the meta box at the edit post screen." 465 | msgstr "" 466 | 467 | #: premium/classes/hooks/class-hook-connection-edit-premium-fields.php:47 468 | #: premium/classes/meta-boxes/class-meta-box-manage-parent.php:34 469 | msgid "Backwards linking" 470 | msgstr "" 471 | 472 | #: premium/classes/hooks/class-hook-connection-edit-premium-fields.php:53 473 | msgid "Enable backwards linking" 474 | msgstr "" 475 | 476 | #: premium/classes/hooks/class-hook-connection-edit-premium-fields.php:55 477 | msgid "Enable Backwards linking." 478 | msgstr "" 479 | 480 | #: premium/classes/hooks/class-hook-connection-edit-premium-fields.php:58 481 | msgid "" 482 | "Backwards linking allows users to link parents to children from within the " 483 | "child post." 484 | msgstr "" 485 | 486 | #: premium/classes/hooks/class-hook-license-page-multisite.php:25 487 | #: premium/classes/hooks/class-hook-license-page.php:25 488 | msgid "License settings" 489 | msgstr "Lizenz-Einstellungen" 490 | 491 | #: premium/classes/hooks/class-hook-sidebar.php:11 492 | msgid "For support questions please drop us an email at %s." 493 | msgstr "" 494 | 495 | #: premium/classes/license-manager/class-license-manager.php:137 496 | msgid "" 497 | "Warning! You're blocking external requests which means you won't be " 498 | "able to get %s updates. Please add %s to %s." 499 | msgstr "" 500 | 501 | #: premium/classes/license-manager/class-license-manager.php:178 502 | msgid "Your %s license has been activated. " 503 | msgstr "" 504 | 505 | #: premium/classes/license-manager/class-license-manager.php:182 506 | msgid "You have an unlimited license. " 507 | msgstr "" 508 | 509 | #: premium/classes/license-manager/class-license-manager.php:184 510 | msgid "You have used %d/%d activations. " 511 | msgstr "" 512 | 513 | #: premium/classes/license-manager/class-license-manager.php:189 514 | msgid "Did you know you can upgrade your license?" 515 | msgstr "" 516 | 517 | #: premium/classes/license-manager/class-license-manager.php:193 518 | msgid "" 519 | "Your license is expiring in %d days, would you like to extend" 520 | " it?" 521 | msgstr "" 522 | 523 | #: premium/classes/license-manager/class-license-manager.php:202 524 | msgid "" 525 | "You've reached your activation limit. You must upgrade your " 526 | "license to use it on this site." 527 | msgstr "" 528 | 529 | #: premium/classes/license-manager/class-license-manager.php:205 530 | msgid "" 531 | "Your license has expired. You must extend your license in" 532 | " order to use it again." 533 | msgstr "" 534 | 535 | #: premium/classes/license-manager/class-license-manager.php:208 536 | msgid "Failed to activate your license, your license key seems to be invalid." 537 | msgstr "" 538 | 539 | #: premium/classes/license-manager/class-license-manager.php:232 540 | msgid "Your %s license has been deactivated." 541 | msgstr "" 542 | 543 | #: premium/classes/license-manager/class-license-manager.php:234 544 | msgid "Failed to deactivate your %s license." 545 | msgstr "" 546 | 547 | #: premium/classes/license-manager/class-license-manager.php:269 548 | msgid "Request error: \"%s\" (%scommon license notices%s)" 549 | msgstr "" 550 | 551 | #: premium/classes/license-manager/class-license-manager.php:425 552 | msgid "%s: License Settings" 553 | msgstr "" 554 | 555 | #: premium/classes/license-manager/class-plugin-license-manager.php:73 556 | msgid "" 557 | "%s is network activated, you can manage your license in the network admin license page." 559 | msgstr "" 560 | 561 | #: premium/classes/license-manager/class-plugin-license-manager.php:75 562 | msgid "" 563 | "%s is network activated, please contact your site administrator to manage " 564 | "the license." 565 | msgstr "" 566 | 567 | #: premium/classes/license-manager/class-theme-license-manager.php:34 568 | #: premium/classes/license-manager/samples/sample-plugin.php:53 569 | msgid "%s License" 570 | msgstr "" 571 | 572 | #: premium/classes/license-manager/class-theme-license-manager.php:34 573 | msgid "Theme License" 574 | msgstr "" 575 | 576 | #: premium/classes/license-manager/class-theme-update-manager.php:96 577 | msgid "" 578 | "Updating this theme will lose any customizations you have made. 'Cancel' to " 579 | "stop, 'OK' to update." 580 | msgstr "" 581 | 582 | #: premium/classes/license-manager/class-theme-update-manager.php:101 583 | msgid "" 584 | "%s version %s is available. Check out what's new or update now." 587 | msgstr "" 588 | 589 | #: premium/classes/license-manager/class-update-manager.php:83 590 | msgid "" 591 | "%s failed to check for updates because of the following error: %s" 592 | msgstr "" 593 | 594 | #: premium/classes/license-manager/class-update-manager.php:153 595 | msgid "" 596 | "This site has not been activated properly on post-connector.com and thus " 597 | "cannot check for future updates. Please activate your site with a valid " 598 | "license key." 599 | msgstr "" 600 | 601 | #: premium/classes/license-manager/views/form.php:23 602 | msgid "License status" 603 | msgstr "" 604 | 605 | #: premium/classes/license-manager/views/form.php:33 606 | msgid "Toggle license status" 607 | msgstr "" 608 | 609 | #: premium/classes/license-manager/views/form.php:37 610 | msgid "Deactivate License" 611 | msgstr "Lizenz deaktivieren" 612 | 613 | #: premium/classes/license-manager/views/form.php:38 614 | msgid "" 615 | "(deactivate your license so you can activate it on another WordPress site)" 616 | msgstr "" 617 | 618 | #: premium/classes/license-manager/views/form.php:42 619 | msgid "Activate License" 620 | msgstr "Lizenz aktivieren" 621 | 622 | #: premium/classes/license-manager/views/form.php:44 623 | msgid "Please enter a license key in the field below first." 624 | msgstr "" 625 | 626 | #: premium/classes/license-manager/views/form.php:52 627 | msgid "License Key" 628 | msgstr "Lizenzschlüssel" 629 | 630 | #: premium/classes/license-manager/views/form.php:54 631 | msgid "Paste your %s license key here.." 632 | msgstr "" 633 | 634 | #: premium/classes/license-manager/views/form.php:56 635 | msgid "You defined your license key using the %s PHP constant." 636 | msgstr "" 637 | 638 | #: premium/classes/license-manager/views/form.php:73 639 | msgid "Your %s license will expire on %s." 640 | msgstr "" 641 | 642 | #: premium/classes/license-manager/views/form.php:76 643 | msgid "%sRenew your license now%s." 644 | msgstr "" 645 | 646 | #: premium/classes/widgets/class-widget-show-parents.php:25 647 | msgid "Post Connector - Show Parents" 648 | msgstr "" 649 | 650 | #: premium/classes/widgets/class-widget-show-parents.php:26 651 | msgid "Display linked parents by a child or current post" 652 | msgstr "" 653 | 654 | #: premium/classes/widgets/class-widget-show-parents.php:153 655 | msgid "Child" 656 | msgstr "" 657 | 658 | #. Plugin URI of the plugin/theme 659 | msgid "https://www.post-connector.com/" 660 | msgstr "" 661 | 662 | #. Description of the plugin/theme 663 | msgid "With Post Connector you can easily link posts to each other." 664 | msgstr "" 665 | 666 | #. Author of the plugin/theme 667 | msgid "Never5" 668 | msgstr "" 669 | 670 | #. Author URI of the plugin/theme 671 | msgid "http://www.never5.com/" 672 | msgstr "" 673 | -------------------------------------------------------------------------------- /languages/post-connector-es_ES.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barrykooij/post-connector-old/20cabb84d60342946a283e685233de8db6058163/languages/post-connector-es_ES.mo -------------------------------------------------------------------------------- /languages/post-connector-es_ES.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) 2016 Never5 2 | # This file is distributed under the same license as the Post Connector Premium package. 3 | # Translators: 4 | msgid "" 5 | msgstr "" 6 | "Project-Id-Version: Post Connector\n" 7 | "Report-Msgid-Bugs-To: https://github.com/barrykooij/post-connector/issues\n" 8 | "POT-Creation-Date: 2016-01-21 12:53:41+00:00\n" 9 | "PO-Revision-Date: 2016-01-21 12:54+0000\n" 10 | "Last-Translator: Barry Kooij \n" 11 | "Language-Team: Spanish (Spain) (http://www.transifex.com/barrykooijplugins/post-connector/language/es_ES/)\n" 12 | "MIME-Version: 1.0\n" 13 | "Content-Type: text/plain; charset=UTF-8\n" 14 | "Content-Transfer-Encoding: 8bit\n" 15 | "Language: es_ES\n" 16 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 17 | "X-Generator: grunt-wp-i18n 0.4.9\n" 18 | 19 | #: core/assets/js/tinymce/editor_plugin_lang.php:5 20 | msgid "Post Connector" 21 | msgstr "" 22 | 23 | #: core/assets/js/tinymce/editor_plugin_lang.php:6 24 | msgid "Show Children" 25 | msgstr "" 26 | 27 | #: core/classes/class-admin-menu.php:36 core/classes/class-admin-menu.php:340 28 | msgid "Add New" 29 | msgstr "Añadir Nuevo" 30 | 31 | #: core/classes/class-admin-menu.php:139 32 | msgid "Plugin version" 33 | msgstr "" 34 | 35 | #: core/classes/class-admin-menu.php:141 36 | msgid "PHP version:" 37 | msgstr "" 38 | 39 | #: core/classes/class-admin-menu.php:149 40 | msgid "More information" 41 | msgstr "" 42 | 43 | #: core/classes/class-admin-menu.php:151 44 | msgid "Configuration Guide" 45 | msgstr "" 46 | 47 | #: core/classes/class-admin-menu.php:153 48 | msgid "Change log" 49 | msgstr "" 50 | 51 | #: core/classes/class-admin-menu.php:155 52 | msgid "API" 53 | msgstr "" 54 | 55 | #: core/classes/class-admin-menu.php:159 56 | msgid "About the developer" 57 | msgstr "" 58 | 59 | #: core/classes/class-admin-menu.php:161 60 | msgid "" 61 | "Barry has been a WordPress deleveloper for years and is the author of " 62 | "various WordPress plugins." 63 | msgstr "" 64 | 65 | #: core/classes/class-admin-menu.php:163 66 | msgid "" 67 | "In his free time, Barry likes giving back by contributing various opensource" 68 | " projects. He also likes to visit and speak at WordPress meetups and " 69 | "WordCamps and is the organiser of the Dutch WordPress meetup in Tilburg." 70 | msgstr "" 71 | 72 | #: core/classes/class-admin-menu.php:165 73 | msgid "You can follow Barry on Twitter here." 74 | msgstr "" 75 | 76 | #: core/classes/class-admin-menu.php:181 77 | msgid "Connections" 78 | msgstr "" 79 | 80 | #: core/classes/class-admin-menu.php:188 81 | msgid "" 82 | "Post Connector connections are the connections you've created between post " 83 | "types. Post Connector will add a meta box to the post edit screens of these " 84 | "post types so you can link post to each other in minutes." 85 | msgstr "" 86 | 87 | #: core/classes/class-admin-menu.php:190 88 | msgid "Active Connections" 89 | msgstr "" 90 | 91 | #: core/classes/class-admin-menu.php:197 core/classes/class-admin-menu.php:203 92 | #: core/classes/class-admin-menu.php:248 93 | msgid "Create a new connection" 94 | msgstr "" 95 | 96 | #: core/classes/class-admin-menu.php:199 97 | msgid "" 98 | "Before you can link posts to each other you need to create a connection " 99 | "between their post types first. Click the 'Create a new connection' button " 100 | "to get started." 101 | msgstr "" 102 | 103 | #: core/classes/class-admin-menu.php:231 104 | msgid "Posts" 105 | msgstr "Posts" 106 | 107 | #: core/classes/class-admin-menu.php:232 108 | msgid "Pages" 109 | msgstr "Páginas" 110 | 111 | #: core/classes/class-admin-menu.php:246 112 | msgid "Edit connection" 113 | msgstr "" 114 | 115 | #: core/classes/class-admin-menu.php:267 116 | msgid "" 117 | "To create or edit a post connection, fill in the below form and press the " 118 | "'save connection' button." 119 | msgstr "" 120 | 121 | #: core/classes/class-admin-menu.php:269 122 | msgid "Main settings" 123 | msgstr "" 124 | 125 | #: core/classes/class-admin-menu.php:276 126 | msgid "Connection Title" 127 | msgstr "" 128 | 129 | #: core/classes/class-admin-menu.php:279 130 | #: core/classes/class-create-link-list-table.php:75 131 | #: core/classes/class-manage-links-list-table.php:20 132 | #: core/classes/widgets/class-widget-show-children.php:102 133 | #: premium/classes/widgets/class-widget-show-parents.php:126 134 | msgid "Title" 135 | msgstr "Título" 136 | 137 | #: core/classes/class-admin-menu.php:281 138 | msgid "" 139 | "The title of the connection, can be automatically shown above linked posts." 140 | msgstr "" 141 | 142 | #: core/classes/class-admin-menu.php:287 143 | msgid "Connection Slug" 144 | msgstr "" 145 | 146 | #: core/classes/class-admin-menu.php:289 147 | #: core/classes/class-manage-links-list-table.php:21 148 | msgid "Slug" 149 | msgstr "Slug" 150 | 151 | #: core/classes/class-admin-menu.php:291 152 | msgid "" 153 | "Unique identifier of the connection, will automatically generate if left " 154 | "empty." 155 | msgstr "" 156 | 157 | #: core/classes/class-admin-menu.php:297 158 | msgid "Parent post type" 159 | msgstr "" 160 | 161 | #: core/classes/class-admin-menu.php:301 core/classes/class-admin-menu.php:319 162 | msgid "Select a post type" 163 | msgstr "Elige un tipo de post" 164 | 165 | #: core/classes/class-admin-menu.php:315 166 | msgid "Child post type" 167 | msgstr "" 168 | 169 | #: core/classes/class-admin-menu.php:334 170 | msgid "Create new link settings" 171 | msgstr "" 172 | 173 | #: core/classes/class-admin-menu.php:342 174 | msgid "Allow users to create and link new posts." 175 | msgstr "" 176 | 177 | #: core/classes/class-admin-menu.php:348 178 | msgid "Add Existing" 179 | msgstr "Añadir existente" 180 | 181 | #: core/classes/class-admin-menu.php:350 182 | msgid "Allow users to link existing posts." 183 | msgstr "" 184 | 185 | #: core/classes/class-admin-menu.php:358 186 | msgid "Automatically display linked children" 187 | msgstr "" 188 | 189 | #: core/classes/class-admin-menu.php:364 190 | msgid "Display linked children?" 191 | msgstr "" 192 | 193 | #: core/classes/class-admin-menu.php:366 194 | msgid "Display the linked child posts under each parent post." 195 | msgstr "" 196 | 197 | #: core/classes/class-admin-menu.php:393 198 | msgid "Save Connection" 199 | msgstr "" 200 | 201 | #: core/classes/class-create-link-list-table.php:46 202 | msgid "All" 203 | msgstr "" 204 | 205 | #: core/classes/class-create-link-list-table.php:177 206 | #: core/classes/class-create-link-list-table.php:212 207 | msgid "Link" 208 | msgstr "Vincular" 209 | 210 | #: core/classes/class-javascript-strings.php:11 211 | msgid "Are you sure you want to delete this post?" 212 | msgstr "¿Estás seguro de que quieres eliminar este post?" 213 | 214 | #: core/classes/class-javascript-strings.php:12 215 | msgid "Are you sure you want to delete this link?" 216 | msgstr "¿Estás seguro de que quieres eliminar este vínculo?" 217 | 218 | #: core/classes/class-javascript-strings.php:13 219 | #: core/classes/widgets/class-widget-show-children.php:141 220 | #: premium/classes/widgets/class-widget-show-parents.php:165 221 | msgid "Current page" 222 | msgstr "" 223 | 224 | #: core/classes/class-manage-links-list-table.php:22 225 | msgid "Parent post" 226 | msgstr "Post padre" 227 | 228 | #: core/classes/class-manage-links-list-table.php:23 229 | msgid "Child post" 230 | msgstr "Post hijo" 231 | 232 | #: core/classes/class-manage-links-list-table.php:93 233 | #: core/classes/meta-boxes/class-meta-box-manage.php:146 234 | #: premium/classes/meta-boxes/class-meta-box-manage-parent.php:126 235 | msgid "Edit" 236 | msgstr "Editar" 237 | 238 | #: core/classes/class-manage-links-list-table.php:98 239 | #: core/classes/meta-boxes/class-meta-box-manage.php:149 240 | #: premium/classes/meta-boxes/class-meta-box-manage-parent.php:129 241 | msgid "Delete" 242 | msgstr "Eliminar" 243 | 244 | #: core/classes/class-post-link-manager.php:165 245 | msgid "Slug '%s' does not exists" 246 | msgstr "No existe el enlace '%s'" 247 | 248 | #: core/classes/co-filters/class-co-filter-plugin-links.php:12 249 | #: premium/classes/filters/class-filter-plugin-links.php:13 250 | msgid "Manage" 251 | msgstr "Gestionar" 252 | 253 | #: core/classes/co-filters/class-co-filter-plugin-links.php:13 254 | msgid "GO PRO" 255 | msgstr "" 256 | 257 | #: core/classes/co-hooks/class-co-hook-menu.php:8 258 | msgid "Upgrade to Pro" 259 | msgstr "" 260 | 261 | #. Plugin Name of the plugin/theme 262 | msgid "Post Connector Premium" 263 | msgstr "" 264 | 265 | #: core/classes/co-hooks/class-co-hook-sidebar.php:12 266 | msgid "" 267 | "This plugin has an even better premium version, I am sure you will love it." 268 | msgstr "" 269 | 270 | #: core/classes/co-hooks/class-co-hook-sidebar.php:13 271 | msgid "" 272 | "Pro features include sortable post connections, backwards linking, a " 273 | "developer friendly API and priority support." 274 | msgstr "" 275 | 276 | #: core/classes/co-hooks/class-co-hook-sidebar.php:14 277 | msgid "%sMore information about Post Connector Premium »%s" 278 | msgstr "" 279 | 280 | #: core/classes/co-hooks/class-co-hook-sidebar.php:18 281 | #: premium/classes/hooks/class-hook-sidebar.php:9 282 | msgid "Looking for support?" 283 | msgstr "" 284 | 285 | #: core/classes/co-hooks/class-co-hook-sidebar.php:20 286 | msgid "For support please visit the WordPress.org forums." 287 | msgstr "" 288 | 289 | #: core/classes/co-hooks/class-co-hook-sidebar.php:22 290 | msgid "" 291 | "Did you know that Post Connector Premium clients get priority email support?" 292 | " %sClick here to upgrade.%s" 293 | msgstr "" 294 | 295 | #: core/classes/co-hooks/class-co-hook-sidebar.php:26 296 | msgid "Show a token of your appreciation" 297 | msgstr "" 298 | 299 | #: core/classes/co-hooks/class-co-hook-sidebar.php:28 300 | msgid "" 301 | "Leave a ★★★★★ plugin review on " 302 | "WordPress.org." 303 | msgstr "" 304 | 305 | #: core/classes/co-hooks/class-co-hook-sidebar.php:29 306 | msgid "Tweet about Post Connector." 307 | msgstr "" 308 | 309 | #: core/classes/co-hooks/class-co-hook-sidebar.php:30 310 | msgid "" 311 | "Review the plugin on your blog and link to the " 312 | "plugin page." 313 | msgstr "" 314 | 315 | #: core/classes/co-hooks/class-co-hook-sidebar.php:31 316 | msgid "" 317 | "Vote 'works' on the WordPress.org plugin " 318 | "page." 319 | msgstr "" 320 | 321 | #: core/classes/hooks/class-hook-footer-tickbox-shortcode.php:19 322 | msgid "Insert Post Connector show_children shortcode" 323 | msgstr "" 324 | 325 | #: core/classes/hooks/class-hook-footer-tickbox-shortcode.php:20 326 | msgid "Use the form below to generate a show_children shortcode." 327 | msgstr "" 328 | 329 | #: core/classes/hooks/class-hook-footer-tickbox-shortcode.php:32 330 | msgid "Connection" 331 | msgstr "" 332 | 333 | #: core/classes/hooks/class-hook-footer-tickbox-shortcode.php:39 334 | msgid "Select Connection" 335 | msgstr "" 336 | 337 | #: core/classes/hooks/class-hook-footer-tickbox-shortcode.php:49 338 | #: core/classes/widgets/class-widget-show-children.php:129 339 | msgid "Parent" 340 | msgstr "Padre" 341 | 342 | #: core/classes/hooks/class-hook-footer-tickbox-shortcode.php:56 343 | #: core/classes/widgets/class-widget-show-children.php:156 344 | #: premium/classes/widgets/class-widget-show-parents.php:180 345 | msgid "Make children clickable" 346 | msgstr "" 347 | 348 | #: core/classes/hooks/class-hook-footer-tickbox-shortcode.php:64 349 | #: core/classes/widgets/class-widget-show-children.php:164 350 | #: premium/classes/widgets/class-widget-show-parents.php:188 351 | msgid "Display excerpt" 352 | msgstr "Mostrar extracto" 353 | 354 | #: core/classes/hooks/class-hook-footer-tickbox-shortcode.php:78 355 | msgid "Insert Shortcode" 356 | msgstr "Inserta Shortcode" 357 | 358 | #: core/classes/hooks/class-hook-footer-tickbox-shortcode.php:79 359 | msgid "Cancel" 360 | msgstr "Cancelar" 361 | 362 | #: core/classes/hooks/class-hook-link-post-screen.php:33 363 | #: core/classes/hooks/class-hook-link-post-screen.php:40 364 | #: core/classes/meta-boxes/class-meta-box-meta.php:51 365 | msgid "You're not allowed to do this." 366 | msgstr "No tienes permisos para hacer esto." 367 | 368 | #: core/classes/hooks/class-hook-link-post-screen.php:203 369 | msgid "Cancel linking" 370 | msgstr "Cancelar enlace" 371 | 372 | #: core/classes/hooks/class-hook-link-post-screen.php:219 373 | msgid "Search" 374 | msgstr "Buscar" 375 | 376 | #: core/classes/meta-boxes/class-meta-box-manage.php:86 377 | #: premium/classes/meta-boxes/class-meta-box-manage-parent.php:85 378 | msgid "Add new %s" 379 | msgstr "Añadir nuevo %s" 380 | 381 | #: core/classes/meta-boxes/class-meta-box-manage.php:112 382 | #: premium/classes/meta-boxes/class-meta-box-manage-parent.php:103 383 | msgid "Add existing %s" 384 | msgstr "Añadir %s existente" 385 | 386 | #: core/classes/meta-boxes/class-meta-box-manage.php:145 387 | #: premium/classes/meta-boxes/class-meta-box-manage-parent.php:125 388 | msgid "Edit this item" 389 | msgstr "Editar este elemento" 390 | 391 | #: core/classes/meta-boxes/class-meta-box-manage.php:148 392 | #: premium/classes/meta-boxes/class-meta-box-manage-parent.php:128 393 | msgid "Delete this item" 394 | msgstr "Eliminar este elemento" 395 | 396 | #: core/classes/meta-boxes/class-meta-box-manage.php:162 397 | #: premium/classes/meta-boxes/class-meta-box-manage-parent.php:141 398 | msgid "No %s found." 399 | msgstr "Todavía no hay ningún %s vinculado." 400 | 401 | #: core/classes/widgets/class-widget-show-children.php:22 402 | msgid "Post Connector - Show Children" 403 | msgstr "" 404 | 405 | #: core/classes/widgets/class-widget-show-children.php:23 406 | msgid "Display linked children by a parent or current post" 407 | msgstr "" 408 | 409 | #: core/classes/widgets/class-widget-show-children.php:107 410 | #: premium/classes/widgets/class-widget-show-parents.php:131 411 | msgid "Post Link" 412 | msgstr "Vínculo del post" 413 | 414 | #: core/classes/widgets/class-widget-show-children.php:114 415 | #: premium/classes/widgets/class-widget-show-parents.php:138 416 | msgid "Select Post Link" 417 | msgstr "Elige un post para vincular" 418 | 419 | #: core/classes/widgets/class-widget-show-children.php:172 420 | #: premium/classes/widgets/class-widget-show-parents.php:196 421 | msgid "Display thumbnail" 422 | msgstr "" 423 | 424 | #: premium/classes/filters/class-filter-plugin-links.php:12 425 | #: premium/classes/hooks/class-hook-license-page-multisite.php:12 426 | #: premium/classes/hooks/class-hook-license-page.php:12 427 | msgid "License" 428 | msgstr "Licencia" 429 | 430 | #: premium/classes/hooks/class-hook-connection-edit-display-linked-children-fields.php:14 431 | msgid "Display excerpt?" 432 | msgstr "" 433 | 434 | #: premium/classes/hooks/class-hook-connection-edit-display-linked-children-fields.php:16 435 | msgid "Display the excerpt of linked children." 436 | msgstr "" 437 | 438 | #: premium/classes/hooks/class-hook-connection-edit-display-linked-children-fields.php:22 439 | msgid "Display image?" 440 | msgstr "" 441 | 442 | #: premium/classes/hooks/class-hook-connection-edit-display-linked-children-fields.php:24 443 | msgid "Display the featured image of linked children." 444 | msgstr "" 445 | 446 | #: premium/classes/hooks/class-hook-connection-edit-premium-fields.php:14 447 | msgid "Automatically display linked parents" 448 | msgstr "" 449 | 450 | #: premium/classes/hooks/class-hook-connection-edit-premium-fields.php:20 451 | msgid "Display linked parents?" 452 | msgstr "" 453 | 454 | #: premium/classes/hooks/class-hook-connection-edit-premium-fields.php:22 455 | msgid "Display the linked parent posts under each child post." 456 | msgstr "" 457 | 458 | #: premium/classes/hooks/class-hook-connection-edit-premium-fields.php:30 459 | #: premium/classes/hooks/class-hook-connection-edit-premium-fields.php:36 460 | msgid "Sortable" 461 | msgstr "Ordenable" 462 | 463 | #: premium/classes/hooks/class-hook-connection-edit-premium-fields.php:39 464 | msgid "Allow users to sort children in the meta box at the edit post screen." 465 | msgstr "" 466 | 467 | #: premium/classes/hooks/class-hook-connection-edit-premium-fields.php:47 468 | #: premium/classes/meta-boxes/class-meta-box-manage-parent.php:34 469 | msgid "Backwards linking" 470 | msgstr "" 471 | 472 | #: premium/classes/hooks/class-hook-connection-edit-premium-fields.php:53 473 | msgid "Enable backwards linking" 474 | msgstr "" 475 | 476 | #: premium/classes/hooks/class-hook-connection-edit-premium-fields.php:55 477 | msgid "Enable Backwards linking." 478 | msgstr "" 479 | 480 | #: premium/classes/hooks/class-hook-connection-edit-premium-fields.php:58 481 | msgid "" 482 | "Backwards linking allows users to link parents to children from within the " 483 | "child post." 484 | msgstr "" 485 | 486 | #: premium/classes/hooks/class-hook-license-page-multisite.php:25 487 | #: premium/classes/hooks/class-hook-license-page.php:25 488 | msgid "License settings" 489 | msgstr "Ajustes de licencia" 490 | 491 | #: premium/classes/hooks/class-hook-sidebar.php:11 492 | msgid "For support questions please drop us an email at %s." 493 | msgstr "" 494 | 495 | #: premium/classes/license-manager/class-license-manager.php:137 496 | msgid "" 497 | "Warning! You're blocking external requests which means you won't be " 498 | "able to get %s updates. Please add %s to %s." 499 | msgstr "" 500 | 501 | #: premium/classes/license-manager/class-license-manager.php:178 502 | msgid "Your %s license has been activated. " 503 | msgstr "" 504 | 505 | #: premium/classes/license-manager/class-license-manager.php:182 506 | msgid "You have an unlimited license. " 507 | msgstr "" 508 | 509 | #: premium/classes/license-manager/class-license-manager.php:184 510 | msgid "You have used %d/%d activations. " 511 | msgstr "" 512 | 513 | #: premium/classes/license-manager/class-license-manager.php:189 514 | msgid "Did you know you can upgrade your license?" 515 | msgstr "" 516 | 517 | #: premium/classes/license-manager/class-license-manager.php:193 518 | msgid "" 519 | "Your license is expiring in %d days, would you like to extend" 520 | " it?" 521 | msgstr "" 522 | 523 | #: premium/classes/license-manager/class-license-manager.php:202 524 | msgid "" 525 | "You've reached your activation limit. You must upgrade your " 526 | "license to use it on this site." 527 | msgstr "" 528 | 529 | #: premium/classes/license-manager/class-license-manager.php:205 530 | msgid "" 531 | "Your license has expired. You must extend your license in" 532 | " order to use it again." 533 | msgstr "" 534 | 535 | #: premium/classes/license-manager/class-license-manager.php:208 536 | msgid "Failed to activate your license, your license key seems to be invalid." 537 | msgstr "" 538 | 539 | #: premium/classes/license-manager/class-license-manager.php:232 540 | msgid "Your %s license has been deactivated." 541 | msgstr "" 542 | 543 | #: premium/classes/license-manager/class-license-manager.php:234 544 | msgid "Failed to deactivate your %s license." 545 | msgstr "" 546 | 547 | #: premium/classes/license-manager/class-license-manager.php:269 548 | msgid "Request error: \"%s\" (%scommon license notices%s)" 549 | msgstr "" 550 | 551 | #: premium/classes/license-manager/class-license-manager.php:425 552 | msgid "%s: License Settings" 553 | msgstr "" 554 | 555 | #: premium/classes/license-manager/class-plugin-license-manager.php:73 556 | msgid "" 557 | "%s is network activated, you can manage your license in the network admin license page." 559 | msgstr "" 560 | 561 | #: premium/classes/license-manager/class-plugin-license-manager.php:75 562 | msgid "" 563 | "%s is network activated, please contact your site administrator to manage " 564 | "the license." 565 | msgstr "" 566 | 567 | #: premium/classes/license-manager/class-theme-license-manager.php:34 568 | #: premium/classes/license-manager/samples/sample-plugin.php:53 569 | msgid "%s License" 570 | msgstr "" 571 | 572 | #: premium/classes/license-manager/class-theme-license-manager.php:34 573 | msgid "Theme License" 574 | msgstr "" 575 | 576 | #: premium/classes/license-manager/class-theme-update-manager.php:96 577 | msgid "" 578 | "Updating this theme will lose any customizations you have made. 'Cancel' to " 579 | "stop, 'OK' to update." 580 | msgstr "" 581 | 582 | #: premium/classes/license-manager/class-theme-update-manager.php:101 583 | msgid "" 584 | "%s version %s is available. Check out what's new or update now." 587 | msgstr "" 588 | 589 | #: premium/classes/license-manager/class-update-manager.php:83 590 | msgid "" 591 | "%s failed to check for updates because of the following error: %s" 592 | msgstr "" 593 | 594 | #: premium/classes/license-manager/class-update-manager.php:153 595 | msgid "" 596 | "This site has not been activated properly on post-connector.com and thus " 597 | "cannot check for future updates. Please activate your site with a valid " 598 | "license key." 599 | msgstr "" 600 | 601 | #: premium/classes/license-manager/views/form.php:23 602 | msgid "License status" 603 | msgstr "" 604 | 605 | #: premium/classes/license-manager/views/form.php:33 606 | msgid "Toggle license status" 607 | msgstr "" 608 | 609 | #: premium/classes/license-manager/views/form.php:37 610 | msgid "Deactivate License" 611 | msgstr "Desactivar licencia" 612 | 613 | #: premium/classes/license-manager/views/form.php:38 614 | msgid "" 615 | "(deactivate your license so you can activate it on another WordPress site)" 616 | msgstr "" 617 | 618 | #: premium/classes/license-manager/views/form.php:42 619 | msgid "Activate License" 620 | msgstr "Activar licencia" 621 | 622 | #: premium/classes/license-manager/views/form.php:44 623 | msgid "Please enter a license key in the field below first." 624 | msgstr "" 625 | 626 | #: premium/classes/license-manager/views/form.php:52 627 | msgid "License Key" 628 | msgstr "Clave de licencia" 629 | 630 | #: premium/classes/license-manager/views/form.php:54 631 | msgid "Paste your %s license key here.." 632 | msgstr "" 633 | 634 | #: premium/classes/license-manager/views/form.php:56 635 | msgid "You defined your license key using the %s PHP constant." 636 | msgstr "" 637 | 638 | #: premium/classes/license-manager/views/form.php:73 639 | msgid "Your %s license will expire on %s." 640 | msgstr "" 641 | 642 | #: premium/classes/license-manager/views/form.php:76 643 | msgid "%sRenew your license now%s." 644 | msgstr "" 645 | 646 | #: premium/classes/widgets/class-widget-show-parents.php:25 647 | msgid "Post Connector - Show Parents" 648 | msgstr "" 649 | 650 | #: premium/classes/widgets/class-widget-show-parents.php:26 651 | msgid "Display linked parents by a child or current post" 652 | msgstr "" 653 | 654 | #: premium/classes/widgets/class-widget-show-parents.php:153 655 | msgid "Child" 656 | msgstr "" 657 | 658 | #. Plugin URI of the plugin/theme 659 | msgid "https://www.post-connector.com/" 660 | msgstr "" 661 | 662 | #. Description of the plugin/theme 663 | msgid "With Post Connector you can easily link posts to each other." 664 | msgstr "" 665 | 666 | #. Author of the plugin/theme 667 | msgid "Never5" 668 | msgstr "" 669 | 670 | #. Author URI of the plugin/theme 671 | msgid "http://www.never5.com/" 672 | msgstr "" 673 | -------------------------------------------------------------------------------- /languages/post-connector-fa_IR.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barrykooij/post-connector-old/20cabb84d60342946a283e685233de8db6058163/languages/post-connector-fa_IR.mo -------------------------------------------------------------------------------- /languages/post-connector-fa_IR.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) 2016 Never5 2 | # This file is distributed under the same license as the Post Connector Premium package. 3 | # Translators: 4 | msgid "" 5 | msgstr "" 6 | "Project-Id-Version: Post Connector\n" 7 | "Report-Msgid-Bugs-To: https://github.com/barrykooij/post-connector/issues\n" 8 | "POT-Creation-Date: 2016-01-21 12:53:41+00:00\n" 9 | "PO-Revision-Date: 2016-01-21 12:54+0000\n" 10 | "Last-Translator: Barry Kooij \n" 11 | "Language-Team: Persian (Iran) (http://www.transifex.com/barrykooijplugins/post-connector/language/fa_IR/)\n" 12 | "MIME-Version: 1.0\n" 13 | "Content-Type: text/plain; charset=UTF-8\n" 14 | "Content-Transfer-Encoding: 8bit\n" 15 | "Language: fa_IR\n" 16 | "Plural-Forms: nplurals=1; plural=0;\n" 17 | "X-Generator: grunt-wp-i18n 0.4.9\n" 18 | 19 | #: core/assets/js/tinymce/editor_plugin_lang.php:5 20 | msgid "Post Connector" 21 | msgstr "" 22 | 23 | #: core/assets/js/tinymce/editor_plugin_lang.php:6 24 | msgid "Show Children" 25 | msgstr "" 26 | 27 | #: core/classes/class-admin-menu.php:36 core/classes/class-admin-menu.php:340 28 | msgid "Add New" 29 | msgstr "افزودن مورد جدید" 30 | 31 | #: core/classes/class-admin-menu.php:139 32 | msgid "Plugin version" 33 | msgstr "" 34 | 35 | #: core/classes/class-admin-menu.php:141 36 | msgid "PHP version:" 37 | msgstr "" 38 | 39 | #: core/classes/class-admin-menu.php:149 40 | msgid "More information" 41 | msgstr "" 42 | 43 | #: core/classes/class-admin-menu.php:151 44 | msgid "Configuration Guide" 45 | msgstr "" 46 | 47 | #: core/classes/class-admin-menu.php:153 48 | msgid "Change log" 49 | msgstr "" 50 | 51 | #: core/classes/class-admin-menu.php:155 52 | msgid "API" 53 | msgstr "" 54 | 55 | #: core/classes/class-admin-menu.php:159 56 | msgid "About the developer" 57 | msgstr "" 58 | 59 | #: core/classes/class-admin-menu.php:161 60 | msgid "" 61 | "Barry has been a WordPress deleveloper for years and is the author of " 62 | "various WordPress plugins." 63 | msgstr "" 64 | 65 | #: core/classes/class-admin-menu.php:163 66 | msgid "" 67 | "In his free time, Barry likes giving back by contributing various opensource" 68 | " projects. He also likes to visit and speak at WordPress meetups and " 69 | "WordCamps and is the organiser of the Dutch WordPress meetup in Tilburg." 70 | msgstr "" 71 | 72 | #: core/classes/class-admin-menu.php:165 73 | msgid "You can follow Barry on Twitter here." 74 | msgstr "" 75 | 76 | #: core/classes/class-admin-menu.php:181 77 | msgid "Connections" 78 | msgstr "" 79 | 80 | #: core/classes/class-admin-menu.php:188 81 | msgid "" 82 | "Post Connector connections are the connections you've created between post " 83 | "types. Post Connector will add a meta box to the post edit screens of these " 84 | "post types so you can link post to each other in minutes." 85 | msgstr "" 86 | 87 | #: core/classes/class-admin-menu.php:190 88 | msgid "Active Connections" 89 | msgstr "" 90 | 91 | #: core/classes/class-admin-menu.php:197 core/classes/class-admin-menu.php:203 92 | #: core/classes/class-admin-menu.php:248 93 | msgid "Create a new connection" 94 | msgstr "" 95 | 96 | #: core/classes/class-admin-menu.php:199 97 | msgid "" 98 | "Before you can link posts to each other you need to create a connection " 99 | "between their post types first. Click the 'Create a new connection' button " 100 | "to get started." 101 | msgstr "" 102 | 103 | #: core/classes/class-admin-menu.php:231 104 | msgid "Posts" 105 | msgstr "نوشته ها" 106 | 107 | #: core/classes/class-admin-menu.php:232 108 | msgid "Pages" 109 | msgstr "برگه ها" 110 | 111 | #: core/classes/class-admin-menu.php:246 112 | msgid "Edit connection" 113 | msgstr "" 114 | 115 | #: core/classes/class-admin-menu.php:267 116 | msgid "" 117 | "To create or edit a post connection, fill in the below form and press the " 118 | "'save connection' button." 119 | msgstr "" 120 | 121 | #: core/classes/class-admin-menu.php:269 122 | msgid "Main settings" 123 | msgstr "" 124 | 125 | #: core/classes/class-admin-menu.php:276 126 | msgid "Connection Title" 127 | msgstr "" 128 | 129 | #: core/classes/class-admin-menu.php:279 130 | #: core/classes/class-create-link-list-table.php:75 131 | #: core/classes/class-manage-links-list-table.php:20 132 | #: core/classes/widgets/class-widget-show-children.php:102 133 | #: premium/classes/widgets/class-widget-show-parents.php:126 134 | msgid "Title" 135 | msgstr "عنوان" 136 | 137 | #: core/classes/class-admin-menu.php:281 138 | msgid "" 139 | "The title of the connection, can be automatically shown above linked posts." 140 | msgstr "" 141 | 142 | #: core/classes/class-admin-menu.php:287 143 | msgid "Connection Slug" 144 | msgstr "" 145 | 146 | #: core/classes/class-admin-menu.php:289 147 | #: core/classes/class-manage-links-list-table.php:21 148 | msgid "Slug" 149 | msgstr "نامک" 150 | 151 | #: core/classes/class-admin-menu.php:291 152 | msgid "" 153 | "Unique identifier of the connection, will automatically generate if left " 154 | "empty." 155 | msgstr "" 156 | 157 | #: core/classes/class-admin-menu.php:297 158 | msgid "Parent post type" 159 | msgstr "" 160 | 161 | #: core/classes/class-admin-menu.php:301 core/classes/class-admin-menu.php:319 162 | msgid "Select a post type" 163 | msgstr "انتخاب یک نوع نوشته" 164 | 165 | #: core/classes/class-admin-menu.php:315 166 | msgid "Child post type" 167 | msgstr "" 168 | 169 | #: core/classes/class-admin-menu.php:334 170 | msgid "Create new link settings" 171 | msgstr "" 172 | 173 | #: core/classes/class-admin-menu.php:342 174 | msgid "Allow users to create and link new posts." 175 | msgstr "" 176 | 177 | #: core/classes/class-admin-menu.php:348 178 | msgid "Add Existing" 179 | msgstr "افزودن یک مورد موجود" 180 | 181 | #: core/classes/class-admin-menu.php:350 182 | msgid "Allow users to link existing posts." 183 | msgstr "" 184 | 185 | #: core/classes/class-admin-menu.php:358 186 | msgid "Automatically display linked children" 187 | msgstr "" 188 | 189 | #: core/classes/class-admin-menu.php:364 190 | msgid "Display linked children?" 191 | msgstr "" 192 | 193 | #: core/classes/class-admin-menu.php:366 194 | msgid "Display the linked child posts under each parent post." 195 | msgstr "" 196 | 197 | #: core/classes/class-admin-menu.php:393 198 | msgid "Save Connection" 199 | msgstr "" 200 | 201 | #: core/classes/class-create-link-list-table.php:46 202 | msgid "All" 203 | msgstr "" 204 | 205 | #: core/classes/class-create-link-list-table.php:177 206 | #: core/classes/class-create-link-list-table.php:212 207 | msgid "Link" 208 | msgstr "ارتباط" 209 | 210 | #: core/classes/class-javascript-strings.php:11 211 | msgid "Are you sure you want to delete this post?" 212 | msgstr "آیا از پاک کردن این نوشته مطمئن هستید؟" 213 | 214 | #: core/classes/class-javascript-strings.php:12 215 | msgid "Are you sure you want to delete this link?" 216 | msgstr "آیا از پاک کردن این ارتباط مطمئن هستید؟" 217 | 218 | #: core/classes/class-javascript-strings.php:13 219 | #: core/classes/widgets/class-widget-show-children.php:141 220 | #: premium/classes/widgets/class-widget-show-parents.php:165 221 | msgid "Current page" 222 | msgstr "" 223 | 224 | #: core/classes/class-manage-links-list-table.php:22 225 | msgid "Parent post" 226 | msgstr "نوشته مادر" 227 | 228 | #: core/classes/class-manage-links-list-table.php:23 229 | msgid "Child post" 230 | msgstr "نوشته فرزند" 231 | 232 | #: core/classes/class-manage-links-list-table.php:93 233 | #: core/classes/meta-boxes/class-meta-box-manage.php:146 234 | #: premium/classes/meta-boxes/class-meta-box-manage-parent.php:126 235 | msgid "Edit" 236 | msgstr "ویرایش" 237 | 238 | #: core/classes/class-manage-links-list-table.php:98 239 | #: core/classes/meta-boxes/class-meta-box-manage.php:149 240 | #: premium/classes/meta-boxes/class-meta-box-manage-parent.php:129 241 | msgid "Delete" 242 | msgstr "پاک کردن" 243 | 244 | #: core/classes/class-post-link-manager.php:165 245 | msgid "Slug '%s' does not exists" 246 | msgstr "نامک %s موجود نمی باشد" 247 | 248 | #: core/classes/co-filters/class-co-filter-plugin-links.php:12 249 | #: premium/classes/filters/class-filter-plugin-links.php:13 250 | msgid "Manage" 251 | msgstr "مدیریت" 252 | 253 | #: core/classes/co-filters/class-co-filter-plugin-links.php:13 254 | msgid "GO PRO" 255 | msgstr "" 256 | 257 | #: core/classes/co-hooks/class-co-hook-menu.php:8 258 | msgid "Upgrade to Pro" 259 | msgstr "" 260 | 261 | #. Plugin Name of the plugin/theme 262 | msgid "Post Connector Premium" 263 | msgstr "" 264 | 265 | #: core/classes/co-hooks/class-co-hook-sidebar.php:12 266 | msgid "" 267 | "This plugin has an even better premium version, I am sure you will love it." 268 | msgstr "" 269 | 270 | #: core/classes/co-hooks/class-co-hook-sidebar.php:13 271 | msgid "" 272 | "Pro features include sortable post connections, backwards linking, a " 273 | "developer friendly API and priority support." 274 | msgstr "" 275 | 276 | #: core/classes/co-hooks/class-co-hook-sidebar.php:14 277 | msgid "%sMore information about Post Connector Premium »%s" 278 | msgstr "" 279 | 280 | #: core/classes/co-hooks/class-co-hook-sidebar.php:18 281 | #: premium/classes/hooks/class-hook-sidebar.php:9 282 | msgid "Looking for support?" 283 | msgstr "" 284 | 285 | #: core/classes/co-hooks/class-co-hook-sidebar.php:20 286 | msgid "For support please visit the WordPress.org forums." 287 | msgstr "" 288 | 289 | #: core/classes/co-hooks/class-co-hook-sidebar.php:22 290 | msgid "" 291 | "Did you know that Post Connector Premium clients get priority email support?" 292 | " %sClick here to upgrade.%s" 293 | msgstr "" 294 | 295 | #: core/classes/co-hooks/class-co-hook-sidebar.php:26 296 | msgid "Show a token of your appreciation" 297 | msgstr "" 298 | 299 | #: core/classes/co-hooks/class-co-hook-sidebar.php:28 300 | msgid "" 301 | "Leave a ★★★★★ plugin review on " 302 | "WordPress.org." 303 | msgstr "" 304 | 305 | #: core/classes/co-hooks/class-co-hook-sidebar.php:29 306 | msgid "Tweet about Post Connector." 307 | msgstr "" 308 | 309 | #: core/classes/co-hooks/class-co-hook-sidebar.php:30 310 | msgid "" 311 | "Review the plugin on your blog and link to the " 312 | "plugin page." 313 | msgstr "" 314 | 315 | #: core/classes/co-hooks/class-co-hook-sidebar.php:31 316 | msgid "" 317 | "Vote 'works' on the WordPress.org plugin " 318 | "page." 319 | msgstr "" 320 | 321 | #: core/classes/hooks/class-hook-footer-tickbox-shortcode.php:19 322 | msgid "Insert Post Connector show_children shortcode" 323 | msgstr "" 324 | 325 | #: core/classes/hooks/class-hook-footer-tickbox-shortcode.php:20 326 | msgid "Use the form below to generate a show_children shortcode." 327 | msgstr "" 328 | 329 | #: core/classes/hooks/class-hook-footer-tickbox-shortcode.php:32 330 | msgid "Connection" 331 | msgstr "" 332 | 333 | #: core/classes/hooks/class-hook-footer-tickbox-shortcode.php:39 334 | msgid "Select Connection" 335 | msgstr "" 336 | 337 | #: core/classes/hooks/class-hook-footer-tickbox-shortcode.php:49 338 | #: core/classes/widgets/class-widget-show-children.php:129 339 | msgid "Parent" 340 | msgstr "مادر" 341 | 342 | #: core/classes/hooks/class-hook-footer-tickbox-shortcode.php:56 343 | #: core/classes/widgets/class-widget-show-children.php:156 344 | #: premium/classes/widgets/class-widget-show-parents.php:180 345 | msgid "Make children clickable" 346 | msgstr "" 347 | 348 | #: core/classes/hooks/class-hook-footer-tickbox-shortcode.php:64 349 | #: core/classes/widgets/class-widget-show-children.php:164 350 | #: premium/classes/widgets/class-widget-show-parents.php:188 351 | msgid "Display excerpt" 352 | msgstr "نمایش چکیده" 353 | 354 | #: core/classes/hooks/class-hook-footer-tickbox-shortcode.php:78 355 | msgid "Insert Shortcode" 356 | msgstr "واردسازی کد میانبر" 357 | 358 | #: core/classes/hooks/class-hook-footer-tickbox-shortcode.php:79 359 | msgid "Cancel" 360 | msgstr "انصراف" 361 | 362 | #: core/classes/hooks/class-hook-link-post-screen.php:33 363 | #: core/classes/hooks/class-hook-link-post-screen.php:40 364 | #: core/classes/meta-boxes/class-meta-box-meta.php:51 365 | msgid "You're not allowed to do this." 366 | msgstr "شما مجوز کافی برای انجام این کار را ندارید." 367 | 368 | #: core/classes/hooks/class-hook-link-post-screen.php:203 369 | msgid "Cancel linking" 370 | msgstr "غیرفعال کردن ارتباط" 371 | 372 | #: core/classes/hooks/class-hook-link-post-screen.php:219 373 | msgid "Search" 374 | msgstr "جستجو" 375 | 376 | #: core/classes/meta-boxes/class-meta-box-manage.php:86 377 | #: premium/classes/meta-boxes/class-meta-box-manage-parent.php:85 378 | msgid "Add new %s" 379 | msgstr "افزودن %s جدید" 380 | 381 | #: core/classes/meta-boxes/class-meta-box-manage.php:112 382 | #: premium/classes/meta-boxes/class-meta-box-manage-parent.php:103 383 | msgid "Add existing %s" 384 | msgstr "افزودن %s موجود" 385 | 386 | #: core/classes/meta-boxes/class-meta-box-manage.php:145 387 | #: premium/classes/meta-boxes/class-meta-box-manage-parent.php:125 388 | msgid "Edit this item" 389 | msgstr "ویرایش این آیتم" 390 | 391 | #: core/classes/meta-boxes/class-meta-box-manage.php:148 392 | #: premium/classes/meta-boxes/class-meta-box-manage-parent.php:128 393 | msgid "Delete this item" 394 | msgstr "پاک کردن این آیتم" 395 | 396 | #: core/classes/meta-boxes/class-meta-box-manage.php:162 397 | #: premium/classes/meta-boxes/class-meta-box-manage-parent.php:141 398 | msgid "No %s found." 399 | msgstr "هیچ %s یافت نشد." 400 | 401 | #: core/classes/widgets/class-widget-show-children.php:22 402 | msgid "Post Connector - Show Children" 403 | msgstr "" 404 | 405 | #: core/classes/widgets/class-widget-show-children.php:23 406 | msgid "Display linked children by a parent or current post" 407 | msgstr "" 408 | 409 | #: core/classes/widgets/class-widget-show-children.php:107 410 | #: premium/classes/widgets/class-widget-show-parents.php:131 411 | msgid "Post Link" 412 | msgstr "ارتباط نوشته" 413 | 414 | #: core/classes/widgets/class-widget-show-children.php:114 415 | #: premium/classes/widgets/class-widget-show-parents.php:138 416 | msgid "Select Post Link" 417 | msgstr "انتخاب ارتباط نوشته" 418 | 419 | #: core/classes/widgets/class-widget-show-children.php:172 420 | #: premium/classes/widgets/class-widget-show-parents.php:196 421 | msgid "Display thumbnail" 422 | msgstr "" 423 | 424 | #: premium/classes/filters/class-filter-plugin-links.php:12 425 | #: premium/classes/hooks/class-hook-license-page-multisite.php:12 426 | #: premium/classes/hooks/class-hook-license-page.php:12 427 | msgid "License" 428 | msgstr "گواهی نامه" 429 | 430 | #: premium/classes/hooks/class-hook-connection-edit-display-linked-children-fields.php:14 431 | msgid "Display excerpt?" 432 | msgstr "" 433 | 434 | #: premium/classes/hooks/class-hook-connection-edit-display-linked-children-fields.php:16 435 | msgid "Display the excerpt of linked children." 436 | msgstr "" 437 | 438 | #: premium/classes/hooks/class-hook-connection-edit-display-linked-children-fields.php:22 439 | msgid "Display image?" 440 | msgstr "" 441 | 442 | #: premium/classes/hooks/class-hook-connection-edit-display-linked-children-fields.php:24 443 | msgid "Display the featured image of linked children." 444 | msgstr "" 445 | 446 | #: premium/classes/hooks/class-hook-connection-edit-premium-fields.php:14 447 | msgid "Automatically display linked parents" 448 | msgstr "" 449 | 450 | #: premium/classes/hooks/class-hook-connection-edit-premium-fields.php:20 451 | msgid "Display linked parents?" 452 | msgstr "" 453 | 454 | #: premium/classes/hooks/class-hook-connection-edit-premium-fields.php:22 455 | msgid "Display the linked parent posts under each child post." 456 | msgstr "" 457 | 458 | #: premium/classes/hooks/class-hook-connection-edit-premium-fields.php:30 459 | #: premium/classes/hooks/class-hook-connection-edit-premium-fields.php:36 460 | msgid "Sortable" 461 | msgstr "قابل مرتب سازی" 462 | 463 | #: premium/classes/hooks/class-hook-connection-edit-premium-fields.php:39 464 | msgid "Allow users to sort children in the meta box at the edit post screen." 465 | msgstr "" 466 | 467 | #: premium/classes/hooks/class-hook-connection-edit-premium-fields.php:47 468 | #: premium/classes/meta-boxes/class-meta-box-manage-parent.php:34 469 | msgid "Backwards linking" 470 | msgstr "" 471 | 472 | #: premium/classes/hooks/class-hook-connection-edit-premium-fields.php:53 473 | msgid "Enable backwards linking" 474 | msgstr "" 475 | 476 | #: premium/classes/hooks/class-hook-connection-edit-premium-fields.php:55 477 | msgid "Enable Backwards linking." 478 | msgstr "" 479 | 480 | #: premium/classes/hooks/class-hook-connection-edit-premium-fields.php:58 481 | msgid "" 482 | "Backwards linking allows users to link parents to children from within the " 483 | "child post." 484 | msgstr "" 485 | 486 | #: premium/classes/hooks/class-hook-license-page-multisite.php:25 487 | #: premium/classes/hooks/class-hook-license-page.php:25 488 | msgid "License settings" 489 | msgstr "تنظیمات گواهی نامه" 490 | 491 | #: premium/classes/hooks/class-hook-sidebar.php:11 492 | msgid "For support questions please drop us an email at %s." 493 | msgstr "" 494 | 495 | #: premium/classes/license-manager/class-license-manager.php:137 496 | msgid "" 497 | "Warning! You're blocking external requests which means you won't be " 498 | "able to get %s updates. Please add %s to %s." 499 | msgstr "" 500 | 501 | #: premium/classes/license-manager/class-license-manager.php:178 502 | msgid "Your %s license has been activated. " 503 | msgstr "" 504 | 505 | #: premium/classes/license-manager/class-license-manager.php:182 506 | msgid "You have an unlimited license. " 507 | msgstr "" 508 | 509 | #: premium/classes/license-manager/class-license-manager.php:184 510 | msgid "You have used %d/%d activations. " 511 | msgstr "" 512 | 513 | #: premium/classes/license-manager/class-license-manager.php:189 514 | msgid "Did you know you can upgrade your license?" 515 | msgstr "" 516 | 517 | #: premium/classes/license-manager/class-license-manager.php:193 518 | msgid "" 519 | "Your license is expiring in %d days, would you like to extend" 520 | " it?" 521 | msgstr "" 522 | 523 | #: premium/classes/license-manager/class-license-manager.php:202 524 | msgid "" 525 | "You've reached your activation limit. You must upgrade your " 526 | "license to use it on this site." 527 | msgstr "" 528 | 529 | #: premium/classes/license-manager/class-license-manager.php:205 530 | msgid "" 531 | "Your license has expired. You must extend your license in" 532 | " order to use it again." 533 | msgstr "" 534 | 535 | #: premium/classes/license-manager/class-license-manager.php:208 536 | msgid "Failed to activate your license, your license key seems to be invalid." 537 | msgstr "" 538 | 539 | #: premium/classes/license-manager/class-license-manager.php:232 540 | msgid "Your %s license has been deactivated." 541 | msgstr "" 542 | 543 | #: premium/classes/license-manager/class-license-manager.php:234 544 | msgid "Failed to deactivate your %s license." 545 | msgstr "" 546 | 547 | #: premium/classes/license-manager/class-license-manager.php:269 548 | msgid "Request error: \"%s\" (%scommon license notices%s)" 549 | msgstr "" 550 | 551 | #: premium/classes/license-manager/class-license-manager.php:425 552 | msgid "%s: License Settings" 553 | msgstr "" 554 | 555 | #: premium/classes/license-manager/class-plugin-license-manager.php:73 556 | msgid "" 557 | "%s is network activated, you can manage your license in the network admin license page." 559 | msgstr "" 560 | 561 | #: premium/classes/license-manager/class-plugin-license-manager.php:75 562 | msgid "" 563 | "%s is network activated, please contact your site administrator to manage " 564 | "the license." 565 | msgstr "" 566 | 567 | #: premium/classes/license-manager/class-theme-license-manager.php:34 568 | #: premium/classes/license-manager/samples/sample-plugin.php:53 569 | msgid "%s License" 570 | msgstr "" 571 | 572 | #: premium/classes/license-manager/class-theme-license-manager.php:34 573 | msgid "Theme License" 574 | msgstr "" 575 | 576 | #: premium/classes/license-manager/class-theme-update-manager.php:96 577 | msgid "" 578 | "Updating this theme will lose any customizations you have made. 'Cancel' to " 579 | "stop, 'OK' to update." 580 | msgstr "" 581 | 582 | #: premium/classes/license-manager/class-theme-update-manager.php:101 583 | msgid "" 584 | "%s version %s is available. Check out what's new or update now." 587 | msgstr "" 588 | 589 | #: premium/classes/license-manager/class-update-manager.php:83 590 | msgid "" 591 | "%s failed to check for updates because of the following error: %s" 592 | msgstr "" 593 | 594 | #: premium/classes/license-manager/class-update-manager.php:153 595 | msgid "" 596 | "This site has not been activated properly on post-connector.com and thus " 597 | "cannot check for future updates. Please activate your site with a valid " 598 | "license key." 599 | msgstr "" 600 | 601 | #: premium/classes/license-manager/views/form.php:23 602 | msgid "License status" 603 | msgstr "" 604 | 605 | #: premium/classes/license-manager/views/form.php:33 606 | msgid "Toggle license status" 607 | msgstr "" 608 | 609 | #: premium/classes/license-manager/views/form.php:37 610 | msgid "Deactivate License" 611 | msgstr "غیرفعال کردن گواهی نامه" 612 | 613 | #: premium/classes/license-manager/views/form.php:38 614 | msgid "" 615 | "(deactivate your license so you can activate it on another WordPress site)" 616 | msgstr "" 617 | 618 | #: premium/classes/license-manager/views/form.php:42 619 | msgid "Activate License" 620 | msgstr "فعال سازی گواهی نامه" 621 | 622 | #: premium/classes/license-manager/views/form.php:44 623 | msgid "Please enter a license key in the field below first." 624 | msgstr "" 625 | 626 | #: premium/classes/license-manager/views/form.php:52 627 | msgid "License Key" 628 | msgstr "کد گواهی نامه" 629 | 630 | #: premium/classes/license-manager/views/form.php:54 631 | msgid "Paste your %s license key here.." 632 | msgstr "" 633 | 634 | #: premium/classes/license-manager/views/form.php:56 635 | msgid "You defined your license key using the %s PHP constant." 636 | msgstr "" 637 | 638 | #: premium/classes/license-manager/views/form.php:73 639 | msgid "Your %s license will expire on %s." 640 | msgstr "" 641 | 642 | #: premium/classes/license-manager/views/form.php:76 643 | msgid "%sRenew your license now%s." 644 | msgstr "" 645 | 646 | #: premium/classes/widgets/class-widget-show-parents.php:25 647 | msgid "Post Connector - Show Parents" 648 | msgstr "" 649 | 650 | #: premium/classes/widgets/class-widget-show-parents.php:26 651 | msgid "Display linked parents by a child or current post" 652 | msgstr "" 653 | 654 | #: premium/classes/widgets/class-widget-show-parents.php:153 655 | msgid "Child" 656 | msgstr "" 657 | 658 | #. Plugin URI of the plugin/theme 659 | msgid "https://www.post-connector.com/" 660 | msgstr "" 661 | 662 | #. Description of the plugin/theme 663 | msgid "With Post Connector you can easily link posts to each other." 664 | msgstr "" 665 | 666 | #. Author of the plugin/theme 667 | msgid "Never5" 668 | msgstr "" 669 | 670 | #. Author URI of the plugin/theme 671 | msgid "http://www.never5.com/" 672 | msgstr "" 673 | -------------------------------------------------------------------------------- /languages/post-connector-he_IL.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barrykooij/post-connector-old/20cabb84d60342946a283e685233de8db6058163/languages/post-connector-he_IL.mo -------------------------------------------------------------------------------- /languages/post-connector-he_IL.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) 2016 Never5 2 | # This file is distributed under the same license as the Post Connector Premium package. 3 | # Translators: 4 | msgid "" 5 | msgstr "" 6 | "Project-Id-Version: Post Connector\n" 7 | "Report-Msgid-Bugs-To: https://github.com/barrykooij/post-connector/issues\n" 8 | "POT-Creation-Date: 2016-01-21 12:53:41+00:00\n" 9 | "PO-Revision-Date: 2016-01-21 12:54+0000\n" 10 | "Last-Translator: Barry Kooij \n" 11 | "Language-Team: Hebrew (Israel) (http://www.transifex.com/barrykooijplugins/post-connector/language/he_IL/)\n" 12 | "MIME-Version: 1.0\n" 13 | "Content-Type: text/plain; charset=UTF-8\n" 14 | "Content-Transfer-Encoding: 8bit\n" 15 | "Language: he_IL\n" 16 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 17 | "X-Generator: grunt-wp-i18n 0.4.9\n" 18 | 19 | #: core/assets/js/tinymce/editor_plugin_lang.php:5 20 | msgid "Post Connector" 21 | msgstr "" 22 | 23 | #: core/assets/js/tinymce/editor_plugin_lang.php:6 24 | msgid "Show Children" 25 | msgstr "" 26 | 27 | #: core/classes/class-admin-menu.php:36 core/classes/class-admin-menu.php:340 28 | msgid "Add New" 29 | msgstr "הוסף חדש" 30 | 31 | #: core/classes/class-admin-menu.php:139 32 | msgid "Plugin version" 33 | msgstr "" 34 | 35 | #: core/classes/class-admin-menu.php:141 36 | msgid "PHP version:" 37 | msgstr "" 38 | 39 | #: core/classes/class-admin-menu.php:149 40 | msgid "More information" 41 | msgstr "" 42 | 43 | #: core/classes/class-admin-menu.php:151 44 | msgid "Configuration Guide" 45 | msgstr "" 46 | 47 | #: core/classes/class-admin-menu.php:153 48 | msgid "Change log" 49 | msgstr "" 50 | 51 | #: core/classes/class-admin-menu.php:155 52 | msgid "API" 53 | msgstr "" 54 | 55 | #: core/classes/class-admin-menu.php:159 56 | msgid "About the developer" 57 | msgstr "" 58 | 59 | #: core/classes/class-admin-menu.php:161 60 | msgid "" 61 | "Barry has been a WordPress deleveloper for years and is the author of " 62 | "various WordPress plugins." 63 | msgstr "" 64 | 65 | #: core/classes/class-admin-menu.php:163 66 | msgid "" 67 | "In his free time, Barry likes giving back by contributing various opensource" 68 | " projects. He also likes to visit and speak at WordPress meetups and " 69 | "WordCamps and is the organiser of the Dutch WordPress meetup in Tilburg." 70 | msgstr "" 71 | 72 | #: core/classes/class-admin-menu.php:165 73 | msgid "You can follow Barry on Twitter here." 74 | msgstr "" 75 | 76 | #: core/classes/class-admin-menu.php:181 77 | msgid "Connections" 78 | msgstr "" 79 | 80 | #: core/classes/class-admin-menu.php:188 81 | msgid "" 82 | "Post Connector connections are the connections you've created between post " 83 | "types. Post Connector will add a meta box to the post edit screens of these " 84 | "post types so you can link post to each other in minutes." 85 | msgstr "" 86 | 87 | #: core/classes/class-admin-menu.php:190 88 | msgid "Active Connections" 89 | msgstr "" 90 | 91 | #: core/classes/class-admin-menu.php:197 core/classes/class-admin-menu.php:203 92 | #: core/classes/class-admin-menu.php:248 93 | msgid "Create a new connection" 94 | msgstr "" 95 | 96 | #: core/classes/class-admin-menu.php:199 97 | msgid "" 98 | "Before you can link posts to each other you need to create a connection " 99 | "between their post types first. Click the 'Create a new connection' button " 100 | "to get started." 101 | msgstr "" 102 | 103 | #: core/classes/class-admin-menu.php:231 104 | msgid "Posts" 105 | msgstr "פוסטים" 106 | 107 | #: core/classes/class-admin-menu.php:232 108 | msgid "Pages" 109 | msgstr "עמודים" 110 | 111 | #: core/classes/class-admin-menu.php:246 112 | msgid "Edit connection" 113 | msgstr "" 114 | 115 | #: core/classes/class-admin-menu.php:267 116 | msgid "" 117 | "To create or edit a post connection, fill in the below form and press the " 118 | "'save connection' button." 119 | msgstr "" 120 | 121 | #: core/classes/class-admin-menu.php:269 122 | msgid "Main settings" 123 | msgstr "" 124 | 125 | #: core/classes/class-admin-menu.php:276 126 | msgid "Connection Title" 127 | msgstr "" 128 | 129 | #: core/classes/class-admin-menu.php:279 130 | #: core/classes/class-create-link-list-table.php:75 131 | #: core/classes/class-manage-links-list-table.php:20 132 | #: core/classes/widgets/class-widget-show-children.php:102 133 | #: premium/classes/widgets/class-widget-show-parents.php:126 134 | msgid "Title" 135 | msgstr "כותרת" 136 | 137 | #: core/classes/class-admin-menu.php:281 138 | msgid "" 139 | "The title of the connection, can be automatically shown above linked posts." 140 | msgstr "" 141 | 142 | #: core/classes/class-admin-menu.php:287 143 | msgid "Connection Slug" 144 | msgstr "" 145 | 146 | #: core/classes/class-admin-menu.php:289 147 | #: core/classes/class-manage-links-list-table.php:21 148 | msgid "Slug" 149 | msgstr "מחרוזת" 150 | 151 | #: core/classes/class-admin-menu.php:291 152 | msgid "" 153 | "Unique identifier of the connection, will automatically generate if left " 154 | "empty." 155 | msgstr "" 156 | 157 | #: core/classes/class-admin-menu.php:297 158 | msgid "Parent post type" 159 | msgstr "" 160 | 161 | #: core/classes/class-admin-menu.php:301 core/classes/class-admin-menu.php:319 162 | msgid "Select a post type" 163 | msgstr "בחר סוג פוסט" 164 | 165 | #: core/classes/class-admin-menu.php:315 166 | msgid "Child post type" 167 | msgstr "" 168 | 169 | #: core/classes/class-admin-menu.php:334 170 | msgid "Create new link settings" 171 | msgstr "" 172 | 173 | #: core/classes/class-admin-menu.php:342 174 | msgid "Allow users to create and link new posts." 175 | msgstr "" 176 | 177 | #: core/classes/class-admin-menu.php:348 178 | msgid "Add Existing" 179 | msgstr "הוסף קיים" 180 | 181 | #: core/classes/class-admin-menu.php:350 182 | msgid "Allow users to link existing posts." 183 | msgstr "" 184 | 185 | #: core/classes/class-admin-menu.php:358 186 | msgid "Automatically display linked children" 187 | msgstr "" 188 | 189 | #: core/classes/class-admin-menu.php:364 190 | msgid "Display linked children?" 191 | msgstr "" 192 | 193 | #: core/classes/class-admin-menu.php:366 194 | msgid "Display the linked child posts under each parent post." 195 | msgstr "" 196 | 197 | #: core/classes/class-admin-menu.php:393 198 | msgid "Save Connection" 199 | msgstr "" 200 | 201 | #: core/classes/class-create-link-list-table.php:46 202 | msgid "All" 203 | msgstr "" 204 | 205 | #: core/classes/class-create-link-list-table.php:177 206 | #: core/classes/class-create-link-list-table.php:212 207 | msgid "Link" 208 | msgstr "קישור" 209 | 210 | #: core/classes/class-javascript-strings.php:11 211 | msgid "Are you sure you want to delete this post?" 212 | msgstr "האם אתה בטוח שברצונך למחוק פוסט זה?" 213 | 214 | #: core/classes/class-javascript-strings.php:12 215 | msgid "Are you sure you want to delete this link?" 216 | msgstr "האם אתה בטוח שברצונך למחוק קישור זה?" 217 | 218 | #: core/classes/class-javascript-strings.php:13 219 | #: core/classes/widgets/class-widget-show-children.php:141 220 | #: premium/classes/widgets/class-widget-show-parents.php:165 221 | msgid "Current page" 222 | msgstr "" 223 | 224 | #: core/classes/class-manage-links-list-table.php:22 225 | msgid "Parent post" 226 | msgstr "פוסט-אב" 227 | 228 | #: core/classes/class-manage-links-list-table.php:23 229 | msgid "Child post" 230 | msgstr "פוסט-בת" 231 | 232 | #: core/classes/class-manage-links-list-table.php:93 233 | #: core/classes/meta-boxes/class-meta-box-manage.php:146 234 | #: premium/classes/meta-boxes/class-meta-box-manage-parent.php:126 235 | msgid "Edit" 236 | msgstr "עריכה" 237 | 238 | #: core/classes/class-manage-links-list-table.php:98 239 | #: core/classes/meta-boxes/class-meta-box-manage.php:149 240 | #: premium/classes/meta-boxes/class-meta-box-manage-parent.php:129 241 | msgid "Delete" 242 | msgstr "מחיקה" 243 | 244 | #: core/classes/class-post-link-manager.php:165 245 | msgid "Slug '%s' does not exists" 246 | msgstr "מחרוזת '%s' לא קיימת" 247 | 248 | #: core/classes/co-filters/class-co-filter-plugin-links.php:12 249 | #: premium/classes/filters/class-filter-plugin-links.php:13 250 | msgid "Manage" 251 | msgstr "נהל" 252 | 253 | #: core/classes/co-filters/class-co-filter-plugin-links.php:13 254 | msgid "GO PRO" 255 | msgstr "" 256 | 257 | #: core/classes/co-hooks/class-co-hook-menu.php:8 258 | msgid "Upgrade to Pro" 259 | msgstr "" 260 | 261 | #. Plugin Name of the plugin/theme 262 | msgid "Post Connector Premium" 263 | msgstr "" 264 | 265 | #: core/classes/co-hooks/class-co-hook-sidebar.php:12 266 | msgid "" 267 | "This plugin has an even better premium version, I am sure you will love it." 268 | msgstr "" 269 | 270 | #: core/classes/co-hooks/class-co-hook-sidebar.php:13 271 | msgid "" 272 | "Pro features include sortable post connections, backwards linking, a " 273 | "developer friendly API and priority support." 274 | msgstr "" 275 | 276 | #: core/classes/co-hooks/class-co-hook-sidebar.php:14 277 | msgid "%sMore information about Post Connector Premium »%s" 278 | msgstr "" 279 | 280 | #: core/classes/co-hooks/class-co-hook-sidebar.php:18 281 | #: premium/classes/hooks/class-hook-sidebar.php:9 282 | msgid "Looking for support?" 283 | msgstr "" 284 | 285 | #: core/classes/co-hooks/class-co-hook-sidebar.php:20 286 | msgid "For support please visit the WordPress.org forums." 287 | msgstr "" 288 | 289 | #: core/classes/co-hooks/class-co-hook-sidebar.php:22 290 | msgid "" 291 | "Did you know that Post Connector Premium clients get priority email support?" 292 | " %sClick here to upgrade.%s" 293 | msgstr "" 294 | 295 | #: core/classes/co-hooks/class-co-hook-sidebar.php:26 296 | msgid "Show a token of your appreciation" 297 | msgstr "" 298 | 299 | #: core/classes/co-hooks/class-co-hook-sidebar.php:28 300 | msgid "" 301 | "Leave a ★★★★★ plugin review on " 302 | "WordPress.org." 303 | msgstr "" 304 | 305 | #: core/classes/co-hooks/class-co-hook-sidebar.php:29 306 | msgid "Tweet about Post Connector." 307 | msgstr "" 308 | 309 | #: core/classes/co-hooks/class-co-hook-sidebar.php:30 310 | msgid "" 311 | "Review the plugin on your blog and link to the " 312 | "plugin page." 313 | msgstr "" 314 | 315 | #: core/classes/co-hooks/class-co-hook-sidebar.php:31 316 | msgid "" 317 | "Vote 'works' on the WordPress.org plugin " 318 | "page." 319 | msgstr "" 320 | 321 | #: core/classes/hooks/class-hook-footer-tickbox-shortcode.php:19 322 | msgid "Insert Post Connector show_children shortcode" 323 | msgstr "" 324 | 325 | #: core/classes/hooks/class-hook-footer-tickbox-shortcode.php:20 326 | msgid "Use the form below to generate a show_children shortcode." 327 | msgstr "" 328 | 329 | #: core/classes/hooks/class-hook-footer-tickbox-shortcode.php:32 330 | msgid "Connection" 331 | msgstr "" 332 | 333 | #: core/classes/hooks/class-hook-footer-tickbox-shortcode.php:39 334 | msgid "Select Connection" 335 | msgstr "" 336 | 337 | #: core/classes/hooks/class-hook-footer-tickbox-shortcode.php:49 338 | #: core/classes/widgets/class-widget-show-children.php:129 339 | msgid "Parent" 340 | msgstr "אב" 341 | 342 | #: core/classes/hooks/class-hook-footer-tickbox-shortcode.php:56 343 | #: core/classes/widgets/class-widget-show-children.php:156 344 | #: premium/classes/widgets/class-widget-show-parents.php:180 345 | msgid "Make children clickable" 346 | msgstr "" 347 | 348 | #: core/classes/hooks/class-hook-footer-tickbox-shortcode.php:64 349 | #: core/classes/widgets/class-widget-show-children.php:164 350 | #: premium/classes/widgets/class-widget-show-parents.php:188 351 | msgid "Display excerpt" 352 | msgstr "הצג תקציר" 353 | 354 | #: core/classes/hooks/class-hook-footer-tickbox-shortcode.php:78 355 | msgid "Insert Shortcode" 356 | msgstr "הכנס Shortcode" 357 | 358 | #: core/classes/hooks/class-hook-footer-tickbox-shortcode.php:79 359 | msgid "Cancel" 360 | msgstr "ביטול" 361 | 362 | #: core/classes/hooks/class-hook-link-post-screen.php:33 363 | #: core/classes/hooks/class-hook-link-post-screen.php:40 364 | #: core/classes/meta-boxes/class-meta-box-meta.php:51 365 | msgid "You're not allowed to do this." 366 | msgstr "אינך מורשה לעשות זאת" 367 | 368 | #: core/classes/hooks/class-hook-link-post-screen.php:203 369 | msgid "Cancel linking" 370 | msgstr "בטל קישור" 371 | 372 | #: core/classes/hooks/class-hook-link-post-screen.php:219 373 | msgid "Search" 374 | msgstr "חיפוש" 375 | 376 | #: core/classes/meta-boxes/class-meta-box-manage.php:86 377 | #: premium/classes/meta-boxes/class-meta-box-manage-parent.php:85 378 | msgid "Add new %s" 379 | msgstr "הוסף %s חדש" 380 | 381 | #: core/classes/meta-boxes/class-meta-box-manage.php:112 382 | #: premium/classes/meta-boxes/class-meta-box-manage-parent.php:103 383 | msgid "Add existing %s" 384 | msgstr "הוסף %s קיים" 385 | 386 | #: core/classes/meta-boxes/class-meta-box-manage.php:145 387 | #: premium/classes/meta-boxes/class-meta-box-manage-parent.php:125 388 | msgid "Edit this item" 389 | msgstr "ערוך פריט זה" 390 | 391 | #: core/classes/meta-boxes/class-meta-box-manage.php:148 392 | #: premium/classes/meta-boxes/class-meta-box-manage-parent.php:128 393 | msgid "Delete this item" 394 | msgstr "מחק פריט זה" 395 | 396 | #: core/classes/meta-boxes/class-meta-box-manage.php:162 397 | #: premium/classes/meta-boxes/class-meta-box-manage-parent.php:141 398 | msgid "No %s found." 399 | msgstr "לא נמצא %s." 400 | 401 | #: core/classes/widgets/class-widget-show-children.php:22 402 | msgid "Post Connector - Show Children" 403 | msgstr "" 404 | 405 | #: core/classes/widgets/class-widget-show-children.php:23 406 | msgid "Display linked children by a parent or current post" 407 | msgstr "" 408 | 409 | #: core/classes/widgets/class-widget-show-children.php:107 410 | #: premium/classes/widgets/class-widget-show-parents.php:131 411 | msgid "Post Link" 412 | msgstr "קישור פוסט" 413 | 414 | #: core/classes/widgets/class-widget-show-children.php:114 415 | #: premium/classes/widgets/class-widget-show-parents.php:138 416 | msgid "Select Post Link" 417 | msgstr "בחר קישור פוסט" 418 | 419 | #: core/classes/widgets/class-widget-show-children.php:172 420 | #: premium/classes/widgets/class-widget-show-parents.php:196 421 | msgid "Display thumbnail" 422 | msgstr "" 423 | 424 | #: premium/classes/filters/class-filter-plugin-links.php:12 425 | #: premium/classes/hooks/class-hook-license-page-multisite.php:12 426 | #: premium/classes/hooks/class-hook-license-page.php:12 427 | msgid "License" 428 | msgstr "רישיון" 429 | 430 | #: premium/classes/hooks/class-hook-connection-edit-display-linked-children-fields.php:14 431 | msgid "Display excerpt?" 432 | msgstr "" 433 | 434 | #: premium/classes/hooks/class-hook-connection-edit-display-linked-children-fields.php:16 435 | msgid "Display the excerpt of linked children." 436 | msgstr "" 437 | 438 | #: premium/classes/hooks/class-hook-connection-edit-display-linked-children-fields.php:22 439 | msgid "Display image?" 440 | msgstr "" 441 | 442 | #: premium/classes/hooks/class-hook-connection-edit-display-linked-children-fields.php:24 443 | msgid "Display the featured image of linked children." 444 | msgstr "" 445 | 446 | #: premium/classes/hooks/class-hook-connection-edit-premium-fields.php:14 447 | msgid "Automatically display linked parents" 448 | msgstr "" 449 | 450 | #: premium/classes/hooks/class-hook-connection-edit-premium-fields.php:20 451 | msgid "Display linked parents?" 452 | msgstr "" 453 | 454 | #: premium/classes/hooks/class-hook-connection-edit-premium-fields.php:22 455 | msgid "Display the linked parent posts under each child post." 456 | msgstr "" 457 | 458 | #: premium/classes/hooks/class-hook-connection-edit-premium-fields.php:30 459 | #: premium/classes/hooks/class-hook-connection-edit-premium-fields.php:36 460 | msgid "Sortable" 461 | msgstr "ניתן למיון" 462 | 463 | #: premium/classes/hooks/class-hook-connection-edit-premium-fields.php:39 464 | msgid "Allow users to sort children in the meta box at the edit post screen." 465 | msgstr "" 466 | 467 | #: premium/classes/hooks/class-hook-connection-edit-premium-fields.php:47 468 | #: premium/classes/meta-boxes/class-meta-box-manage-parent.php:34 469 | msgid "Backwards linking" 470 | msgstr "" 471 | 472 | #: premium/classes/hooks/class-hook-connection-edit-premium-fields.php:53 473 | msgid "Enable backwards linking" 474 | msgstr "" 475 | 476 | #: premium/classes/hooks/class-hook-connection-edit-premium-fields.php:55 477 | msgid "Enable Backwards linking." 478 | msgstr "" 479 | 480 | #: premium/classes/hooks/class-hook-connection-edit-premium-fields.php:58 481 | msgid "" 482 | "Backwards linking allows users to link parents to children from within the " 483 | "child post." 484 | msgstr "" 485 | 486 | #: premium/classes/hooks/class-hook-license-page-multisite.php:25 487 | #: premium/classes/hooks/class-hook-license-page.php:25 488 | msgid "License settings" 489 | msgstr "הגדרות רישיון" 490 | 491 | #: premium/classes/hooks/class-hook-sidebar.php:11 492 | msgid "For support questions please drop us an email at %s." 493 | msgstr "" 494 | 495 | #: premium/classes/license-manager/class-license-manager.php:137 496 | msgid "" 497 | "Warning! You're blocking external requests which means you won't be " 498 | "able to get %s updates. Please add %s to %s." 499 | msgstr "" 500 | 501 | #: premium/classes/license-manager/class-license-manager.php:178 502 | msgid "Your %s license has been activated. " 503 | msgstr "" 504 | 505 | #: premium/classes/license-manager/class-license-manager.php:182 506 | msgid "You have an unlimited license. " 507 | msgstr "" 508 | 509 | #: premium/classes/license-manager/class-license-manager.php:184 510 | msgid "You have used %d/%d activations. " 511 | msgstr "" 512 | 513 | #: premium/classes/license-manager/class-license-manager.php:189 514 | msgid "Did you know you can upgrade your license?" 515 | msgstr "" 516 | 517 | #: premium/classes/license-manager/class-license-manager.php:193 518 | msgid "" 519 | "Your license is expiring in %d days, would you like to extend" 520 | " it?" 521 | msgstr "" 522 | 523 | #: premium/classes/license-manager/class-license-manager.php:202 524 | msgid "" 525 | "You've reached your activation limit. You must upgrade your " 526 | "license to use it on this site." 527 | msgstr "" 528 | 529 | #: premium/classes/license-manager/class-license-manager.php:205 530 | msgid "" 531 | "Your license has expired. You must extend your license in" 532 | " order to use it again." 533 | msgstr "" 534 | 535 | #: premium/classes/license-manager/class-license-manager.php:208 536 | msgid "Failed to activate your license, your license key seems to be invalid." 537 | msgstr "" 538 | 539 | #: premium/classes/license-manager/class-license-manager.php:232 540 | msgid "Your %s license has been deactivated." 541 | msgstr "" 542 | 543 | #: premium/classes/license-manager/class-license-manager.php:234 544 | msgid "Failed to deactivate your %s license." 545 | msgstr "" 546 | 547 | #: premium/classes/license-manager/class-license-manager.php:269 548 | msgid "Request error: \"%s\" (%scommon license notices%s)" 549 | msgstr "" 550 | 551 | #: premium/classes/license-manager/class-license-manager.php:425 552 | msgid "%s: License Settings" 553 | msgstr "" 554 | 555 | #: premium/classes/license-manager/class-plugin-license-manager.php:73 556 | msgid "" 557 | "%s is network activated, you can manage your license in the network admin license page." 559 | msgstr "" 560 | 561 | #: premium/classes/license-manager/class-plugin-license-manager.php:75 562 | msgid "" 563 | "%s is network activated, please contact your site administrator to manage " 564 | "the license." 565 | msgstr "" 566 | 567 | #: premium/classes/license-manager/class-theme-license-manager.php:34 568 | #: premium/classes/license-manager/samples/sample-plugin.php:53 569 | msgid "%s License" 570 | msgstr "" 571 | 572 | #: premium/classes/license-manager/class-theme-license-manager.php:34 573 | msgid "Theme License" 574 | msgstr "" 575 | 576 | #: premium/classes/license-manager/class-theme-update-manager.php:96 577 | msgid "" 578 | "Updating this theme will lose any customizations you have made. 'Cancel' to " 579 | "stop, 'OK' to update." 580 | msgstr "" 581 | 582 | #: premium/classes/license-manager/class-theme-update-manager.php:101 583 | msgid "" 584 | "%s version %s is available. Check out what's new or update now." 587 | msgstr "" 588 | 589 | #: premium/classes/license-manager/class-update-manager.php:83 590 | msgid "" 591 | "%s failed to check for updates because of the following error: %s" 592 | msgstr "" 593 | 594 | #: premium/classes/license-manager/class-update-manager.php:153 595 | msgid "" 596 | "This site has not been activated properly on post-connector.com and thus " 597 | "cannot check for future updates. Please activate your site with a valid " 598 | "license key." 599 | msgstr "" 600 | 601 | #: premium/classes/license-manager/views/form.php:23 602 | msgid "License status" 603 | msgstr "" 604 | 605 | #: premium/classes/license-manager/views/form.php:33 606 | msgid "Toggle license status" 607 | msgstr "" 608 | 609 | #: premium/classes/license-manager/views/form.php:37 610 | msgid "Deactivate License" 611 | msgstr "הפסק פעילות רישיון" 612 | 613 | #: premium/classes/license-manager/views/form.php:38 614 | msgid "" 615 | "(deactivate your license so you can activate it on another WordPress site)" 616 | msgstr "" 617 | 618 | #: premium/classes/license-manager/views/form.php:42 619 | msgid "Activate License" 620 | msgstr "הפעל רישיון" 621 | 622 | #: premium/classes/license-manager/views/form.php:44 623 | msgid "Please enter a license key in the field below first." 624 | msgstr "" 625 | 626 | #: premium/classes/license-manager/views/form.php:52 627 | msgid "License Key" 628 | msgstr "מפתח רישיון" 629 | 630 | #: premium/classes/license-manager/views/form.php:54 631 | msgid "Paste your %s license key here.." 632 | msgstr "" 633 | 634 | #: premium/classes/license-manager/views/form.php:56 635 | msgid "You defined your license key using the %s PHP constant." 636 | msgstr "" 637 | 638 | #: premium/classes/license-manager/views/form.php:73 639 | msgid "Your %s license will expire on %s." 640 | msgstr "" 641 | 642 | #: premium/classes/license-manager/views/form.php:76 643 | msgid "%sRenew your license now%s." 644 | msgstr "" 645 | 646 | #: premium/classes/widgets/class-widget-show-parents.php:25 647 | msgid "Post Connector - Show Parents" 648 | msgstr "" 649 | 650 | #: premium/classes/widgets/class-widget-show-parents.php:26 651 | msgid "Display linked parents by a child or current post" 652 | msgstr "" 653 | 654 | #: premium/classes/widgets/class-widget-show-parents.php:153 655 | msgid "Child" 656 | msgstr "" 657 | 658 | #. Plugin URI of the plugin/theme 659 | msgid "https://www.post-connector.com/" 660 | msgstr "" 661 | 662 | #. Description of the plugin/theme 663 | msgid "With Post Connector you can easily link posts to each other." 664 | msgstr "" 665 | 666 | #. Author of the plugin/theme 667 | msgid "Never5" 668 | msgstr "" 669 | 670 | #. Author URI of the plugin/theme 671 | msgid "http://www.never5.com/" 672 | msgstr "" 673 | -------------------------------------------------------------------------------- /languages/post-connector-hi_IN.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barrykooij/post-connector-old/20cabb84d60342946a283e685233de8db6058163/languages/post-connector-hi_IN.mo -------------------------------------------------------------------------------- /languages/post-connector-hi_IN.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) 2016 Never5 2 | # This file is distributed under the same license as the Post Connector Premium package. 3 | # Translators: 4 | msgid "" 5 | msgstr "" 6 | "Project-Id-Version: Post Connector\n" 7 | "Report-Msgid-Bugs-To: https://github.com/barrykooij/post-connector/issues\n" 8 | "POT-Creation-Date: 2016-01-21 12:53:41+00:00\n" 9 | "PO-Revision-Date: 2016-01-21 12:54+0000\n" 10 | "Last-Translator: Barry Kooij \n" 11 | "Language-Team: Hindi (India) (http://www.transifex.com/barrykooijplugins/post-connector/language/hi_IN/)\n" 12 | "MIME-Version: 1.0\n" 13 | "Content-Type: text/plain; charset=UTF-8\n" 14 | "Content-Transfer-Encoding: 8bit\n" 15 | "Language: hi_IN\n" 16 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 17 | "X-Generator: grunt-wp-i18n 0.4.9\n" 18 | 19 | #: core/assets/js/tinymce/editor_plugin_lang.php:5 20 | msgid "Post Connector" 21 | msgstr "" 22 | 23 | #: core/assets/js/tinymce/editor_plugin_lang.php:6 24 | msgid "Show Children" 25 | msgstr "" 26 | 27 | #: core/classes/class-admin-menu.php:36 core/classes/class-admin-menu.php:340 28 | msgid "Add New" 29 | msgstr "नया जोड़ें" 30 | 31 | #: core/classes/class-admin-menu.php:139 32 | msgid "Plugin version" 33 | msgstr "" 34 | 35 | #: core/classes/class-admin-menu.php:141 36 | msgid "PHP version:" 37 | msgstr "" 38 | 39 | #: core/classes/class-admin-menu.php:149 40 | msgid "More information" 41 | msgstr "" 42 | 43 | #: core/classes/class-admin-menu.php:151 44 | msgid "Configuration Guide" 45 | msgstr "" 46 | 47 | #: core/classes/class-admin-menu.php:153 48 | msgid "Change log" 49 | msgstr "" 50 | 51 | #: core/classes/class-admin-menu.php:155 52 | msgid "API" 53 | msgstr "" 54 | 55 | #: core/classes/class-admin-menu.php:159 56 | msgid "About the developer" 57 | msgstr "" 58 | 59 | #: core/classes/class-admin-menu.php:161 60 | msgid "" 61 | "Barry has been a WordPress deleveloper for years and is the author of " 62 | "various WordPress plugins." 63 | msgstr "" 64 | 65 | #: core/classes/class-admin-menu.php:163 66 | msgid "" 67 | "In his free time, Barry likes giving back by contributing various opensource" 68 | " projects. He also likes to visit and speak at WordPress meetups and " 69 | "WordCamps and is the organiser of the Dutch WordPress meetup in Tilburg." 70 | msgstr "" 71 | 72 | #: core/classes/class-admin-menu.php:165 73 | msgid "You can follow Barry on Twitter here." 74 | msgstr "" 75 | 76 | #: core/classes/class-admin-menu.php:181 77 | msgid "Connections" 78 | msgstr "" 79 | 80 | #: core/classes/class-admin-menu.php:188 81 | msgid "" 82 | "Post Connector connections are the connections you've created between post " 83 | "types. Post Connector will add a meta box to the post edit screens of these " 84 | "post types so you can link post to each other in minutes." 85 | msgstr "" 86 | 87 | #: core/classes/class-admin-menu.php:190 88 | msgid "Active Connections" 89 | msgstr "" 90 | 91 | #: core/classes/class-admin-menu.php:197 core/classes/class-admin-menu.php:203 92 | #: core/classes/class-admin-menu.php:248 93 | msgid "Create a new connection" 94 | msgstr "" 95 | 96 | #: core/classes/class-admin-menu.php:199 97 | msgid "" 98 | "Before you can link posts to each other you need to create a connection " 99 | "between their post types first. Click the 'Create a new connection' button " 100 | "to get started." 101 | msgstr "" 102 | 103 | #: core/classes/class-admin-menu.php:231 104 | msgid "Posts" 105 | msgstr "लेख" 106 | 107 | #: core/classes/class-admin-menu.php:232 108 | msgid "Pages" 109 | msgstr "पृष्ठ" 110 | 111 | #: core/classes/class-admin-menu.php:246 112 | msgid "Edit connection" 113 | msgstr "" 114 | 115 | #: core/classes/class-admin-menu.php:267 116 | msgid "" 117 | "To create or edit a post connection, fill in the below form and press the " 118 | "'save connection' button." 119 | msgstr "" 120 | 121 | #: core/classes/class-admin-menu.php:269 122 | msgid "Main settings" 123 | msgstr "" 124 | 125 | #: core/classes/class-admin-menu.php:276 126 | msgid "Connection Title" 127 | msgstr "" 128 | 129 | #: core/classes/class-admin-menu.php:279 130 | #: core/classes/class-create-link-list-table.php:75 131 | #: core/classes/class-manage-links-list-table.php:20 132 | #: core/classes/widgets/class-widget-show-children.php:102 133 | #: premium/classes/widgets/class-widget-show-parents.php:126 134 | msgid "Title" 135 | msgstr "शीर्षक" 136 | 137 | #: core/classes/class-admin-menu.php:281 138 | msgid "" 139 | "The title of the connection, can be automatically shown above linked posts." 140 | msgstr "" 141 | 142 | #: core/classes/class-admin-menu.php:287 143 | msgid "Connection Slug" 144 | msgstr "" 145 | 146 | #: core/classes/class-admin-menu.php:289 147 | #: core/classes/class-manage-links-list-table.php:21 148 | msgid "Slug" 149 | msgstr "स्लग" 150 | 151 | #: core/classes/class-admin-menu.php:291 152 | msgid "" 153 | "Unique identifier of the connection, will automatically generate if left " 154 | "empty." 155 | msgstr "" 156 | 157 | #: core/classes/class-admin-menu.php:297 158 | msgid "Parent post type" 159 | msgstr "" 160 | 161 | #: core/classes/class-admin-menu.php:301 core/classes/class-admin-menu.php:319 162 | msgid "Select a post type" 163 | msgstr "लेख के प्रकार का चयन करें" 164 | 165 | #: core/classes/class-admin-menu.php:315 166 | msgid "Child post type" 167 | msgstr "" 168 | 169 | #: core/classes/class-admin-menu.php:334 170 | msgid "Create new link settings" 171 | msgstr "" 172 | 173 | #: core/classes/class-admin-menu.php:342 174 | msgid "Allow users to create and link new posts." 175 | msgstr "" 176 | 177 | #: core/classes/class-admin-menu.php:348 178 | msgid "Add Existing" 179 | msgstr "मौजूदा जमा" 180 | 181 | #: core/classes/class-admin-menu.php:350 182 | msgid "Allow users to link existing posts." 183 | msgstr "" 184 | 185 | #: core/classes/class-admin-menu.php:358 186 | msgid "Automatically display linked children" 187 | msgstr "" 188 | 189 | #: core/classes/class-admin-menu.php:364 190 | msgid "Display linked children?" 191 | msgstr "" 192 | 193 | #: core/classes/class-admin-menu.php:366 194 | msgid "Display the linked child posts under each parent post." 195 | msgstr "" 196 | 197 | #: core/classes/class-admin-menu.php:393 198 | msgid "Save Connection" 199 | msgstr "" 200 | 201 | #: core/classes/class-create-link-list-table.php:46 202 | msgid "All" 203 | msgstr "" 204 | 205 | #: core/classes/class-create-link-list-table.php:177 206 | #: core/classes/class-create-link-list-table.php:212 207 | msgid "Link" 208 | msgstr "लिंक" 209 | 210 | #: core/classes/class-javascript-strings.php:11 211 | msgid "Are you sure you want to delete this post?" 212 | msgstr "क्या आप वाकई इस लेख को हटाना चाहते हैं?" 213 | 214 | #: core/classes/class-javascript-strings.php:12 215 | msgid "Are you sure you want to delete this link?" 216 | msgstr "क्या आप इस लिंक को हटाना चाहते हैं?" 217 | 218 | #: core/classes/class-javascript-strings.php:13 219 | #: core/classes/widgets/class-widget-show-children.php:141 220 | #: premium/classes/widgets/class-widget-show-parents.php:165 221 | msgid "Current page" 222 | msgstr "" 223 | 224 | #: core/classes/class-manage-links-list-table.php:22 225 | msgid "Parent post" 226 | msgstr "मूल लेख" 227 | 228 | #: core/classes/class-manage-links-list-table.php:23 229 | msgid "Child post" 230 | msgstr "चाइल्ड लेख " 231 | 232 | #: core/classes/class-manage-links-list-table.php:93 233 | #: core/classes/meta-boxes/class-meta-box-manage.php:146 234 | #: premium/classes/meta-boxes/class-meta-box-manage-parent.php:126 235 | msgid "Edit" 236 | msgstr "संपादित करें" 237 | 238 | #: core/classes/class-manage-links-list-table.php:98 239 | #: core/classes/meta-boxes/class-meta-box-manage.php:149 240 | #: premium/classes/meta-boxes/class-meta-box-manage-parent.php:129 241 | msgid "Delete" 242 | msgstr "मिटाए" 243 | 244 | #: core/classes/class-post-link-manager.php:165 245 | msgid "Slug '%s' does not exists" 246 | msgstr "स्लग '%s' मौजूद नहीं है" 247 | 248 | #: core/classes/co-filters/class-co-filter-plugin-links.php:12 249 | #: premium/classes/filters/class-filter-plugin-links.php:13 250 | msgid "Manage" 251 | msgstr "प्रबंध " 252 | 253 | #: core/classes/co-filters/class-co-filter-plugin-links.php:13 254 | msgid "GO PRO" 255 | msgstr "" 256 | 257 | #: core/classes/co-hooks/class-co-hook-menu.php:8 258 | msgid "Upgrade to Pro" 259 | msgstr "" 260 | 261 | #. Plugin Name of the plugin/theme 262 | msgid "Post Connector Premium" 263 | msgstr "" 264 | 265 | #: core/classes/co-hooks/class-co-hook-sidebar.php:12 266 | msgid "" 267 | "This plugin has an even better premium version, I am sure you will love it." 268 | msgstr "" 269 | 270 | #: core/classes/co-hooks/class-co-hook-sidebar.php:13 271 | msgid "" 272 | "Pro features include sortable post connections, backwards linking, a " 273 | "developer friendly API and priority support." 274 | msgstr "" 275 | 276 | #: core/classes/co-hooks/class-co-hook-sidebar.php:14 277 | msgid "%sMore information about Post Connector Premium »%s" 278 | msgstr "" 279 | 280 | #: core/classes/co-hooks/class-co-hook-sidebar.php:18 281 | #: premium/classes/hooks/class-hook-sidebar.php:9 282 | msgid "Looking for support?" 283 | msgstr "" 284 | 285 | #: core/classes/co-hooks/class-co-hook-sidebar.php:20 286 | msgid "For support please visit the WordPress.org forums." 287 | msgstr "" 288 | 289 | #: core/classes/co-hooks/class-co-hook-sidebar.php:22 290 | msgid "" 291 | "Did you know that Post Connector Premium clients get priority email support?" 292 | " %sClick here to upgrade.%s" 293 | msgstr "" 294 | 295 | #: core/classes/co-hooks/class-co-hook-sidebar.php:26 296 | msgid "Show a token of your appreciation" 297 | msgstr "" 298 | 299 | #: core/classes/co-hooks/class-co-hook-sidebar.php:28 300 | msgid "" 301 | "Leave a ★★★★★ plugin review on " 302 | "WordPress.org." 303 | msgstr "" 304 | 305 | #: core/classes/co-hooks/class-co-hook-sidebar.php:29 306 | msgid "Tweet about Post Connector." 307 | msgstr "" 308 | 309 | #: core/classes/co-hooks/class-co-hook-sidebar.php:30 310 | msgid "" 311 | "Review the plugin on your blog and link to the " 312 | "plugin page." 313 | msgstr "" 314 | 315 | #: core/classes/co-hooks/class-co-hook-sidebar.php:31 316 | msgid "" 317 | "Vote 'works' on the WordPress.org plugin " 318 | "page." 319 | msgstr "" 320 | 321 | #: core/classes/hooks/class-hook-footer-tickbox-shortcode.php:19 322 | msgid "Insert Post Connector show_children shortcode" 323 | msgstr "" 324 | 325 | #: core/classes/hooks/class-hook-footer-tickbox-shortcode.php:20 326 | msgid "Use the form below to generate a show_children shortcode." 327 | msgstr "" 328 | 329 | #: core/classes/hooks/class-hook-footer-tickbox-shortcode.php:32 330 | msgid "Connection" 331 | msgstr "" 332 | 333 | #: core/classes/hooks/class-hook-footer-tickbox-shortcode.php:39 334 | msgid "Select Connection" 335 | msgstr "" 336 | 337 | #: core/classes/hooks/class-hook-footer-tickbox-shortcode.php:49 338 | #: core/classes/widgets/class-widget-show-children.php:129 339 | msgid "Parent" 340 | msgstr "मूल प्रमुख" 341 | 342 | #: core/classes/hooks/class-hook-footer-tickbox-shortcode.php:56 343 | #: core/classes/widgets/class-widget-show-children.php:156 344 | #: premium/classes/widgets/class-widget-show-parents.php:180 345 | msgid "Make children clickable" 346 | msgstr "" 347 | 348 | #: core/classes/hooks/class-hook-footer-tickbox-shortcode.php:64 349 | #: core/classes/widgets/class-widget-show-children.php:164 350 | #: premium/classes/widgets/class-widget-show-parents.php:188 351 | msgid "Display excerpt" 352 | msgstr "गद्य प्रदर्शित करें" 353 | 354 | #: core/classes/hooks/class-hook-footer-tickbox-shortcode.php:78 355 | msgid "Insert Shortcode" 356 | msgstr "शॉर्टकोड डालें" 357 | 358 | #: core/classes/hooks/class-hook-footer-tickbox-shortcode.php:79 359 | msgid "Cancel" 360 | msgstr "रद्द करें" 361 | 362 | #: core/classes/hooks/class-hook-link-post-screen.php:33 363 | #: core/classes/hooks/class-hook-link-post-screen.php:40 364 | #: core/classes/meta-boxes/class-meta-box-meta.php:51 365 | msgid "You're not allowed to do this." 366 | msgstr "आपको एसा करने की अनुमति नहीं है।" 367 | 368 | #: core/classes/hooks/class-hook-link-post-screen.php:203 369 | msgid "Cancel linking" 370 | msgstr "कड़ी जोडना रद्द" 371 | 372 | #: core/classes/hooks/class-hook-link-post-screen.php:219 373 | msgid "Search" 374 | msgstr "खोज" 375 | 376 | #: core/classes/meta-boxes/class-meta-box-manage.php:86 377 | #: premium/classes/meta-boxes/class-meta-box-manage-parent.php:85 378 | msgid "Add new %s" 379 | msgstr " जोड़ें नया %s" 380 | 381 | #: core/classes/meta-boxes/class-meta-box-manage.php:112 382 | #: premium/classes/meta-boxes/class-meta-box-manage-parent.php:103 383 | msgid "Add existing %s" 384 | msgstr "वर्तमान %s जोड़ें" 385 | 386 | #: core/classes/meta-boxes/class-meta-box-manage.php:145 387 | #: premium/classes/meta-boxes/class-meta-box-manage-parent.php:125 388 | msgid "Edit this item" 389 | msgstr "इस विषय को संपादित करें" 390 | 391 | #: core/classes/meta-boxes/class-meta-box-manage.php:148 392 | #: premium/classes/meta-boxes/class-meta-box-manage-parent.php:128 393 | msgid "Delete this item" 394 | msgstr "इस विषय को मिटाए" 395 | 396 | #: core/classes/meta-boxes/class-meta-box-manage.php:162 397 | #: premium/classes/meta-boxes/class-meta-box-manage-parent.php:141 398 | msgid "No %s found." 399 | msgstr "कोई %s नहीं मिला है।" 400 | 401 | #: core/classes/widgets/class-widget-show-children.php:22 402 | msgid "Post Connector - Show Children" 403 | msgstr "" 404 | 405 | #: core/classes/widgets/class-widget-show-children.php:23 406 | msgid "Display linked children by a parent or current post" 407 | msgstr "" 408 | 409 | #: core/classes/widgets/class-widget-show-children.php:107 410 | #: premium/classes/widgets/class-widget-show-parents.php:131 411 | msgid "Post Link" 412 | msgstr "लेख कड़ी " 413 | 414 | #: core/classes/widgets/class-widget-show-children.php:114 415 | #: premium/classes/widgets/class-widget-show-parents.php:138 416 | msgid "Select Post Link" 417 | msgstr "लेख कड़ी का चयन करें" 418 | 419 | #: core/classes/widgets/class-widget-show-children.php:172 420 | #: premium/classes/widgets/class-widget-show-parents.php:196 421 | msgid "Display thumbnail" 422 | msgstr "" 423 | 424 | #: premium/classes/filters/class-filter-plugin-links.php:12 425 | #: premium/classes/hooks/class-hook-license-page-multisite.php:12 426 | #: premium/classes/hooks/class-hook-license-page.php:12 427 | msgid "License" 428 | msgstr "लाइसेंस" 429 | 430 | #: premium/classes/hooks/class-hook-connection-edit-display-linked-children-fields.php:14 431 | msgid "Display excerpt?" 432 | msgstr "" 433 | 434 | #: premium/classes/hooks/class-hook-connection-edit-display-linked-children-fields.php:16 435 | msgid "Display the excerpt of linked children." 436 | msgstr "" 437 | 438 | #: premium/classes/hooks/class-hook-connection-edit-display-linked-children-fields.php:22 439 | msgid "Display image?" 440 | msgstr "" 441 | 442 | #: premium/classes/hooks/class-hook-connection-edit-display-linked-children-fields.php:24 443 | msgid "Display the featured image of linked children." 444 | msgstr "" 445 | 446 | #: premium/classes/hooks/class-hook-connection-edit-premium-fields.php:14 447 | msgid "Automatically display linked parents" 448 | msgstr "" 449 | 450 | #: premium/classes/hooks/class-hook-connection-edit-premium-fields.php:20 451 | msgid "Display linked parents?" 452 | msgstr "" 453 | 454 | #: premium/classes/hooks/class-hook-connection-edit-premium-fields.php:22 455 | msgid "Display the linked parent posts under each child post." 456 | msgstr "" 457 | 458 | #: premium/classes/hooks/class-hook-connection-edit-premium-fields.php:30 459 | #: premium/classes/hooks/class-hook-connection-edit-premium-fields.php:36 460 | msgid "Sortable" 461 | msgstr "वर्गीकृत" 462 | 463 | #: premium/classes/hooks/class-hook-connection-edit-premium-fields.php:39 464 | msgid "Allow users to sort children in the meta box at the edit post screen." 465 | msgstr "" 466 | 467 | #: premium/classes/hooks/class-hook-connection-edit-premium-fields.php:47 468 | #: premium/classes/meta-boxes/class-meta-box-manage-parent.php:34 469 | msgid "Backwards linking" 470 | msgstr "" 471 | 472 | #: premium/classes/hooks/class-hook-connection-edit-premium-fields.php:53 473 | msgid "Enable backwards linking" 474 | msgstr "" 475 | 476 | #: premium/classes/hooks/class-hook-connection-edit-premium-fields.php:55 477 | msgid "Enable Backwards linking." 478 | msgstr "" 479 | 480 | #: premium/classes/hooks/class-hook-connection-edit-premium-fields.php:58 481 | msgid "" 482 | "Backwards linking allows users to link parents to children from within the " 483 | "child post." 484 | msgstr "" 485 | 486 | #: premium/classes/hooks/class-hook-license-page-multisite.php:25 487 | #: premium/classes/hooks/class-hook-license-page.php:25 488 | msgid "License settings" 489 | msgstr "लाइसेंस सेटिंग्स" 490 | 491 | #: premium/classes/hooks/class-hook-sidebar.php:11 492 | msgid "For support questions please drop us an email at %s." 493 | msgstr "" 494 | 495 | #: premium/classes/license-manager/class-license-manager.php:137 496 | msgid "" 497 | "Warning! You're blocking external requests which means you won't be " 498 | "able to get %s updates. Please add %s to %s." 499 | msgstr "" 500 | 501 | #: premium/classes/license-manager/class-license-manager.php:178 502 | msgid "Your %s license has been activated. " 503 | msgstr "" 504 | 505 | #: premium/classes/license-manager/class-license-manager.php:182 506 | msgid "You have an unlimited license. " 507 | msgstr "" 508 | 509 | #: premium/classes/license-manager/class-license-manager.php:184 510 | msgid "You have used %d/%d activations. " 511 | msgstr "" 512 | 513 | #: premium/classes/license-manager/class-license-manager.php:189 514 | msgid "Did you know you can upgrade your license?" 515 | msgstr "" 516 | 517 | #: premium/classes/license-manager/class-license-manager.php:193 518 | msgid "" 519 | "Your license is expiring in %d days, would you like to extend" 520 | " it?" 521 | msgstr "" 522 | 523 | #: premium/classes/license-manager/class-license-manager.php:202 524 | msgid "" 525 | "You've reached your activation limit. You must upgrade your " 526 | "license to use it on this site." 527 | msgstr "" 528 | 529 | #: premium/classes/license-manager/class-license-manager.php:205 530 | msgid "" 531 | "Your license has expired. You must extend your license in" 532 | " order to use it again." 533 | msgstr "" 534 | 535 | #: premium/classes/license-manager/class-license-manager.php:208 536 | msgid "Failed to activate your license, your license key seems to be invalid." 537 | msgstr "" 538 | 539 | #: premium/classes/license-manager/class-license-manager.php:232 540 | msgid "Your %s license has been deactivated." 541 | msgstr "" 542 | 543 | #: premium/classes/license-manager/class-license-manager.php:234 544 | msgid "Failed to deactivate your %s license." 545 | msgstr "" 546 | 547 | #: premium/classes/license-manager/class-license-manager.php:269 548 | msgid "Request error: \"%s\" (%scommon license notices%s)" 549 | msgstr "" 550 | 551 | #: premium/classes/license-manager/class-license-manager.php:425 552 | msgid "%s: License Settings" 553 | msgstr "" 554 | 555 | #: premium/classes/license-manager/class-plugin-license-manager.php:73 556 | msgid "" 557 | "%s is network activated, you can manage your license in the network admin license page." 559 | msgstr "" 560 | 561 | #: premium/classes/license-manager/class-plugin-license-manager.php:75 562 | msgid "" 563 | "%s is network activated, please contact your site administrator to manage " 564 | "the license." 565 | msgstr "" 566 | 567 | #: premium/classes/license-manager/class-theme-license-manager.php:34 568 | #: premium/classes/license-manager/samples/sample-plugin.php:53 569 | msgid "%s License" 570 | msgstr "" 571 | 572 | #: premium/classes/license-manager/class-theme-license-manager.php:34 573 | msgid "Theme License" 574 | msgstr "" 575 | 576 | #: premium/classes/license-manager/class-theme-update-manager.php:96 577 | msgid "" 578 | "Updating this theme will lose any customizations you have made. 'Cancel' to " 579 | "stop, 'OK' to update." 580 | msgstr "" 581 | 582 | #: premium/classes/license-manager/class-theme-update-manager.php:101 583 | msgid "" 584 | "%s version %s is available. Check out what's new or update now." 587 | msgstr "" 588 | 589 | #: premium/classes/license-manager/class-update-manager.php:83 590 | msgid "" 591 | "%s failed to check for updates because of the following error: %s" 592 | msgstr "" 593 | 594 | #: premium/classes/license-manager/class-update-manager.php:153 595 | msgid "" 596 | "This site has not been activated properly on post-connector.com and thus " 597 | "cannot check for future updates. Please activate your site with a valid " 598 | "license key." 599 | msgstr "" 600 | 601 | #: premium/classes/license-manager/views/form.php:23 602 | msgid "License status" 603 | msgstr "" 604 | 605 | #: premium/classes/license-manager/views/form.php:33 606 | msgid "Toggle license status" 607 | msgstr "" 608 | 609 | #: premium/classes/license-manager/views/form.php:37 610 | msgid "Deactivate License" 611 | msgstr "लाइसेंस निष्क्रिय करें" 612 | 613 | #: premium/classes/license-manager/views/form.php:38 614 | msgid "" 615 | "(deactivate your license so you can activate it on another WordPress site)" 616 | msgstr "" 617 | 618 | #: premium/classes/license-manager/views/form.php:42 619 | msgid "Activate License" 620 | msgstr "लाइसेंस सक्रिय करें " 621 | 622 | #: premium/classes/license-manager/views/form.php:44 623 | msgid "Please enter a license key in the field below first." 624 | msgstr "" 625 | 626 | #: premium/classes/license-manager/views/form.php:52 627 | msgid "License Key" 628 | msgstr "लाइसेंस कुंजी " 629 | 630 | #: premium/classes/license-manager/views/form.php:54 631 | msgid "Paste your %s license key here.." 632 | msgstr "" 633 | 634 | #: premium/classes/license-manager/views/form.php:56 635 | msgid "You defined your license key using the %s PHP constant." 636 | msgstr "" 637 | 638 | #: premium/classes/license-manager/views/form.php:73 639 | msgid "Your %s license will expire on %s." 640 | msgstr "" 641 | 642 | #: premium/classes/license-manager/views/form.php:76 643 | msgid "%sRenew your license now%s." 644 | msgstr "" 645 | 646 | #: premium/classes/widgets/class-widget-show-parents.php:25 647 | msgid "Post Connector - Show Parents" 648 | msgstr "" 649 | 650 | #: premium/classes/widgets/class-widget-show-parents.php:26 651 | msgid "Display linked parents by a child or current post" 652 | msgstr "" 653 | 654 | #: premium/classes/widgets/class-widget-show-parents.php:153 655 | msgid "Child" 656 | msgstr "" 657 | 658 | #. Plugin URI of the plugin/theme 659 | msgid "https://www.post-connector.com/" 660 | msgstr "" 661 | 662 | #. Description of the plugin/theme 663 | msgid "With Post Connector you can easily link posts to each other." 664 | msgstr "" 665 | 666 | #. Author of the plugin/theme 667 | msgid "Never5" 668 | msgstr "" 669 | 670 | #. Author URI of the plugin/theme 671 | msgid "http://www.never5.com/" 672 | msgstr "" 673 | -------------------------------------------------------------------------------- /languages/post-connector-hu_HU.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barrykooij/post-connector-old/20cabb84d60342946a283e685233de8db6058163/languages/post-connector-hu_HU.mo -------------------------------------------------------------------------------- /languages/post-connector-hu_HU.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) 2016 Never5 2 | # This file is distributed under the same license as the Post Connector Premium package. 3 | # Translators: 4 | msgid "" 5 | msgstr "" 6 | "Project-Id-Version: Post Connector\n" 7 | "Report-Msgid-Bugs-To: https://github.com/barrykooij/post-connector/issues\n" 8 | "POT-Creation-Date: 2016-01-21 12:53:41+00:00\n" 9 | "PO-Revision-Date: 2016-01-21 12:54+0000\n" 10 | "Last-Translator: Barry Kooij \n" 11 | "Language-Team: Hungarian (Hungary) (http://www.transifex.com/barrykooijplugins/post-connector/language/hu_HU/)\n" 12 | "MIME-Version: 1.0\n" 13 | "Content-Type: text/plain; charset=UTF-8\n" 14 | "Content-Transfer-Encoding: 8bit\n" 15 | "Language: hu_HU\n" 16 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 17 | "X-Generator: grunt-wp-i18n 0.4.9\n" 18 | 19 | #: core/assets/js/tinymce/editor_plugin_lang.php:5 20 | msgid "Post Connector" 21 | msgstr "" 22 | 23 | #: core/assets/js/tinymce/editor_plugin_lang.php:6 24 | msgid "Show Children" 25 | msgstr "" 26 | 27 | #: core/classes/class-admin-menu.php:36 core/classes/class-admin-menu.php:340 28 | msgid "Add New" 29 | msgstr "Új hozzáadása" 30 | 31 | #: core/classes/class-admin-menu.php:139 32 | msgid "Plugin version" 33 | msgstr "" 34 | 35 | #: core/classes/class-admin-menu.php:141 36 | msgid "PHP version:" 37 | msgstr "" 38 | 39 | #: core/classes/class-admin-menu.php:149 40 | msgid "More information" 41 | msgstr "" 42 | 43 | #: core/classes/class-admin-menu.php:151 44 | msgid "Configuration Guide" 45 | msgstr "" 46 | 47 | #: core/classes/class-admin-menu.php:153 48 | msgid "Change log" 49 | msgstr "" 50 | 51 | #: core/classes/class-admin-menu.php:155 52 | msgid "API" 53 | msgstr "" 54 | 55 | #: core/classes/class-admin-menu.php:159 56 | msgid "About the developer" 57 | msgstr "" 58 | 59 | #: core/classes/class-admin-menu.php:161 60 | msgid "" 61 | "Barry has been a WordPress deleveloper for years and is the author of " 62 | "various WordPress plugins." 63 | msgstr "" 64 | 65 | #: core/classes/class-admin-menu.php:163 66 | msgid "" 67 | "In his free time, Barry likes giving back by contributing various opensource" 68 | " projects. He also likes to visit and speak at WordPress meetups and " 69 | "WordCamps and is the organiser of the Dutch WordPress meetup in Tilburg." 70 | msgstr "" 71 | 72 | #: core/classes/class-admin-menu.php:165 73 | msgid "You can follow Barry on Twitter here." 74 | msgstr "" 75 | 76 | #: core/classes/class-admin-menu.php:181 77 | msgid "Connections" 78 | msgstr "" 79 | 80 | #: core/classes/class-admin-menu.php:188 81 | msgid "" 82 | "Post Connector connections are the connections you've created between post " 83 | "types. Post Connector will add a meta box to the post edit screens of these " 84 | "post types so you can link post to each other in minutes." 85 | msgstr "" 86 | 87 | #: core/classes/class-admin-menu.php:190 88 | msgid "Active Connections" 89 | msgstr "" 90 | 91 | #: core/classes/class-admin-menu.php:197 core/classes/class-admin-menu.php:203 92 | #: core/classes/class-admin-menu.php:248 93 | msgid "Create a new connection" 94 | msgstr "" 95 | 96 | #: core/classes/class-admin-menu.php:199 97 | msgid "" 98 | "Before you can link posts to each other you need to create a connection " 99 | "between their post types first. Click the 'Create a new connection' button " 100 | "to get started." 101 | msgstr "" 102 | 103 | #: core/classes/class-admin-menu.php:231 104 | msgid "Posts" 105 | msgstr "Bejegyzések" 106 | 107 | #: core/classes/class-admin-menu.php:232 108 | msgid "Pages" 109 | msgstr "Oldalak" 110 | 111 | #: core/classes/class-admin-menu.php:246 112 | msgid "Edit connection" 113 | msgstr "" 114 | 115 | #: core/classes/class-admin-menu.php:267 116 | msgid "" 117 | "To create or edit a post connection, fill in the below form and press the " 118 | "'save connection' button." 119 | msgstr "" 120 | 121 | #: core/classes/class-admin-menu.php:269 122 | msgid "Main settings" 123 | msgstr "" 124 | 125 | #: core/classes/class-admin-menu.php:276 126 | msgid "Connection Title" 127 | msgstr "" 128 | 129 | #: core/classes/class-admin-menu.php:279 130 | #: core/classes/class-create-link-list-table.php:75 131 | #: core/classes/class-manage-links-list-table.php:20 132 | #: core/classes/widgets/class-widget-show-children.php:102 133 | #: premium/classes/widgets/class-widget-show-parents.php:126 134 | msgid "Title" 135 | msgstr "Cím" 136 | 137 | #: core/classes/class-admin-menu.php:281 138 | msgid "" 139 | "The title of the connection, can be automatically shown above linked posts." 140 | msgstr "" 141 | 142 | #: core/classes/class-admin-menu.php:287 143 | msgid "Connection Slug" 144 | msgstr "" 145 | 146 | #: core/classes/class-admin-menu.php:289 147 | #: core/classes/class-manage-links-list-table.php:21 148 | msgid "Slug" 149 | msgstr "Közvetlen hivatkozás" 150 | 151 | #: core/classes/class-admin-menu.php:291 152 | msgid "" 153 | "Unique identifier of the connection, will automatically generate if left " 154 | "empty." 155 | msgstr "" 156 | 157 | #: core/classes/class-admin-menu.php:297 158 | msgid "Parent post type" 159 | msgstr "" 160 | 161 | #: core/classes/class-admin-menu.php:301 core/classes/class-admin-menu.php:319 162 | msgid "Select a post type" 163 | msgstr "Válassz egy bejegyzés típust" 164 | 165 | #: core/classes/class-admin-menu.php:315 166 | msgid "Child post type" 167 | msgstr "" 168 | 169 | #: core/classes/class-admin-menu.php:334 170 | msgid "Create new link settings" 171 | msgstr "" 172 | 173 | #: core/classes/class-admin-menu.php:342 174 | msgid "Allow users to create and link new posts." 175 | msgstr "" 176 | 177 | #: core/classes/class-admin-menu.php:348 178 | msgid "Add Existing" 179 | msgstr "Létező hozzáadása" 180 | 181 | #: core/classes/class-admin-menu.php:350 182 | msgid "Allow users to link existing posts." 183 | msgstr "" 184 | 185 | #: core/classes/class-admin-menu.php:358 186 | msgid "Automatically display linked children" 187 | msgstr "" 188 | 189 | #: core/classes/class-admin-menu.php:364 190 | msgid "Display linked children?" 191 | msgstr "" 192 | 193 | #: core/classes/class-admin-menu.php:366 194 | msgid "Display the linked child posts under each parent post." 195 | msgstr "" 196 | 197 | #: core/classes/class-admin-menu.php:393 198 | msgid "Save Connection" 199 | msgstr "" 200 | 201 | #: core/classes/class-create-link-list-table.php:46 202 | msgid "All" 203 | msgstr "" 204 | 205 | #: core/classes/class-create-link-list-table.php:177 206 | #: core/classes/class-create-link-list-table.php:212 207 | msgid "Link" 208 | msgstr "Link" 209 | 210 | #: core/classes/class-javascript-strings.php:11 211 | msgid "Are you sure you want to delete this post?" 212 | msgstr "Biztos, hogy törölni akarod ezt a bejegyzést?" 213 | 214 | #: core/classes/class-javascript-strings.php:12 215 | msgid "Are you sure you want to delete this link?" 216 | msgstr "Biztos, hogy törölni akarod ezt a linket?" 217 | 218 | #: core/classes/class-javascript-strings.php:13 219 | #: core/classes/widgets/class-widget-show-children.php:141 220 | #: premium/classes/widgets/class-widget-show-parents.php:165 221 | msgid "Current page" 222 | msgstr "" 223 | 224 | #: core/classes/class-manage-links-list-table.php:22 225 | msgid "Parent post" 226 | msgstr "Szülő bejegyzés" 227 | 228 | #: core/classes/class-manage-links-list-table.php:23 229 | msgid "Child post" 230 | msgstr "Gyerek bejegyzés" 231 | 232 | #: core/classes/class-manage-links-list-table.php:93 233 | #: core/classes/meta-boxes/class-meta-box-manage.php:146 234 | #: premium/classes/meta-boxes/class-meta-box-manage-parent.php:126 235 | msgid "Edit" 236 | msgstr "Szerkesztés" 237 | 238 | #: core/classes/class-manage-links-list-table.php:98 239 | #: core/classes/meta-boxes/class-meta-box-manage.php:149 240 | #: premium/classes/meta-boxes/class-meta-box-manage-parent.php:129 241 | msgid "Delete" 242 | msgstr "Törlés" 243 | 244 | #: core/classes/class-post-link-manager.php:165 245 | msgid "Slug '%s' does not exists" 246 | msgstr "Ez a közvetlen hivatkozás nem létezik: '%s'" 247 | 248 | #: core/classes/co-filters/class-co-filter-plugin-links.php:12 249 | #: premium/classes/filters/class-filter-plugin-links.php:13 250 | msgid "Manage" 251 | msgstr "Kezelés" 252 | 253 | #: core/classes/co-filters/class-co-filter-plugin-links.php:13 254 | msgid "GO PRO" 255 | msgstr "" 256 | 257 | #: core/classes/co-hooks/class-co-hook-menu.php:8 258 | msgid "Upgrade to Pro" 259 | msgstr "" 260 | 261 | #. Plugin Name of the plugin/theme 262 | msgid "Post Connector Premium" 263 | msgstr "" 264 | 265 | #: core/classes/co-hooks/class-co-hook-sidebar.php:12 266 | msgid "" 267 | "This plugin has an even better premium version, I am sure you will love it." 268 | msgstr "" 269 | 270 | #: core/classes/co-hooks/class-co-hook-sidebar.php:13 271 | msgid "" 272 | "Pro features include sortable post connections, backwards linking, a " 273 | "developer friendly API and priority support." 274 | msgstr "" 275 | 276 | #: core/classes/co-hooks/class-co-hook-sidebar.php:14 277 | msgid "%sMore information about Post Connector Premium »%s" 278 | msgstr "" 279 | 280 | #: core/classes/co-hooks/class-co-hook-sidebar.php:18 281 | #: premium/classes/hooks/class-hook-sidebar.php:9 282 | msgid "Looking for support?" 283 | msgstr "" 284 | 285 | #: core/classes/co-hooks/class-co-hook-sidebar.php:20 286 | msgid "For support please visit the WordPress.org forums." 287 | msgstr "" 288 | 289 | #: core/classes/co-hooks/class-co-hook-sidebar.php:22 290 | msgid "" 291 | "Did you know that Post Connector Premium clients get priority email support?" 292 | " %sClick here to upgrade.%s" 293 | msgstr "" 294 | 295 | #: core/classes/co-hooks/class-co-hook-sidebar.php:26 296 | msgid "Show a token of your appreciation" 297 | msgstr "" 298 | 299 | #: core/classes/co-hooks/class-co-hook-sidebar.php:28 300 | msgid "" 301 | "Leave a ★★★★★ plugin review on " 302 | "WordPress.org." 303 | msgstr "" 304 | 305 | #: core/classes/co-hooks/class-co-hook-sidebar.php:29 306 | msgid "Tweet about Post Connector." 307 | msgstr "" 308 | 309 | #: core/classes/co-hooks/class-co-hook-sidebar.php:30 310 | msgid "" 311 | "Review the plugin on your blog and link to the " 312 | "plugin page." 313 | msgstr "" 314 | 315 | #: core/classes/co-hooks/class-co-hook-sidebar.php:31 316 | msgid "" 317 | "Vote 'works' on the WordPress.org plugin " 318 | "page." 319 | msgstr "" 320 | 321 | #: core/classes/hooks/class-hook-footer-tickbox-shortcode.php:19 322 | msgid "Insert Post Connector show_children shortcode" 323 | msgstr "" 324 | 325 | #: core/classes/hooks/class-hook-footer-tickbox-shortcode.php:20 326 | msgid "Use the form below to generate a show_children shortcode." 327 | msgstr "" 328 | 329 | #: core/classes/hooks/class-hook-footer-tickbox-shortcode.php:32 330 | msgid "Connection" 331 | msgstr "" 332 | 333 | #: core/classes/hooks/class-hook-footer-tickbox-shortcode.php:39 334 | msgid "Select Connection" 335 | msgstr "" 336 | 337 | #: core/classes/hooks/class-hook-footer-tickbox-shortcode.php:49 338 | #: core/classes/widgets/class-widget-show-children.php:129 339 | msgid "Parent" 340 | msgstr "Szülő" 341 | 342 | #: core/classes/hooks/class-hook-footer-tickbox-shortcode.php:56 343 | #: core/classes/widgets/class-widget-show-children.php:156 344 | #: premium/classes/widgets/class-widget-show-parents.php:180 345 | msgid "Make children clickable" 346 | msgstr "" 347 | 348 | #: core/classes/hooks/class-hook-footer-tickbox-shortcode.php:64 349 | #: core/classes/widgets/class-widget-show-children.php:164 350 | #: premium/classes/widgets/class-widget-show-parents.php:188 351 | msgid "Display excerpt" 352 | msgstr "Kivonat megjelenítése" 353 | 354 | #: core/classes/hooks/class-hook-footer-tickbox-shortcode.php:78 355 | msgid "Insert Shortcode" 356 | msgstr "Rövidkód beillesztése" 357 | 358 | #: core/classes/hooks/class-hook-footer-tickbox-shortcode.php:79 359 | msgid "Cancel" 360 | msgstr "Mégsem" 361 | 362 | #: core/classes/hooks/class-hook-link-post-screen.php:33 363 | #: core/classes/hooks/class-hook-link-post-screen.php:40 364 | #: core/classes/meta-boxes/class-meta-box-meta.php:51 365 | msgid "You're not allowed to do this." 366 | msgstr "Nincs jogosultságod ehhez." 367 | 368 | #: core/classes/hooks/class-hook-link-post-screen.php:203 369 | msgid "Cancel linking" 370 | msgstr "Összekötés törlése" 371 | 372 | #: core/classes/hooks/class-hook-link-post-screen.php:219 373 | msgid "Search" 374 | msgstr "Keresés" 375 | 376 | #: core/classes/meta-boxes/class-meta-box-manage.php:86 377 | #: premium/classes/meta-boxes/class-meta-box-manage-parent.php:85 378 | msgid "Add new %s" 379 | msgstr "Új %s hozzáadása" 380 | 381 | #: core/classes/meta-boxes/class-meta-box-manage.php:112 382 | #: premium/classes/meta-boxes/class-meta-box-manage-parent.php:103 383 | msgid "Add existing %s" 384 | msgstr "Létező %s hozzáadása" 385 | 386 | #: core/classes/meta-boxes/class-meta-box-manage.php:145 387 | #: premium/classes/meta-boxes/class-meta-box-manage-parent.php:125 388 | msgid "Edit this item" 389 | msgstr "Elem szerkesztése" 390 | 391 | #: core/classes/meta-boxes/class-meta-box-manage.php:148 392 | #: premium/classes/meta-boxes/class-meta-box-manage-parent.php:128 393 | msgid "Delete this item" 394 | msgstr "Elem törlése" 395 | 396 | #: core/classes/meta-boxes/class-meta-box-manage.php:162 397 | #: premium/classes/meta-boxes/class-meta-box-manage-parent.php:141 398 | msgid "No %s found." 399 | msgstr "Nincs %s találat." 400 | 401 | #: core/classes/widgets/class-widget-show-children.php:22 402 | msgid "Post Connector - Show Children" 403 | msgstr "" 404 | 405 | #: core/classes/widgets/class-widget-show-children.php:23 406 | msgid "Display linked children by a parent or current post" 407 | msgstr "" 408 | 409 | #: core/classes/widgets/class-widget-show-children.php:107 410 | #: premium/classes/widgets/class-widget-show-parents.php:131 411 | msgid "Post Link" 412 | msgstr "Bejegyzés link" 413 | 414 | #: core/classes/widgets/class-widget-show-children.php:114 415 | #: premium/classes/widgets/class-widget-show-parents.php:138 416 | msgid "Select Post Link" 417 | msgstr "Válassz bejegyzés linket" 418 | 419 | #: core/classes/widgets/class-widget-show-children.php:172 420 | #: premium/classes/widgets/class-widget-show-parents.php:196 421 | msgid "Display thumbnail" 422 | msgstr "" 423 | 424 | #: premium/classes/filters/class-filter-plugin-links.php:12 425 | #: premium/classes/hooks/class-hook-license-page-multisite.php:12 426 | #: premium/classes/hooks/class-hook-license-page.php:12 427 | msgid "License" 428 | msgstr "Licenc" 429 | 430 | #: premium/classes/hooks/class-hook-connection-edit-display-linked-children-fields.php:14 431 | msgid "Display excerpt?" 432 | msgstr "" 433 | 434 | #: premium/classes/hooks/class-hook-connection-edit-display-linked-children-fields.php:16 435 | msgid "Display the excerpt of linked children." 436 | msgstr "" 437 | 438 | #: premium/classes/hooks/class-hook-connection-edit-display-linked-children-fields.php:22 439 | msgid "Display image?" 440 | msgstr "" 441 | 442 | #: premium/classes/hooks/class-hook-connection-edit-display-linked-children-fields.php:24 443 | msgid "Display the featured image of linked children." 444 | msgstr "" 445 | 446 | #: premium/classes/hooks/class-hook-connection-edit-premium-fields.php:14 447 | msgid "Automatically display linked parents" 448 | msgstr "" 449 | 450 | #: premium/classes/hooks/class-hook-connection-edit-premium-fields.php:20 451 | msgid "Display linked parents?" 452 | msgstr "" 453 | 454 | #: premium/classes/hooks/class-hook-connection-edit-premium-fields.php:22 455 | msgid "Display the linked parent posts under each child post." 456 | msgstr "" 457 | 458 | #: premium/classes/hooks/class-hook-connection-edit-premium-fields.php:30 459 | #: premium/classes/hooks/class-hook-connection-edit-premium-fields.php:36 460 | msgid "Sortable" 461 | msgstr "Rendezhető" 462 | 463 | #: premium/classes/hooks/class-hook-connection-edit-premium-fields.php:39 464 | msgid "Allow users to sort children in the meta box at the edit post screen." 465 | msgstr "" 466 | 467 | #: premium/classes/hooks/class-hook-connection-edit-premium-fields.php:47 468 | #: premium/classes/meta-boxes/class-meta-box-manage-parent.php:34 469 | msgid "Backwards linking" 470 | msgstr "" 471 | 472 | #: premium/classes/hooks/class-hook-connection-edit-premium-fields.php:53 473 | msgid "Enable backwards linking" 474 | msgstr "" 475 | 476 | #: premium/classes/hooks/class-hook-connection-edit-premium-fields.php:55 477 | msgid "Enable Backwards linking." 478 | msgstr "" 479 | 480 | #: premium/classes/hooks/class-hook-connection-edit-premium-fields.php:58 481 | msgid "" 482 | "Backwards linking allows users to link parents to children from within the " 483 | "child post." 484 | msgstr "" 485 | 486 | #: premium/classes/hooks/class-hook-license-page-multisite.php:25 487 | #: premium/classes/hooks/class-hook-license-page.php:25 488 | msgid "License settings" 489 | msgstr "Licenc beállítások" 490 | 491 | #: premium/classes/hooks/class-hook-sidebar.php:11 492 | msgid "For support questions please drop us an email at %s." 493 | msgstr "" 494 | 495 | #: premium/classes/license-manager/class-license-manager.php:137 496 | msgid "" 497 | "Warning! You're blocking external requests which means you won't be " 498 | "able to get %s updates. Please add %s to %s." 499 | msgstr "" 500 | 501 | #: premium/classes/license-manager/class-license-manager.php:178 502 | msgid "Your %s license has been activated. " 503 | msgstr "" 504 | 505 | #: premium/classes/license-manager/class-license-manager.php:182 506 | msgid "You have an unlimited license. " 507 | msgstr "" 508 | 509 | #: premium/classes/license-manager/class-license-manager.php:184 510 | msgid "You have used %d/%d activations. " 511 | msgstr "" 512 | 513 | #: premium/classes/license-manager/class-license-manager.php:189 514 | msgid "Did you know you can upgrade your license?" 515 | msgstr "" 516 | 517 | #: premium/classes/license-manager/class-license-manager.php:193 518 | msgid "" 519 | "Your license is expiring in %d days, would you like to extend" 520 | " it?" 521 | msgstr "" 522 | 523 | #: premium/classes/license-manager/class-license-manager.php:202 524 | msgid "" 525 | "You've reached your activation limit. You must upgrade your " 526 | "license to use it on this site." 527 | msgstr "" 528 | 529 | #: premium/classes/license-manager/class-license-manager.php:205 530 | msgid "" 531 | "Your license has expired. You must extend your license in" 532 | " order to use it again." 533 | msgstr "" 534 | 535 | #: premium/classes/license-manager/class-license-manager.php:208 536 | msgid "Failed to activate your license, your license key seems to be invalid." 537 | msgstr "" 538 | 539 | #: premium/classes/license-manager/class-license-manager.php:232 540 | msgid "Your %s license has been deactivated." 541 | msgstr "" 542 | 543 | #: premium/classes/license-manager/class-license-manager.php:234 544 | msgid "Failed to deactivate your %s license." 545 | msgstr "" 546 | 547 | #: premium/classes/license-manager/class-license-manager.php:269 548 | msgid "Request error: \"%s\" (%scommon license notices%s)" 549 | msgstr "" 550 | 551 | #: premium/classes/license-manager/class-license-manager.php:425 552 | msgid "%s: License Settings" 553 | msgstr "" 554 | 555 | #: premium/classes/license-manager/class-plugin-license-manager.php:73 556 | msgid "" 557 | "%s is network activated, you can manage your license in the network admin license page." 559 | msgstr "" 560 | 561 | #: premium/classes/license-manager/class-plugin-license-manager.php:75 562 | msgid "" 563 | "%s is network activated, please contact your site administrator to manage " 564 | "the license." 565 | msgstr "" 566 | 567 | #: premium/classes/license-manager/class-theme-license-manager.php:34 568 | #: premium/classes/license-manager/samples/sample-plugin.php:53 569 | msgid "%s License" 570 | msgstr "" 571 | 572 | #: premium/classes/license-manager/class-theme-license-manager.php:34 573 | msgid "Theme License" 574 | msgstr "" 575 | 576 | #: premium/classes/license-manager/class-theme-update-manager.php:96 577 | msgid "" 578 | "Updating this theme will lose any customizations you have made. 'Cancel' to " 579 | "stop, 'OK' to update." 580 | msgstr "" 581 | 582 | #: premium/classes/license-manager/class-theme-update-manager.php:101 583 | msgid "" 584 | "%s version %s is available. Check out what's new or update now." 587 | msgstr "" 588 | 589 | #: premium/classes/license-manager/class-update-manager.php:83 590 | msgid "" 591 | "%s failed to check for updates because of the following error: %s" 592 | msgstr "" 593 | 594 | #: premium/classes/license-manager/class-update-manager.php:153 595 | msgid "" 596 | "This site has not been activated properly on post-connector.com and thus " 597 | "cannot check for future updates. Please activate your site with a valid " 598 | "license key." 599 | msgstr "" 600 | 601 | #: premium/classes/license-manager/views/form.php:23 602 | msgid "License status" 603 | msgstr "" 604 | 605 | #: premium/classes/license-manager/views/form.php:33 606 | msgid "Toggle license status" 607 | msgstr "" 608 | 609 | #: premium/classes/license-manager/views/form.php:37 610 | msgid "Deactivate License" 611 | msgstr "Licenc törlése" 612 | 613 | #: premium/classes/license-manager/views/form.php:38 614 | msgid "" 615 | "(deactivate your license so you can activate it on another WordPress site)" 616 | msgstr "" 617 | 618 | #: premium/classes/license-manager/views/form.php:42 619 | msgid "Activate License" 620 | msgstr "Licenc aktiválása" 621 | 622 | #: premium/classes/license-manager/views/form.php:44 623 | msgid "Please enter a license key in the field below first." 624 | msgstr "" 625 | 626 | #: premium/classes/license-manager/views/form.php:52 627 | msgid "License Key" 628 | msgstr "Licenc kulcs" 629 | 630 | #: premium/classes/license-manager/views/form.php:54 631 | msgid "Paste your %s license key here.." 632 | msgstr "" 633 | 634 | #: premium/classes/license-manager/views/form.php:56 635 | msgid "You defined your license key using the %s PHP constant." 636 | msgstr "" 637 | 638 | #: premium/classes/license-manager/views/form.php:73 639 | msgid "Your %s license will expire on %s." 640 | msgstr "" 641 | 642 | #: premium/classes/license-manager/views/form.php:76 643 | msgid "%sRenew your license now%s." 644 | msgstr "" 645 | 646 | #: premium/classes/widgets/class-widget-show-parents.php:25 647 | msgid "Post Connector - Show Parents" 648 | msgstr "" 649 | 650 | #: premium/classes/widgets/class-widget-show-parents.php:26 651 | msgid "Display linked parents by a child or current post" 652 | msgstr "" 653 | 654 | #: premium/classes/widgets/class-widget-show-parents.php:153 655 | msgid "Child" 656 | msgstr "" 657 | 658 | #. Plugin URI of the plugin/theme 659 | msgid "https://www.post-connector.com/" 660 | msgstr "" 661 | 662 | #. Description of the plugin/theme 663 | msgid "With Post Connector you can easily link posts to each other." 664 | msgstr "" 665 | 666 | #. Author of the plugin/theme 667 | msgid "Never5" 668 | msgstr "" 669 | 670 | #. Author URI of the plugin/theme 671 | msgid "http://www.never5.com/" 672 | msgstr "" 673 | -------------------------------------------------------------------------------- /languages/post-connector-it_IT.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barrykooij/post-connector-old/20cabb84d60342946a283e685233de8db6058163/languages/post-connector-it_IT.mo -------------------------------------------------------------------------------- /languages/post-connector-it_IT.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) 2016 Never5 2 | # This file is distributed under the same license as the Post Connector Premium package. 3 | # Translators: 4 | msgid "" 5 | msgstr "" 6 | "Project-Id-Version: Post Connector\n" 7 | "Report-Msgid-Bugs-To: https://github.com/barrykooij/post-connector/issues\n" 8 | "POT-Creation-Date: 2016-01-21 12:53:41+00:00\n" 9 | "PO-Revision-Date: 2016-01-21 12:54+0000\n" 10 | "Last-Translator: Barry Kooij \n" 11 | "Language-Team: Italian (Italy) (http://www.transifex.com/barrykooijplugins/post-connector/language/it_IT/)\n" 12 | "MIME-Version: 1.0\n" 13 | "Content-Type: text/plain; charset=UTF-8\n" 14 | "Content-Transfer-Encoding: 8bit\n" 15 | "Language: it_IT\n" 16 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 17 | "X-Generator: grunt-wp-i18n 0.4.9\n" 18 | 19 | #: core/assets/js/tinymce/editor_plugin_lang.php:5 20 | msgid "Post Connector" 21 | msgstr "" 22 | 23 | #: core/assets/js/tinymce/editor_plugin_lang.php:6 24 | msgid "Show Children" 25 | msgstr "" 26 | 27 | #: core/classes/class-admin-menu.php:36 core/classes/class-admin-menu.php:340 28 | msgid "Add New" 29 | msgstr "Aggiungi nuovo" 30 | 31 | #: core/classes/class-admin-menu.php:139 32 | msgid "Plugin version" 33 | msgstr "" 34 | 35 | #: core/classes/class-admin-menu.php:141 36 | msgid "PHP version:" 37 | msgstr "" 38 | 39 | #: core/classes/class-admin-menu.php:149 40 | msgid "More information" 41 | msgstr "" 42 | 43 | #: core/classes/class-admin-menu.php:151 44 | msgid "Configuration Guide" 45 | msgstr "" 46 | 47 | #: core/classes/class-admin-menu.php:153 48 | msgid "Change log" 49 | msgstr "" 50 | 51 | #: core/classes/class-admin-menu.php:155 52 | msgid "API" 53 | msgstr "" 54 | 55 | #: core/classes/class-admin-menu.php:159 56 | msgid "About the developer" 57 | msgstr "" 58 | 59 | #: core/classes/class-admin-menu.php:161 60 | msgid "" 61 | "Barry has been a WordPress deleveloper for years and is the author of " 62 | "various WordPress plugins." 63 | msgstr "" 64 | 65 | #: core/classes/class-admin-menu.php:163 66 | msgid "" 67 | "In his free time, Barry likes giving back by contributing various opensource" 68 | " projects. He also likes to visit and speak at WordPress meetups and " 69 | "WordCamps and is the organiser of the Dutch WordPress meetup in Tilburg." 70 | msgstr "" 71 | 72 | #: core/classes/class-admin-menu.php:165 73 | msgid "You can follow Barry on Twitter here." 74 | msgstr "" 75 | 76 | #: core/classes/class-admin-menu.php:181 77 | msgid "Connections" 78 | msgstr "" 79 | 80 | #: core/classes/class-admin-menu.php:188 81 | msgid "" 82 | "Post Connector connections are the connections you've created between post " 83 | "types. Post Connector will add a meta box to the post edit screens of these " 84 | "post types so you can link post to each other in minutes." 85 | msgstr "" 86 | 87 | #: core/classes/class-admin-menu.php:190 88 | msgid "Active Connections" 89 | msgstr "" 90 | 91 | #: core/classes/class-admin-menu.php:197 core/classes/class-admin-menu.php:203 92 | #: core/classes/class-admin-menu.php:248 93 | msgid "Create a new connection" 94 | msgstr "" 95 | 96 | #: core/classes/class-admin-menu.php:199 97 | msgid "" 98 | "Before you can link posts to each other you need to create a connection " 99 | "between their post types first. Click the 'Create a new connection' button " 100 | "to get started." 101 | msgstr "" 102 | 103 | #: core/classes/class-admin-menu.php:231 104 | msgid "Posts" 105 | msgstr "Articoli" 106 | 107 | #: core/classes/class-admin-menu.php:232 108 | msgid "Pages" 109 | msgstr "Pagine" 110 | 111 | #: core/classes/class-admin-menu.php:246 112 | msgid "Edit connection" 113 | msgstr "" 114 | 115 | #: core/classes/class-admin-menu.php:267 116 | msgid "" 117 | "To create or edit a post connection, fill in the below form and press the " 118 | "'save connection' button." 119 | msgstr "" 120 | 121 | #: core/classes/class-admin-menu.php:269 122 | msgid "Main settings" 123 | msgstr "" 124 | 125 | #: core/classes/class-admin-menu.php:276 126 | msgid "Connection Title" 127 | msgstr "" 128 | 129 | #: core/classes/class-admin-menu.php:279 130 | #: core/classes/class-create-link-list-table.php:75 131 | #: core/classes/class-manage-links-list-table.php:20 132 | #: core/classes/widgets/class-widget-show-children.php:102 133 | #: premium/classes/widgets/class-widget-show-parents.php:126 134 | msgid "Title" 135 | msgstr "Titolo" 136 | 137 | #: core/classes/class-admin-menu.php:281 138 | msgid "" 139 | "The title of the connection, can be automatically shown above linked posts." 140 | msgstr "" 141 | 142 | #: core/classes/class-admin-menu.php:287 143 | msgid "Connection Slug" 144 | msgstr "" 145 | 146 | #: core/classes/class-admin-menu.php:289 147 | #: core/classes/class-manage-links-list-table.php:21 148 | msgid "Slug" 149 | msgstr "Slug" 150 | 151 | #: core/classes/class-admin-menu.php:291 152 | msgid "" 153 | "Unique identifier of the connection, will automatically generate if left " 154 | "empty." 155 | msgstr "" 156 | 157 | #: core/classes/class-admin-menu.php:297 158 | msgid "Parent post type" 159 | msgstr "" 160 | 161 | #: core/classes/class-admin-menu.php:301 core/classes/class-admin-menu.php:319 162 | msgid "Select a post type" 163 | msgstr "Seleziona un post type" 164 | 165 | #: core/classes/class-admin-menu.php:315 166 | msgid "Child post type" 167 | msgstr "" 168 | 169 | #: core/classes/class-admin-menu.php:334 170 | msgid "Create new link settings" 171 | msgstr "" 172 | 173 | #: core/classes/class-admin-menu.php:342 174 | msgid "Allow users to create and link new posts." 175 | msgstr "" 176 | 177 | #: core/classes/class-admin-menu.php:348 178 | msgid "Add Existing" 179 | msgstr "Aggiungi esistente" 180 | 181 | #: core/classes/class-admin-menu.php:350 182 | msgid "Allow users to link existing posts." 183 | msgstr "" 184 | 185 | #: core/classes/class-admin-menu.php:358 186 | msgid "Automatically display linked children" 187 | msgstr "" 188 | 189 | #: core/classes/class-admin-menu.php:364 190 | msgid "Display linked children?" 191 | msgstr "" 192 | 193 | #: core/classes/class-admin-menu.php:366 194 | msgid "Display the linked child posts under each parent post." 195 | msgstr "" 196 | 197 | #: core/classes/class-admin-menu.php:393 198 | msgid "Save Connection" 199 | msgstr "" 200 | 201 | #: core/classes/class-create-link-list-table.php:46 202 | msgid "All" 203 | msgstr "" 204 | 205 | #: core/classes/class-create-link-list-table.php:177 206 | #: core/classes/class-create-link-list-table.php:212 207 | msgid "Link" 208 | msgstr "Link" 209 | 210 | #: core/classes/class-javascript-strings.php:11 211 | msgid "Are you sure you want to delete this post?" 212 | msgstr "Sei sicuro di voler cancellare questo post ?" 213 | 214 | #: core/classes/class-javascript-strings.php:12 215 | msgid "Are you sure you want to delete this link?" 216 | msgstr "Sei sicuro di vole cancellare questo link ?" 217 | 218 | #: core/classes/class-javascript-strings.php:13 219 | #: core/classes/widgets/class-widget-show-children.php:141 220 | #: premium/classes/widgets/class-widget-show-parents.php:165 221 | msgid "Current page" 222 | msgstr "" 223 | 224 | #: core/classes/class-manage-links-list-table.php:22 225 | msgid "Parent post" 226 | msgstr "Post genitore" 227 | 228 | #: core/classes/class-manage-links-list-table.php:23 229 | msgid "Child post" 230 | msgstr "Post Figlio" 231 | 232 | #: core/classes/class-manage-links-list-table.php:93 233 | #: core/classes/meta-boxes/class-meta-box-manage.php:146 234 | #: premium/classes/meta-boxes/class-meta-box-manage-parent.php:126 235 | msgid "Edit" 236 | msgstr "Modifica" 237 | 238 | #: core/classes/class-manage-links-list-table.php:98 239 | #: core/classes/meta-boxes/class-meta-box-manage.php:149 240 | #: premium/classes/meta-boxes/class-meta-box-manage-parent.php:129 241 | msgid "Delete" 242 | msgstr "Cancella" 243 | 244 | #: core/classes/class-post-link-manager.php:165 245 | msgid "Slug '%s' does not exists" 246 | msgstr "lo slug '%s' non esiste" 247 | 248 | #: core/classes/co-filters/class-co-filter-plugin-links.php:12 249 | #: premium/classes/filters/class-filter-plugin-links.php:13 250 | msgid "Manage" 251 | msgstr "Gestisci" 252 | 253 | #: core/classes/co-filters/class-co-filter-plugin-links.php:13 254 | msgid "GO PRO" 255 | msgstr "" 256 | 257 | #: core/classes/co-hooks/class-co-hook-menu.php:8 258 | msgid "Upgrade to Pro" 259 | msgstr "" 260 | 261 | #. Plugin Name of the plugin/theme 262 | msgid "Post Connector Premium" 263 | msgstr "" 264 | 265 | #: core/classes/co-hooks/class-co-hook-sidebar.php:12 266 | msgid "" 267 | "This plugin has an even better premium version, I am sure you will love it." 268 | msgstr "" 269 | 270 | #: core/classes/co-hooks/class-co-hook-sidebar.php:13 271 | msgid "" 272 | "Pro features include sortable post connections, backwards linking, a " 273 | "developer friendly API and priority support." 274 | msgstr "" 275 | 276 | #: core/classes/co-hooks/class-co-hook-sidebar.php:14 277 | msgid "%sMore information about Post Connector Premium »%s" 278 | msgstr "" 279 | 280 | #: core/classes/co-hooks/class-co-hook-sidebar.php:18 281 | #: premium/classes/hooks/class-hook-sidebar.php:9 282 | msgid "Looking for support?" 283 | msgstr "" 284 | 285 | #: core/classes/co-hooks/class-co-hook-sidebar.php:20 286 | msgid "For support please visit the WordPress.org forums." 287 | msgstr "" 288 | 289 | #: core/classes/co-hooks/class-co-hook-sidebar.php:22 290 | msgid "" 291 | "Did you know that Post Connector Premium clients get priority email support?" 292 | " %sClick here to upgrade.%s" 293 | msgstr "" 294 | 295 | #: core/classes/co-hooks/class-co-hook-sidebar.php:26 296 | msgid "Show a token of your appreciation" 297 | msgstr "" 298 | 299 | #: core/classes/co-hooks/class-co-hook-sidebar.php:28 300 | msgid "" 301 | "Leave a ★★★★★ plugin review on " 302 | "WordPress.org." 303 | msgstr "" 304 | 305 | #: core/classes/co-hooks/class-co-hook-sidebar.php:29 306 | msgid "Tweet about Post Connector." 307 | msgstr "" 308 | 309 | #: core/classes/co-hooks/class-co-hook-sidebar.php:30 310 | msgid "" 311 | "Review the plugin on your blog and link to the " 312 | "plugin page." 313 | msgstr "" 314 | 315 | #: core/classes/co-hooks/class-co-hook-sidebar.php:31 316 | msgid "" 317 | "Vote 'works' on the WordPress.org plugin " 318 | "page." 319 | msgstr "" 320 | 321 | #: core/classes/hooks/class-hook-footer-tickbox-shortcode.php:19 322 | msgid "Insert Post Connector show_children shortcode" 323 | msgstr "" 324 | 325 | #: core/classes/hooks/class-hook-footer-tickbox-shortcode.php:20 326 | msgid "Use the form below to generate a show_children shortcode." 327 | msgstr "" 328 | 329 | #: core/classes/hooks/class-hook-footer-tickbox-shortcode.php:32 330 | msgid "Connection" 331 | msgstr "" 332 | 333 | #: core/classes/hooks/class-hook-footer-tickbox-shortcode.php:39 334 | msgid "Select Connection" 335 | msgstr "" 336 | 337 | #: core/classes/hooks/class-hook-footer-tickbox-shortcode.php:49 338 | #: core/classes/widgets/class-widget-show-children.php:129 339 | msgid "Parent" 340 | msgstr "Genitore" 341 | 342 | #: core/classes/hooks/class-hook-footer-tickbox-shortcode.php:56 343 | #: core/classes/widgets/class-widget-show-children.php:156 344 | #: premium/classes/widgets/class-widget-show-parents.php:180 345 | msgid "Make children clickable" 346 | msgstr "" 347 | 348 | #: core/classes/hooks/class-hook-footer-tickbox-shortcode.php:64 349 | #: core/classes/widgets/class-widget-show-children.php:164 350 | #: premium/classes/widgets/class-widget-show-parents.php:188 351 | msgid "Display excerpt" 352 | msgstr "Fai vedere il riassunto" 353 | 354 | #: core/classes/hooks/class-hook-footer-tickbox-shortcode.php:78 355 | msgid "Insert Shortcode" 356 | msgstr "Inserisci Shortcode" 357 | 358 | #: core/classes/hooks/class-hook-footer-tickbox-shortcode.php:79 359 | msgid "Cancel" 360 | msgstr "Annulla" 361 | 362 | #: core/classes/hooks/class-hook-link-post-screen.php:33 363 | #: core/classes/hooks/class-hook-link-post-screen.php:40 364 | #: core/classes/meta-boxes/class-meta-box-meta.php:51 365 | msgid "You're not allowed to do this." 366 | msgstr "Non puoi farlo" 367 | 368 | #: core/classes/hooks/class-hook-link-post-screen.php:203 369 | msgid "Cancel linking" 370 | msgstr "Annulla il link" 371 | 372 | #: core/classes/hooks/class-hook-link-post-screen.php:219 373 | msgid "Search" 374 | msgstr "Cerca" 375 | 376 | #: core/classes/meta-boxes/class-meta-box-manage.php:86 377 | #: premium/classes/meta-boxes/class-meta-box-manage-parent.php:85 378 | msgid "Add new %s" 379 | msgstr "Aggiungi nuovo %s" 380 | 381 | #: core/classes/meta-boxes/class-meta-box-manage.php:112 382 | #: premium/classes/meta-boxes/class-meta-box-manage-parent.php:103 383 | msgid "Add existing %s" 384 | msgstr "Aggiungi nuovo %s" 385 | 386 | #: core/classes/meta-boxes/class-meta-box-manage.php:145 387 | #: premium/classes/meta-boxes/class-meta-box-manage-parent.php:125 388 | msgid "Edit this item" 389 | msgstr "Modifica questo oggetto" 390 | 391 | #: core/classes/meta-boxes/class-meta-box-manage.php:148 392 | #: premium/classes/meta-boxes/class-meta-box-manage-parent.php:128 393 | msgid "Delete this item" 394 | msgstr "Cancella questo oggetto" 395 | 396 | #: core/classes/meta-boxes/class-meta-box-manage.php:162 397 | #: premium/classes/meta-boxes/class-meta-box-manage-parent.php:141 398 | msgid "No %s found." 399 | msgstr "Non sono stati trovati %s" 400 | 401 | #: core/classes/widgets/class-widget-show-children.php:22 402 | msgid "Post Connector - Show Children" 403 | msgstr "" 404 | 405 | #: core/classes/widgets/class-widget-show-children.php:23 406 | msgid "Display linked children by a parent or current post" 407 | msgstr "" 408 | 409 | #: core/classes/widgets/class-widget-show-children.php:107 410 | #: premium/classes/widgets/class-widget-show-parents.php:131 411 | msgid "Post Link" 412 | msgstr "Link ad articolo" 413 | 414 | #: core/classes/widgets/class-widget-show-children.php:114 415 | #: premium/classes/widgets/class-widget-show-parents.php:138 416 | msgid "Select Post Link" 417 | msgstr "Seleziona i link dei post" 418 | 419 | #: core/classes/widgets/class-widget-show-children.php:172 420 | #: premium/classes/widgets/class-widget-show-parents.php:196 421 | msgid "Display thumbnail" 422 | msgstr "" 423 | 424 | #: premium/classes/filters/class-filter-plugin-links.php:12 425 | #: premium/classes/hooks/class-hook-license-page-multisite.php:12 426 | #: premium/classes/hooks/class-hook-license-page.php:12 427 | msgid "License" 428 | msgstr "Licenza" 429 | 430 | #: premium/classes/hooks/class-hook-connection-edit-display-linked-children-fields.php:14 431 | msgid "Display excerpt?" 432 | msgstr "" 433 | 434 | #: premium/classes/hooks/class-hook-connection-edit-display-linked-children-fields.php:16 435 | msgid "Display the excerpt of linked children." 436 | msgstr "" 437 | 438 | #: premium/classes/hooks/class-hook-connection-edit-display-linked-children-fields.php:22 439 | msgid "Display image?" 440 | msgstr "" 441 | 442 | #: premium/classes/hooks/class-hook-connection-edit-display-linked-children-fields.php:24 443 | msgid "Display the featured image of linked children." 444 | msgstr "" 445 | 446 | #: premium/classes/hooks/class-hook-connection-edit-premium-fields.php:14 447 | msgid "Automatically display linked parents" 448 | msgstr "" 449 | 450 | #: premium/classes/hooks/class-hook-connection-edit-premium-fields.php:20 451 | msgid "Display linked parents?" 452 | msgstr "" 453 | 454 | #: premium/classes/hooks/class-hook-connection-edit-premium-fields.php:22 455 | msgid "Display the linked parent posts under each child post." 456 | msgstr "" 457 | 458 | #: premium/classes/hooks/class-hook-connection-edit-premium-fields.php:30 459 | #: premium/classes/hooks/class-hook-connection-edit-premium-fields.php:36 460 | msgid "Sortable" 461 | msgstr "Ordinabile" 462 | 463 | #: premium/classes/hooks/class-hook-connection-edit-premium-fields.php:39 464 | msgid "Allow users to sort children in the meta box at the edit post screen." 465 | msgstr "" 466 | 467 | #: premium/classes/hooks/class-hook-connection-edit-premium-fields.php:47 468 | #: premium/classes/meta-boxes/class-meta-box-manage-parent.php:34 469 | msgid "Backwards linking" 470 | msgstr "" 471 | 472 | #: premium/classes/hooks/class-hook-connection-edit-premium-fields.php:53 473 | msgid "Enable backwards linking" 474 | msgstr "" 475 | 476 | #: premium/classes/hooks/class-hook-connection-edit-premium-fields.php:55 477 | msgid "Enable Backwards linking." 478 | msgstr "" 479 | 480 | #: premium/classes/hooks/class-hook-connection-edit-premium-fields.php:58 481 | msgid "" 482 | "Backwards linking allows users to link parents to children from within the " 483 | "child post." 484 | msgstr "" 485 | 486 | #: premium/classes/hooks/class-hook-license-page-multisite.php:25 487 | #: premium/classes/hooks/class-hook-license-page.php:25 488 | msgid "License settings" 489 | msgstr "configurazione Licenza" 490 | 491 | #: premium/classes/hooks/class-hook-sidebar.php:11 492 | msgid "For support questions please drop us an email at %s." 493 | msgstr "" 494 | 495 | #: premium/classes/license-manager/class-license-manager.php:137 496 | msgid "" 497 | "Warning! You're blocking external requests which means you won't be " 498 | "able to get %s updates. Please add %s to %s." 499 | msgstr "" 500 | 501 | #: premium/classes/license-manager/class-license-manager.php:178 502 | msgid "Your %s license has been activated. " 503 | msgstr "" 504 | 505 | #: premium/classes/license-manager/class-license-manager.php:182 506 | msgid "You have an unlimited license. " 507 | msgstr "" 508 | 509 | #: premium/classes/license-manager/class-license-manager.php:184 510 | msgid "You have used %d/%d activations. " 511 | msgstr "" 512 | 513 | #: premium/classes/license-manager/class-license-manager.php:189 514 | msgid "Did you know you can upgrade your license?" 515 | msgstr "" 516 | 517 | #: premium/classes/license-manager/class-license-manager.php:193 518 | msgid "" 519 | "Your license is expiring in %d days, would you like to extend" 520 | " it?" 521 | msgstr "" 522 | 523 | #: premium/classes/license-manager/class-license-manager.php:202 524 | msgid "" 525 | "You've reached your activation limit. You must upgrade your " 526 | "license to use it on this site." 527 | msgstr "" 528 | 529 | #: premium/classes/license-manager/class-license-manager.php:205 530 | msgid "" 531 | "Your license has expired. You must extend your license in" 532 | " order to use it again." 533 | msgstr "" 534 | 535 | #: premium/classes/license-manager/class-license-manager.php:208 536 | msgid "Failed to activate your license, your license key seems to be invalid." 537 | msgstr "" 538 | 539 | #: premium/classes/license-manager/class-license-manager.php:232 540 | msgid "Your %s license has been deactivated." 541 | msgstr "" 542 | 543 | #: premium/classes/license-manager/class-license-manager.php:234 544 | msgid "Failed to deactivate your %s license." 545 | msgstr "" 546 | 547 | #: premium/classes/license-manager/class-license-manager.php:269 548 | msgid "Request error: \"%s\" (%scommon license notices%s)" 549 | msgstr "" 550 | 551 | #: premium/classes/license-manager/class-license-manager.php:425 552 | msgid "%s: License Settings" 553 | msgstr "" 554 | 555 | #: premium/classes/license-manager/class-plugin-license-manager.php:73 556 | msgid "" 557 | "%s is network activated, you can manage your license in the network admin license page." 559 | msgstr "" 560 | 561 | #: premium/classes/license-manager/class-plugin-license-manager.php:75 562 | msgid "" 563 | "%s is network activated, please contact your site administrator to manage " 564 | "the license." 565 | msgstr "" 566 | 567 | #: premium/classes/license-manager/class-theme-license-manager.php:34 568 | #: premium/classes/license-manager/samples/sample-plugin.php:53 569 | msgid "%s License" 570 | msgstr "" 571 | 572 | #: premium/classes/license-manager/class-theme-license-manager.php:34 573 | msgid "Theme License" 574 | msgstr "" 575 | 576 | #: premium/classes/license-manager/class-theme-update-manager.php:96 577 | msgid "" 578 | "Updating this theme will lose any customizations you have made. 'Cancel' to " 579 | "stop, 'OK' to update." 580 | msgstr "" 581 | 582 | #: premium/classes/license-manager/class-theme-update-manager.php:101 583 | msgid "" 584 | "%s version %s is available. Check out what's new or update now." 587 | msgstr "" 588 | 589 | #: premium/classes/license-manager/class-update-manager.php:83 590 | msgid "" 591 | "%s failed to check for updates because of the following error: %s" 592 | msgstr "" 593 | 594 | #: premium/classes/license-manager/class-update-manager.php:153 595 | msgid "" 596 | "This site has not been activated properly on post-connector.com and thus " 597 | "cannot check for future updates. Please activate your site with a valid " 598 | "license key." 599 | msgstr "" 600 | 601 | #: premium/classes/license-manager/views/form.php:23 602 | msgid "License status" 603 | msgstr "" 604 | 605 | #: premium/classes/license-manager/views/form.php:33 606 | msgid "Toggle license status" 607 | msgstr "" 608 | 609 | #: premium/classes/license-manager/views/form.php:37 610 | msgid "Deactivate License" 611 | msgstr "Disattiva Licenza" 612 | 613 | #: premium/classes/license-manager/views/form.php:38 614 | msgid "" 615 | "(deactivate your license so you can activate it on another WordPress site)" 616 | msgstr "" 617 | 618 | #: premium/classes/license-manager/views/form.php:42 619 | msgid "Activate License" 620 | msgstr "Attiva licenza" 621 | 622 | #: premium/classes/license-manager/views/form.php:44 623 | msgid "Please enter a license key in the field below first." 624 | msgstr "" 625 | 626 | #: premium/classes/license-manager/views/form.php:52 627 | msgid "License Key" 628 | msgstr "Inserisci la tua licenza" 629 | 630 | #: premium/classes/license-manager/views/form.php:54 631 | msgid "Paste your %s license key here.." 632 | msgstr "" 633 | 634 | #: premium/classes/license-manager/views/form.php:56 635 | msgid "You defined your license key using the %s PHP constant." 636 | msgstr "" 637 | 638 | #: premium/classes/license-manager/views/form.php:73 639 | msgid "Your %s license will expire on %s." 640 | msgstr "" 641 | 642 | #: premium/classes/license-manager/views/form.php:76 643 | msgid "%sRenew your license now%s." 644 | msgstr "" 645 | 646 | #: premium/classes/widgets/class-widget-show-parents.php:25 647 | msgid "Post Connector - Show Parents" 648 | msgstr "" 649 | 650 | #: premium/classes/widgets/class-widget-show-parents.php:26 651 | msgid "Display linked parents by a child or current post" 652 | msgstr "" 653 | 654 | #: premium/classes/widgets/class-widget-show-parents.php:153 655 | msgid "Child" 656 | msgstr "" 657 | 658 | #. Plugin URI of the plugin/theme 659 | msgid "https://www.post-connector.com/" 660 | msgstr "" 661 | 662 | #. Description of the plugin/theme 663 | msgid "With Post Connector you can easily link posts to each other." 664 | msgstr "" 665 | 666 | #. Author of the plugin/theme 667 | msgid "Never5" 668 | msgstr "" 669 | 670 | #. Author URI of the plugin/theme 671 | msgid "http://www.never5.com/" 672 | msgstr "" 673 | -------------------------------------------------------------------------------- /languages/post-connector-nl_NL.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barrykooij/post-connector-old/20cabb84d60342946a283e685233de8db6058163/languages/post-connector-nl_NL.mo -------------------------------------------------------------------------------- /languages/post-connector-ro_RO.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barrykooij/post-connector-old/20cabb84d60342946a283e685233de8db6058163/languages/post-connector-ro_RO.mo -------------------------------------------------------------------------------- /languages/post-connector-ro_RO.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) 2016 Never5 2 | # This file is distributed under the same license as the Post Connector Premium package. 3 | # Translators: 4 | msgid "" 5 | msgstr "" 6 | "Project-Id-Version: Post Connector\n" 7 | "Report-Msgid-Bugs-To: https://github.com/barrykooij/post-connector/issues\n" 8 | "POT-Creation-Date: 2016-01-21 12:53:41+00:00\n" 9 | "PO-Revision-Date: 2016-01-21 12:54+0000\n" 10 | "Last-Translator: Barry Kooij \n" 11 | "Language-Team: Romanian (Romania) (http://www.transifex.com/barrykooijplugins/post-connector/language/ro_RO/)\n" 12 | "MIME-Version: 1.0\n" 13 | "Content-Type: text/plain; charset=UTF-8\n" 14 | "Content-Transfer-Encoding: 8bit\n" 15 | "Language: ro_RO\n" 16 | "Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" 17 | "X-Generator: grunt-wp-i18n 0.4.9\n" 18 | 19 | #: core/assets/js/tinymce/editor_plugin_lang.php:5 20 | msgid "Post Connector" 21 | msgstr "" 22 | 23 | #: core/assets/js/tinymce/editor_plugin_lang.php:6 24 | msgid "Show Children" 25 | msgstr "" 26 | 27 | #: core/classes/class-admin-menu.php:36 core/classes/class-admin-menu.php:340 28 | msgid "Add New" 29 | msgstr "Adaugă" 30 | 31 | #: core/classes/class-admin-menu.php:139 32 | msgid "Plugin version" 33 | msgstr "" 34 | 35 | #: core/classes/class-admin-menu.php:141 36 | msgid "PHP version:" 37 | msgstr "" 38 | 39 | #: core/classes/class-admin-menu.php:149 40 | msgid "More information" 41 | msgstr "" 42 | 43 | #: core/classes/class-admin-menu.php:151 44 | msgid "Configuration Guide" 45 | msgstr "" 46 | 47 | #: core/classes/class-admin-menu.php:153 48 | msgid "Change log" 49 | msgstr "" 50 | 51 | #: core/classes/class-admin-menu.php:155 52 | msgid "API" 53 | msgstr "" 54 | 55 | #: core/classes/class-admin-menu.php:159 56 | msgid "About the developer" 57 | msgstr "" 58 | 59 | #: core/classes/class-admin-menu.php:161 60 | msgid "" 61 | "Barry has been a WordPress deleveloper for years and is the author of " 62 | "various WordPress plugins." 63 | msgstr "" 64 | 65 | #: core/classes/class-admin-menu.php:163 66 | msgid "" 67 | "In his free time, Barry likes giving back by contributing various opensource" 68 | " projects. He also likes to visit and speak at WordPress meetups and " 69 | "WordCamps and is the organiser of the Dutch WordPress meetup in Tilburg." 70 | msgstr "" 71 | 72 | #: core/classes/class-admin-menu.php:165 73 | msgid "You can follow Barry on Twitter here." 74 | msgstr "" 75 | 76 | #: core/classes/class-admin-menu.php:181 77 | msgid "Connections" 78 | msgstr "" 79 | 80 | #: core/classes/class-admin-menu.php:188 81 | msgid "" 82 | "Post Connector connections are the connections you've created between post " 83 | "types. Post Connector will add a meta box to the post edit screens of these " 84 | "post types so you can link post to each other in minutes." 85 | msgstr "" 86 | 87 | #: core/classes/class-admin-menu.php:190 88 | msgid "Active Connections" 89 | msgstr "" 90 | 91 | #: core/classes/class-admin-menu.php:197 core/classes/class-admin-menu.php:203 92 | #: core/classes/class-admin-menu.php:248 93 | msgid "Create a new connection" 94 | msgstr "" 95 | 96 | #: core/classes/class-admin-menu.php:199 97 | msgid "" 98 | "Before you can link posts to each other you need to create a connection " 99 | "between their post types first. Click the 'Create a new connection' button " 100 | "to get started." 101 | msgstr "" 102 | 103 | #: core/classes/class-admin-menu.php:231 104 | msgid "Posts" 105 | msgstr "Articole" 106 | 107 | #: core/classes/class-admin-menu.php:232 108 | msgid "Pages" 109 | msgstr "Pagini" 110 | 111 | #: core/classes/class-admin-menu.php:246 112 | msgid "Edit connection" 113 | msgstr "" 114 | 115 | #: core/classes/class-admin-menu.php:267 116 | msgid "" 117 | "To create or edit a post connection, fill in the below form and press the " 118 | "'save connection' button." 119 | msgstr "" 120 | 121 | #: core/classes/class-admin-menu.php:269 122 | msgid "Main settings" 123 | msgstr "" 124 | 125 | #: core/classes/class-admin-menu.php:276 126 | msgid "Connection Title" 127 | msgstr "" 128 | 129 | #: core/classes/class-admin-menu.php:279 130 | #: core/classes/class-create-link-list-table.php:75 131 | #: core/classes/class-manage-links-list-table.php:20 132 | #: core/classes/widgets/class-widget-show-children.php:102 133 | #: premium/classes/widgets/class-widget-show-parents.php:126 134 | msgid "Title" 135 | msgstr "Titlu" 136 | 137 | #: core/classes/class-admin-menu.php:281 138 | msgid "" 139 | "The title of the connection, can be automatically shown above linked posts." 140 | msgstr "" 141 | 142 | #: core/classes/class-admin-menu.php:287 143 | msgid "Connection Slug" 144 | msgstr "" 145 | 146 | #: core/classes/class-admin-menu.php:289 147 | #: core/classes/class-manage-links-list-table.php:21 148 | msgid "Slug" 149 | msgstr "Adresă articol" 150 | 151 | #: core/classes/class-admin-menu.php:291 152 | msgid "" 153 | "Unique identifier of the connection, will automatically generate if left " 154 | "empty." 155 | msgstr "" 156 | 157 | #: core/classes/class-admin-menu.php:297 158 | msgid "Parent post type" 159 | msgstr "" 160 | 161 | #: core/classes/class-admin-menu.php:301 core/classes/class-admin-menu.php:319 162 | msgid "Select a post type" 163 | msgstr "Alege un tip de articol" 164 | 165 | #: core/classes/class-admin-menu.php:315 166 | msgid "Child post type" 167 | msgstr "" 168 | 169 | #: core/classes/class-admin-menu.php:334 170 | msgid "Create new link settings" 171 | msgstr "" 172 | 173 | #: core/classes/class-admin-menu.php:342 174 | msgid "Allow users to create and link new posts." 175 | msgstr "" 176 | 177 | #: core/classes/class-admin-menu.php:348 178 | msgid "Add Existing" 179 | msgstr "Adaugă existent" 180 | 181 | #: core/classes/class-admin-menu.php:350 182 | msgid "Allow users to link existing posts." 183 | msgstr "" 184 | 185 | #: core/classes/class-admin-menu.php:358 186 | msgid "Automatically display linked children" 187 | msgstr "" 188 | 189 | #: core/classes/class-admin-menu.php:364 190 | msgid "Display linked children?" 191 | msgstr "" 192 | 193 | #: core/classes/class-admin-menu.php:366 194 | msgid "Display the linked child posts under each parent post." 195 | msgstr "" 196 | 197 | #: core/classes/class-admin-menu.php:393 198 | msgid "Save Connection" 199 | msgstr "" 200 | 201 | #: core/classes/class-create-link-list-table.php:46 202 | msgid "All" 203 | msgstr "" 204 | 205 | #: core/classes/class-create-link-list-table.php:177 206 | #: core/classes/class-create-link-list-table.php:212 207 | msgid "Link" 208 | msgstr "Legătură" 209 | 210 | #: core/classes/class-javascript-strings.php:11 211 | msgid "Are you sure you want to delete this post?" 212 | msgstr "Ești sigur că vrei să ștergi acest articol?" 213 | 214 | #: core/classes/class-javascript-strings.php:12 215 | msgid "Are you sure you want to delete this link?" 216 | msgstr "Ești sigur că vrei să ștergi această legătură?" 217 | 218 | #: core/classes/class-javascript-strings.php:13 219 | #: core/classes/widgets/class-widget-show-children.php:141 220 | #: premium/classes/widgets/class-widget-show-parents.php:165 221 | msgid "Current page" 222 | msgstr "" 223 | 224 | #: core/classes/class-manage-links-list-table.php:22 225 | msgid "Parent post" 226 | msgstr "Articol părinte" 227 | 228 | #: core/classes/class-manage-links-list-table.php:23 229 | msgid "Child post" 230 | msgstr "Articol-descendent" 231 | 232 | #: core/classes/class-manage-links-list-table.php:93 233 | #: core/classes/meta-boxes/class-meta-box-manage.php:146 234 | #: premium/classes/meta-boxes/class-meta-box-manage-parent.php:126 235 | msgid "Edit" 236 | msgstr "Editează" 237 | 238 | #: core/classes/class-manage-links-list-table.php:98 239 | #: core/classes/meta-boxes/class-meta-box-manage.php:149 240 | #: premium/classes/meta-boxes/class-meta-box-manage-parent.php:129 241 | msgid "Delete" 242 | msgstr "Șterge" 243 | 244 | #: core/classes/class-post-link-manager.php:165 245 | msgid "Slug '%s' does not exists" 246 | msgstr "Adresa '%s' nu există" 247 | 248 | #: core/classes/co-filters/class-co-filter-plugin-links.php:12 249 | #: premium/classes/filters/class-filter-plugin-links.php:13 250 | msgid "Manage" 251 | msgstr "Gestionează" 252 | 253 | #: core/classes/co-filters/class-co-filter-plugin-links.php:13 254 | msgid "GO PRO" 255 | msgstr "" 256 | 257 | #: core/classes/co-hooks/class-co-hook-menu.php:8 258 | msgid "Upgrade to Pro" 259 | msgstr "" 260 | 261 | #. Plugin Name of the plugin/theme 262 | msgid "Post Connector Premium" 263 | msgstr "" 264 | 265 | #: core/classes/co-hooks/class-co-hook-sidebar.php:12 266 | msgid "" 267 | "This plugin has an even better premium version, I am sure you will love it." 268 | msgstr "" 269 | 270 | #: core/classes/co-hooks/class-co-hook-sidebar.php:13 271 | msgid "" 272 | "Pro features include sortable post connections, backwards linking, a " 273 | "developer friendly API and priority support." 274 | msgstr "" 275 | 276 | #: core/classes/co-hooks/class-co-hook-sidebar.php:14 277 | msgid "%sMore information about Post Connector Premium »%s" 278 | msgstr "" 279 | 280 | #: core/classes/co-hooks/class-co-hook-sidebar.php:18 281 | #: premium/classes/hooks/class-hook-sidebar.php:9 282 | msgid "Looking for support?" 283 | msgstr "" 284 | 285 | #: core/classes/co-hooks/class-co-hook-sidebar.php:20 286 | msgid "For support please visit the WordPress.org forums." 287 | msgstr "" 288 | 289 | #: core/classes/co-hooks/class-co-hook-sidebar.php:22 290 | msgid "" 291 | "Did you know that Post Connector Premium clients get priority email support?" 292 | " %sClick here to upgrade.%s" 293 | msgstr "" 294 | 295 | #: core/classes/co-hooks/class-co-hook-sidebar.php:26 296 | msgid "Show a token of your appreciation" 297 | msgstr "" 298 | 299 | #: core/classes/co-hooks/class-co-hook-sidebar.php:28 300 | msgid "" 301 | "Leave a ★★★★★ plugin review on " 302 | "WordPress.org." 303 | msgstr "" 304 | 305 | #: core/classes/co-hooks/class-co-hook-sidebar.php:29 306 | msgid "Tweet about Post Connector." 307 | msgstr "" 308 | 309 | #: core/classes/co-hooks/class-co-hook-sidebar.php:30 310 | msgid "" 311 | "Review the plugin on your blog and link to the " 312 | "plugin page." 313 | msgstr "" 314 | 315 | #: core/classes/co-hooks/class-co-hook-sidebar.php:31 316 | msgid "" 317 | "Vote 'works' on the WordPress.org plugin " 318 | "page." 319 | msgstr "" 320 | 321 | #: core/classes/hooks/class-hook-footer-tickbox-shortcode.php:19 322 | msgid "Insert Post Connector show_children shortcode" 323 | msgstr "" 324 | 325 | #: core/classes/hooks/class-hook-footer-tickbox-shortcode.php:20 326 | msgid "Use the form below to generate a show_children shortcode." 327 | msgstr "" 328 | 329 | #: core/classes/hooks/class-hook-footer-tickbox-shortcode.php:32 330 | msgid "Connection" 331 | msgstr "" 332 | 333 | #: core/classes/hooks/class-hook-footer-tickbox-shortcode.php:39 334 | msgid "Select Connection" 335 | msgstr "" 336 | 337 | #: core/classes/hooks/class-hook-footer-tickbox-shortcode.php:49 338 | #: core/classes/widgets/class-widget-show-children.php:129 339 | msgid "Parent" 340 | msgstr "Părinte" 341 | 342 | #: core/classes/hooks/class-hook-footer-tickbox-shortcode.php:56 343 | #: core/classes/widgets/class-widget-show-children.php:156 344 | #: premium/classes/widgets/class-widget-show-parents.php:180 345 | msgid "Make children clickable" 346 | msgstr "" 347 | 348 | #: core/classes/hooks/class-hook-footer-tickbox-shortcode.php:64 349 | #: core/classes/widgets/class-widget-show-children.php:164 350 | #: premium/classes/widgets/class-widget-show-parents.php:188 351 | msgid "Display excerpt" 352 | msgstr "Afișează sumarul" 353 | 354 | #: core/classes/hooks/class-hook-footer-tickbox-shortcode.php:78 355 | msgid "Insert Shortcode" 356 | msgstr "Inserează cod rapid" 357 | 358 | #: core/classes/hooks/class-hook-footer-tickbox-shortcode.php:79 359 | msgid "Cancel" 360 | msgstr "Anulează" 361 | 362 | #: core/classes/hooks/class-hook-link-post-screen.php:33 363 | #: core/classes/hooks/class-hook-link-post-screen.php:40 364 | #: core/classes/meta-boxes/class-meta-box-meta.php:51 365 | msgid "You're not allowed to do this." 366 | msgstr "Nu ai voie să faci asta." 367 | 368 | #: core/classes/hooks/class-hook-link-post-screen.php:203 369 | msgid "Cancel linking" 370 | msgstr "Șterge legătura" 371 | 372 | #: core/classes/hooks/class-hook-link-post-screen.php:219 373 | msgid "Search" 374 | msgstr "Caută" 375 | 376 | #: core/classes/meta-boxes/class-meta-box-manage.php:86 377 | #: premium/classes/meta-boxes/class-meta-box-manage-parent.php:85 378 | msgid "Add new %s" 379 | msgstr "Adaugă o %s" 380 | 381 | #: core/classes/meta-boxes/class-meta-box-manage.php:112 382 | #: premium/classes/meta-boxes/class-meta-box-manage-parent.php:103 383 | msgid "Add existing %s" 384 | msgstr "Adaugă %s existent(ă)" 385 | 386 | #: core/classes/meta-boxes/class-meta-box-manage.php:145 387 | #: premium/classes/meta-boxes/class-meta-box-manage-parent.php:125 388 | msgid "Edit this item" 389 | msgstr "Editează acest element" 390 | 391 | #: core/classes/meta-boxes/class-meta-box-manage.php:148 392 | #: premium/classes/meta-boxes/class-meta-box-manage-parent.php:128 393 | msgid "Delete this item" 394 | msgstr "Șterge acest element" 395 | 396 | #: core/classes/meta-boxes/class-meta-box-manage.php:162 397 | #: premium/classes/meta-boxes/class-meta-box-manage-parent.php:141 398 | msgid "No %s found." 399 | msgstr "Niciun %s găsit." 400 | 401 | #: core/classes/widgets/class-widget-show-children.php:22 402 | msgid "Post Connector - Show Children" 403 | msgstr "" 404 | 405 | #: core/classes/widgets/class-widget-show-children.php:23 406 | msgid "Display linked children by a parent or current post" 407 | msgstr "" 408 | 409 | #: core/classes/widgets/class-widget-show-children.php:107 410 | #: premium/classes/widgets/class-widget-show-parents.php:131 411 | msgid "Post Link" 412 | msgstr "Legătură articol" 413 | 414 | #: core/classes/widgets/class-widget-show-children.php:114 415 | #: premium/classes/widgets/class-widget-show-parents.php:138 416 | msgid "Select Post Link" 417 | msgstr "Alege link-ul articolului" 418 | 419 | #: core/classes/widgets/class-widget-show-children.php:172 420 | #: premium/classes/widgets/class-widget-show-parents.php:196 421 | msgid "Display thumbnail" 422 | msgstr "" 423 | 424 | #: premium/classes/filters/class-filter-plugin-links.php:12 425 | #: premium/classes/hooks/class-hook-license-page-multisite.php:12 426 | #: premium/classes/hooks/class-hook-license-page.php:12 427 | msgid "License" 428 | msgstr "Licență" 429 | 430 | #: premium/classes/hooks/class-hook-connection-edit-display-linked-children-fields.php:14 431 | msgid "Display excerpt?" 432 | msgstr "" 433 | 434 | #: premium/classes/hooks/class-hook-connection-edit-display-linked-children-fields.php:16 435 | msgid "Display the excerpt of linked children." 436 | msgstr "" 437 | 438 | #: premium/classes/hooks/class-hook-connection-edit-display-linked-children-fields.php:22 439 | msgid "Display image?" 440 | msgstr "" 441 | 442 | #: premium/classes/hooks/class-hook-connection-edit-display-linked-children-fields.php:24 443 | msgid "Display the featured image of linked children." 444 | msgstr "" 445 | 446 | #: premium/classes/hooks/class-hook-connection-edit-premium-fields.php:14 447 | msgid "Automatically display linked parents" 448 | msgstr "" 449 | 450 | #: premium/classes/hooks/class-hook-connection-edit-premium-fields.php:20 451 | msgid "Display linked parents?" 452 | msgstr "" 453 | 454 | #: premium/classes/hooks/class-hook-connection-edit-premium-fields.php:22 455 | msgid "Display the linked parent posts under each child post." 456 | msgstr "" 457 | 458 | #: premium/classes/hooks/class-hook-connection-edit-premium-fields.php:30 459 | #: premium/classes/hooks/class-hook-connection-edit-premium-fields.php:36 460 | msgid "Sortable" 461 | msgstr "Poate fi sortat" 462 | 463 | #: premium/classes/hooks/class-hook-connection-edit-premium-fields.php:39 464 | msgid "Allow users to sort children in the meta box at the edit post screen." 465 | msgstr "" 466 | 467 | #: premium/classes/hooks/class-hook-connection-edit-premium-fields.php:47 468 | #: premium/classes/meta-boxes/class-meta-box-manage-parent.php:34 469 | msgid "Backwards linking" 470 | msgstr "" 471 | 472 | #: premium/classes/hooks/class-hook-connection-edit-premium-fields.php:53 473 | msgid "Enable backwards linking" 474 | msgstr "" 475 | 476 | #: premium/classes/hooks/class-hook-connection-edit-premium-fields.php:55 477 | msgid "Enable Backwards linking." 478 | msgstr "" 479 | 480 | #: premium/classes/hooks/class-hook-connection-edit-premium-fields.php:58 481 | msgid "" 482 | "Backwards linking allows users to link parents to children from within the " 483 | "child post." 484 | msgstr "" 485 | 486 | #: premium/classes/hooks/class-hook-license-page-multisite.php:25 487 | #: premium/classes/hooks/class-hook-license-page.php:25 488 | msgid "License settings" 489 | msgstr "Setări licență" 490 | 491 | #: premium/classes/hooks/class-hook-sidebar.php:11 492 | msgid "For support questions please drop us an email at %s." 493 | msgstr "" 494 | 495 | #: premium/classes/license-manager/class-license-manager.php:137 496 | msgid "" 497 | "Warning! You're blocking external requests which means you won't be " 498 | "able to get %s updates. Please add %s to %s." 499 | msgstr "" 500 | 501 | #: premium/classes/license-manager/class-license-manager.php:178 502 | msgid "Your %s license has been activated. " 503 | msgstr "" 504 | 505 | #: premium/classes/license-manager/class-license-manager.php:182 506 | msgid "You have an unlimited license. " 507 | msgstr "" 508 | 509 | #: premium/classes/license-manager/class-license-manager.php:184 510 | msgid "You have used %d/%d activations. " 511 | msgstr "" 512 | 513 | #: premium/classes/license-manager/class-license-manager.php:189 514 | msgid "Did you know you can upgrade your license?" 515 | msgstr "" 516 | 517 | #: premium/classes/license-manager/class-license-manager.php:193 518 | msgid "" 519 | "Your license is expiring in %d days, would you like to extend" 520 | " it?" 521 | msgstr "" 522 | 523 | #: premium/classes/license-manager/class-license-manager.php:202 524 | msgid "" 525 | "You've reached your activation limit. You must upgrade your " 526 | "license to use it on this site." 527 | msgstr "" 528 | 529 | #: premium/classes/license-manager/class-license-manager.php:205 530 | msgid "" 531 | "Your license has expired. You must extend your license in" 532 | " order to use it again." 533 | msgstr "" 534 | 535 | #: premium/classes/license-manager/class-license-manager.php:208 536 | msgid "Failed to activate your license, your license key seems to be invalid." 537 | msgstr "" 538 | 539 | #: premium/classes/license-manager/class-license-manager.php:232 540 | msgid "Your %s license has been deactivated." 541 | msgstr "" 542 | 543 | #: premium/classes/license-manager/class-license-manager.php:234 544 | msgid "Failed to deactivate your %s license." 545 | msgstr "" 546 | 547 | #: premium/classes/license-manager/class-license-manager.php:269 548 | msgid "Request error: \"%s\" (%scommon license notices%s)" 549 | msgstr "" 550 | 551 | #: premium/classes/license-manager/class-license-manager.php:425 552 | msgid "%s: License Settings" 553 | msgstr "" 554 | 555 | #: premium/classes/license-manager/class-plugin-license-manager.php:73 556 | msgid "" 557 | "%s is network activated, you can manage your license in the network admin license page." 559 | msgstr "" 560 | 561 | #: premium/classes/license-manager/class-plugin-license-manager.php:75 562 | msgid "" 563 | "%s is network activated, please contact your site administrator to manage " 564 | "the license." 565 | msgstr "" 566 | 567 | #: premium/classes/license-manager/class-theme-license-manager.php:34 568 | #: premium/classes/license-manager/samples/sample-plugin.php:53 569 | msgid "%s License" 570 | msgstr "" 571 | 572 | #: premium/classes/license-manager/class-theme-license-manager.php:34 573 | msgid "Theme License" 574 | msgstr "" 575 | 576 | #: premium/classes/license-manager/class-theme-update-manager.php:96 577 | msgid "" 578 | "Updating this theme will lose any customizations you have made. 'Cancel' to " 579 | "stop, 'OK' to update." 580 | msgstr "" 581 | 582 | #: premium/classes/license-manager/class-theme-update-manager.php:101 583 | msgid "" 584 | "%s version %s is available. Check out what's new or update now." 587 | msgstr "" 588 | 589 | #: premium/classes/license-manager/class-update-manager.php:83 590 | msgid "" 591 | "%s failed to check for updates because of the following error: %s" 592 | msgstr "" 593 | 594 | #: premium/classes/license-manager/class-update-manager.php:153 595 | msgid "" 596 | "This site has not been activated properly on post-connector.com and thus " 597 | "cannot check for future updates. Please activate your site with a valid " 598 | "license key." 599 | msgstr "" 600 | 601 | #: premium/classes/license-manager/views/form.php:23 602 | msgid "License status" 603 | msgstr "" 604 | 605 | #: premium/classes/license-manager/views/form.php:33 606 | msgid "Toggle license status" 607 | msgstr "" 608 | 609 | #: premium/classes/license-manager/views/form.php:37 610 | msgid "Deactivate License" 611 | msgstr "Dezactivează licența" 612 | 613 | #: premium/classes/license-manager/views/form.php:38 614 | msgid "" 615 | "(deactivate your license so you can activate it on another WordPress site)" 616 | msgstr "" 617 | 618 | #: premium/classes/license-manager/views/form.php:42 619 | msgid "Activate License" 620 | msgstr "Activează licența" 621 | 622 | #: premium/classes/license-manager/views/form.php:44 623 | msgid "Please enter a license key in the field below first." 624 | msgstr "" 625 | 626 | #: premium/classes/license-manager/views/form.php:52 627 | msgid "License Key" 628 | msgstr "Cod licență" 629 | 630 | #: premium/classes/license-manager/views/form.php:54 631 | msgid "Paste your %s license key here.." 632 | msgstr "" 633 | 634 | #: premium/classes/license-manager/views/form.php:56 635 | msgid "You defined your license key using the %s PHP constant." 636 | msgstr "" 637 | 638 | #: premium/classes/license-manager/views/form.php:73 639 | msgid "Your %s license will expire on %s." 640 | msgstr "" 641 | 642 | #: premium/classes/license-manager/views/form.php:76 643 | msgid "%sRenew your license now%s." 644 | msgstr "" 645 | 646 | #: premium/classes/widgets/class-widget-show-parents.php:25 647 | msgid "Post Connector - Show Parents" 648 | msgstr "" 649 | 650 | #: premium/classes/widgets/class-widget-show-parents.php:26 651 | msgid "Display linked parents by a child or current post" 652 | msgstr "" 653 | 654 | #: premium/classes/widgets/class-widget-show-parents.php:153 655 | msgid "Child" 656 | msgstr "" 657 | 658 | #. Plugin URI of the plugin/theme 659 | msgid "https://www.post-connector.com/" 660 | msgstr "" 661 | 662 | #. Description of the plugin/theme 663 | msgid "With Post Connector you can easily link posts to each other." 664 | msgstr "" 665 | 666 | #. Author of the plugin/theme 667 | msgid "Never5" 668 | msgstr "" 669 | 670 | #. Author URI of the plugin/theme 671 | msgid "http://www.never5.com/" 672 | msgstr "" 673 | -------------------------------------------------------------------------------- /languages/post-connector-ru_RU.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barrykooij/post-connector-old/20cabb84d60342946a283e685233de8db6058163/languages/post-connector-ru_RU.mo -------------------------------------------------------------------------------- /languages/post-connector.pot: -------------------------------------------------------------------------------- 1 | # Copyright (C) 2016 Never5 2 | # This file is distributed under the same license as the Post Connector Premium package. 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: Post Connector Premium 1.6.11\n" 6 | "Report-Msgid-Bugs-To: https://github.com/barrykooij/post-connector/issues\n" 7 | "POT-Creation-Date: 2016-01-21 12:53:41+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-MO-DA HO:MI+ZONE\n" 12 | "Last-Translator: FULL NAME \n" 13 | "Language-Team: LANGUAGE \n" 14 | "X-Generator: grunt-wp-i18n 0.4.9\n" 15 | 16 | #: core/assets/js/tinymce/editor_plugin_lang.php:5 17 | msgid "Post Connector" 18 | msgstr "" 19 | 20 | #: core/assets/js/tinymce/editor_plugin_lang.php:6 21 | msgid "Show Children" 22 | msgstr "" 23 | 24 | #: core/classes/class-admin-menu.php:36 core/classes/class-admin-menu.php:340 25 | msgid "Add New" 26 | msgstr "" 27 | 28 | #: core/classes/class-admin-menu.php:139 29 | msgid "Plugin version" 30 | msgstr "" 31 | 32 | #: core/classes/class-admin-menu.php:141 33 | msgid "PHP version:" 34 | msgstr "" 35 | 36 | #: core/classes/class-admin-menu.php:149 37 | msgid "More information" 38 | msgstr "" 39 | 40 | #: core/classes/class-admin-menu.php:151 41 | msgid "Configuration Guide" 42 | msgstr "" 43 | 44 | #: core/classes/class-admin-menu.php:153 45 | msgid "Change log" 46 | msgstr "" 47 | 48 | #: core/classes/class-admin-menu.php:155 49 | msgid "API" 50 | msgstr "" 51 | 52 | #: core/classes/class-admin-menu.php:159 53 | msgid "About the developer" 54 | msgstr "" 55 | 56 | #: core/classes/class-admin-menu.php:161 57 | msgid "" 58 | "Barry has been a WordPress deleveloper for years and is the author of " 59 | "various WordPress plugins." 60 | msgstr "" 61 | 62 | #: core/classes/class-admin-menu.php:163 63 | msgid "" 64 | "In his free time, Barry likes giving back by contributing various " 65 | "opensource projects. He also likes to visit and speak at WordPress meetups " 66 | "and WordCamps and is the organiser of the Dutch WordPress meetup in Tilburg." 67 | msgstr "" 68 | 69 | #: core/classes/class-admin-menu.php:165 70 | msgid "You can follow Barry on Twitter here." 71 | msgstr "" 72 | 73 | #: core/classes/class-admin-menu.php:181 74 | msgid "Connections" 75 | msgstr "" 76 | 77 | #: core/classes/class-admin-menu.php:188 78 | msgid "" 79 | "Post Connector connections are the connections you've created between post " 80 | "types. Post Connector will add a meta box to the post edit screens of these " 81 | "post types so you can link post to each other in minutes." 82 | msgstr "" 83 | 84 | #: core/classes/class-admin-menu.php:190 85 | msgid "Active Connections" 86 | msgstr "" 87 | 88 | #: core/classes/class-admin-menu.php:197 core/classes/class-admin-menu.php:203 89 | #: core/classes/class-admin-menu.php:248 90 | msgid "Create a new connection" 91 | msgstr "" 92 | 93 | #: core/classes/class-admin-menu.php:199 94 | msgid "" 95 | "Before you can link posts to each other you need to create a connection " 96 | "between their post types first. Click the 'Create a new connection' button " 97 | "to get started." 98 | msgstr "" 99 | 100 | #: core/classes/class-admin-menu.php:231 101 | msgid "Posts" 102 | msgstr "" 103 | 104 | #: core/classes/class-admin-menu.php:232 105 | msgid "Pages" 106 | msgstr "" 107 | 108 | #: core/classes/class-admin-menu.php:246 109 | msgid "Edit connection" 110 | msgstr "" 111 | 112 | #: core/classes/class-admin-menu.php:267 113 | msgid "" 114 | "To create or edit a post connection, fill in the below form and press the " 115 | "'save connection' button." 116 | msgstr "" 117 | 118 | #: core/classes/class-admin-menu.php:269 119 | msgid "Main settings" 120 | msgstr "" 121 | 122 | #: core/classes/class-admin-menu.php:276 123 | msgid "Connection Title" 124 | msgstr "" 125 | 126 | #: core/classes/class-admin-menu.php:279 127 | #: core/classes/class-create-link-list-table.php:75 128 | #: core/classes/class-manage-links-list-table.php:20 129 | #: core/classes/widgets/class-widget-show-children.php:102 130 | #: premium/classes/widgets/class-widget-show-parents.php:126 131 | msgid "Title" 132 | msgstr "" 133 | 134 | #: core/classes/class-admin-menu.php:281 135 | msgid "The title of the connection, can be automatically shown above linked posts." 136 | msgstr "" 137 | 138 | #: core/classes/class-admin-menu.php:287 139 | msgid "Connection Slug" 140 | msgstr "" 141 | 142 | #: core/classes/class-admin-menu.php:289 143 | #: core/classes/class-manage-links-list-table.php:21 144 | msgid "Slug" 145 | msgstr "" 146 | 147 | #: core/classes/class-admin-menu.php:291 148 | msgid "" 149 | "Unique identifier of the connection, will automatically generate if left " 150 | "empty." 151 | msgstr "" 152 | 153 | #: core/classes/class-admin-menu.php:297 154 | msgid "Parent post type" 155 | msgstr "" 156 | 157 | #: core/classes/class-admin-menu.php:301 core/classes/class-admin-menu.php:319 158 | msgid "Select a post type" 159 | msgstr "" 160 | 161 | #: core/classes/class-admin-menu.php:315 162 | msgid "Child post type" 163 | msgstr "" 164 | 165 | #: core/classes/class-admin-menu.php:334 166 | msgid "Create new link settings" 167 | msgstr "" 168 | 169 | #: core/classes/class-admin-menu.php:342 170 | msgid "Allow users to create and link new posts." 171 | msgstr "" 172 | 173 | #: core/classes/class-admin-menu.php:348 174 | msgid "Add Existing" 175 | msgstr "" 176 | 177 | #: core/classes/class-admin-menu.php:350 178 | msgid "Allow users to link existing posts." 179 | msgstr "" 180 | 181 | #: core/classes/class-admin-menu.php:358 182 | msgid "Automatically display linked children" 183 | msgstr "" 184 | 185 | #: core/classes/class-admin-menu.php:364 186 | msgid "Display linked children?" 187 | msgstr "" 188 | 189 | #: core/classes/class-admin-menu.php:366 190 | msgid "Display the linked child posts under each parent post." 191 | msgstr "" 192 | 193 | #: core/classes/class-admin-menu.php:393 194 | msgid "Save Connection" 195 | msgstr "" 196 | 197 | #: core/classes/class-create-link-list-table.php:46 198 | msgid "All" 199 | msgstr "" 200 | 201 | #: core/classes/class-create-link-list-table.php:177 202 | #: core/classes/class-create-link-list-table.php:212 203 | msgid "Link" 204 | msgstr "" 205 | 206 | #: core/classes/class-javascript-strings.php:11 207 | msgid "Are you sure you want to delete this post?" 208 | msgstr "" 209 | 210 | #: core/classes/class-javascript-strings.php:12 211 | msgid "Are you sure you want to delete this link?" 212 | msgstr "" 213 | 214 | #: core/classes/class-javascript-strings.php:13 215 | #: core/classes/widgets/class-widget-show-children.php:141 216 | #: premium/classes/widgets/class-widget-show-parents.php:165 217 | msgid "Current page" 218 | msgstr "" 219 | 220 | #: core/classes/class-manage-links-list-table.php:22 221 | msgid "Parent post" 222 | msgstr "" 223 | 224 | #: core/classes/class-manage-links-list-table.php:23 225 | msgid "Child post" 226 | msgstr "" 227 | 228 | #: core/classes/class-manage-links-list-table.php:93 229 | #: core/classes/meta-boxes/class-meta-box-manage.php:146 230 | #: premium/classes/meta-boxes/class-meta-box-manage-parent.php:126 231 | msgid "Edit" 232 | msgstr "" 233 | 234 | #: core/classes/class-manage-links-list-table.php:98 235 | #: core/classes/meta-boxes/class-meta-box-manage.php:149 236 | #: premium/classes/meta-boxes/class-meta-box-manage-parent.php:129 237 | msgid "Delete" 238 | msgstr "" 239 | 240 | #: core/classes/class-post-link-manager.php:165 241 | msgid "Slug '%s' does not exists" 242 | msgstr "" 243 | 244 | #: core/classes/co-filters/class-co-filter-plugin-links.php:12 245 | #: premium/classes/filters/class-filter-plugin-links.php:13 246 | msgid "Manage" 247 | msgstr "" 248 | 249 | #: core/classes/co-filters/class-co-filter-plugin-links.php:13 250 | msgid "GO PRO" 251 | msgstr "" 252 | 253 | #: core/classes/co-hooks/class-co-hook-menu.php:8 254 | msgid "Upgrade to Pro" 255 | msgstr "" 256 | 257 | #. Plugin Name of the plugin/theme 258 | msgid "Post Connector Premium" 259 | msgstr "" 260 | 261 | #: core/classes/co-hooks/class-co-hook-sidebar.php:12 262 | msgid "This plugin has an even better premium version, I am sure you will love it." 263 | msgstr "" 264 | 265 | #: core/classes/co-hooks/class-co-hook-sidebar.php:13 266 | msgid "" 267 | "Pro features include sortable post connections, backwards linking, a " 268 | "developer friendly API and priority support." 269 | msgstr "" 270 | 271 | #: core/classes/co-hooks/class-co-hook-sidebar.php:14 272 | msgid "%sMore information about Post Connector Premium »%s" 273 | msgstr "" 274 | 275 | #: core/classes/co-hooks/class-co-hook-sidebar.php:18 276 | #: premium/classes/hooks/class-hook-sidebar.php:9 277 | msgid "Looking for support?" 278 | msgstr "" 279 | 280 | #: core/classes/co-hooks/class-co-hook-sidebar.php:20 281 | msgid "For support please visit the WordPress.org forums." 282 | msgstr "" 283 | 284 | #: core/classes/co-hooks/class-co-hook-sidebar.php:22 285 | msgid "" 286 | "Did you know that Post Connector Premium clients get priority email " 287 | "support? %sClick here to upgrade.%s" 288 | msgstr "" 289 | 290 | #: core/classes/co-hooks/class-co-hook-sidebar.php:26 291 | msgid "Show a token of your appreciation" 292 | msgstr "" 293 | 294 | #: core/classes/co-hooks/class-co-hook-sidebar.php:28 295 | msgid "" 296 | "Leave a ★★★★★ plugin review on " 297 | "WordPress.org." 298 | msgstr "" 299 | 300 | #: core/classes/co-hooks/class-co-hook-sidebar.php:29 301 | msgid "Tweet about Post Connector." 302 | msgstr "" 303 | 304 | #: core/classes/co-hooks/class-co-hook-sidebar.php:30 305 | msgid "" 306 | "Review the plugin on your blog and link to the " 307 | "plugin page." 308 | msgstr "" 309 | 310 | #: core/classes/co-hooks/class-co-hook-sidebar.php:31 311 | msgid "" 312 | "Vote 'works' on the WordPress.org plugin " 313 | "page." 314 | msgstr "" 315 | 316 | #: core/classes/hooks/class-hook-footer-tickbox-shortcode.php:19 317 | msgid "Insert Post Connector show_children shortcode" 318 | msgstr "" 319 | 320 | #: core/classes/hooks/class-hook-footer-tickbox-shortcode.php:20 321 | msgid "Use the form below to generate a show_children shortcode." 322 | msgstr "" 323 | 324 | #: core/classes/hooks/class-hook-footer-tickbox-shortcode.php:32 325 | msgid "Connection" 326 | msgstr "" 327 | 328 | #: core/classes/hooks/class-hook-footer-tickbox-shortcode.php:39 329 | msgid "Select Connection" 330 | msgstr "" 331 | 332 | #: core/classes/hooks/class-hook-footer-tickbox-shortcode.php:49 333 | #: core/classes/widgets/class-widget-show-children.php:129 334 | msgid "Parent" 335 | msgstr "" 336 | 337 | #: core/classes/hooks/class-hook-footer-tickbox-shortcode.php:56 338 | #: core/classes/widgets/class-widget-show-children.php:156 339 | #: premium/classes/widgets/class-widget-show-parents.php:180 340 | msgid "Make children clickable" 341 | msgstr "" 342 | 343 | #: core/classes/hooks/class-hook-footer-tickbox-shortcode.php:64 344 | #: core/classes/widgets/class-widget-show-children.php:164 345 | #: premium/classes/widgets/class-widget-show-parents.php:188 346 | msgid "Display excerpt" 347 | msgstr "" 348 | 349 | #: core/classes/hooks/class-hook-footer-tickbox-shortcode.php:78 350 | msgid "Insert Shortcode" 351 | msgstr "" 352 | 353 | #: core/classes/hooks/class-hook-footer-tickbox-shortcode.php:79 354 | msgid "Cancel" 355 | msgstr "" 356 | 357 | #: core/classes/hooks/class-hook-link-post-screen.php:33 358 | #: core/classes/hooks/class-hook-link-post-screen.php:40 359 | #: core/classes/meta-boxes/class-meta-box-meta.php:51 360 | msgid "You're not allowed to do this." 361 | msgstr "" 362 | 363 | #: core/classes/hooks/class-hook-link-post-screen.php:203 364 | msgid "Cancel linking" 365 | msgstr "" 366 | 367 | #: core/classes/hooks/class-hook-link-post-screen.php:219 368 | msgid "Search" 369 | msgstr "" 370 | 371 | #: core/classes/meta-boxes/class-meta-box-manage.php:86 372 | #: premium/classes/meta-boxes/class-meta-box-manage-parent.php:85 373 | msgid "Add new %s" 374 | msgstr "" 375 | 376 | #: core/classes/meta-boxes/class-meta-box-manage.php:112 377 | #: premium/classes/meta-boxes/class-meta-box-manage-parent.php:103 378 | msgid "Add existing %s" 379 | msgstr "" 380 | 381 | #: core/classes/meta-boxes/class-meta-box-manage.php:145 382 | #: premium/classes/meta-boxes/class-meta-box-manage-parent.php:125 383 | msgid "Edit this item" 384 | msgstr "" 385 | 386 | #: core/classes/meta-boxes/class-meta-box-manage.php:148 387 | #: premium/classes/meta-boxes/class-meta-box-manage-parent.php:128 388 | msgid "Delete this item" 389 | msgstr "" 390 | 391 | #: core/classes/meta-boxes/class-meta-box-manage.php:162 392 | #: premium/classes/meta-boxes/class-meta-box-manage-parent.php:141 393 | msgid "No %s found." 394 | msgstr "" 395 | 396 | #: core/classes/widgets/class-widget-show-children.php:22 397 | msgid "Post Connector - Show Children" 398 | msgstr "" 399 | 400 | #: core/classes/widgets/class-widget-show-children.php:23 401 | msgid "Display linked children by a parent or current post" 402 | msgstr "" 403 | 404 | #: core/classes/widgets/class-widget-show-children.php:107 405 | #: premium/classes/widgets/class-widget-show-parents.php:131 406 | msgid "Post Link" 407 | msgstr "" 408 | 409 | #: core/classes/widgets/class-widget-show-children.php:114 410 | #: premium/classes/widgets/class-widget-show-parents.php:138 411 | msgid "Select Post Link" 412 | msgstr "" 413 | 414 | #: core/classes/widgets/class-widget-show-children.php:172 415 | #: premium/classes/widgets/class-widget-show-parents.php:196 416 | msgid "Display thumbnail" 417 | msgstr "" 418 | 419 | #: premium/classes/filters/class-filter-plugin-links.php:12 420 | #: premium/classes/hooks/class-hook-license-page-multisite.php:12 421 | #: premium/classes/hooks/class-hook-license-page.php:12 422 | msgid "License" 423 | msgstr "" 424 | 425 | #: premium/classes/hooks/class-hook-connection-edit-display-linked-children-fields.php:14 426 | msgid "Display excerpt?" 427 | msgstr "" 428 | 429 | #: premium/classes/hooks/class-hook-connection-edit-display-linked-children-fields.php:16 430 | msgid "Display the excerpt of linked children." 431 | msgstr "" 432 | 433 | #: premium/classes/hooks/class-hook-connection-edit-display-linked-children-fields.php:22 434 | msgid "Display image?" 435 | msgstr "" 436 | 437 | #: premium/classes/hooks/class-hook-connection-edit-display-linked-children-fields.php:24 438 | msgid "Display the featured image of linked children." 439 | msgstr "" 440 | 441 | #: premium/classes/hooks/class-hook-connection-edit-premium-fields.php:14 442 | msgid "Automatically display linked parents" 443 | msgstr "" 444 | 445 | #: premium/classes/hooks/class-hook-connection-edit-premium-fields.php:20 446 | msgid "Display linked parents?" 447 | msgstr "" 448 | 449 | #: premium/classes/hooks/class-hook-connection-edit-premium-fields.php:22 450 | msgid "Display the linked parent posts under each child post." 451 | msgstr "" 452 | 453 | #: premium/classes/hooks/class-hook-connection-edit-premium-fields.php:30 454 | #: premium/classes/hooks/class-hook-connection-edit-premium-fields.php:36 455 | msgid "Sortable" 456 | msgstr "" 457 | 458 | #: premium/classes/hooks/class-hook-connection-edit-premium-fields.php:39 459 | msgid "Allow users to sort children in the meta box at the edit post screen." 460 | msgstr "" 461 | 462 | #: premium/classes/hooks/class-hook-connection-edit-premium-fields.php:47 463 | #: premium/classes/meta-boxes/class-meta-box-manage-parent.php:34 464 | msgid "Backwards linking" 465 | msgstr "" 466 | 467 | #: premium/classes/hooks/class-hook-connection-edit-premium-fields.php:53 468 | msgid "Enable backwards linking" 469 | msgstr "" 470 | 471 | #: premium/classes/hooks/class-hook-connection-edit-premium-fields.php:55 472 | msgid "Enable Backwards linking." 473 | msgstr "" 474 | 475 | #: premium/classes/hooks/class-hook-connection-edit-premium-fields.php:58 476 | msgid "" 477 | "Backwards linking allows users to link parents to children from within the " 478 | "child post." 479 | msgstr "" 480 | 481 | #: premium/classes/hooks/class-hook-license-page-multisite.php:25 482 | #: premium/classes/hooks/class-hook-license-page.php:25 483 | msgid "License settings" 484 | msgstr "" 485 | 486 | #: premium/classes/hooks/class-hook-sidebar.php:11 487 | msgid "For support questions please drop us an email at %s." 488 | msgstr "" 489 | 490 | #: premium/classes/license-manager/class-license-manager.php:137 491 | msgid "" 492 | "Warning! You're blocking external requests which means you won't be " 493 | "able to get %s updates. Please add %s to %s." 494 | msgstr "" 495 | 496 | #: premium/classes/license-manager/class-license-manager.php:178 497 | msgid "Your %s license has been activated. " 498 | msgstr "" 499 | 500 | #: premium/classes/license-manager/class-license-manager.php:182 501 | msgid "You have an unlimited license. " 502 | msgstr "" 503 | 504 | #: premium/classes/license-manager/class-license-manager.php:184 505 | msgid "You have used %d/%d activations. " 506 | msgstr "" 507 | 508 | #: premium/classes/license-manager/class-license-manager.php:189 509 | msgid "Did you know you can upgrade your license?" 510 | msgstr "" 511 | 512 | #: premium/classes/license-manager/class-license-manager.php:193 513 | msgid "" 514 | "Your license is expiring in %d days, would you like to " 515 | "extend it?" 516 | msgstr "" 517 | 518 | #: premium/classes/license-manager/class-license-manager.php:202 519 | msgid "" 520 | "You've reached your activation limit. You must upgrade your " 521 | "license to use it on this site." 522 | msgstr "" 523 | 524 | #: premium/classes/license-manager/class-license-manager.php:205 525 | msgid "" 526 | "Your license has expired. You must extend your license " 527 | "in order to use it again." 528 | msgstr "" 529 | 530 | #: premium/classes/license-manager/class-license-manager.php:208 531 | msgid "Failed to activate your license, your license key seems to be invalid." 532 | msgstr "" 533 | 534 | #: premium/classes/license-manager/class-license-manager.php:232 535 | msgid "Your %s license has been deactivated." 536 | msgstr "" 537 | 538 | #: premium/classes/license-manager/class-license-manager.php:234 539 | msgid "Failed to deactivate your %s license." 540 | msgstr "" 541 | 542 | #: premium/classes/license-manager/class-license-manager.php:269 543 | msgid "Request error: \"%s\" (%scommon license notices%s)" 544 | msgstr "" 545 | 546 | #: premium/classes/license-manager/class-license-manager.php:425 547 | msgid "%s: License Settings" 548 | msgstr "" 549 | 550 | #: premium/classes/license-manager/class-plugin-license-manager.php:73 551 | msgid "" 552 | "%s is network activated, you can manage your license in the network admin license page." 554 | msgstr "" 555 | 556 | #: premium/classes/license-manager/class-plugin-license-manager.php:75 557 | msgid "" 558 | "%s is network activated, please contact your site administrator to manage " 559 | "the license." 560 | msgstr "" 561 | 562 | #: premium/classes/license-manager/class-theme-license-manager.php:34 563 | #: premium/classes/license-manager/samples/sample-plugin.php:53 564 | msgid "%s License" 565 | msgstr "" 566 | 567 | #: premium/classes/license-manager/class-theme-license-manager.php:34 568 | msgid "Theme License" 569 | msgstr "" 570 | 571 | #: premium/classes/license-manager/class-theme-update-manager.php:96 572 | msgid "" 573 | "Updating this theme will lose any customizations you have made. 'Cancel' to " 574 | "stop, 'OK' to update." 575 | msgstr "" 576 | 577 | #: premium/classes/license-manager/class-theme-update-manager.php:101 578 | msgid "" 579 | "%s version %s is available. Check out what's new or update now." 582 | msgstr "" 583 | 584 | #: premium/classes/license-manager/class-update-manager.php:83 585 | msgid "%s failed to check for updates because of the following error: %s" 586 | msgstr "" 587 | 588 | #: premium/classes/license-manager/class-update-manager.php:153 589 | msgid "" 590 | "This site has not been activated properly on post-connector.com and thus " 591 | "cannot check for future updates. Please activate your site with a valid " 592 | "license key." 593 | msgstr "" 594 | 595 | #: premium/classes/license-manager/views/form.php:23 596 | msgid "License status" 597 | msgstr "" 598 | 599 | #: premium/classes/license-manager/views/form.php:33 600 | msgid "Toggle license status" 601 | msgstr "" 602 | 603 | #: premium/classes/license-manager/views/form.php:37 604 | msgid "Deactivate License" 605 | msgstr "" 606 | 607 | #: premium/classes/license-manager/views/form.php:38 608 | msgid "(deactivate your license so you can activate it on another WordPress site)" 609 | msgstr "" 610 | 611 | #: premium/classes/license-manager/views/form.php:42 612 | msgid "Activate License" 613 | msgstr "" 614 | 615 | #: premium/classes/license-manager/views/form.php:44 616 | msgid "Please enter a license key in the field below first." 617 | msgstr "" 618 | 619 | #: premium/classes/license-manager/views/form.php:52 620 | msgid "License Key" 621 | msgstr "" 622 | 623 | #: premium/classes/license-manager/views/form.php:54 624 | msgid "Paste your %s license key here.." 625 | msgstr "" 626 | 627 | #: premium/classes/license-manager/views/form.php:56 628 | msgid "You defined your license key using the %s PHP constant." 629 | msgstr "" 630 | 631 | #: premium/classes/license-manager/views/form.php:73 632 | msgid "Your %s license will expire on %s." 633 | msgstr "" 634 | 635 | #: premium/classes/license-manager/views/form.php:76 636 | msgid "%sRenew your license now%s." 637 | msgstr "" 638 | 639 | #: premium/classes/widgets/class-widget-show-parents.php:25 640 | msgid "Post Connector - Show Parents" 641 | msgstr "" 642 | 643 | #: premium/classes/widgets/class-widget-show-parents.php:26 644 | msgid "Display linked parents by a child or current post" 645 | msgstr "" 646 | 647 | #: premium/classes/widgets/class-widget-show-parents.php:153 648 | msgid "Child" 649 | msgstr "" 650 | 651 | #. Plugin URI of the plugin/theme 652 | msgid "https://www.post-connector.com/" 653 | msgstr "" 654 | 655 | #. Description of the plugin/theme 656 | msgid "With Post Connector you can easily link posts to each other." 657 | msgstr "" 658 | 659 | #. Author of the plugin/theme 660 | msgid "Never5" 661 | msgstr "" 662 | 663 | #. Author URI of the plugin/theme 664 | msgid "http://www.never5.com/" 665 | msgstr "" -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "post-connector", 3 | "description": "Development files for the Post Connector plugin", 4 | "dependencies": {}, 5 | "devDependencies": { 6 | "grunt": "~0.4.1", 7 | "grunt-wp-i18n": "0.4.3" 8 | }, 9 | "engines": { 10 | "node": ">=0.8.0" 11 | } 12 | } -------------------------------------------------------------------------------- /post-connector.php: -------------------------------------------------------------------------------- 1 |