Changeset 1316978
- Timestamp:
- 12/27/2015 08:17:18 PM (10 years ago)
- Location:
- portfolio-post-type
- Files:
-
- 21 added
- 8 edited
-
tags/0.9.2 (added)
-
tags/0.9.2/includes (added)
-
tags/0.9.2/includes/class-gamajo-dashboard-glancer.php (added)
-
tags/0.9.2/includes/class-gamajo-post-type.php (added)
-
tags/0.9.2/includes/class-gamajo-single-entry-term-body-classes.php (added)
-
tags/0.9.2/includes/class-gamajo-taxonomy.php (added)
-
tags/0.9.2/includes/class-portfolio-post-type-admin.php (added)
-
tags/0.9.2/includes/class-portfolio-post-type-post-type.php (added)
-
tags/0.9.2/includes/class-portfolio-post-type-registrations.php (added)
-
tags/0.9.2/includes/class-portfolio-post-type-taxonomy-category.php (added)
-
tags/0.9.2/includes/class-portfolio-post-type-taxonomy-tag.php (added)
-
tags/0.9.2/includes/class-portfolio-post-type.php (added)
-
tags/0.9.2/includes/interface-gamajo-registerable.php (added)
-
tags/0.9.2/languages (added)
-
tags/0.9.2/languages/portfolio-post-type-pt_PT.mo (added)
-
tags/0.9.2/languages/portfolio-post-type-pt_PT.po (added)
-
tags/0.9.2/languages/portfolio-post-type-sv_SE.mo (added)
-
tags/0.9.2/languages/portfolio-post-type-sv_SE.po (added)
-
tags/0.9.2/languages/portfolio-post-type.pot (added)
-
tags/0.9.2/portfolio-post-type.php (added)
-
tags/0.9.2/readme.txt (added)
-
trunk/includes/class-portfolio-post-type-post-type.php (modified) (1 diff)
-
trunk/includes/class-portfolio-post-type-taxonomy-category.php (modified) (1 diff)
-
trunk/includes/class-portfolio-post-type-taxonomy-tag.php (modified) (1 diff)
-
trunk/languages/portfolio-post-type-pt_PT.mo (modified) (previous)
-
trunk/languages/portfolio-post-type-pt_PT.po (modified) (8 diffs)
-
trunk/languages/portfolio-post-type.pot (modified) (4 diffs)
-
trunk/portfolio-post-type.php (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
portfolio-post-type/trunk/includes/class-portfolio-post-type-post-type.php
r974300 r1316978 37 37 protected function default_args() { 38 38 $labels = array( 39 'name' => __( 'Portfolio', 'portfolio-post-type' ), 40 'singular_name' => __( 'Portfolio Item', 'portfolio-post-type' ), 41 'menu_name' => _x( 'Portfolio', 'admin menu', 'portfolio-post-type' ), 42 'name_admin_bar' => _x( 'Portfolio Item', 'add new on admin bar', 'portfolio-post-type' ), 43 'add_new' => __( 'Add New Item', 'portfolio-post-type' ), 44 'add_new_item' => __( 'Add New Portfolio Item', 'portfolio-post-type' ), 45 'new_item' => __( 'Add New Portfolio Item', 'portfolio-post-type' ), 46 'edit_item' => __( 'Edit Portfolio Item', 'portfolio-post-type' ), 47 'view_item' => __( 'View Item', 'portfolio-post-type' ), 48 'all_items' => __( 'All Portfolio Items', 'portfolio-post-type' ), 49 'search_items' => __( 'Search Portfolio', 'portfolio-post-type' ), 50 'parent_item_colon' => __( 'Parent Portfolio Item:', 'portfolio-post-type' ), 51 'not_found' => __( 'No portfolio items found', 'portfolio-post-type' ), 52 'not_found_in_trash' => __( 'No portfolio items found in trash', 'portfolio-post-type' ), 39 'name' => __( 'Portfolio', 'portfolio-post-type' ), 40 'singular_name' => __( 'Portfolio Item', 'portfolio-post-type' ), 41 'menu_name' => _x( 'Portfolio', 'admin menu', 'portfolio-post-type' ), 42 'name_admin_bar' => _x( 'Portfolio Item', 'add new on admin bar', 'portfolio-post-type' ), 43 'add_new' => __( 'Add New Item', 'portfolio-post-type' ), 44 'add_new_item' => __( 'Add New Portfolio Item', 'portfolio-post-type' ), 45 'new_item' => __( 'Add New Portfolio Item', 'portfolio-post-type' ), 46 'edit_item' => __( 'Edit Portfolio Item', 'portfolio-post-type' ), 47 'view_item' => __( 'View Item', 'portfolio-post-type' ), 48 'all_items' => __( 'All Portfolio Items', 'portfolio-post-type' ), 49 'search_items' => __( 'Search Portfolio', 'portfolio-post-type' ), 50 'parent_item_colon' => __( 'Parent Portfolio Item:', 'portfolio-post-type' ), 51 'not_found' => __( 'No portfolio items found', 'portfolio-post-type' ), 52 'not_found_in_trash' => __( 'No portfolio items found in trash', 'portfolio-post-type' ), 53 'filter_items_list' => __( 'Filter portfolio items list', 'portfolio-post-type' ), 54 'items_list_navigation' => __( 'Portfolio items list navigation', 'portfolio-post-type' ), 55 'items_list' => __( 'Portfolio items list', 'portfolio-post-type' ), 53 56 ); 54 57 -
portfolio-post-type/trunk/includes/class-portfolio-post-type-taxonomy-category.php
r974300 r1316978 53 53 'choose_from_most_used' => __( 'Choose from the most used portfolio categories', 'portfolio-post-type' ), 54 54 'not_found' => __( 'No portfolio categories found.', 'portfolio-post-type' ), 55 'items_list_navigation' => __( 'Portfolio categories list navigation', 'portfolio-post-type' ), 56 'items_list' => __( 'Portfolio categories list', 'portfolio-post-type' ), 55 57 ); 56 58 -
portfolio-post-type/trunk/includes/class-portfolio-post-type-taxonomy-tag.php
r974300 r1316978 53 53 'choose_from_most_used' => __( 'Choose from the most used portfolio tags', 'portfolio-post-type' ), 54 54 'not_found' => __( 'No portfolio tags found.', 'portfolio-post-type' ), 55 'items_list_navigation' => __( 'Portfolio tags list navigation', 'portfolio-post-type' ), 56 'items_list' => __( 'Portfolio tags list', 'portfolio-post-type' ), 55 57 ); 56 58 -
portfolio-post-type/trunk/languages/portfolio-post-type-pt_PT.po
r976171 r1316978 3 3 msgid "" 4 4 msgstr "" 5 "Project-Id-Version: Portfolio Post Type 0.9. 0em português\n"5 "Project-Id-Version: Portfolio Post Type 0.9.1 em português\n" 6 6 "Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/portfolio-post-" 7 7 "type\n" 8 "POT-Creation-Date: 201 4-08-29 16:21:17+00:00\n"9 "PO-Revision-Date: 201 4-08-31 16:42-0000\n"8 "POT-Creation-Date: 2015-11-30 09:20+0000\n" 9 "PO-Revision-Date: 2015-11-30 09:31+0000\n" 10 10 "Last-Translator: Pedro Mendonça <ped.gaspar@gmail.com>\n" 11 11 "Language-Team: Pedro Mendonça <ped.gaspar@gmail.com>\n" … … 14 14 "Content-Type: text/plain; charset=UTF-8\n" 15 15 "Content-Transfer-Encoding: 8bit\n" 16 "X-Generator: Poedit 1. 6.4\n"16 "X-Generator: Poedit 1.8.6\n" 17 17 "Plural-Forms: nplurals=2; plural=(n != 1);\n" 18 "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;" 19 "_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;" 20 "esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;" 21 "esc_html_x:1,2c\n" 22 "X-Poedit-Basepath: ..\n" 23 "X-Poedit-SearchPath-0: .\n" 18 24 19 25 #: includes/class-gamajo-dashboard-glancer.php:54 20 26 msgid "" 21 27 "Trying to add At a Glance items to dashboard widget afterhook already fired" 22 msgstr " "23 24 #: includes/class-portfolio-post-type-admin.php: 5728 msgstr "Tentar adicionar itens do At a Glance ao widget do painel" 29 30 #: includes/class-portfolio-post-type-admin.php:68 25 31 msgid "Thumbnail" 26 32 msgstr "Miniatura" … … 31 37 32 38 #: includes/class-portfolio-post-type-post-type.php:40 39 msgid "Portfolio Item" 40 msgstr "Item de Portfólio" 41 42 #: includes/class-portfolio-post-type-post-type.php:41 43 msgctxt "admin menu" 44 msgid "Portfolio" 45 msgstr "Portfólio" 46 47 #: includes/class-portfolio-post-type-post-type.php:42 48 msgctxt "add new on admin bar" 33 49 msgid "Portfolio Item" 34 50 msgstr "Item de Portfólio" … … 71 87 msgstr "Nenhum item de Portfólio encontrado no lixo" 72 88 73 #: includes/class-portfolio-post-type-post-type.php:94 89 #: includes/class-portfolio-post-type-post-type.php:53 90 msgid "Filter portfolio items list" 91 msgstr "Filtrar lista de itens de Portfólio" 92 93 #: includes/class-portfolio-post-type-post-type.php:54 94 msgid "Portfolio items list navigation" 95 msgstr "Navegação da lista de itens de Portfólio" 96 97 #: includes/class-portfolio-post-type-post-type.php:55 98 msgid "Portfolio items list" 99 msgstr "Lista de itens de Porftólio" 100 74 101 #: includes/class-portfolio-post-type-post-type.php:97 102 #: includes/class-portfolio-post-type-post-type.php:100 75 103 msgid "Portfolio item updated." 76 104 msgstr "Item de Portfólio actualizado." 77 105 78 #: includes/class-portfolio-post-type-post-type.php:9 5106 #: includes/class-portfolio-post-type-post-type.php:98 79 107 msgid "Custom field updated." 80 108 msgstr "Campo personalizado actualizado." 81 109 82 #: includes/class-portfolio-post-type-post-type.php:9 6110 #: includes/class-portfolio-post-type-post-type.php:99 83 111 msgid "Custom field deleted." 84 112 msgstr "Campo personalizado removido." 85 113 86 114 #. translators: %s: date and time of the revision 87 #: includes/class-portfolio-post-type-post-type.php:99 115 #: includes/class-portfolio-post-type-post-type.php:102 116 #, php-format 88 117 msgid "Portfolio item restored to revision from %s" 89 118 msgstr "Item do Portfólio restaurado para a revisão de %s" 90 119 91 #: includes/class-portfolio-post-type-post-type.php:10 0120 #: includes/class-portfolio-post-type-post-type.php:103 92 121 msgid "Portfolio item published." 93 122 msgstr "Item de Portfólio publicado." 94 123 95 #: includes/class-portfolio-post-type-post-type.php:10 1124 #: includes/class-portfolio-post-type-post-type.php:104 96 125 msgid "Portfolio item saved." 97 126 msgstr "Item de Portfólio guardado." 98 127 99 #: includes/class-portfolio-post-type-post-type.php:10 2128 #: includes/class-portfolio-post-type-post-type.php:105 100 129 msgid "Portfolio item submitted." 101 130 msgstr "Item de Portfólio submetido." 102 131 103 #: includes/class-portfolio-post-type-post-type.php:104 132 #: includes/class-portfolio-post-type-post-type.php:107 133 #, php-format 104 134 msgid "Portfolio item scheduled for: <strong>%1$s</strong>." 105 135 msgstr "Item de Portfólio agendado para: <strong>%1$s</strong>." 106 136 107 #. translators: Publish box date format, see http: php.net/date108 #: includes/class-portfolio-post-type-post-type.php:10 6137 #. translators: Publish box date format, see http://php.net/date 138 #: includes/class-portfolio-post-type-post-type.php:109 109 139 msgid "M j, Y @ G:i" 110 140 msgstr "j de F de Y @ G:i" 111 141 112 #: includes/class-portfolio-post-type-post-type.php:1 08142 #: includes/class-portfolio-post-type-post-type.php:111 113 143 msgid "Portfolio item draft updated." 114 144 msgstr "Rascunho do item de Portfólio actualizado." 115 145 116 #: includes/class-portfolio-post-type-post-type.php:11 5146 #: includes/class-portfolio-post-type-post-type.php:118 117 147 msgid "View portfolio item" 118 148 msgstr "Ver item de Portfólio" 119 149 120 #: includes/class-portfolio-post-type-post-type.php:11 6150 #: includes/class-portfolio-post-type-post-type.php:119 121 151 msgid "Preview portfolio item" 122 152 msgstr "Previsão de item de Portfólio" … … 183 213 msgstr "Não foram encontradas categorias de Portfólio." 184 214 215 #: includes/class-portfolio-post-type-taxonomy-category.php:55 216 msgid "Portfolio categories list navigation" 217 msgstr "Navegação da lista de categorias de Portfólio" 218 219 #: includes/class-portfolio-post-type-taxonomy-category.php:56 220 msgid "Portfolio categories list" 221 msgstr "Lista de categorias de Portfólio" 222 185 223 #: includes/class-portfolio-post-type-taxonomy-tag.php:39 186 224 #: includes/class-portfolio-post-type-taxonomy-tag.php:41 … … 244 282 msgstr "Não foram encontradas etiquetas de Portfólio." 245 283 284 #: includes/class-portfolio-post-type-taxonomy-tag.php:55 285 msgid "Portfolio tags list navigation" 286 msgstr "Navegação da lista de etiquetas de Portfólio" 287 288 #: includes/class-portfolio-post-type-taxonomy-tag.php:56 289 msgid "Portfolio tags list" 290 msgstr "Lista de etiquetas de Portfólio" 291 246 292 #. Plugin Name of the plugin/theme 247 293 msgid "Portfolio Post Type" 248 msgstr " Tipo de artigo de Portfólio"294 msgstr "Portfolio Post Type" 249 295 250 296 #. Plugin URI of the plugin/theme … … 255 301 msgid "Enables a portfolio post type and taxonomies." 256 302 msgstr "" 257 "Permite acrescentar um tipo de artigo de Porftólio e respectivas taxonomias." 303 "Permite acrescentar um tipo de artigo de Porftólio e respectivas " 304 "taxonomias." 258 305 259 306 #. Author of the plugin/theme … … 264 311 msgid "http://www.wptheming.com/" 265 312 msgstr "http://www.wptheming.com/" 266 267 #: includes/class-portfolio-post-type-post-type.php:41268 msgctxt "admin menu"269 msgid "Portfolio"270 msgstr "Portfólio"271 272 #: includes/class-portfolio-post-type-post-type.php:42273 msgctxt "add new on admin bar"274 msgid "Portfolio Item"275 msgstr "Item de Portfólio" -
portfolio-post-type/trunk/languages/portfolio-post-type.pot
r976171 r1316978 1 # Copyright (C) 201 4Devin Price1 # Copyright (C) 2015 Devin Price 2 2 # This file is distributed under the GPL-2.0+. 3 3 msgid "" 4 4 msgstr "" 5 "Project-Id-Version: Portfolio Post Type 0.9. 0\n"5 "Project-Id-Version: Portfolio Post Type 0.9.1\n" 6 6 "Report-Msgid-Bugs-To: " 7 7 "http://wordpress.org/support/plugin/portfolio-post-type\n" 8 "POT-Creation-Date: 201 4-08-31 19:46:14+00:00\n"8 "POT-Creation-Date: 2015-12-27 19:55:17+00:00\n" 9 9 "MIME-Version: 1.0\n" 10 10 "Content-Type: text/plain; charset=utf-8\n" 11 11 "Content-Transfer-Encoding: 8bit\n" 12 "PO-Revision-Date: 201 4-MO-DA HO:MI+ZONE\n"12 "PO-Revision-Date: 2015-MO-DA HO:MI+ZONE\n" 13 13 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" 14 14 "Language-Team: LANGUAGE <LL@li.org>\n" 15 "X-Generator: grunt-wp-i18n 0.4. 7\n"15 "X-Generator: grunt-wp-i18n 0.4.9\n" 16 16 17 17 #: includes/class-portfolio-post-type-admin.php:68 … … 64 64 msgstr "" 65 65 66 #: includes/class-portfolio-post-type-post-type.php:94 66 #: includes/class-portfolio-post-type-post-type.php:53 67 msgid "Filter portfolio items list" 68 msgstr "" 69 70 #: includes/class-portfolio-post-type-post-type.php:54 71 msgid "Portfolio items list navigation" 72 msgstr "" 73 74 #: includes/class-portfolio-post-type-post-type.php:55 75 msgid "Portfolio items list" 76 msgstr "" 77 67 78 #: includes/class-portfolio-post-type-post-type.php:97 79 #: includes/class-portfolio-post-type-post-type.php:100 68 80 msgid "Portfolio item updated." 69 81 msgstr "" 70 82 71 #: includes/class-portfolio-post-type-post-type.php:9 583 #: includes/class-portfolio-post-type-post-type.php:98 72 84 msgid "Custom field updated." 73 85 msgstr "" 74 86 75 #: includes/class-portfolio-post-type-post-type.php:9 687 #: includes/class-portfolio-post-type-post-type.php:99 76 88 msgid "Custom field deleted." 77 89 msgstr "" 78 90 79 #: includes/class-portfolio-post-type-post-type.php: 9991 #: includes/class-portfolio-post-type-post-type.php:102 80 92 #. translators: %s: date and time of the revision 81 93 msgid "Portfolio item restored to revision from %s" 82 94 msgstr "" 83 95 84 #: includes/class-portfolio-post-type-post-type.php:10 096 #: includes/class-portfolio-post-type-post-type.php:103 85 97 msgid "Portfolio item published." 86 98 msgstr "" 87 99 88 #: includes/class-portfolio-post-type-post-type.php:10 1100 #: includes/class-portfolio-post-type-post-type.php:104 89 101 msgid "Portfolio item saved." 90 102 msgstr "" 91 103 92 #: includes/class-portfolio-post-type-post-type.php:10 2104 #: includes/class-portfolio-post-type-post-type.php:105 93 105 msgid "Portfolio item submitted." 94 106 msgstr "" 95 107 96 #: includes/class-portfolio-post-type-post-type.php:10 4108 #: includes/class-portfolio-post-type-post-type.php:107 97 109 msgid "Portfolio item scheduled for: <strong>%1$s</strong>." 98 110 msgstr "" 99 111 100 #: includes/class-portfolio-post-type-post-type.php:10 6112 #: includes/class-portfolio-post-type-post-type.php:109 101 113 #. translators: Publish box date format, see http:php.net/date 102 114 msgid "M j, Y @ G:i" 103 115 msgstr "" 104 116 105 #: includes/class-portfolio-post-type-post-type.php:1 08117 #: includes/class-portfolio-post-type-post-type.php:111 106 118 msgid "Portfolio item draft updated." 107 119 msgstr "" 108 120 109 #: includes/class-portfolio-post-type-post-type.php:11 5121 #: includes/class-portfolio-post-type-post-type.php:118 110 122 msgid "View portfolio item" 111 123 msgstr "" 112 124 113 #: includes/class-portfolio-post-type-post-type.php:11 6125 #: includes/class-portfolio-post-type-post-type.php:119 114 126 msgid "Preview portfolio item" 115 127 msgstr "" … … 176 188 msgstr "" 177 189 190 #: includes/class-portfolio-post-type-taxonomy-category.php:55 191 msgid "Portfolio categories list navigation" 192 msgstr "" 193 194 #: includes/class-portfolio-post-type-taxonomy-category.php:56 195 msgid "Portfolio categories list" 196 msgstr "" 197 178 198 #: includes/class-portfolio-post-type-taxonomy-tag.php:39 179 199 #: includes/class-portfolio-post-type-taxonomy-tag.php:41 … … 237 257 msgstr "" 238 258 259 #: includes/class-portfolio-post-type-taxonomy-tag.php:55 260 msgid "Portfolio tags list navigation" 261 msgstr "" 262 263 #: includes/class-portfolio-post-type-taxonomy-tag.php:56 264 msgid "Portfolio tags list" 265 msgstr "" 266 239 267 #. Plugin Name of the plugin/theme 240 268 msgid "Portfolio Post Type" -
portfolio-post-type/trunk/portfolio-post-type.php
r976171 r1316978 13 13 * Plugin URI: http://wptheming.com/portfolio-post-type/ 14 14 * Description: Enables a portfolio post type and taxonomies. 15 * Version: 0.9. 115 * Version: 0.9.2 16 16 * Author: Devin Price 17 17 * Author URI: http://www.wptheming.com/ -
portfolio-post-type/trunk/readme.txt
r1239230 r1316978 1 1 === Portfolio Post Type === 2 Contributors: downstairsdev, garyj2 Contributors: downstairsdev, GaryJ 3 3 Tags: portfolio, post type 4 4 Requires at least: 3.7 5 Tested up to: 4. 36 Stable tag: 0.9. 15 Tested up to: 4.4 6 Stable tag: 0.9.2 7 7 License: GPLv2 or later 8 8 … … 32 32 33 33 == Changelog == 34 35 = 0.9.2 = 36 37 * Update post type messages for WordPress 4.4 34 38 35 39 = 0.9.1 =
Note: See TracChangeset
for help on using the changeset viewer.