Changeset 2008848
- Timestamp:
- 01/09/2019 03:40:40 AM (7 years ago)
- Location:
- frontend-uploader/trunk
- Files:
-
- 3 edited
-
frontend-uploader.php (modified) (7 diffs)
-
languages/frontend-uploader.pot (modified) (4 diffs)
-
readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
frontend-uploader/trunk/frontend-uploader.php
r1971315 r2008848 6 6 Version: 1.3.2 7 7 Author URI: http://digitallyconscious.com 8 Text Domain: frontend-uploader 8 9 9 10 GNU General Public License, Free Software Foundation <http://creativecommons.org/licenses/GPL/2.0/> … … 878 879 'aria-required' => false, 879 880 'values' => '', 880 'wysiwyg_enabled' => false,881 'wysiwyg_enabled' => isset( $this->settings['wysiwyg_enabled'] ) && 'on' === $this->settings['wysiwyg_enabled'] , 881 882 'role' => 'meta', 882 883 'minlength' => '', … … 942 943 943 944 // Render WYSIWYG textarea 944 if ( ( isset( $this->settings['wysiwyg_enabled'] ) && 'on' === $this->settings['wysiwyg_enabled'] ) || $wysiwyg_enabled === true) {945 if ( $wysiwyg_enabled ) { 945 946 ob_start(); 946 947 wp_editor( '', $id, array( … … 948 949 'media_buttons' => false, 949 950 'teeny' => true, 950 'quicktags' => false 951 'quicktags' => false, 951 952 ) ); 953 952 954 $tiny = ob_get_clean(); 953 955 954 956 return $this->html->element( 'div', $label . $tiny . $help, array( 'class' => 'ugc-input-wrapper' ), false ) ; 955 957 } 958 956 959 $element = $this->html->element( 'textarea', '', array( 'name' => $name, 'id' => $id, 'class' => $class, 'minlength' => $minlength, 'maxlength' => $maxlength, 'required' => $required ) ); 957 960 // Render plain textarea … … 1081 1084 'post_type' => 'post', 1082 1085 'category' => '', 1083 'suppress_default_fields' => false,1086 'suppress_default_fields' => ! ( isset( $this->settings['suppress_default_fields'] ) && 'on' === $this->settings['suppress_default_fields'] ), 1084 1087 'append_to_post' => false, 1085 1088 ), $atts ) ); … … 1131 1134 } 1132 1135 1133 if ( ! ( isset( $this->settings['suppress_default_fields'] ) && 'on' === $this->settings['suppress_default_fields'] ) && ( $suppress_default_fields === false )) {1136 if ( ! $suppress_default_fields ) { 1134 1137 1135 1138 // Display title field … … 1181 1184 echo do_shortcode( $content ); 1182 1185 1183 if ( ! ( isset( $this->settings['suppress_default_fields'] ) && 'on' === $this->settings['suppress_default_fields'] ) && ( $suppress_default_fields === false )) {1186 if ( ! $suppress_default_fields ) { 1184 1187 1185 1188 if ( in_array( $form_layout, array( 'image', 'media', 'post_image', 'post_media' ), true ) ) { -
frontend-uploader/trunk/languages/frontend-uploader.pot
r1341143 r2008848 1 # Copyright (C) 2013 Frontend Uploader 2 # This file is distributed under the same license as the Frontend Uploader package. 3 #, fuzzy 1 # Copyright (C) 2019 Rinat Khaziev, Daniel Bachhuber 2 # This file is distributed under the same license as the Frontend Uploader plugin. 4 3 msgid "" 5 4 msgstr "" 6 "Project-Id-Version: Frontend Uploader 0.9.1\n" 7 "Report-Msgid-Bugs-To: http://wordpress.org/tag/frontend-uploader\n" 8 "POT-Creation-Date: 2015-12-10 01:33-0600\n" 9 "PO-Revision-Date: 2014-11-21 21:16+0300\n" 5 "Project-Id-Version: Frontend Uploader 1.3.2\n" 6 "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wp-frontend-uploader\n" 10 7 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" 11 "Language-Team: Frontend Uploader <[email protected]>\n" 12 "Language: en_US\n" 8 "Language-Team: LANGUAGE <[email protected]>\n" 13 9 "MIME-Version: 1.0\n" 14 10 "Content-Type: text/plain; charset=UTF-8\n" 15 11 "Content-Transfer-Encoding: 8bit\n" 16 "Plural-Forms: nplurals=2; plural=(n != 1);\n" 17 "X-Generator: Poedit 1.8.6\n" 18 "X-Poedit-KeywordsList: __;_e\n" 19 "X-Poedit-Basepath: ..\n" 20 "X-Poedit-SourceCharset: UTF-8\n" 21 "X-Poedit-SearchPath-0: .\n" 22 "X-Poedit-SearchPathExcluded-0: *.js\n" 23 24 #: frontend-uploader.php:182 25 msgid "Frontend Uploader requires WordPress 3.3 or newer. Please upgrade." 26 msgstr "" 27 28 #: frontend-uploader.php:285 frontend-uploader.php:286 29 msgid "Unnamed" 30 msgstr "" 31 32 #: frontend-uploader.php:338 33 msgid "Untitled post submission" 34 msgstr "" 35 36 #: frontend-uploader.php:485 37 msgid "New content was uploaded on your site" 38 msgstr "" 39 40 #: frontend-uploader.php:570 frontend-uploader.php:573 41 #: frontend-uploader.php:577 lib/views/manage-ugc-media.tpl.php:2 42 msgid "Manage UGC" 43 msgstr "" 44 45 #: frontend-uploader.php:573 frontend-uploader.php:577 46 #: lib/views/manage-ugc-posts.tpl.php:2 47 msgid "Manage UGC Posts" 48 msgstr "" 49 50 #: frontend-uploader.php:882 51 msgid "Submit a new post" 52 msgstr "" 53 54 #: frontend-uploader.php:908 55 msgid "Description" 56 msgstr "" 57 58 #: frontend-uploader.php:909 59 msgid "Your Media Files" 60 msgstr "" 61 62 #: frontend-uploader.php:910 63 msgid "Submit" 64 msgstr "" 65 66 #: frontend-uploader.php:948 67 msgid "Title" 68 msgstr "" 69 70 #: frontend-uploader.php:967 71 msgid "Post content or file description" 72 msgstr "" 73 74 #: frontend-uploader.php:978 75 msgid "Post content" 76 msgstr "" 77 78 #: frontend-uploader.php:993 79 #: lib/php/class-frontend-uploader-wp-media-list-table.php:82 80 msgid "Author" 81 msgstr "" 82 83 #: frontend-uploader.php:1147 84 msgid "Your file was successfully uploaded!" 85 msgstr "" 86 87 #: frontend-uploader.php:1151 88 msgid "Your post was successfully submitted!" 89 msgstr "" 90 91 #: frontend-uploader.php:1155 92 msgid "There was an error with your submission" 93 msgstr "" 94 95 #: frontend-uploader.php:1159 96 msgid "Your submission looks spammy" 97 msgstr "" 98 99 #: frontend-uploader.php:1183 100 msgid "Security check failed!" 101 msgstr "" 102 103 #: frontend-uploader.php:1186 104 msgid "" 105 "This kind of file is not allowed. Please, try again selecting other file." 106 msgstr "" 107 108 #: frontend-uploader.php:1190 109 msgid "The content you are trying to post is invalid." 110 msgstr "" 111 112 #: frontend-uploader.php:1193 113 msgid "Couldn't upload the file" 114 msgstr "" 115 116 #: frontend-uploader.php:1196 117 msgid "Couldn't create the post" 118 msgstr "" 119 120 #: lib/php/class-frontend-uploader-wp-media-list-table.php:48 121 #: lib/php/class-frontend-uploader-wp-media-list-table.php:269 122 #: lib/php/class-frontend-uploader-wp-media-list-table.php:285 123 #: lib/php/class-frontend-uploader-wp-media-list-table.php:291 124 #: lib/php/class-frontend-uploader-wp-posts-list-table.php:30 125 #: lib/php/class-frontend-uploader-wp-posts-list-table.php:108 126 msgid "Delete Permanently" 127 msgstr "" 128 129 #: lib/php/class-frontend-uploader-wp-media-list-table.php:50 130 msgid "Attach to a post" 131 msgstr "" 132 133 #: lib/php/class-frontend-uploader-wp-media-list-table.php:73 134 msgid "No media attachments found." 135 msgstr "" 136 137 #: lib/php/class-frontend-uploader-wp-media-list-table.php:137 138 #: lib/php/class-frontend-uploader-wp-media-list-table.php:150 139 #, php-format 140 msgid "Edit \"%s\"" 141 msgstr "" 142 143 #: lib/php/class-frontend-uploader-wp-media-list-table.php:182 144 msgid "No Tags" 145 msgstr "" 146 147 #: lib/php/class-frontend-uploader-wp-media-list-table.php:197 148 msgid "Unpublished" 149 msgstr "" 150 151 #: lib/php/class-frontend-uploader-wp-media-list-table.php:199 152 msgid "Y/m/d g:i:s A" 153 msgstr "" 154 155 #: lib/php/class-frontend-uploader-wp-media-list-table.php:204 156 #, php-format 157 msgid "%s from now" 158 msgstr "" 159 160 #: lib/php/class-frontend-uploader-wp-media-list-table.php:206 161 #, php-format 162 msgid "%s ago" 163 msgstr "" 164 165 #: lib/php/class-frontend-uploader-wp-media-list-table.php:208 166 #: lib/php/class-frontend-uploader-wp-media-list-table.php:224 167 #: lib/php/class-frontend-uploader-wp-media-list-table.php:331 168 msgid "Y/m/d" 169 msgstr "" 170 171 #: lib/php/class-frontend-uploader-wp-media-list-table.php:229 172 #: lib/php/class-frontend-uploader-wp-media-list-table.php:338 173 msgid "(Unattached)" 174 msgstr "" 175 176 #: lib/php/class-frontend-uploader-wp-media-list-table.php:262 177 #: lib/php/class-frontend-uploader-wp-media-list-table.php:277 178 msgid "Edit" 179 msgstr "" 180 181 #: lib/php/class-frontend-uploader-wp-media-list-table.php:265 182 #: lib/php/class-frontend-uploader-wp-media-list-table.php:282 183 msgid "Trash" 184 msgstr "" 185 186 #: lib/php/class-frontend-uploader-wp-media-list-table.php:271 187 #: lib/php/class-frontend-uploader-wp-media-list-table.php:296 188 #, php-format 189 msgid "View \"%s\"" 190 msgstr "" 191 192 #: lib/php/class-frontend-uploader-wp-media-list-table.php:271 193 #: lib/php/class-frontend-uploader-wp-media-list-table.php:296 194 msgid "View" 195 msgstr "" 196 197 #: lib/php/class-frontend-uploader-wp-media-list-table.php:273 198 #: lib/php/class-frontend-uploader-wp-media-list-table.php:339 199 msgid "Attach" 200 msgstr "" 201 202 #: lib/php/class-frontend-uploader-wp-media-list-table.php:280 203 msgid "Restore" 204 msgstr "" 205 206 #: lib/php/class-frontend-uploader-wp-media-list-table.php:290 207 #: lib/php/class-frontend-uploader-wp-posts-list-table.php:29 208 msgid "Approve" 209 msgstr "" 210 211 #: lib/php/class-frontend-uploader-wp-media-list-table.php:333 212 msgid "Re-Attach" 213 msgstr "" 214 215 #: lib/php/class-frontend-uploader-wp-posts-list-table.php:117 216 msgid "No posts found." 12 "POT-Creation-Date: 2019-01-09T03:15:48+00:00\n" 13 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 14 "X-Generator: WP-CLI 2.1.0-alpha-93d1e17\n" 15 "X-Domain: frontend-uploader\n" 16 17 #. Plugin Name of the plugin 18 msgid "Frontend Uploader" 19 msgstr "" 20 21 #. Description of the plugin 22 msgid "Allow your visitors to upload content and moderate it." 23 msgstr "" 24 25 #. Author of the plugin 26 msgid "Rinat Khaziev, Daniel Bachhuber" 27 msgstr "" 28 29 #. Author URI of the plugin 30 msgid "http://digitallyconscious.com" 217 31 msgstr "" 218 32 … … 234 48 235 49 #: lib/php/frontend-uploader-settings.php:78 50 msgid "Enable Recaptcha spam protection" 51 msgstr "" 52 53 #: lib/php/frontend-uploader-settings.php:79 54 msgid "Yes (Fill in Recaptcha credentials below)" 55 msgstr "" 56 57 #: lib/php/frontend-uploader-settings.php:85 58 msgid "Recaptcha Site Key" 59 msgstr "" 60 61 #: lib/php/frontend-uploader-settings.php:92 62 msgid "Recaptcha Site Secret" 63 msgstr "" 64 65 #: lib/php/frontend-uploader-settings.php:99 236 66 msgid "Notify site admins" 237 67 msgstr "" 238 68 239 #: lib/php/frontend-uploader-settings.php:79 240 #: lib/php/frontend-uploader-settings.php:102 241 #: lib/php/frontend-uploader-settings.php:117 242 #: lib/php/frontend-uploader-settings.php:132 243 #: lib/php/frontend-uploader-settings.php:139 244 #: lib/php/frontend-uploader-settings.php:154 69 #: lib/php/frontend-uploader-settings.php:100 70 #: lib/php/frontend-uploader-settings.php:123 71 #: lib/php/frontend-uploader-settings.php:138 72 #: lib/php/frontend-uploader-settings.php:153 73 #: lib/php/frontend-uploader-settings.php:160 74 #: lib/php/frontend-uploader-settings.php:167 75 #: lib/php/frontend-uploader-settings.php:174 245 76 msgid "Yes" 246 77 msgstr "" 247 78 248 #: lib/php/frontend-uploader-settings.php: 8579 #: lib/php/frontend-uploader-settings.php:106 249 80 msgid "Admin Notification" 250 81 msgstr "" 251 82 252 #: lib/php/frontend-uploader-settings.php: 8683 #: lib/php/frontend-uploader-settings.php:107 253 84 msgid "Message that admin will get on new file upload" 254 85 msgstr "" 255 86 256 #: lib/php/frontend-uploader-settings.php: 9387 #: lib/php/frontend-uploader-settings.php:114 257 88 msgid "Notification email" 258 89 msgstr "" 259 90 260 #: lib/php/frontend-uploader-settings.php: 9491 #: lib/php/frontend-uploader-settings.php:115 261 92 msgid "Leave blank to use site admin email" 262 93 msgstr "" 263 94 264 #: lib/php/frontend-uploader-settings.php:1 0195 #: lib/php/frontend-uploader-settings.php:122 265 96 msgid "Show author field" 266 97 msgstr "" 267 98 268 #: lib/php/frontend-uploader-settings.php:1 0899 #: lib/php/frontend-uploader-settings.php:129 269 100 msgid "Enable Frontend Uploader for the following post types" 270 101 msgstr "" 271 102 272 #: lib/php/frontend-uploader-settings.php:1 16103 #: lib/php/frontend-uploader-settings.php:137 273 104 msgid "Enable visual editor for textareas" 274 105 msgstr "" 275 106 276 #: lib/php/frontend-uploader-settings.php:123 277 msgid "" 278 "Also allow to upload these files (in addition to the ones that WP allows by " 279 "default)" 280 msgstr "" 281 282 #: lib/php/frontend-uploader-settings.php:131 107 #: lib/php/frontend-uploader-settings.php:144 108 msgid "Also allow to upload these files (in addition to the ones that WP allows by default)" 109 msgstr "" 110 111 #: lib/php/frontend-uploader-settings.php:152 283 112 msgid "Auto-approve registered users files" 284 113 msgstr "" 285 114 286 #: lib/php/frontend-uploader-settings.php:1 38115 #: lib/php/frontend-uploader-settings.php:159 287 116 msgid "Auto-approve any files" 288 117 msgstr "" 289 118 290 #: lib/php/frontend-uploader-settings.php:145 291 msgid "Default file name" 292 msgstr "" 293 294 #: lib/php/frontend-uploader-settings.php:146 295 msgid "Leave blank to use original file name" 296 msgstr "" 297 298 #: lib/php/frontend-uploader-settings.php:153 119 #: lib/php/frontend-uploader-settings.php:166 120 msgid "Obfuscate file name" 121 msgstr "" 122 123 #: lib/php/frontend-uploader-settings.php:173 299 124 msgid "Suppress default fields" 125 msgstr "" 126 127 #: lib/php/class-frontend-uploader-wp-media-list-table.php:39 128 #: lib/php/class-frontend-uploader-wp-posts-list-table.php:24 129 msgid "Approve" 130 msgstr "" 131 132 #: lib/php/class-frontend-uploader-wp-media-list-table.php:43 133 msgid "Re-Attach" 134 msgstr "" 135 136 #: lib/php/class-frontend-uploader-wp-posts-list-table.php:25 137 #: lib/php/class-frontend-uploader-wp-posts-list-table.php:60 138 msgid "Delete Permanently" 139 msgstr "" 140 141 #: lib/views/manage-ugc-posts.tpl.php:2 142 #: frontend-uploader.php:758 143 #: frontend-uploader.php:762 144 msgid "Manage UGC Posts" 145 msgstr "" 146 147 #: lib/views/manage-ugc-posts.tpl.php:4 148 msgid "You do not have permission to publish posts." 149 msgstr "" 150 151 #: lib/views/manage-ugc-posts.tpl.php:15 152 #: lib/views/manage-ugc-media.tpl.php:16 153 msgid "Search results for “%s”" 154 msgstr "" 155 156 #: lib/views/manage-ugc-posts.tpl.php:21 157 #: lib/views/manage-ugc-posts.tpl.php:51 158 msgid "Post updated." 159 msgstr "" 160 161 #: lib/views/manage-ugc-posts.tpl.php:38 162 #: lib/views/manage-ugc-posts.tpl.php:54 163 #: lib/views/manage-ugc-media.tpl.php:39 164 #: lib/views/manage-ugc-media.tpl.php:55 165 msgid "Undo" 166 msgstr "" 167 168 #: lib/views/manage-ugc-posts.tpl.php:52 169 #: lib/views/manage-ugc-media.tpl.php:53 170 msgid "Media permanently deleted." 171 msgstr "" 172 173 #: lib/views/manage-ugc-posts.tpl.php:53 174 msgid "Error saving Post." 175 msgstr "" 176 177 #: lib/views/manage-ugc-posts.tpl.php:54 178 #: lib/views/manage-ugc-media.tpl.php:55 179 msgid "Media moved to the trash." 180 msgstr "" 181 182 #: lib/views/manage-ugc-posts.tpl.php:55 183 #: lib/views/manage-ugc-media.tpl.php:56 184 msgid "Media restored from the trash." 185 msgstr "" 186 187 #: lib/views/manage-ugc-posts.tpl.php:70 188 msgid "Search Posts" 189 msgstr "" 190 191 #: lib/views/manage-ugc-media.tpl.php:2 192 #: frontend-uploader.php:755 193 #: frontend-uploader.php:758 194 #: frontend-uploader.php:762 195 msgid "Manage UGC" 300 196 msgstr "" 301 197 … … 304 200 msgstr "" 305 201 306 #: lib/views/manage-ugc-media.tpl.php:16 lib/views/manage-ugc-posts.tpl.php:17 307 #, php-format 308 msgid "Search results for “%s”" 309 msgstr "" 310 311 #: lib/views/manage-ugc-media.tpl.php:22 lib/views/manage-ugc-media.tpl.php:52 202 #: lib/views/manage-ugc-media.tpl.php:22 203 #: lib/views/manage-ugc-media.tpl.php:52 312 204 msgid "Media attachment updated." 313 msgstr ""314 315 #: lib/views/manage-ugc-media.tpl.php:39 lib/views/manage-ugc-media.tpl.php:55316 #: lib/views/manage-ugc-posts.tpl.php:40 lib/views/manage-ugc-posts.tpl.php:56317 msgid "Undo"318 msgstr ""319 320 #: lib/views/manage-ugc-media.tpl.php:53 lib/views/manage-ugc-posts.tpl.php:54321 msgid "Media permanently deleted."322 205 msgstr "" 323 206 … … 326 209 msgstr "" 327 210 328 #: lib/views/manage-ugc-media.tpl.php:55 lib/views/manage-ugc-posts.tpl.php:56329 msgid "Media moved to the trash."330 msgstr ""331 332 #: lib/views/manage-ugc-media.tpl.php:56 lib/views/manage-ugc-posts.tpl.php:57333 msgid "Media restored from the trash."334 msgstr ""335 336 211 #: lib/views/manage-ugc-media.tpl.php:71 337 212 msgid "Search Media" 338 213 msgstr "" 339 214 340 #: lib/views/manage-ugc-posts.tpl.php:5 341 msgid "You do not have permission to publish posts." 342 msgstr "" 343 344 #: lib/views/manage-ugc-posts.tpl.php:23 lib/views/manage-ugc-posts.tpl.php:53 345 msgid "Post updated." 346 msgstr "" 347 348 #: lib/views/manage-ugc-posts.tpl.php:55 349 msgid "Error saving Post." 350 msgstr "" 351 352 #: lib/views/manage-ugc-posts.tpl.php:72 353 msgid "Search Posts" 354 msgstr "" 215 #: frontend-uploader.php:202 216 msgid "Frontend Uploader requires WordPress 3.3 or newer. Please upgrade." 217 msgstr "" 218 219 #: frontend-uploader.php:319 220 #: frontend-uploader.php:320 221 msgid "Unnamed" 222 msgstr "" 223 224 #: frontend-uploader.php:435 225 msgid "Untitled post submission" 226 msgstr "" 227 228 #: frontend-uploader.php:595 229 msgid "New content was uploaded on your site" 230 msgstr "" 231 232 #: frontend-uploader.php:693 233 msgid "Couldn't find template file" 234 msgstr "" 235 236 #: frontend-uploader.php:1078 237 msgid "Submit a new post" 238 msgstr "" 239 240 #: frontend-uploader.php:1105 241 msgid "Description" 242 msgstr "" 243 244 #: frontend-uploader.php:1106 245 msgid "Your Media Files" 246 msgstr "" 247 248 #: frontend-uploader.php:1107 249 msgid "Submit" 250 msgstr "" 251 252 #: frontend-uploader.php:1145 253 msgid "Title" 254 msgstr "" 255 256 #: frontend-uploader.php:1164 257 msgid "Post content or file description" 258 msgstr "" 259 260 #: frontend-uploader.php:1176 261 msgid "Post content" 262 msgstr "" 263 264 #: frontend-uploader.php:1348 265 msgid "Your file was successfully uploaded!" 266 msgstr "" 267 268 #: frontend-uploader.php:1352 269 msgid "Your post was successfully submitted!" 270 msgstr "" 271 272 #: frontend-uploader.php:1356 273 msgid "There was an error with your submission" 274 msgstr "" 275 276 #: frontend-uploader.php:1360 277 msgid "Your submission failed spam checks" 278 msgstr "" 279 280 #: frontend-uploader.php:1387 281 msgid "Security check failed!" 282 msgstr "" 283 284 #: frontend-uploader.php:1390 285 msgid "This kind of file is not allowed. Please, try again selecting other file." 286 msgstr "" 287 288 #: frontend-uploader.php:1394 289 msgid "This post type is not allowed." 290 msgstr "" 291 292 #: frontend-uploader.php:1397 293 msgid "Couldn't upload the file due to server error" 294 msgstr "" 295 296 #: frontend-uploader.php:1401 297 msgid "Couldn't create the post due to server error" 298 msgstr "" 299 300 #: frontend-uploader.php:1404 301 msgid "The file you tried to upload looks suspicious. This incident will be reported." 302 msgstr "" -
frontend-uploader/trunk/readme.txt
r1971315 r2008848 3 3 Donate link: https://www.paypal.me/RinatK 4 4 Tags: frontend, image, images, media, uploader, upload, video, audio, photo, photos, picture, pictures, file, user generated content, ugc, frontend upload 5 Requires at least: 4.1 5 Requires at least: 4.6 6 Requires PHP: 5.4 6 7 Tested up to: 5.0 7 8 Stable tag: 1.3.2
Note: See TracChangeset
for help on using the changeset viewer.