Changeset 1058412
- Timestamp:
- 01/02/2015 01:14:35 PM (11 years ago)
- Location:
- wpmovielibrary/trunk
- Files:
-
- 30 edited
-
admin/class-wpmoly-edit-movies.php (modified) (1 diff)
-
admin/class-wpmoly-media.php (modified) (2 diffs)
-
assets/css/admin/wpmoly-edit-movies.css (modified) (1 diff)
-
assets/css/admin/wpmoly-importer.css (modified) (1 diff)
-
assets/css/public/wpmoly.css (modified) (2 diffs)
-
assets/fonts/wpmovielibrary/fonts/wpmovielibrary.eot (modified) (previous)
-
assets/fonts/wpmovielibrary/fonts/wpmovielibrary.svg (modified) (2 diffs)
-
assets/fonts/wpmovielibrary/fonts/wpmovielibrary.ttf (modified) (previous)
-
assets/fonts/wpmovielibrary/fonts/wpmovielibrary.woff (modified) (previous)
-
assets/fonts/wpmovielibrary/style.css (modified) (2 diffs)
-
assets/js/admin/wpmoly-importer-meta.js (modified) (1 diff)
-
includes/classes/class-wpmoly-utils.php (modified) (5 diffs)
-
includes/config/wpmoly-settings.php (modified) (1 diff)
-
includes/functions/wpmoly-movies-functions.php (modified) (1 diff)
-
includes/widgets/class-movies-widget.php (modified) (2 diffs)
-
languages/wpmovielibrary-de_DE.mo (modified) (previous)
-
languages/wpmovielibrary-de_DE.po (modified) (15 diffs)
-
languages/wpmovielibrary-en_EN.mo (modified) (previous)
-
languages/wpmovielibrary-en_EN.po (modified) (15 diffs)
-
languages/wpmovielibrary-fr_FR.mo (modified) (previous)
-
languages/wpmovielibrary-fr_FR.po (modified) (15 diffs)
-
languages/wpmovielibrary.mo (modified) (previous)
-
languages/wpmovielibrary.pot (modified) (15 diffs)
-
public/class-wpmoly-archives.php (modified) (2 diffs)
-
public/class-wpmoly-grid.php (modified) (1 diff)
-
public/class-wpmoly-headbox.php (modified) (3 diffs)
-
public/class-wpmoly-movies.php (modified) (3 diffs)
-
readme.txt (modified) (2 diffs)
-
views/movies/grid/loop.php (modified) (1 diff)
-
wpmovielibrary.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wpmovielibrary/trunk/admin/class-wpmoly-edit-movies.php
r1038738 r1058412 627 627 foreach ( $details as $slug => $detail ) { 628 628 629 if ( 'custom' == $detail['panel'] ) { 630 unset( $details[ $slug ] ); 631 continue; 632 } 633 629 634 $field_name = $detail['type']; 630 635 $class_name = "ReduxFramework_{$field_name}"; -
wpmovielibrary/trunk/admin/class-wpmoly-media.php
r1056255 r1058412 346 346 $title = WPMOLY_Movies::get_movie_meta( $post_id, 'title' ); 347 347 $production = WPMOLY_Movies::get_movie_meta( $post_id, 'production_companies' ); 348 $director = WPMOLY_Movies::get_movie_meta( $post_id, 'director' ); 349 $original_title = WPMOLY_Movies::get_movie_meta( $post_id, 'original_title' ); 350 348 351 $production = explode( ',', $production ); 349 352 $production = trim( array_shift( $production ) ); … … 351 354 $year = apply_filters( 'wpmoly_format_movie_date', $year, 'Y' ); 352 355 353 $find = array( '{title}', '{ year}', '{production}' );354 $replace = array( $title, $ year, $production);356 $find = array( '{title}', '{originaltitle}', '{year}', '{production}', '{director}' ); 357 $replace = array( $title, $original_title, $year, $production, $director ); 355 358 356 359 $_description = str_replace( $find, $replace, wpmoly_o( "{$image_type}-description" ) ); -
wpmovielibrary/trunk/assets/css/admin/wpmoly-edit-movies.css
r1047390 r1058412 174 174 /* Details */ 175 175 176 #wpmoly- details .wpmoly-details-item {176 #wpmoly-meta-panels .wpmoly-details-item { 177 177 display: inline-table; 178 178 width: 33%; 179 179 } 180 180 181 #wpmoly- details .wpmoly-details-item-title {181 #wpmoly-meta-panels .wpmoly-details-item-title { 182 182 margin-bottom: 0.25rem; 183 183 margin-left: 0.1rem; 184 184 } 185 185 186 #wpmoly- details .wpmoly-details-item-title .wpmolicon,187 #wpmoly- details .wpmoly-details-item-title .dashicons,188 #wpmoly- details .wpmoly-details-item-title .fa {189 color: #888; 190 } 191 192 #wpmoly- details .wpmoly-details-item .select2-container {186 #wpmoly-meta-panels .wpmoly-details-item-title .wpmolicon, 187 #wpmoly-meta-panels .wpmoly-details-item-title .dashicons, 188 #wpmoly-meta-panels .wpmoly-details-item-title .fa { 189 color: #888; 190 } 191 192 #wpmoly-meta-panels .wpmoly-details-item .select2-container { 193 193 width: 90% !important; 194 194 } -
wpmovielibrary/trunk/assets/css/admin/wpmoly-importer.css
r1020078 r1058412 301 301 302 302 .wpmoly-import-movie-select .tmdb_select_movies { 303 max-height: 8em;303 max-height: 12em; 304 304 overflow-y: scroll; 305 305 } -
wpmovielibrary/trunk/assets/css/public/wpmoly.css
r1056255 r1058412 192 192 } 193 193 194 #wpmoly-movie-grid .wpmoly.movie.year { 195 font-size: small; 196 } 197 194 198 #wpmoly-movie-grid .wpmoly.movie.title { 195 199 font-size: 1em; 196 200 margin: 0.5em 0 0 0; 197 201 text-align: left; 202 text-overflow: ellipsis; 203 white-space: nowrap; 204 overflow: hidden; 198 205 } 199 206 … … 207 214 border-radius: 3px; 208 215 box-shadow: 0 1px 2px rgba(0,0,0,0.5); 209 height: 100% !important;210 width: 100% !important;216 height: 100%; 217 width: 100%; 211 218 } 212 219 -
wpmovielibrary/trunk/assets/fonts/wpmovielibrary/fonts/wpmovielibrary.svg
r1047390 r1058412 101 101 <glyph unicode="" d="M297.293 432.333l61.543-49.817-77.568-75.008 51.2-51.2 75.059 77.619 50.995-62.899v161.305h-161.229zM178.893 205.107l-75.034-77.568-50.432 62.233v-161.28h161.28l-62.233 50.406 77.594 75.034-51.174 51.175z" /> 102 102 <glyph unicode="" d="M104.96 125.44l-79.36-74.24 51.2-51.2 74.24 79.36 51.2-53.76v151.040h-151.040l53.76-51.2zM486.4 409.6l-51.2 51.2-74.24-79.36-51.2 53.76v-151.040h151.040l-53.76 51.2 79.36 74.24z" /> 103 <glyph unicode="" d="M256 281.6c-42.394 0-76.8-34.407-76.8-76.8 0-42.419 34.406-76.8 76.8-76.8 42.419 0 76.8 34.381 76.8 76.8 0 42.394-34.381 76.8-76.8 76.8zM460.8 358.4h-61.414c-8.448 0-17.562 6.553-20.224 14.567l-15.872 47.642c-2.714 8.038-11.801 14.592-20.25 14.592h-174.080c-8.448 0-17.561-6.553-20.198-14.567l-15.923-47.667c-2.662-8.013-11.751-14.567-20.198-14.567h-61.44c-28.16 0-51.2-23.040-51.2-51.2v-230.4c0-28.16 23.040-51.2 51.2-51.2h409.6c28.185 0 51.2 23.040 51.2 51.2v230.4c0 28.16-23.014 51.2-51.2 51.2zM256 76.8c-70.707 0-128 57.293-128 128 0 70.682 57.293 128 128 128 70.682 0 128-57.318 128-128 0-70.707-57.318-128-128-128zM442.88 271.411c-9.882 0-17.894 8.013-17.894 17.92s8.013 17.92 17.894 17.92c9.907 0 17.92-8.013 17.92-17.92s-8.013-17.92-17.92-17.92z" /> 103 104 <glyph unicode="" d="M286.233 118.938c0 37.145 28.16 57.677 74.087 88.089 56.192 37.248 126.080 83.584 126.080 193.511 0 9.907-8.089 17.92-18.099 17.92h-87.834c-12.416 22.938-49.357 47.462-124.467 47.462-75.085 0-112.051-24.525-124.442-47.462h-87.834c-10.010 0-18.125-8.013-18.125-17.92 0-109.927 69.913-156.262 126.105-193.485 45.952-30.413 74.112-50.944 74.112-88.089v-33.562c-48.256-5.376-83.712-23.219-83.712-44.442 0-25.447 50.995-46.080 113.894-46.080 62.925 0 113.92 20.634 113.92 46.080 0 21.223-35.456 39.065-83.712 44.442v33.536zM357.299 248.32c14.541 30.72 26.035 72.371 27.878 134.298h64.231c-6.118-69.094-47.667-104.013-92.109-134.298zM256 434.534c69.939 0.026 97.28-28.569 97.255-39.168 0-10.675-27.264-39.245-97.255-39.296-69.939 0.077-97.229 28.621-97.229 39.296-0.025 10.599 27.29 39.219 97.229 39.168zM62.617 382.618h64.205c1.869-61.926 13.363-103.578 27.879-134.298-44.441 30.285-85.965 65.203-92.083 134.298z" /> 104 105 <glyph unicode="" d="M478.464 170.342l-44.211 39.424c-12.8 11.418-12.8 30.055 0 41.472l44.211 39.398c12.8 11.418 9.37 22.042-7.603 23.654l-58.599 5.555c-16.973 1.613-26.112 16.205-20.275 32.435l31.104 86.579c5.837 16.231-1.305 22.144-15.846 13.133l-69.145-42.752c-14.541-9.011-33.331-4.096-41.754 10.931l-25.063 44.697c-8.397 15.027-22.323 15.104-30.899 0.179l-23.27-40.499c-8.576-14.925-28.288-21.299-43.802-14.157l-40.96 18.816c-15.539 7.117-27.469-1.127-26.547-18.381l2.227-41.344c0.921-17.229-11.802-34.995-28.263-39.424l-39.552-10.624c-16.461-4.454-19.482-17.408-6.681-28.825l44.211-39.398c12.8-11.392 12.8-30.055 0-41.447l-44.211-39.373c-12.8-11.443-9.421-22.451 7.501-24.499l53.632-6.502c16.922-2.099 26.368-17.203 20.966-33.562l-27.52-83.405c-5.401-16.409 2.304-22.81 17.101-14.208l63.053 36.454c14.822 8.601 34.714 3.84 44.237-10.445l26.189-39.347c9.498-14.361 23.808-13.543 31.719 1.741l23.014 44.339c7.962 15.309 26.957 21.555 42.214 13.901l44.391-22.195c15.309-7.654 27.059 0.205 26.137 17.459l-2.227 41.344c-0.921 17.255 11.801 34.995 28.262 39.45l39.526 10.599c16.512 4.48 19.533 17.433 6.733 28.825zM281.6 123.008h-51.2v53.76h51.2v-53.76zM281.6 204.902h-51.2v133.12h51.2v-133.12z" /> … … 110 111 <glyph unicode="" d="M460.8 435.2h-409.6c-28.16 0-51.2-23.040-51.2-51.2v-307.2c0-28.185 23.040-51.2 51.2-51.2h409.6c28.16 0 51.2 23.014 51.2 51.2v307.2c0 28.16-23.040 51.2-51.2 51.2zM117.76 387.328c10.624 0 19.2-8.346 19.2-18.662 0-10.343-8.576-18.688-19.2-18.688s-19.2 8.345-19.2 18.662c0 10.343 8.602 18.688 19.2 18.688zM47.36 368.64c0 10.317 8.576 18.663 19.2 18.663s19.2-8.32 19.2-18.663c0-10.342-8.576-18.688-19.2-18.688s-19.2 8.371-19.2 18.688zM461.312 76.8h-410.624v235.52h410.624v-235.52zM461.312 353.28h-307.712v30.72h307.712v-30.72z" /> 111 112 <glyph unicode="" d="M498.893 425.293l-118.502-193.049c-4.403-7.142-13.005-8.32-19.149-2.586l-57.293 53.657c-6.144 5.734-14.95 4.71-19.61-2.304l-80.461-121.344c-4.633-6.989-13.517-8.089-19.738-2.457l-37.453 34.202c-6.221 5.658-15.59 4.915-20.838-1.613l-117.99-147.149c-5.274-6.579-2.688-11.93 5.683-11.93h493.337v392.32c0.026 8.423-3.584 9.447-7.987 2.253z" /> 113 <glyph unicode="" d="M426.189 354.739l-230.349 118.758c-31.565 16.614-93.773-15.488-111.641-43.75-7.962-12.647-7.398-21.76-7.398-26.931l2.841-268.16c0.179-5.709 7.373-13.363 13.491-17.152 12.775-7.834 206.336-128.64 211.789-132.070 2.944-1.843 6.451-2.688 9.882-2.688 2.918 0 5.863 0.64 8.525 1.971 5.837 2.867 9.472 8.397 9.472 14.464v281.626c0 5.862-3.43 11.264-9.011 14.208l-209.357 116.889c2.355 4.608 11.674 14.336 28.8 23.296 18.048 9.472 31.539 5.888 34.637 4.685 0 0 200.96-107.546 207.104-110.745 6.118-3.2 6.247-3.687 6.247-9.139 0-5.478 0-267.264 0-267.264 0-13.337 13.517-18.791 23.475-18.791 9.907 0 20.505 9.728 20.505 18.791v287.795c0 5.862-3.456 11.289-9.011 14.208z" /> 112 114 <glyph unicode="" d="M0 73.143v109.714q0 14.857 10.857 25.714t25.715 10.857h146.286q14.857 0 25.714-10.857t10.857-25.714v-109.714q0-14.857-10.857-25.714t-25.714-10.857h-146.286q-14.857 0-25.715 10.857t-10.857 25.714zM0 292.572v109.714q0 14.857 10.857 25.715t25.715 10.857h146.286q14.857 0 25.714-10.857t10.857-25.715v-109.714q0-14.857-10.857-25.714t-25.714-10.857h-146.286q-14.857 0-25.715 10.857t-10.857 25.714zM256 73.143v109.714q0 14.857 10.857 25.714t25.714 10.857h146.286q14.857 0 25.714-10.857t10.857-25.714v-109.714q0-14.857-10.857-25.714t-25.714-10.857h-146.286q-14.857 0-25.714 10.857t-10.857 25.714zM256 292.572v109.714q0 14.857 10.857 25.715t25.714 10.857h146.286q14.857 0 25.714-10.857t10.857-25.715v-109.714q0-14.857-10.857-25.714t-25.714-10.857h-146.286q-14.857 0-25.714 10.857t-10.857 25.714z" horiz-adv-x="476" /> 113 115 <glyph unicode="" d="M0 64v54.857q0 11.428 8 19.428t19.428 8h91.428q11.429 0 19.429-8t8-19.428v-54.857q0-11.428-8-19.428t-19.428-8h-91.428q-11.428 0-19.428 8t-8 19.428zM0 210.286v54.857q0 11.429 8 19.429t19.428 8h91.428q11.429 0 19.429-8t8-19.428v-54.857q0-11.428-8-19.428t-19.428-8h-91.428q-11.428 0-19.428 8t-8 19.428zM0 356.572v54.857q0 11.428 8 19.428t19.428 8h91.428q11.429 0 19.429-8t8-19.428v-54.857q0-11.428-8-19.428t-19.428-8h-91.428q-11.428 0-19.428 8t-8 19.428zM182.857 64v54.857q0 11.428 8 19.428t19.429 8h91.428q11.428 0 19.428-8t8-19.428v-54.857q0-11.428-8-19.428t-19.428-8h-91.428q-11.428 0-19.428 8t-8 19.428zM182.857 210.286v54.857q0 11.429 8 19.429t19.429 8h91.428q11.428 0 19.428-8t8-19.428v-54.857q0-11.428-8-19.428t-19.428-8h-91.428q-11.428 0-19.428 8t-8 19.428zM182.857 356.572v54.857q0 11.428 8 19.428t19.429 8h91.428q11.428 0 19.428-8t8-19.428v-54.857q0-11.428-8-19.428t-19.428-8h-91.428q-11.428 0-19.428 8t-8 19.428zM365.714 64v54.857q0 11.428 8 19.428t19.428 8h91.428q11.428 0 19.428-8t8-19.428v-54.857q0-11.428-8-19.428t-19.428-8h-91.428q-11.428 0-19.428 8t-8 19.428zM365.714 210.286v54.857q0 11.429 8 19.429t19.428 8h91.428q11.428 0 19.428-8t8-19.428v-54.857q0-11.428-8-19.428t-19.428-8h-91.428q-11.428 0-19.428 8t-8 19.428zM365.714 356.572v54.857q0 11.428 8 19.428t19.428 8h91.428q11.428 0 19.428-8t8-19.428v-54.857q0-11.428-8-19.428t-19.428-8h-91.428q-11.428 0-19.428 8t-8 19.428z" /> -
wpmovielibrary/trunk/assets/fonts/wpmovielibrary/style.css
r1047390 r1058412 1 1 @font-face { 2 2 font-family: 'wpmovielibrary'; 3 src:url('fonts/wpmovielibrary.eot? 7crjiw');4 src:url('fonts/wpmovielibrary.eot?#iefix 7crjiw') format('embedded-opentype'),5 url('fonts/wpmovielibrary.woff? 7crjiw') format('woff'),6 url('fonts/wpmovielibrary.ttf? 7crjiw') format('truetype'),7 url('fonts/wpmovielibrary.svg? 7crjiw#wpmovielibrary') format('svg');3 src:url('fonts/wpmovielibrary.eot?-xwucb1'); 4 src:url('fonts/wpmovielibrary.eot?#iefix-xwucb1') format('embedded-opentype'), 5 url('fonts/wpmovielibrary.woff?-xwucb1') format('woff'), 6 url('fonts/wpmovielibrary.ttf?-xwucb1') format('truetype'), 7 url('fonts/wpmovielibrary.svg?-xwucb1#wpmovielibrary') format('svg'); 8 8 font-weight: normal; 9 9 font-style: normal; … … 27 27 content: "\e60c"; 28 28 } 29 29 30 .icon-divx:before { 30 31 content: "\e607"; 31 32 } 33 32 34 .icon-dvd:before { 33 35 content: "\e608"; 34 36 } 37 35 38 .icon-poster:before { 36 39 content: "\e60a"; 37 40 } 41 38 42 .icon-api:before { 39 43 content: "\e610"; 40 44 } 45 41 46 .icon-3d:before { 42 47 content: "\e61b"; 43 48 } 49 44 50 .icon-hd:before { 45 51 content: "\e625"; 46 52 } 53 47 54 .icon-sd:before { 48 55 content: "\e64d"; 49 56 } 57 50 58 .icon-blu-ray:before { 51 59 content: "\e64f"; 52 60 } 61 53 62 .icon-cinema:before { 54 63 content: "\e660"; 55 64 } 65 56 66 .icon-mkv:before { 57 67 content: "\e661"; 58 68 } 69 59 70 .icon-unavailable:before { 60 71 content: "\e662"; 61 72 } 73 62 74 .icon-yes:before { 63 75 content: "\e663"; 64 76 } 77 65 78 .icon-subtitles:before { 66 79 content: "\e657"; 67 80 } 81 68 82 .icon-video-format:before { 69 83 content: "\e658"; 70 84 } 85 71 86 .icon-cog:before { 72 87 content: "\e64e"; 73 88 } 89 74 90 .icon-date:before { 75 91 content: "\e642"; 76 92 } 93 77 94 .icon-collection:before { 78 95 content: "\e602"; 79 96 } 97 80 98 .icon-collapse:before { 81 99 content: "\e600"; 82 100 } 101 83 102 .icon-meta:before { 84 103 content: "\e601"; 85 104 } 105 86 106 .icon-director:before { 87 107 content: "\e603"; 88 108 } 109 89 110 .icon-import-alt:before { 90 111 content: "\e604"; 91 112 } 113 92 114 .icon-edit:before { 93 115 content: "\e605"; 94 116 } 117 95 118 .icon-video:before { 96 119 content: "\e606"; 97 120 } 121 98 122 .icon-hd-o:before { 99 123 content: "\e609"; 100 124 } 125 101 126 .icon-sd-o:before { 102 127 content: "\e60b"; 103 128 } 129 104 130 .icon-images-alt:before { 105 131 content: "\e60d"; 106 132 } 133 107 134 .icon-queue-alt:before { 108 135 content: "\e60e"; 109 136 } 137 110 138 .icon-blu-ray-alt:before { 111 139 content: "\e60f"; 112 140 } 141 113 142 .icon-divx-alt:before { 114 143 content: "\e611"; 115 144 } 145 116 146 .icon-dvd-alt:before { 117 147 content: "\e612"; 118 148 } 149 119 150 .icon-mkv-alt:before { 120 151 content: "\e613"; 121 152 } 153 122 154 .icon-streaming:before { 123 155 content: "\e614"; 124 156 } 157 125 158 .icon-vhs:before { 126 159 content: "\e615"; 127 160 } 161 128 162 .icon-vod:before { 129 163 content: "\e616"; 130 164 } 165 131 166 .icon-no:before { 132 167 content: "\e618"; 133 168 } 169 134 170 .icon-no-alt:before { 135 171 content: "\e619"; 136 172 } 173 137 174 .icon-plus:before { 138 175 content: "\e61a"; 139 176 } 177 140 178 .icon-queued:before { 141 179 content: "\e61c"; 142 180 } 181 143 182 .icon-grid:before { 144 183 content: "\e61d"; 145 184 } 185 146 186 .icon-search:before { 147 187 content: "\e61e"; 148 188 } 189 149 190 .icon-shared:before { 150 191 content: "\e61f"; 151 192 } 193 152 194 .icon-star-empty:before { 153 195 content: "\e620"; 154 196 } 197 155 198 .icon-star-filled:before { 156 199 content: "\e621"; 157 200 } 201 158 202 .icon-star-half:before { 159 203 content: "\e622"; 160 204 } 205 161 206 .icon-status:before { 162 207 content: "\e623"; 163 208 } 209 164 210 .icon-scheduled:before { 165 211 content: "\e624"; 166 212 } 213 167 214 .icon-tag:before { 168 215 content: "\e626"; 169 216 } 217 170 218 .icon-update:before { 171 219 content: "\e627"; 172 220 } 221 173 222 .icon-export-alt:before { 174 223 content: "\e628"; 175 224 } 225 176 226 .icon-add-page:before { 177 227 content: "\e629"; 178 228 } 229 179 230 .icon-preview:before { 180 231 content: "\e62a"; 181 232 } 233 182 234 .icon-edit-page:before { 183 235 content: "\e62b"; 184 236 } 237 185 238 .icon-wpmoly:before { 186 239 content: "\e62c"; 187 240 } 241 188 242 .icon-th-large:before { 189 243 content: "\f009"; 190 244 } 245 191 246 .icon-th:before { 192 247 content: "\f00a"; 193 248 } 249 194 250 .icon-th-list:before { 195 251 content: "\f00b"; 196 252 } 253 197 254 .icon-deactivate:before { 198 255 content: "\f011"; 199 256 } 257 200 258 .icon-flag:before { 201 259 content: "\f024"; 202 260 } 261 203 262 .icon-audio-alt:before { 204 263 content: "\f025"; 205 264 } 265 206 266 .icon-audio:before { 207 267 content: "\f028"; 208 268 } 269 209 270 .icon-tags:before { 210 271 content: "\f02c"; 211 272 } 273 212 274 .icon-align-justify:before { 213 275 content: "\f039"; 214 276 } 277 215 278 .icon-list:before { 216 279 content: "\f03a"; 217 280 } 281 218 282 .icon-image:before { 219 283 content: "\f03e"; 220 284 } 285 221 286 .icon-asterisk:before { 222 287 content: "\f069"; 223 288 } 289 224 290 .icon-cogs:before { 225 291 content: "\f085"; 226 292 } 293 227 294 .icon-details:before { 228 295 content: "\f0b0"; 229 296 } 297 230 298 .icon-advanced:before { 231 299 content: "\f0c3"; 232 300 } 301 233 302 .icon-format:before { 234 303 content: "\f0d0"; 235 304 } 305 236 306 .icon-money:before { 237 307 content: "\f0d6"; 238 308 } 309 239 310 .icon-circle-o:before { 240 311 content: "\f10c"; 241 312 } 313 242 314 .icon-ellipsis-h:before { 243 315 content: "\f141"; 244 316 } 317 245 318 .icon-ellipsis-v:before { 246 319 content: "\f142"; 247 320 } 321 248 322 .icon-dollar:before { 249 323 content: "\f155"; 250 324 } 325 251 326 .icon-sort-alpha-asc:before { 252 327 content: "\f15d"; 253 328 } 329 254 330 .icon-sort-alpha-desc:before { 255 331 content: "\f15e"; 256 332 } 333 257 334 .icon-sort-amount-asc:before { 258 335 content: "\f160"; 259 336 } 337 260 338 .icon-sort-amount-desc:before { 261 339 content: "\f161"; 262 340 } 341 263 342 .icon-sort-numeric-asc:before { 264 343 content: "\f162"; 265 344 } 345 266 346 .icon-sort-numeric-desc:before { 267 347 content: "\f163"; 268 348 } 349 269 350 .icon-wordpress:before { 270 351 content: "\f19a"; 271 352 } 353 272 354 .icon-language:before { 273 355 content: "\f1ab"; 274 356 } 357 275 358 .icon-cubes:before { 276 359 content: "\f1b3"; 277 360 } 361 278 362 .icon-cache:before { 279 363 content: "\e62d"; 280 364 } 365 281 366 .icon-author:before { 282 367 content: "\e62e"; 283 368 } 369 284 370 .icon-heart:before { 285 371 content: "\e62f"; 286 372 } 373 287 374 .icon-heart2:before { 288 375 content: "\e65a"; 289 376 } 377 290 378 .icon-overview:before { 291 379 content: "\e630"; 292 380 } 381 293 382 .icon-home:before { 294 383 content: "\e631"; 295 384 } 385 296 386 .icon-link:before { 297 387 content: "\e632"; 298 388 } 389 299 390 .icon-bug:before { 300 391 content: "\e633"; 301 392 } 393 302 394 .icon-trophy:before { 303 395 content: "\e65e"; 304 396 } 397 398 .icon-camera:before { 399 content: "\e65d"; 400 } 401 305 402 .icon-cache-alt:before { 306 403 content: "\e634"; 307 404 } 405 308 406 .icon-composer:before { 309 407 content: "\e635"; 310 408 } 409 311 410 .icon-certification:before { 312 411 content: "\e65f"; 313 412 } 413 314 414 .icon-doc:before { 315 415 content: "\e636"; 316 416 } 417 418 .icon-book:before { 419 content: "\e667"; 420 } 421 317 422 .icon-help:before { 318 423 content: "\e637"; 319 424 } 425 320 426 .icon-runtime:before { 321 427 content: "\e638"; 322 428 } 429 323 430 .icon-producer:before { 324 431 content: "\e639"; 325 432 } 433 326 434 .icon-lang:before { 327 435 content: "\e63a"; 328 436 } 437 329 438 .icon-style:before { 330 439 content: "\e651"; 331 440 } 441 332 442 .icon-country:before { 333 443 content: "\e63b"; 334 444 } 445 335 446 .icon-browser:before { 336 447 content: "\e665"; 337 448 } 449 338 450 .icon-code:before { 339 451 content: "\e643"; 340 452 } 453 341 454 .icon-cinema-alt:before { 342 455 content: "\e63c"; 343 456 } 457 344 458 .icon-graph:before { 345 459 content: "\e666"; 346 460 } 461 347 462 .icon-erase:before { 348 463 content: "\e63d"; 349 464 } 465 350 466 .icon-info:before { 351 467 content: "\e652"; 352 468 } 469 353 470 .icon-info-o:before { 354 471 content: "\e653"; 355 472 } 473 356 474 .icon-question:before { 357 475 content: "\e654"; 358 476 } 477 359 478 .icon-question-alt:before { 360 479 content: "\e655"; 361 480 } 481 362 482 .icon-warning:before { 363 483 content: "\e656"; 364 484 } 485 365 486 .icon-legacy:before { 366 487 content: "\e650"; 367 488 } 489 368 490 .icon-images:before { 369 491 content: "\e63e"; 370 492 } 493 371 494 .icon-movie:before { 372 495 content: "\e617"; 373 496 } 497 374 498 .icon-folder:before { 375 499 content: "\e659"; 376 500 } 501 377 502 .icon-archive:before { 378 503 content: "\e664"; 379 504 } 505 380 506 .icon-trash:before { 381 507 content: "\e63f"; 382 508 } 509 383 510 .icon-export:before { 384 511 content: "\e640"; 385 512 } 513 386 514 .icon-import:before { 387 515 content: "\e641"; 388 516 } 517 389 518 .icon-resize-enlarge:before { 390 519 content: "\e65b"; 391 520 } 521 392 522 .icon-resize-shrink:before { 393 523 content: "\e65c"; 394 524 } 525 395 526 .icon-arrow-left:before { 396 527 content: "\e644"; 397 528 } 529 398 530 .icon-arrow-down:before { 399 531 content: "\e645"; 400 532 } 533 401 534 .icon-arrow-up:before { 402 535 content: "\e646"; 403 536 } 537 404 538 .icon-arrow-right:before { 405 539 content: "\e647"; 406 540 } 541 407 542 .icon-github:before { 408 543 content: "\e648"; 409 544 } 545 410 546 .icon-twitter:before { 411 547 content: "\e649"; 412 548 } 549 413 550 .icon-facebook:before { 414 551 content: "\e64a"; 415 552 } 553 416 554 .icon-googleplus:before { 417 555 content: "\e64b"; 418 556 } 557 419 558 .icon-linkedin:before { 420 559 content: "\e64c"; 421 560 } 561 -
wpmovielibrary/trunk/assets/js/admin/wpmoly-importer-meta.js
r1020078 r1058412 174 174 var $movies = $( '<tr class="wpmoly-import-movie-select"><td colspan="7"><div class="tmdb_select_movies"></div></td></tr>' ); 175 175 $.each( movies, function() { 176 $( '.tmdb_select_movies', $movies ).append( '<div class="tmdb_select_movie"><a href="#" onclick="wpmoly_import_meta.get( ' + post_id + ', ' + this.id + ' ); return false;"><img src="' + this.poster + '" alt="' + this.title + '" /><em>' + this.title + '</em> </a><input type=\'hidden\' value=\'' + this.json + '\' /></div>' );176 $( '.tmdb_select_movies', $movies ).append( '<div class="tmdb_select_movie"><a href="#" onclick="wpmoly_import_meta.get( ' + post_id + ', ' + this.id + ' ); return false;"><img src="' + this.poster + '" alt="' + this.title + '" /><em>' + this.title + '</em> (' + this.year + ')</a><input type=\'hidden\' value=\'' + this.json + '\' /></div>' ); 177 177 }); 178 178 -
wpmovielibrary/trunk/includes/classes/class-wpmoly-utils.php
r1056255 r1058412 278 278 279 279 $new_rules[ $slug . '/?$' ] = 'index.php?page_id=' . $collection; 280 $ rules[ $title . '/' . $grid . '/(.*?)/?$' ] = 'index.php?page_id=' . $collection . '&view=$matches[1]&sorting=$matches[2]';280 $new_rules[ $title . '/' . $grid . '/(.*?)/?$' ] = 'index.php?page_id=' . $collection . '&view=$matches[1]&sorting=$matches[2]'; 281 281 } 282 282 … … 288 288 289 289 $new_rules[ $slug . '/?$' ] = 'index.php?page_id=' . $genre; 290 $ rules[ $title . '/' . $grid . '/(.*?)/?$' ] = 'index.php?page_id=' . $genre . '&view=$matches[1]&sorting=$matches[2]';290 $new_rules[ $title . '/' . $grid . '/(.*?)/?$' ] = 'index.php?page_id=' . $genre . '&view=$matches[1]&sorting=$matches[2]'; 291 291 } 292 292 … … 298 298 299 299 $new_rules[ $slug . '/?$' ] = 'index.php?page_id=' . $actor; 300 $rules[ $title . '/' . $grid . '/(.*?)/?$' ] = 'index.php?page_id=' . $actor . '&view=$matches[1]&sorting=$matches[2]'; 301 } 302 303 $rules[ '([^/]+)/' . $grid . '/?$' ] = 'index.php?pagename=$matches[1]&view=$matches[2]'; 304 $rules[ '([^/]+)/' . $grid . '/(.*?)/?$' ] = 'index.php?pagename=$matches[1]&view=$matches[2]&sorting=$matches[3]'; 305 $rules[ '([^/]+)/' . $meta . '/([^/]+)/?$' ] = 'index.php?pagename=$matches[1]&meta=$matches[2]&value=$matches[3]'; 306 $rules[ '([^/]+)/' . $meta . '/([^/]+)/' . $grid . '/?$' ] = 'index.php?pagename=$matches[1]&meta=$matches[2]&value=$matches[3]&view=$matches[4]'; 307 $rules[ '([^/]+)/' . $meta . '/([^/]+)/' . $grid . '/(.*?)/?$' ] = 'index.php?pagename=$matches[1]&meta=$matches[2]&value=$matches[3]&view=$matches[4]&sorting=$matches[5]'; 308 $rules[ '([^/]+)/([^/]+)/([^/]+)/?$' ] = 'index.php?pagename=$matches[1]&meta=$matches[2]&value=$matches[3]'; 309 $rules[ '([^/]+)/([^/]+)/([^/]+)/' . $grid . '/?$' ] = 'index.php?pagename=$matches[1]&meta=$matches[2]&value=$matches[3]&view=$matches[4]'; 310 $rules[ '([^/]+)/([^/]+)/([^/]+)/' . $grid . '/(.*?)/?$' ] = 'index.php?pagename=$matches[1]&meta=$matches[2]&value=$matches[3]&view=$matches[4]&sorting=$matches[5]'; 300 $new_rules[ $title . '/' . $grid . '/(.*?)/?$' ] = 'index.php?page_id=' . $actor . '&view=$matches[1]&sorting=$matches[2]'; 301 } 302 303 $new_rules[ '([^/]+)/' . $grid . '/?$' ] = 'index.php?pagename=$matches[1]&view=$matches[2]'; 304 $new_rules[ '([^/]+)/' . $grid . '/(.*?)/?$' ] = 'index.php?pagename=$matches[1]&view=$matches[2]&sorting=$matches[3]'; 305 $new_rules[ '([^/]+)/' . $meta . '/([^/]+)/?$' ] = 'index.php?pagename=$matches[1]&meta=$matches[2]&value=$matches[3]'; 306 $new_rules[ '([^/]+)/' . $meta . '/([^/]+)/' . $grid . '/?$' ] = 'index.php?pagename=$matches[1]&meta=$matches[2]&value=$matches[3]&view=$matches[4]'; 307 $new_rules[ '([^/]+)/' . $meta . '/([^/]+)/' . $grid . '/(.*?)/?$' ] = 'index.php?pagename=$matches[1]&meta=$matches[2]&value=$matches[3]&view=$matches[4]&sorting=$matches[5]'; 311 308 312 309 $new_rules = $new_rules + $rules; … … 1201 1198 public static function get_the_terms( $terms, $id, $taxonomy ) { 1202 1199 1203 // Term ordering is killing quick/bulk edit, avoid it1204 if ( is_admin() && 'edit-movie' == get_current_screen()->id )1205 return $terms;1206 1207 1200 // Only apply to "our" taxonomies 1208 1201 if ( ! in_array( $taxonomy, array( 'collection', 'genre', 'actor' ) ) ) 1202 return $terms; 1203 1204 // Term ordering is killing quick/bulk edit, avoid it 1205 if ( is_admin() && ( ! function_exists( 'get_current_screen' ) || 'edit-movie' == get_current_screen()->id ) ) 1209 1206 return $terms; 1210 1207 … … 1238 1235 public static function get_ordered_object_terms( $terms, $object_ids, $taxonomies, $args ) { 1239 1236 1240 if ( ! function_exists( 'get_current_screen' ) )1241 return $terms;1242 1243 1237 // Term ordering is killing quick/bulk edit, avoid it 1244 if ( is_admin() && 'edit-movie' == get_current_screen()->id)1238 if ( is_admin() && ( ! function_exists( 'get_current_screen' ) || 'edit-movie' == get_current_screen()->id ) ) 1245 1239 return $terms; 1246 1240 -
wpmovielibrary/trunk/includes/config/wpmoly-settings.php
r1056255 r1058412 393 393 'desc' => __( 'Movie Image size. Default is TMDb’s original size.', 'wpmovielibrary' ), 394 394 'options' => array( 395 'small' => __( 'Small (~ 200px)', 'wpmovielibrary' ),396 'medium' => __( 'Medium (~ 350px)', 'wpmovielibrary' ),397 'full' => __( 'Full (~ 800px) ', 'wpmovielibrary' ),395 'small' => __( 'Small (~300px)', 'wpmovielibrary' ), 396 'medium' => __( 'Medium (~780px)', 'wpmovielibrary' ), 397 'full' => __( 'Full (~1280px) ', 'wpmovielibrary' ), 398 398 'original' => __( 'Original', 'wpmovielibrary' ) 399 399 ), -
wpmovielibrary/trunk/includes/functions/wpmoly-movies-functions.php
r1038738 r1058412 112 112 113 113 /** 114 * Return Movie's details. 115 * 116 * @since 2.1.3 117 * 118 * @param int Movie Post ID 119 * 120 * @return array|string WPMOLY Movie details. 121 */ 122 function wpmoly_get_movie_details( $post_id = null ) { 123 return WPMOLY_Movies::get_movie_meta( $post_id, 'details' ); 124 } 125 126 /** 114 127 * Return Movie's Status. 115 128 * -
wpmovielibrary/trunk/includes/widgets/class-movies-widget.php
r1047390 r1058412 194 194 extract( $instance ); 195 195 196 //print_r( $instance );197 198 196 $title = apply_filters( 'widget_title', $title ); 199 197 … … 208 206 switch ( $select ) { 209 207 case 'status': 210 $args = array( 'orderby' => 'meta_value', 'meta_key' => '_wpmoly_movie_status' );211 if ( 'all' != $select_status )212 $args['meta_value'] = $select_status;213 break;214 208 case 'media': 215 $args = array( 'orderby' => 'meta_value', 'meta_key' => '_wpmoly_movie_media' ); 216 if ( 'all' != $select_media ) 217 $args['meta_value'] = $select_media; 209 $_select = $instance["select_$select"]; 210 $args = array( 211 'orderby' => 'post_date', 212 'meta_query' => array() 213 ); 214 if ( 'all' != $_select ) { 215 $args['meta_query'][] = array( 216 'key' => "_wpmoly_movie_$select", 217 'value' => $_select, 218 'compare' => 'LIKE' 219 ); 220 } else { 221 $args['meta_query'][] = array( 222 'key' => "_wpmoly_movie_$select", 223 'value' => '', 224 'compare' => 'NOT LIKE' 225 ); 226 } 218 227 break; 219 228 case 'rating': -
wpmovielibrary/trunk/languages/wpmovielibrary-de_DE.po
r1056255 r1058412 5 5 "Project-Id-Version: WPMovieLibrary 1.2.1\n" 6 6 "Report-Msgid-Bugs-To: http://wordpress.org/plugins/wpmovielibrary\n" 7 "POT-Creation-Date: 201 4-12-29 13:06+0100\n"8 "PO-Revision-Date: 201 4-12-29 13:06+0100\n"7 "POT-Creation-Date: 2015-01-02 09:46+0100\n" 8 "PO-Revision-Date: 2015-01-02 09:47+0100\n" 9 9 "Last-Translator: Charlie MERLAND <[email protected]>\n" 10 10 "Language-Team: LANGUAGE <[email protected]>\n" … … 105 105 msgstr "Das Bild, was Du versuchst hochzuladen, existiert bereits." 106 106 107 #: ../admin/class-wpmoly-media.php:39 1107 #: ../admin/class-wpmoly-media.php:394 108 108 msgid "See available Movie Posters" 109 109 msgstr "Sehe die verfügbaren Film-Plakate." … … 252 252 msgstr "WordPress Movie Library" 253 253 254 #: ../admin/class-wpmoly-edit-movies.php:7 26255 #: ../admin/class-wpmoly-edit-movies.php:7 56254 #: ../admin/class-wpmoly-edit-movies.php:731 255 #: ../admin/class-wpmoly-edit-movies.php:761 256 256 #: ../includes/classes/legacy/class-wpmoly-legacy.php:257 257 257 msgid "Error: submitted post is not a movie." 258 258 msgstr "Fehler: eingetragener Post ist kein Film." 259 259 260 #: ../admin/class-wpmoly-edit-movies.php:73 2260 #: ../admin/class-wpmoly-edit-movies.php:737 261 261 msgid "Error: the submitted movie details are invalid." 262 262 msgstr "Fehler: die eingetragenen Film-Details sind ungültig." 263 263 264 #: ../admin/class-wpmoly-edit-movies.php:90 4264 #: ../admin/class-wpmoly-edit-movies.php:909 265 265 msgid "You are not allowed to edit posts." 266 266 msgstr "Du hast nicht die Befugnis Posts zu bearbeiten." 267 267 268 #: ../admin/class-wpmoly-edit-movies.php:9 07268 #: ../admin/class-wpmoly-edit-movies.php:912 269 269 #, php-format 270 270 msgid "Posts with #%s is invalid or is not a movie." 271 271 msgstr "Posts mit #%s sind ungültig oder kein Film." 272 272 273 #: ../admin/class-wpmoly-edit-movies.php:102 4273 #: ../admin/class-wpmoly-edit-movies.php:1029 274 274 msgid "(no title)" 275 275 msgstr "(nicht titel)" … … 377 377 #: ../includes/widgets/class-movies-widget.php:172 378 378 #: ../public/class-wpmoly-movies.php:82 ../public/class-wpmoly-movies.php:94 379 #: ../public/class-wpmoly-archives.php:17 0380 #: ../public/class-wpmoly-archives.php:17 7381 #: ../public/class-wpmoly-archives.php:32 1382 #: ../public/class-wpmoly-archives.php:40 6379 #: ../public/class-wpmoly-archives.php:172 380 #: ../public/class-wpmoly-archives.php:179 381 #: ../public/class-wpmoly-archives.php:323 382 #: ../public/class-wpmoly-archives.php:408 383 383 #: ../views/admin/settings/settings.php:13 384 384 msgid "Movies" … … 386 386 387 387 #: ../admin/class-wpmoly-admin.php:159 388 #: ../includes/classes/class-wpmoly-utils.php:94 6389 #: ../includes/classes/class-wpmoly-utils.php:97 6390 #: ../includes/classes/class-wpmoly-utils.php:100 9391 #: ../includes/classes/class-wpmoly-utils.php:103 7392 #: ../includes/classes/class-wpmoly-utils.php:106 4393 #: ../public/class-wpmoly-archives.php:59 2388 #: ../includes/classes/class-wpmoly-utils.php:943 389 #: ../includes/classes/class-wpmoly-utils.php:973 390 #: ../includes/classes/class-wpmoly-utils.php:1006 391 #: ../includes/classes/class-wpmoly-utils.php:1034 392 #: ../includes/classes/class-wpmoly-utils.php:1061 393 #: ../public/class-wpmoly-archives.php:594 394 394 #, php-format 395 395 msgid "%d movie" … … 871 871 msgstr "Offizielle Website" 872 872 873 #: ../includes/classes/class-wpmoly-utils.php:81 7873 #: ../includes/classes/class-wpmoly-utils.php:814 874 874 msgid "Not rated yet!" 875 875 msgstr "Nicht bewertet !" 876 876 877 #: ../includes/classes/class-wpmoly-utils.php:125 6877 #: ../includes/classes/class-wpmoly-utils.php:1250 878 878 msgid "Invalid taxonomy" 879 879 msgstr "Ungültige Klase" 880 880 881 #: ../includes/classes/class-wpmoly-utils.php:13 50881 #: ../includes/classes/class-wpmoly-utils.php:1344 882 882 msgid "« Previous" 883 883 msgstr "« Vorherige" 884 884 885 #: ../includes/classes/class-wpmoly-utils.php:13 51885 #: ../includes/classes/class-wpmoly-utils.php:1345 886 886 msgid "Next »" 887 887 msgstr "Nächste »" 888 888 889 #: ../includes/classes/class-wpmoly-utils.php:13 91889 #: ../includes/classes/class-wpmoly-utils.php:1385 890 890 msgid "…" 891 891 msgstr "…" 892 892 893 #: ../includes/classes/class-wpmoly-utils.php:14 33893 #: ../includes/classes/class-wpmoly-utils.php:1427 894 894 #, php-format 895 895 msgid "" … … 1175 1175 #: ../public/class-wpmoly-shortcodes.php:568 1176 1176 #: ../public/class-wpmoly-genres.php:71 1177 #: ../public/class-wpmoly-archives.php:17 21178 #: ../public/class-wpmoly-archives.php:18 31179 #: ../public/class-wpmoly-archives.php:32 31177 #: ../public/class-wpmoly-archives.php:174 1178 #: ../public/class-wpmoly-archives.php:185 1179 #: ../public/class-wpmoly-archives.php:325 1180 1180 #: ../views/taxonomies-widget/taxonomies-admin.php:16 1181 1181 msgid "Genres" … … 1264 1264 #: ../public/class-wpmoly-headbox.php:188 ../public/class-wpmoly-actors.php:72 1265 1265 #: ../public/class-wpmoly-shortcodes.php:517 1266 #: ../public/class-wpmoly-archives.php:17 31267 #: ../public/class-wpmoly-archives.php:18 61268 #: ../public/class-wpmoly-archives.php:32 41266 #: ../public/class-wpmoly-archives.php:175 1267 #: ../public/class-wpmoly-archives.php:188 1268 #: ../public/class-wpmoly-archives.php:326 1269 1269 #: ../views/taxonomies-widget/taxonomies-admin.php:17 1270 1270 msgid "Actors" … … 1479 1479 1480 1480 #: ../includes/config/wpmoly-settings.php:338 1481 #: ../includes/config/wpmoly-settings.php:3951482 1481 msgid "Small (~200px)" 1483 1482 msgstr "Klein (~200px)" 1484 1483 1485 1484 #: ../includes/config/wpmoly-settings.php:339 1486 #: ../includes/config/wpmoly-settings.php:3961487 1485 msgid "Medium (~350px)" 1488 1486 msgstr "Mittel (~350px)" … … 1493 1491 1494 1492 #: ../includes/config/wpmoly-settings.php:341 1495 #: ../includes/config/wpmoly-settings.php:3971496 1493 msgid "Full (~800px) " 1497 1494 msgstr "Voll (~800px) " … … 1551 1548 msgstr "Film-Bild-Größe. Standardmäßig: Die Original-Größe von TMDb." 1552 1549 1550 #: ../includes/config/wpmoly-settings.php:395 1551 #, fuzzy 1552 msgid "Small (~300px)" 1553 msgstr "Klein (~200px)" 1554 1555 #: ../includes/config/wpmoly-settings.php:396 1556 #, fuzzy 1557 msgid "Medium (~780px)" 1558 msgstr "Mittel (~350px)" 1559 1560 #: ../includes/config/wpmoly-settings.php:397 1561 #, fuzzy 1562 msgid "Full (~1280px) " 1563 msgstr "Voll (~800px) " 1564 1553 1565 #: ../includes/config/wpmoly-settings.php:407 1554 1566 msgid "Delete images with movies" … … 1630 1642 #: ../includes/config/wpmoly-admin-menu.php:85 1631 1643 #: ../public/class-wpmoly-collections.php:72 1632 #: ../public/class-wpmoly-archives.php:17 11633 #: ../public/class-wpmoly-archives.php:18 01634 #: ../public/class-wpmoly-archives.php:32 21644 #: ../public/class-wpmoly-archives.php:173 1645 #: ../public/class-wpmoly-archives.php:182 1646 #: ../public/class-wpmoly-archives.php:324 1635 1647 #: ../views/taxonomies-widget/taxonomies-admin.php:15 1636 1648 msgid "Collections" … … 2986 2998 msgstr "" 2987 2999 2988 #: ../includes/widgets/class-movies-widget.php:2 73../views/empty.php:133000 #: ../includes/widgets/class-movies-widget.php:282 ../views/empty.php:13 2989 3001 msgid "Nothing to display." 2990 3002 msgstr "Nichts anzuzeigen." 2991 3003 2992 #: ../includes/widgets/class-movies-widget.php:2 833004 #: ../includes/widgets/class-movies-widget.php:292 2993 3005 #: ../includes/widgets/class-details-widget.php:135 2994 3006 #: ../includes/widgets/class-taxonomies-widget.php:173 … … 3098 3110 msgstr "Siehe die komplette Liste" 3099 3111 3100 #: ../public/class-wpmoly-headbox.php:3 893112 #: ../public/class-wpmoly-headbox.php:391 3101 3113 msgid "No images were imported for this movie." 3102 3114 msgstr "" … … 3176 3188 msgstr "Neues Genre" 3177 3189 3178 #: ../public/class-wpmoly-archives.php:40 23190 #: ../public/class-wpmoly-archives.php:404 3179 3191 #, fuzzy, php-format 3180 3192 msgid "Movies by %s" 3181 3193 msgstr "Filme" 3182 3194 3183 #: ../public/class-wpmoly-archives.php:40 43195 #: ../public/class-wpmoly-archives.php:406 3184 3196 #, php-format 3185 3197 msgid "Movies by %s: %s" 3186 3198 msgstr "" 3187 3199 3188 #: ../public/class-wpmoly-archives.php:41 33200 #: ../public/class-wpmoly-archives.php:415 3189 3201 #, php-format 3190 3202 msgid "Letter %s" 3191 3203 msgstr "" 3192 3204 3193 #: ../public/class-wpmoly-archives.php:41 63205 #: ../public/class-wpmoly-archives.php:418 3194 3206 #, php-format 3195 3207 msgid " %s Page %d " 3196 3208 msgstr "" 3197 3209 3198 #: ../public/class-wpmoly-archives.php:5 093210 #: ../public/class-wpmoly-archives.php:511 3199 3211 #, php-format 3200 3212 msgid "View all movies from collection « %s »" 3201 3213 msgstr "Siehe alle Filme von der Sammlung « %s »" 3202 3214 3203 #: ../public/class-wpmoly-archives.php:51 13215 #: ../public/class-wpmoly-archives.php:513 3204 3216 #, php-format 3205 3217 msgid "View all « %s » movies" 3206 3218 msgstr "Alle « %s » Filme" 3207 3219 3208 #: ../public/class-wpmoly-archives.php:51 33220 #: ../public/class-wpmoly-archives.php:515 3209 3221 #, php-format 3210 3222 msgid "View all movies staring « %s »" -
wpmovielibrary/trunk/languages/wpmovielibrary-en_EN.po
r1056255 r1058412 5 5 "Project-Id-Version: WPMovieLibrary 2.0-alpha.1\n" 6 6 "Report-Msgid-Bugs-To: http://wordpress.org/plugins/wpmovielibrary\n" 7 "POT-Creation-Date: 201 4-12-29 13:06+0100\n"8 "PO-Revision-Date: 201 4-12-29 13:06+0100\n"7 "POT-Creation-Date: 2015-01-02 09:46+0100\n" 8 "PO-Revision-Date: 2015-01-02 09:47+0100\n" 9 9 "Last-Translator: Charlie MERLAND <[email protected]>\n" 10 10 "Language-Team: WPMovieLibrary <[email protected]>\n" … … 104 104 msgstr "The image you're trying to upload already exists." 105 105 106 #: ../admin/class-wpmoly-media.php:39 1106 #: ../admin/class-wpmoly-media.php:394 107 107 msgid "See available Movie Posters" 108 108 msgstr "See available Movie Posters" … … 252 252 msgstr "WordPress Movie Library" 253 253 254 #: ../admin/class-wpmoly-edit-movies.php:7 26255 #: ../admin/class-wpmoly-edit-movies.php:7 56254 #: ../admin/class-wpmoly-edit-movies.php:731 255 #: ../admin/class-wpmoly-edit-movies.php:761 256 256 #: ../includes/classes/legacy/class-wpmoly-legacy.php:257 257 257 msgid "Error: submitted post is not a movie." 258 258 msgstr "Error: submitted post is not a movie." 259 259 260 #: ../admin/class-wpmoly-edit-movies.php:73 2260 #: ../admin/class-wpmoly-edit-movies.php:737 261 261 msgid "Error: the submitted movie details are invalid." 262 262 msgstr "Error: the submitted movie details are invalid." 263 263 264 #: ../admin/class-wpmoly-edit-movies.php:90 4264 #: ../admin/class-wpmoly-edit-movies.php:909 265 265 msgid "You are not allowed to edit posts." 266 266 msgstr "You are not allowed to edit posts." 267 267 268 #: ../admin/class-wpmoly-edit-movies.php:9 07268 #: ../admin/class-wpmoly-edit-movies.php:912 269 269 #, php-format 270 270 msgid "Posts with #%s is invalid or is not a movie." 271 271 msgstr "Posts with #%s is invalid or is not a movie." 272 272 273 #: ../admin/class-wpmoly-edit-movies.php:102 4273 #: ../admin/class-wpmoly-edit-movies.php:1029 274 274 msgid "(no title)" 275 275 msgstr "(no title)" … … 368 368 #: ../includes/widgets/class-movies-widget.php:172 369 369 #: ../public/class-wpmoly-movies.php:82 ../public/class-wpmoly-movies.php:94 370 #: ../public/class-wpmoly-archives.php:17 0371 #: ../public/class-wpmoly-archives.php:17 7372 #: ../public/class-wpmoly-archives.php:32 1373 #: ../public/class-wpmoly-archives.php:40 6370 #: ../public/class-wpmoly-archives.php:172 371 #: ../public/class-wpmoly-archives.php:179 372 #: ../public/class-wpmoly-archives.php:323 373 #: ../public/class-wpmoly-archives.php:408 374 374 #: ../views/admin/settings/settings.php:13 375 375 msgid "Movies" … … 377 377 378 378 #: ../admin/class-wpmoly-admin.php:159 379 #: ../includes/classes/class-wpmoly-utils.php:94 6380 #: ../includes/classes/class-wpmoly-utils.php:97 6381 #: ../includes/classes/class-wpmoly-utils.php:100 9382 #: ../includes/classes/class-wpmoly-utils.php:103 7383 #: ../includes/classes/class-wpmoly-utils.php:106 4384 #: ../public/class-wpmoly-archives.php:59 2379 #: ../includes/classes/class-wpmoly-utils.php:943 380 #: ../includes/classes/class-wpmoly-utils.php:973 381 #: ../includes/classes/class-wpmoly-utils.php:1006 382 #: ../includes/classes/class-wpmoly-utils.php:1034 383 #: ../includes/classes/class-wpmoly-utils.php:1061 384 #: ../public/class-wpmoly-archives.php:594 385 385 #, php-format 386 386 msgid "%d movie" … … 861 861 msgstr "Official Website" 862 862 863 #: ../includes/classes/class-wpmoly-utils.php:81 7863 #: ../includes/classes/class-wpmoly-utils.php:814 864 864 msgid "Not rated yet!" 865 865 msgstr "Not rated yet!" 866 866 867 #: ../includes/classes/class-wpmoly-utils.php:125 6867 #: ../includes/classes/class-wpmoly-utils.php:1250 868 868 msgid "Invalid taxonomy" 869 869 msgstr "Invalid taxonomy" 870 870 871 #: ../includes/classes/class-wpmoly-utils.php:13 50871 #: ../includes/classes/class-wpmoly-utils.php:1344 872 872 msgid "« Previous" 873 873 msgstr "« Previous" 874 874 875 #: ../includes/classes/class-wpmoly-utils.php:13 51875 #: ../includes/classes/class-wpmoly-utils.php:1345 876 876 msgid "Next »" 877 877 msgstr "Next »" 878 878 879 #: ../includes/classes/class-wpmoly-utils.php:13 91879 #: ../includes/classes/class-wpmoly-utils.php:1385 880 880 msgid "…" 881 881 msgstr "…" 882 882 883 #: ../includes/classes/class-wpmoly-utils.php:14 33883 #: ../includes/classes/class-wpmoly-utils.php:1427 884 884 #, php-format 885 885 msgid "" … … 1181 1181 #: ../public/class-wpmoly-shortcodes.php:568 1182 1182 #: ../public/class-wpmoly-genres.php:71 1183 #: ../public/class-wpmoly-archives.php:17 21184 #: ../public/class-wpmoly-archives.php:18 31185 #: ../public/class-wpmoly-archives.php:32 31183 #: ../public/class-wpmoly-archives.php:174 1184 #: ../public/class-wpmoly-archives.php:185 1185 #: ../public/class-wpmoly-archives.php:325 1186 1186 #: ../views/taxonomies-widget/taxonomies-admin.php:16 1187 1187 msgid "Genres" … … 1270 1270 #: ../public/class-wpmoly-headbox.php:188 ../public/class-wpmoly-actors.php:72 1271 1271 #: ../public/class-wpmoly-shortcodes.php:517 1272 #: ../public/class-wpmoly-archives.php:17 31273 #: ../public/class-wpmoly-archives.php:18 61274 #: ../public/class-wpmoly-archives.php:32 41272 #: ../public/class-wpmoly-archives.php:175 1273 #: ../public/class-wpmoly-archives.php:188 1274 #: ../public/class-wpmoly-archives.php:326 1275 1275 #: ../views/taxonomies-widget/taxonomies-admin.php:17 1276 1276 msgid "Actors" … … 1489 1489 1490 1490 #: ../includes/config/wpmoly-settings.php:338 1491 #: ../includes/config/wpmoly-settings.php:3951492 1491 msgid "Small (~200px)" 1493 1492 msgstr "Small (~200px)" 1494 1493 1495 1494 #: ../includes/config/wpmoly-settings.php:339 1496 #: ../includes/config/wpmoly-settings.php:3961497 1495 msgid "Medium (~350px)" 1498 1496 msgstr "Medium (~350px)" … … 1503 1501 1504 1502 #: ../includes/config/wpmoly-settings.php:341 1505 #: ../includes/config/wpmoly-settings.php:3971506 1503 msgid "Full (~800px) " 1507 1504 msgstr "Full (~800px) " … … 1561 1558 msgstr "Movie Image size. Default is TMDb’s original size." 1562 1559 1560 #: ../includes/config/wpmoly-settings.php:395 1561 msgid "Small (~300px)" 1562 msgstr "Small (~300px)" 1563 1564 #: ../includes/config/wpmoly-settings.php:396 1565 msgid "Medium (~780px)" 1566 msgstr "Medium (~780px)" 1567 1568 #: ../includes/config/wpmoly-settings.php:397 1569 msgid "Full (~1280px) " 1570 msgstr "Full (~1280px) " 1571 1563 1572 #: ../includes/config/wpmoly-settings.php:407 1564 1573 msgid "Delete images with movies" … … 1644 1653 #: ../includes/config/wpmoly-admin-menu.php:85 1645 1654 #: ../public/class-wpmoly-collections.php:72 1646 #: ../public/class-wpmoly-archives.php:17 11647 #: ../public/class-wpmoly-archives.php:18 01648 #: ../public/class-wpmoly-archives.php:32 21655 #: ../public/class-wpmoly-archives.php:173 1656 #: ../public/class-wpmoly-archives.php:182 1657 #: ../public/class-wpmoly-archives.php:324 1649 1658 #: ../views/taxonomies-widget/taxonomies-admin.php:15 1650 1659 msgid "Collections" … … 3031 3040 msgstr "Random" 3032 3041 3033 #: ../includes/widgets/class-movies-widget.php:2 73../views/empty.php:133042 #: ../includes/widgets/class-movies-widget.php:282 ../views/empty.php:13 3034 3043 msgid "Nothing to display." 3035 3044 msgstr "Nothing to display." 3036 3045 3037 #: ../includes/widgets/class-movies-widget.php:2 833046 #: ../includes/widgets/class-movies-widget.php:292 3038 3047 #: ../includes/widgets/class-details-widget.php:135 3039 3048 #: ../includes/widgets/class-taxonomies-widget.php:173 … … 3142 3151 msgstr "View the complete list" 3143 3152 3144 #: ../public/class-wpmoly-headbox.php:3 893153 #: ../public/class-wpmoly-headbox.php:391 3145 3154 msgid "No images were imported for this movie." 3146 3155 msgstr "No images were imported for this movie." … … 3223 3232 msgstr "New Genre" 3224 3233 3225 #: ../public/class-wpmoly-archives.php:40 23234 #: ../public/class-wpmoly-archives.php:404 3226 3235 #, php-format 3227 3236 msgid "Movies by %s" 3228 3237 msgstr "Movies by %s" 3229 3238 3230 #: ../public/class-wpmoly-archives.php:40 43239 #: ../public/class-wpmoly-archives.php:406 3231 3240 #, php-format 3232 3241 msgid "Movies by %s: %s" 3233 3242 msgstr "Movies by %s: %s" 3234 3243 3235 #: ../public/class-wpmoly-archives.php:41 33244 #: ../public/class-wpmoly-archives.php:415 3236 3245 #, php-format 3237 3246 msgid "Letter %s" 3238 3247 msgstr "Letter %s" 3239 3248 3240 #: ../public/class-wpmoly-archives.php:41 63249 #: ../public/class-wpmoly-archives.php:418 3241 3250 #, php-format 3242 3251 msgid " %s Page %d " 3243 3252 msgstr " %s Page %d " 3244 3253 3245 #: ../public/class-wpmoly-archives.php:5 093254 #: ../public/class-wpmoly-archives.php:511 3246 3255 #, php-format 3247 3256 msgid "View all movies from collection « %s »" 3248 3257 msgstr "View all movies from collection « %s »" 3249 3258 3250 #: ../public/class-wpmoly-archives.php:51 13259 #: ../public/class-wpmoly-archives.php:513 3251 3260 #, php-format 3252 3261 msgid "View all « %s » movies" 3253 3262 msgstr "View all « %s » movies" 3254 3263 3255 #: ../public/class-wpmoly-archives.php:51 33264 #: ../public/class-wpmoly-archives.php:515 3256 3265 #, php-format 3257 3266 msgid "View all movies staring « %s »" -
wpmovielibrary/trunk/languages/wpmovielibrary-fr_FR.po
r1056255 r1058412 5 5 "Project-Id-Version: WPMovieLibrary 2.0-alpha.1\n" 6 6 "Report-Msgid-Bugs-To: http://wordpress.org/plugins/wpmovielibrary\n" 7 "POT-Creation-Date: 201 4-12-29 13:06+0100\n"8 "PO-Revision-Date: 201 4-12-29 13:12+0100\n"7 "POT-Creation-Date: 2015-01-02 09:46+0100\n" 8 "PO-Revision-Date: 2015-01-02 09:48+0100\n" 9 9 "Last-Translator: Charlie MERLAND <[email protected]>\n" 10 10 "Language-Team: WPMovieLibrary <[email protected]>\n" … … 106 106 msgstr "L'image que vous essayez de télécharger existe déjà." 107 107 108 #: ../admin/class-wpmoly-media.php:39 1108 #: ../admin/class-wpmoly-media.php:394 109 109 msgid "See available Movie Posters" 110 110 msgstr "Afficher les affiches disponibles" … … 254 254 msgstr "WordPress Movie Library" 255 255 256 #: ../admin/class-wpmoly-edit-movies.php:7 26257 #: ../admin/class-wpmoly-edit-movies.php:7 56256 #: ../admin/class-wpmoly-edit-movies.php:731 257 #: ../admin/class-wpmoly-edit-movies.php:761 258 258 #: ../includes/classes/legacy/class-wpmoly-legacy.php:257 259 259 msgid "Error: submitted post is not a movie." 260 260 msgstr "Erreur : l'article n'est pas un film." 261 261 262 #: ../admin/class-wpmoly-edit-movies.php:73 2262 #: ../admin/class-wpmoly-edit-movies.php:737 263 263 msgid "Error: the submitted movie details are invalid." 264 264 msgstr "Erreur : détails invalides." 265 265 266 #: ../admin/class-wpmoly-edit-movies.php:90 4266 #: ../admin/class-wpmoly-edit-movies.php:909 267 267 msgid "You are not allowed to edit posts." 268 268 msgstr "Vous n'êtes pas autorisé à éditer les articles." 269 269 270 #: ../admin/class-wpmoly-edit-movies.php:9 07270 #: ../admin/class-wpmoly-edit-movies.php:912 271 271 #, php-format 272 272 msgid "Posts with #%s is invalid or is not a movie." 273 273 msgstr "L'article #%s est invalide ou n'est pas un film." 274 274 275 #: ../admin/class-wpmoly-edit-movies.php:102 4275 #: ../admin/class-wpmoly-edit-movies.php:1029 276 276 msgid "(no title)" 277 277 msgstr "(pas de titre)" … … 382 382 #: ../includes/widgets/class-movies-widget.php:172 383 383 #: ../public/class-wpmoly-movies.php:82 ../public/class-wpmoly-movies.php:94 384 #: ../public/class-wpmoly-archives.php:17 0385 #: ../public/class-wpmoly-archives.php:17 7386 #: ../public/class-wpmoly-archives.php:32 1387 #: ../public/class-wpmoly-archives.php:40 6384 #: ../public/class-wpmoly-archives.php:172 385 #: ../public/class-wpmoly-archives.php:179 386 #: ../public/class-wpmoly-archives.php:323 387 #: ../public/class-wpmoly-archives.php:408 388 388 #: ../views/admin/settings/settings.php:13 389 389 msgid "Movies" … … 391 391 392 392 #: ../admin/class-wpmoly-admin.php:159 393 #: ../includes/classes/class-wpmoly-utils.php:94 6394 #: ../includes/classes/class-wpmoly-utils.php:97 6395 #: ../includes/classes/class-wpmoly-utils.php:100 9396 #: ../includes/classes/class-wpmoly-utils.php:103 7397 #: ../includes/classes/class-wpmoly-utils.php:106 4398 #: ../public/class-wpmoly-archives.php:59 2393 #: ../includes/classes/class-wpmoly-utils.php:943 394 #: ../includes/classes/class-wpmoly-utils.php:973 395 #: ../includes/classes/class-wpmoly-utils.php:1006 396 #: ../includes/classes/class-wpmoly-utils.php:1034 397 #: ../includes/classes/class-wpmoly-utils.php:1061 398 #: ../public/class-wpmoly-archives.php:594 399 399 #, php-format 400 400 msgid "%d movie" … … 878 878 msgstr "Site officiel" 879 879 880 #: ../includes/classes/class-wpmoly-utils.php:81 7880 #: ../includes/classes/class-wpmoly-utils.php:814 881 881 msgid "Not rated yet!" 882 882 msgstr "Aucune note" 883 883 884 #: ../includes/classes/class-wpmoly-utils.php:125 6884 #: ../includes/classes/class-wpmoly-utils.php:1250 885 885 msgid "Invalid taxonomy" 886 886 msgstr "Taxonomie invalide" 887 887 888 #: ../includes/classes/class-wpmoly-utils.php:13 50888 #: ../includes/classes/class-wpmoly-utils.php:1344 889 889 msgid "« Previous" 890 890 msgstr "« Précédent" 891 891 892 #: ../includes/classes/class-wpmoly-utils.php:13 51892 #: ../includes/classes/class-wpmoly-utils.php:1345 893 893 msgid "Next »" 894 894 msgstr "Suivant »" 895 895 896 #: ../includes/classes/class-wpmoly-utils.php:13 91896 #: ../includes/classes/class-wpmoly-utils.php:1385 897 897 msgid "…" 898 898 msgstr "…" 899 899 900 #: ../includes/classes/class-wpmoly-utils.php:14 33900 #: ../includes/classes/class-wpmoly-utils.php:1427 901 901 #, php-format 902 902 msgid "" … … 1207 1207 #: ../public/class-wpmoly-shortcodes.php:568 1208 1208 #: ../public/class-wpmoly-genres.php:71 1209 #: ../public/class-wpmoly-archives.php:17 21210 #: ../public/class-wpmoly-archives.php:18 31211 #: ../public/class-wpmoly-archives.php:32 31209 #: ../public/class-wpmoly-archives.php:174 1210 #: ../public/class-wpmoly-archives.php:185 1211 #: ../public/class-wpmoly-archives.php:325 1212 1212 #: ../views/taxonomies-widget/taxonomies-admin.php:16 1213 1213 msgid "Genres" … … 1296 1296 #: ../public/class-wpmoly-headbox.php:188 ../public/class-wpmoly-actors.php:72 1297 1297 #: ../public/class-wpmoly-shortcodes.php:517 1298 #: ../public/class-wpmoly-archives.php:17 31299 #: ../public/class-wpmoly-archives.php:18 61300 #: ../public/class-wpmoly-archives.php:32 41298 #: ../public/class-wpmoly-archives.php:175 1299 #: ../public/class-wpmoly-archives.php:188 1300 #: ../public/class-wpmoly-archives.php:326 1301 1301 #: ../views/taxonomies-widget/taxonomies-admin.php:17 1302 1302 msgid "Actors" … … 1517 1517 1518 1518 #: ../includes/config/wpmoly-settings.php:338 1519 #: ../includes/config/wpmoly-settings.php:3951520 1519 msgid "Small (~200px)" 1521 1520 msgstr "Petit (~200px)" 1522 1521 1523 1522 #: ../includes/config/wpmoly-settings.php:339 1524 #: ../includes/config/wpmoly-settings.php:3961525 1523 msgid "Medium (~350px)" 1526 1524 msgstr "Moyen (~350px)" … … 1531 1529 1532 1530 #: ../includes/config/wpmoly-settings.php:341 1533 #: ../includes/config/wpmoly-settings.php:3971534 1531 msgid "Full (~800px) " 1535 1532 msgstr "Très large (~800px) " … … 1591 1588 msgstr "Taille des images de films, par défaut la taille originale de TMDb." 1592 1589 1590 #: ../includes/config/wpmoly-settings.php:395 1591 msgid "Small (~300px)" 1592 msgstr "Petit (~300px)" 1593 1594 #: ../includes/config/wpmoly-settings.php:396 1595 msgid "Medium (~780px)" 1596 msgstr "Moyen (~780px)" 1597 1598 #: ../includes/config/wpmoly-settings.php:397 1599 msgid "Full (~1280px) " 1600 msgstr "Large (~1280px) " 1601 1593 1602 #: ../includes/config/wpmoly-settings.php:407 1594 1603 msgid "Delete images with movies" … … 1675 1684 #: ../includes/config/wpmoly-admin-menu.php:85 1676 1685 #: ../public/class-wpmoly-collections.php:72 1677 #: ../public/class-wpmoly-archives.php:17 11678 #: ../public/class-wpmoly-archives.php:18 01679 #: ../public/class-wpmoly-archives.php:32 21686 #: ../public/class-wpmoly-archives.php:173 1687 #: ../public/class-wpmoly-archives.php:182 1688 #: ../public/class-wpmoly-archives.php:324 1680 1689 #: ../views/taxonomies-widget/taxonomies-admin.php:15 1681 1690 msgid "Collections" … … 3084 3093 msgstr "Aléatoire" 3085 3094 3086 #: ../includes/widgets/class-movies-widget.php:2 73../views/empty.php:133095 #: ../includes/widgets/class-movies-widget.php:282 ../views/empty.php:13 3087 3096 msgid "Nothing to display." 3088 3097 msgstr "Rien à afficher" 3089 3098 3090 #: ../includes/widgets/class-movies-widget.php:2 833099 #: ../includes/widgets/class-movies-widget.php:292 3091 3100 #: ../includes/widgets/class-details-widget.php:135 3092 3101 #: ../includes/widgets/class-taxonomies-widget.php:173 … … 3193 3202 msgstr "Voir la liste complète" 3194 3203 3195 #: ../public/class-wpmoly-headbox.php:3 893204 #: ../public/class-wpmoly-headbox.php:391 3196 3205 msgid "No images were imported for this movie." 3197 3206 msgstr "Aucune image importée pour ce film." … … 3274 3283 msgstr "Nouveau genre" 3275 3284 3276 #: ../public/class-wpmoly-archives.php:40 23285 #: ../public/class-wpmoly-archives.php:404 3277 3286 #, php-format 3278 3287 msgid "Movies by %s" 3279 3288 msgstr "Films par %s" 3280 3289 3281 #: ../public/class-wpmoly-archives.php:40 43290 #: ../public/class-wpmoly-archives.php:406 3282 3291 #, php-format 3283 3292 msgid "Movies by %s: %s" 3284 3293 msgstr "Films par %s : %s" 3285 3294 3286 #: ../public/class-wpmoly-archives.php:41 33295 #: ../public/class-wpmoly-archives.php:415 3287 3296 #, php-format 3288 3297 msgid "Letter %s" 3289 3298 msgstr "Lettre %s" 3290 3299 3291 #: ../public/class-wpmoly-archives.php:41 63300 #: ../public/class-wpmoly-archives.php:418 3292 3301 #, php-format 3293 3302 msgid " %s Page %d " 3294 3303 msgstr "%s Page %d " 3295 3304 3296 #: ../public/class-wpmoly-archives.php:5 093305 #: ../public/class-wpmoly-archives.php:511 3297 3306 #, php-format 3298 3307 msgid "View all movies from collection « %s »" 3299 3308 msgstr "Voir tous les films de la collection « %s »" 3300 3309 3301 #: ../public/class-wpmoly-archives.php:51 13310 #: ../public/class-wpmoly-archives.php:513 3302 3311 #, php-format 3303 3312 msgid "View all « %s » movies" 3304 3313 msgstr "Voir tous les films « %s »" 3305 3314 3306 #: ../public/class-wpmoly-archives.php:51 33315 #: ../public/class-wpmoly-archives.php:515 3307 3316 #, php-format 3308 3317 msgid "View all movies staring « %s »" -
wpmovielibrary/trunk/languages/wpmovielibrary.pot
r1056255 r1058412 5 5 "Project-Id-Version: WPMovieLibrary 2.0-beta.1\n" 6 6 "Report-Msgid-Bugs-To: http://wordpress.org/plugins/wpmovielibrary\n" 7 "POT-Creation-Date: 201 4-12-29 13:06+0100\n"8 "PO-Revision-Date: 201 4-12-29 13:06+0100\n"7 "POT-Creation-Date: 2015-01-02 09:46+0100\n" 8 "PO-Revision-Date: 2015-01-02 09:47+0100\n" 9 9 "Last-Translator: Charlie MERLAND <[email protected]>\n" 10 10 "Language-Team: WPMovieLibrary <[email protected]>\n" … … 113 113 msgstr "" 114 114 115 #: ../admin/class-wpmoly-media.php:39 1115 #: ../admin/class-wpmoly-media.php:394 116 116 msgid "See available Movie Posters" 117 117 msgstr "" … … 259 259 msgstr "" 260 260 261 #: ../admin/class-wpmoly-edit-movies.php:7 26262 #: ../admin/class-wpmoly-edit-movies.php:7 56261 #: ../admin/class-wpmoly-edit-movies.php:731 262 #: ../admin/class-wpmoly-edit-movies.php:761 263 263 #: ../includes/classes/legacy/class-wpmoly-legacy.php:257 264 264 msgid "Error: submitted post is not a movie." 265 265 msgstr "" 266 266 267 #: ../admin/class-wpmoly-edit-movies.php:73 2267 #: ../admin/class-wpmoly-edit-movies.php:737 268 268 msgid "Error: the submitted movie details are invalid." 269 269 msgstr "" 270 270 271 #: ../admin/class-wpmoly-edit-movies.php:90 4271 #: ../admin/class-wpmoly-edit-movies.php:909 272 272 msgid "You are not allowed to edit posts." 273 273 msgstr "" 274 274 275 #: ../admin/class-wpmoly-edit-movies.php:9 07275 #: ../admin/class-wpmoly-edit-movies.php:912 276 276 #, php-format 277 277 msgid "Posts with #%s is invalid or is not a movie." 278 278 msgstr "" 279 279 280 #: ../admin/class-wpmoly-edit-movies.php:102 4280 #: ../admin/class-wpmoly-edit-movies.php:1029 281 281 msgid "(no title)" 282 282 msgstr "" … … 373 373 #: ../includes/widgets/class-movies-widget.php:172 374 374 #: ../public/class-wpmoly-movies.php:82 ../public/class-wpmoly-movies.php:94 375 #: ../public/class-wpmoly-archives.php:17 0376 #: ../public/class-wpmoly-archives.php:17 7377 #: ../public/class-wpmoly-archives.php:32 1378 #: ../public/class-wpmoly-archives.php:40 6375 #: ../public/class-wpmoly-archives.php:172 376 #: ../public/class-wpmoly-archives.php:179 377 #: ../public/class-wpmoly-archives.php:323 378 #: ../public/class-wpmoly-archives.php:408 379 379 #: ../views/admin/settings/settings.php:13 380 380 msgid "Movies" … … 382 382 383 383 #: ../admin/class-wpmoly-admin.php:159 384 #: ../includes/classes/class-wpmoly-utils.php:94 6385 #: ../includes/classes/class-wpmoly-utils.php:97 6386 #: ../includes/classes/class-wpmoly-utils.php:100 9387 #: ../includes/classes/class-wpmoly-utils.php:103 7388 #: ../includes/classes/class-wpmoly-utils.php:106 4389 #: ../public/class-wpmoly-archives.php:59 2384 #: ../includes/classes/class-wpmoly-utils.php:943 385 #: ../includes/classes/class-wpmoly-utils.php:973 386 #: ../includes/classes/class-wpmoly-utils.php:1006 387 #: ../includes/classes/class-wpmoly-utils.php:1034 388 #: ../includes/classes/class-wpmoly-utils.php:1061 389 #: ../public/class-wpmoly-archives.php:594 390 390 #, php-format 391 391 msgid "%d movie" … … 858 858 msgstr "" 859 859 860 #: ../includes/classes/class-wpmoly-utils.php:81 7860 #: ../includes/classes/class-wpmoly-utils.php:814 861 861 msgid "Not rated yet!" 862 862 msgstr "" 863 863 864 #: ../includes/classes/class-wpmoly-utils.php:125 6864 #: ../includes/classes/class-wpmoly-utils.php:1250 865 865 msgid "Invalid taxonomy" 866 866 msgstr "" 867 867 868 #: ../includes/classes/class-wpmoly-utils.php:13 50868 #: ../includes/classes/class-wpmoly-utils.php:1344 869 869 msgid "« Previous" 870 870 msgstr "" 871 871 872 #: ../includes/classes/class-wpmoly-utils.php:13 51872 #: ../includes/classes/class-wpmoly-utils.php:1345 873 873 msgid "Next »" 874 874 msgstr "" 875 875 876 #: ../includes/classes/class-wpmoly-utils.php:13 91876 #: ../includes/classes/class-wpmoly-utils.php:1385 877 877 msgid "…" 878 878 msgstr "" 879 879 880 #: ../includes/classes/class-wpmoly-utils.php:14 33880 #: ../includes/classes/class-wpmoly-utils.php:1427 881 881 #, php-format 882 882 msgid "" … … 1159 1159 #: ../public/class-wpmoly-shortcodes.php:568 1160 1160 #: ../public/class-wpmoly-genres.php:71 1161 #: ../public/class-wpmoly-archives.php:17 21162 #: ../public/class-wpmoly-archives.php:18 31163 #: ../public/class-wpmoly-archives.php:32 31161 #: ../public/class-wpmoly-archives.php:174 1162 #: ../public/class-wpmoly-archives.php:185 1163 #: ../public/class-wpmoly-archives.php:325 1164 1164 #: ../views/taxonomies-widget/taxonomies-admin.php:16 1165 1165 msgid "Genres" … … 1248 1248 #: ../public/class-wpmoly-headbox.php:188 ../public/class-wpmoly-actors.php:72 1249 1249 #: ../public/class-wpmoly-shortcodes.php:517 1250 #: ../public/class-wpmoly-archives.php:17 31251 #: ../public/class-wpmoly-archives.php:18 61252 #: ../public/class-wpmoly-archives.php:32 41250 #: ../public/class-wpmoly-archives.php:175 1251 #: ../public/class-wpmoly-archives.php:188 1252 #: ../public/class-wpmoly-archives.php:326 1253 1253 #: ../views/taxonomies-widget/taxonomies-admin.php:17 1254 1254 msgid "Actors" … … 1454 1454 1455 1455 #: ../includes/config/wpmoly-settings.php:338 1456 #: ../includes/config/wpmoly-settings.php:3951457 1456 msgid "Small (~200px)" 1458 1457 msgstr "" 1459 1458 1460 1459 #: ../includes/config/wpmoly-settings.php:339 1461 #: ../includes/config/wpmoly-settings.php:3961462 1460 msgid "Medium (~350px)" 1463 1461 msgstr "" … … 1468 1466 1469 1467 #: ../includes/config/wpmoly-settings.php:341 1470 #: ../includes/config/wpmoly-settings.php:3971471 1468 msgid "Full (~800px) " 1472 1469 msgstr "" … … 1526 1523 msgstr "" 1527 1524 1525 #: ../includes/config/wpmoly-settings.php:395 1526 msgid "Small (~300px)" 1527 msgstr "" 1528 1529 #: ../includes/config/wpmoly-settings.php:396 1530 msgid "Medium (~780px)" 1531 msgstr "" 1532 1533 #: ../includes/config/wpmoly-settings.php:397 1534 msgid "Full (~1280px) " 1535 msgstr "" 1536 1528 1537 #: ../includes/config/wpmoly-settings.php:407 1529 1538 msgid "Delete images with movies" … … 1602 1611 #: ../includes/config/wpmoly-admin-menu.php:85 1603 1612 #: ../public/class-wpmoly-collections.php:72 1604 #: ../public/class-wpmoly-archives.php:17 11605 #: ../public/class-wpmoly-archives.php:18 01606 #: ../public/class-wpmoly-archives.php:32 21613 #: ../public/class-wpmoly-archives.php:173 1614 #: ../public/class-wpmoly-archives.php:182 1615 #: ../public/class-wpmoly-archives.php:324 1607 1616 #: ../views/taxonomies-widget/taxonomies-admin.php:15 1608 1617 msgid "Collections" … … 2883 2892 msgstr "" 2884 2893 2885 #: ../includes/widgets/class-movies-widget.php:2 73../views/empty.php:132894 #: ../includes/widgets/class-movies-widget.php:282 ../views/empty.php:13 2886 2895 msgid "Nothing to display." 2887 2896 msgstr "" 2888 2897 2889 #: ../includes/widgets/class-movies-widget.php:2 832898 #: ../includes/widgets/class-movies-widget.php:292 2890 2899 #: ../includes/widgets/class-details-widget.php:135 2891 2900 #: ../includes/widgets/class-taxonomies-widget.php:173 … … 2990 2999 msgstr "" 2991 3000 2992 #: ../public/class-wpmoly-headbox.php:3 893001 #: ../public/class-wpmoly-headbox.php:391 2993 3002 msgid "No images were imported for this movie." 2994 3003 msgstr "" … … 3068 3077 msgstr "" 3069 3078 3070 #: ../public/class-wpmoly-archives.php:40 23079 #: ../public/class-wpmoly-archives.php:404 3071 3080 #, php-format 3072 3081 msgid "Movies by %s" 3073 3082 msgstr "" 3074 3083 3075 #: ../public/class-wpmoly-archives.php:40 43084 #: ../public/class-wpmoly-archives.php:406 3076 3085 #, php-format 3077 3086 msgid "Movies by %s: %s" 3078 3087 msgstr "" 3079 3088 3080 #: ../public/class-wpmoly-archives.php:41 33089 #: ../public/class-wpmoly-archives.php:415 3081 3090 #, php-format 3082 3091 msgid "Letter %s" 3083 3092 msgstr "" 3084 3093 3085 #: ../public/class-wpmoly-archives.php:41 63094 #: ../public/class-wpmoly-archives.php:418 3086 3095 #, php-format 3087 3096 msgid " %s Page %d " 3088 3097 msgstr "" 3089 3098 3090 #: ../public/class-wpmoly-archives.php:5 093099 #: ../public/class-wpmoly-archives.php:511 3091 3100 #, php-format 3092 3101 msgid "View all movies from collection « %s »" 3093 3102 msgstr "" 3094 3103 3095 #: ../public/class-wpmoly-archives.php:51 13104 #: ../public/class-wpmoly-archives.php:513 3096 3105 #, php-format 3097 3106 msgid "View all « %s » movies" 3098 3107 msgstr "" 3099 3108 3100 #: ../public/class-wpmoly-archives.php:51 33109 #: ../public/class-wpmoly-archives.php:515 3101 3110 #, php-format 3102 3111 msgid "View all movies staring « %s »" -
wpmovielibrary/trunk/public/class-wpmoly-archives.php
r1056255 r1058412 57 57 add_filter( 'the_title', array( $this, 'movie_archives_title' ), 10, 2 ); 58 58 add_filter( 'wp_title', array( $this, 'movie_archives_title' ), 10, 2 ); 59 60 add_action( 'pre_get_posts', __CLASS__ . '::subpages', 10, 1 ); 59 61 60 62 if ( '' == wpmoly_o( 'movie-archives' ) ) … … 742 744 } 743 745 746 /** 747 * Prevent custom permalinks from breaking pages hierarchy. 748 * 749 * The permalink structure for meta query could interfere with 750 * pages with three levels or hierarchy, ie. page with URLs like 751 * http://domain/page_a/{matching_meta_or_detail}/page_c/, 752 * resulting in page A being displayed instead of page C. Very 753 * unlike, but still possible. 754 * 755 * @since 2.1.3 756 * 757 * @param object $wp_query Current WP_Query instance 758 */ 759 public static function subpages( $wp_query ) { 760 761 global $wp; 762 763 // Don't run this in dashboard or on posts 764 $request = $wp->request; 765 if ( is_admin() || is_null( $request ) || ! isset( $wp_query->queried_object_id ) || is_null( $wp_query->queried_object_id ) ) 766 return false; 767 768 // Page is correct, dismiss 769 $post_id = $wp_query->queried_object_id; 770 $pageuri = get_page_uri( $post_id ); 771 if ( $request == $pageuri ) 772 return false; 773 774 $page = get_page_by_path( $request ); 775 if ( is_null( $page ) ) 776 return false; 777 778 $wp_query->queried_object = $page; 779 $wp_query->queried_object_id = $page->ID; 780 $wp_query->set( 'pagename', $page->post_name ); 781 unset( $wp_query->query['meta'], $wp_query->query['value'], $wp_query->query_vars['meta'], $wp_query->query_vars['value'] ); 782 } 783 744 784 /** * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * 745 785 * -
wpmovielibrary/trunk/public/class-wpmoly-grid.php
r1056255 r1058412 274 274 $attributes = compact( 'movies', 'columns', 'title', 'year', 'rating', 'theme' ); 275 275 276 $content = self::render_template( "movies/grid/$view-loop.php", $attributes );276 $content = self::render_template( "movies/grid/$view-loop.php", $attributes, $require = 'always' ); 277 277 $content = $content . $paginate; 278 278 -
wpmovielibrary/trunk/public/class-wpmoly-headbox.php
r1047390 r1058412 293 293 294 294 // TODO: better filtering/formatting 295 $details = wpmoly_get_movie_details(); 296 295 297 $fields = wpmoly_o( 'sort-details' ); 296 298 $default_fields = WPMOLY_Settings::get_supported_movie_details(); … … 308 310 foreach ( $fields as $slug => $field ) { 309 311 310 $detail = call_user_func_array( 'wpmoly_get_movie_meta', array( 'post_id' => $post_id, 'meta' => $slug ) ); 312 $detail = $details[ $slug ]; 313 311 314 if ( ! is_array( $detail ) ) 312 315 $detail = array( $detail ); … … 317 320 318 321 $value = $default_fields[ $slug ]['options'][ $d ]; 319 320 322 if ( 'rating' == $slug ) { 321 323 $d = apply_filters( "wpmoly_movie_meta_link", 'rating', array_search( $value, $default_fields[ $slug ]['options'] ), 'detail', $value ); 322 324 } else { 323 $d = apply_filters( "wpmoly_movie_meta_link", $slug, $value, 'detail' );325 $d = apply_filters( "wpmoly_movie_meta_link", $slug, $value, 'detail', $value ); 324 326 } 325 327 } -
wpmovielibrary/trunk/public/class-wpmoly-movies.php
r1056255 r1058412 150 150 * @since 1.0 151 151 * 152 * @param int Movie Post ID 152 153 * @param string Meta type to return: data, status, media or rating 153 * @param int Movie Post ID154 154 * 155 155 * @return array|string WPMOLY Movie Meta if available, empty string else. … … 166 166 WPMOLY_Legacy::update_movie( $post_id ); 167 167 168 if ( 'data' == $meta ) { 168 if ( 'data' == $meta || 'meta' == $meta ) { 169 169 170 $_meta = WPMOLY_Settings::get_supported_movie_meta(); 170 171 $value = array(); … … 174 175 175 176 foreach ( array_keys( $_meta ) as $slug ) 177 $value[ $slug ] = get_post_meta( $post_id, "_wpmoly_movie_{$slug}", true ); 178 179 return $value; 180 181 } else if ( 'details' == $meta ) { 182 183 $details = WPMOLY_Settings::get_supported_movie_details(); 184 $value = array(); 185 186 foreach ( array_keys( $details ) as $slug ) 176 187 $value[ $slug ] = get_post_meta( $post_id, "_wpmoly_movie_{$slug}", true ); 177 188 -
wpmovielibrary/trunk/readme.txt
r1056255 r1058412 5 5 Requires at least: 3.8 6 6 Tested up to: 4.1 7 Stable tag: 2.1. 27 Stable tag: 2.1.3 8 8 License: GPLv3 9 9 License URI: http://www.gnu.org/licenses/gpl-3.0.html … … 138 138 139 139 == Changelog == 140 141 = 2.1.3 = 142 * Fix - Details not shown properly on archive pages 143 * Fix - Possible empty grid bug on movie archives pages 144 * Fix - Images sizes labels in settings panel 145 * Fix - Movies Widget order by rating/media/status bug 146 * Tweak - Update Grid style to display properly titles and ratings 147 * Tweak - New Grid setting: show titles/ratings/years 148 * Tweak - Add years to importer movies choice 149 * Tweak - Add director and original title support to posters/images title 150 * Tweak - Updated Icon font 151 * Dev - Add a safety to meta queries preventing from overriding existing subpages 152 * Dev - Minor editor metabox tweaks 140 153 141 154 = 2.1.2 = -
wpmovielibrary/trunk/views/movies/grid/loop.php
r1056255 r1058412 13 13 ?> 14 14 <div id="wpmoly-movie-<?php the_ID(); ?>" <?php post_class( 'wpmoly movie' ) ?>> 15 <a class="wpmoly grid movie link" href="<?php the_permalink(); ?>">15 <a class="wpmoly grid movie link" title="<?php the_title(); ?>" href="<?php the_permalink(); ?>"> 16 16 <?php if ( has_post_thumbnail() ) the_post_thumbnail( $size, array( 'class' => 'wpmoly grid movie poster' ) ); ?> 17 17 <?php if ( $title ) : ?> 18 18 <h4 class="wpmoly grid movie title"><?php the_title(); ?></h4> 19 19 <?php endif; if ( $year ) : ?> 20 <span class="wpmoly grid movie genres"><?php echo apply_filters( 'wpmoly_format_movie_release_date', wpmoly_get_movie_meta( get_the_ID(), 'release_date' ), 'Y' ); ?></span>20 <span class="wpmoly grid movie year"><?php echo apply_filters( 'wpmoly_format_movie_release_date', wpmoly_get_movie_meta( get_the_ID(), 'release_date' ), 'Y' ); ?></span> 21 21 <?php endif; if ( $rating ) : ?> 22 22 <span class="wpmoly grid movie rating"><?php echo apply_filters( 'wpmoly_movie_rating_stars', wpmoly_get_movie_rating( get_the_ID() ) ); ?></span> -
wpmovielibrary/trunk/wpmovielibrary.php
r1056255 r1058412 18 18 * Plugin URI: http://wpmovielibrary.com 19 19 * Description: A WordPress Plugin to manage a personnal library of movies. 20 * Version: 2.1. 220 * Version: 2.1.3 21 21 * Author: Charlie MERLAND 22 22 * Author URI: http://www.caercam.org/ … … 35 35 define( 'WPMOLY_PLUGIN', plugin_basename( __FILE__ ) ); 36 36 define( 'WPMOLY_NAME', 'WPMovieLibrary' ); 37 define( 'WPMOLY_VERSION', '2.1. 2' );37 define( 'WPMOLY_VERSION', '2.1.3' ); 38 38 define( 'WPMOLY_SLUG', 'wpmoly' ); 39 39 define( 'WPMOLY_URL', plugins_url( basename( __DIR__ ) ) );
Note: See TracChangeset
for help on using the changeset viewer.