Changeset 2183073
- Timestamp:
- 10/30/2019 12:54:18 PM (6 years ago)
- Location:
- block-user-ads/trunk
- Files:
-
- 6 edited
-
ecpm-bua-functions.php (modified) (1 diff)
-
ecpm-bua-settings.php (modified) (4 diffs)
-
ecpm-bua.php (modified) (2 diffs)
-
languages/ecpm-bua.mo (modified) (previous)
-
languages/ecpm-bua.po (modified) (3 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
block-user-ads/trunk/ecpm-bua-functions.php
r2165763 r2183073 256 256 'orderby' => 'login', 257 257 'order' => 'ASC', 258 'fields' => array('ID', 'user_login' ),258 'fields' => array('ID', 'user_login', 'user_email'), 259 259 ); 260 260 -
block-user-ads/trunk/ecpm-bua-settings.php
r2165763 r2183073 15 15 16 16 </tr> 17 <tr><td colspan=" 5"><hr></td></tr>17 <tr><td colspan="7"><hr></td></tr> 18 18 <?php 19 19 … … 85 85 <?php 86 86 foreach ($user_list as $user) { 87 $user_mail = ''; 88 if (!strpos($user->user_login, '@') ) 89 $user_mail = ' ('.$user->user_email.')'; 87 90 ?> 88 <option value="<?= $user->ID;?>"><?= $user->user_login ;?></option>91 <option value="<?= $user->ID;?>"><?= $user->user_login.$user_mail;?></option> 89 92 <?php 90 93 } … … 93 96 </td> 94 97 <td align="center"> 95 <input type='text' size='2' id='ecpm_bua_expire' Name='ecpm_bua_expire' >98 <input type='text' size='2' id='ecpm_bua_expire' Name='ecpm_bua_expire' style="width:30px;"> 96 99 97 <select name="ecpm_bua_expire_time" id="ecpm_bua_expire_time"> 98 <option value="day" <?php echo ($ecpm_bua_settings['expire_time'] == 'day' ? 'selected':'') ;?>><?php echo _e('Day', ECPM_BUA); ?></option> 99 <option value="week" <?php echo ($ecpm_bua_settings['expire_time'] == 'week' ? 'selected':'') ;?>><?php echo _e('Week', ECPM_BUA); ?></option> 100 <option value="month" <?php echo ($ecpm_bua_settings['expire_time'] == 'month' ? 'selected':'') ;?>><?php echo _e('Month', ECPM_BUA); ?></option> 101 <option value="year" <?php echo ($ecpm_bua_settings['expire_time'] == 'year' ? 'selected':'') ;?>><?php echo _e('Year', ECPM_BUA); ?></option> 100 <select name="ecpm_bua_expire_time" id="ecpm_bua_expire_time" style="margin-bottom:1px;"> 101 <option value="never"><?php echo _e('Never', ECPM_BUA); ?></option> 102 <option value="day"><?php echo _e('Day', ECPM_BUA); ?></option> 103 <option value="week"><?php echo _e('Week', ECPM_BUA); ?></option> 104 <option value="month"><?php echo _e('Month', ECPM_BUA); ?></option> 105 <option value="year"><?php echo _e('Year', ECPM_BUA); ?></option> 102 106 </select> 103 107 … … 105 109 106 110 <td align="center" colspan="2"> 107 <Input type='text' size=' 40' id='ecpm_bua_notes' Name='ecpm_bua_notes'>111 <Input type='text' size='30' id='ecpm_bua_notes' Name='ecpm_bua_notes'> 108 112 </td> 109 113 -
block-user-ads/trunk/ecpm-bua.php
r2165763 r2183073 5 5 Description: Block User Ads is a lightweight plugin that will allow you to block users from posting ads. It requires Classipress theme to be installed. 6 6 Author: EasyCPMods 7 Version: 1.4. 07 Version: 1.4.1 8 8 Text Domain: ecpm-bua 9 9 */ … … 15 15 define('ECPM_BUA', 'ecpm-bua'); 16 16 define('ECPM_BUA_NAME', 'Block User Ads'); 17 define('ECPM_BUA_VERSION', '1.4. 0');17 define('ECPM_BUA_VERSION', '1.4.1'); 18 18 define('ECPM_BUA_META_KEY', 'ecpm_bua_user_blocked'); 19 19 -
block-user-ads/trunk/languages/ecpm-bua.po
r2128328 r2183073 2 2 msgstr "" 3 3 "Project-Id-Version: Block User Ads\n" 4 "POT-Creation-Date: 2019- 07-25 10:23+0200\n"5 "PO-Revision-Date: 2019- 07-25 10:23+0200\n"4 "POT-Creation-Date: 2019-10-30 13:52+0100\n" 5 "PO-Revision-Date: 2019-10-30 13:52+0100\n" 6 6 "Last-Translator: \n" 7 7 "Language-Team: \n" … … 10 10 "Content-Type: text/plain; charset=UTF-8\n" 11 11 "Content-Transfer-Encoding: 8bit\n" 12 "X-Generator: Poedit 2. 0.2\n"12 "X-Generator: Poedit 2.2\n" 13 13 "X-Poedit-Basepath: ..\n" 14 14 "Plural-Forms: nplurals=2; plural=(n != 1);\n" … … 22 22 "X-Poedit-SearchPathExcluded-0: *.js\n" 23 23 24 #: ecpm-bua-functions.php:100 25 msgid "Block user from posting ads" 26 msgstr "" 27 28 #: ecpm-bua-functions.php:110 29 msgid "Blocked - no posting of ads allowed" 30 msgstr "" 31 32 #: ecpm-bua-functions.php:112 33 msgid "Not blocked" 34 msgstr "" 35 36 #: ecpm-bua-settings.php:8 37 msgid "Image" 38 msgstr "" 39 40 #: ecpm-bua-settings.php:42 41 msgid "Image position" 42 msgstr "" 43 44 #: ecpm-bua-settings.php:46 45 msgid "Top" 46 msgstr "" 47 48 #: ecpm-bua-settings.php:47 49 msgid "Middle" 50 msgstr "" 51 52 #: ecpm-bua-settings.php:48 53 msgid "Bottom" 54 msgstr "" 55 56 #: ecpm-bua-settings.php:49 57 msgid "Hide image" 58 msgstr "" 59 60 #: ecpm-bua-settings.php:53 61 msgid "Where to position the image" 62 msgstr "" 63 64 #: ecpm-bua-settings.php:65 65 msgid "Show text on top" 66 msgstr "" 67 68 #: ecpm-bua-settings.php:71 69 msgid "Would you like to show notice on top of image?" 70 msgstr "" 71 72 #: ecpm-bua-settings.php:77 73 msgid "Top notice text" 74 msgstr "" 75 76 #: ecpm-bua-settings.php:81 ecpm-bua-settings.php:214 77 msgid "Variables you can use: [home], [dashboard]" 78 msgstr "" 79 80 #: ecpm-bua-settings.php:84 81 msgid "Notice text on top of the image)" 82 msgstr "" 83 84 #: ecpm-bua-settings.php:90 ecpm-bua-settings.php:223 85 msgid "Size" 86 msgstr "" 87 88 #: ecpm-bua-settings.php:95 ecpm-bua-settings.php:228 89 msgid "xx-small" 90 msgstr "" 91 92 #: ecpm-bua-settings.php:96 ecpm-bua-settings.php:229 93 msgid "x-small" 94 msgstr "" 95 96 #: ecpm-bua-settings.php:97 ecpm-bua-settings.php:230 97 msgid "small" 98 msgstr "" 99 100 #: ecpm-bua-settings.php:98 ecpm-bua-settings.php:231 101 msgid "medium" 102 msgstr "" 103 104 #: ecpm-bua-settings.php:99 ecpm-bua-settings.php:232 105 msgid "large" 106 msgstr "" 107 108 #: ecpm-bua-settings.php:100 ecpm-bua-settings.php:233 109 msgid "x-large" 110 msgstr "" 111 112 #: ecpm-bua-settings.php:101 ecpm-bua-settings.php:234 113 msgid "xx-large" 114 msgstr "" 115 116 #: ecpm-bua-settings.php:102 ecpm-bua-settings.php:235 117 msgid "smaller" 118 msgstr "" 119 120 #: ecpm-bua-settings.php:103 ecpm-bua-settings.php:236 121 msgid "larger" 122 msgstr "" 123 124 #: ecpm-bua-settings.php:107 125 msgid "Top notice font size" 126 msgstr "" 127 128 #: ecpm-bua-settings.php:112 ecpm-bua-settings.php:245 129 msgid "Weight" 130 msgstr "" 131 132 #: ecpm-bua-settings.php:116 ecpm-bua-settings.php:133 133 #: ecpm-bua-settings.php:249 ecpm-bua-settings.php:266 134 msgid "Normal" 135 msgstr "" 136 137 #: ecpm-bua-settings.php:117 ecpm-bua-settings.php:250 138 msgid "Lighter" 139 msgstr "" 140 141 #: ecpm-bua-settings.php:118 ecpm-bua-settings.php:251 142 msgid "Bold" 143 msgstr "" 144 145 #: ecpm-bua-settings.php:119 ecpm-bua-settings.php:252 146 msgid "Bolder" 147 msgstr "" 148 149 #: ecpm-bua-settings.php:123 150 msgid "Top notice font weight" 151 msgstr "" 152 153 #: ecpm-bua-settings.php:129 ecpm-bua-settings.php:262 154 msgid "Style" 155 msgstr "" 156 157 #: ecpm-bua-settings.php:134 ecpm-bua-settings.php:267 158 msgid "Italic" 159 msgstr "" 160 161 #: ecpm-bua-settings.php:135 ecpm-bua-settings.php:268 162 msgid "Oblique" 163 msgstr "" 164 165 #: ecpm-bua-settings.php:136 ecpm-bua-settings.php:269 166 msgid "Initial" 167 msgstr "" 168 169 #: ecpm-bua-settings.php:140 170 msgid "Top notice font style" 171 msgstr "" 172 173 #: ecpm-bua-settings.php:146 ecpm-bua-settings.php:279 174 msgid "Decoration" 175 msgstr "" 176 177 #: ecpm-bua-settings.php:150 ecpm-bua-settings.php:166 178 #: ecpm-bua-settings.php:283 ecpm-bua-settings.php:299 179 msgid "None" 180 msgstr "" 181 182 #: ecpm-bua-settings.php:151 ecpm-bua-settings.php:284 183 msgid "Underline" 184 msgstr "" 185 186 #: ecpm-bua-settings.php:152 ecpm-bua-settings.php:285 187 msgid "Overline" 188 msgstr "" 189 190 #: ecpm-bua-settings.php:153 ecpm-bua-settings.php:286 191 msgid "Line-through" 192 msgstr "" 193 194 #: ecpm-bua-settings.php:157 195 msgid "Top notice font decoration" 196 msgstr "" 197 198 #: ecpm-bua-settings.php:162 ecpm-bua-settings.php:295 199 msgid "Transform" 200 msgstr "" 201 202 #: ecpm-bua-settings.php:167 ecpm-bua-settings.php:300 203 msgid "Capitalize" 204 msgstr "" 205 206 #: ecpm-bua-settings.php:168 ecpm-bua-settings.php:301 207 msgid "Upper case" 208 msgstr "" 209 210 #: ecpm-bua-settings.php:169 ecpm-bua-settings.php:302 211 msgid "Lower case" 212 msgstr "" 213 214 #: ecpm-bua-settings.php:173 215 msgid "Top notice font transformation" 216 msgstr "" 217 218 #: ecpm-bua-settings.php:178 ecpm-bua-settings.php:311 219 msgid "Color" 220 msgstr "" 221 222 #: ecpm-bua-settings.php:186 223 msgid "Top notice label font color" 224 msgstr "" 225 226 #: ecpm-bua-settings.php:198 227 msgid "Show text on bottom" 228 msgstr "" 229 230 #: ecpm-bua-settings.php:204 231 msgid "Would you like to show notice on bottom of image?" 232 msgstr "" 233 234 #: ecpm-bua-settings.php:210 235 msgid "Bottom notice text" 236 msgstr "" 237 238 #: ecpm-bua-settings.php:217 239 msgid "Notice text bottom of the image)" 240 msgstr "" 241 242 #: ecpm-bua-settings.php:240 243 msgid "Bottom notice font size" 244 msgstr "" 245 246 #: ecpm-bua-settings.php:256 247 msgid "Bottom notice font weight" 248 msgstr "" 249 250 #: ecpm-bua-settings.php:273 251 msgid "Bottom notice font style" 252 msgstr "" 253 254 #: ecpm-bua-settings.php:290 255 msgid "Bottom notice font decoration" 256 msgstr "" 257 258 #: ecpm-bua-settings.php:306 259 msgid "Bottom notice font transformation" 260 msgstr "" 261 262 #: ecpm-bua-settings.php:319 263 msgid "Bottom notice label font color" 264 msgstr "" 265 266 #: ecpm-bua-settings.php:331 267 msgid "Show top ad" 268 msgstr "" 269 270 #: ecpm-bua-settings.php:337 271 msgid "Would you like to show top ad?" 272 msgstr "" 273 274 #: ecpm-bua-settings.php:343 275 msgid "Top ad" 276 msgstr "" 277 278 #: ecpm-bua-settings.php:352 279 msgid "Show bottom ad" 280 msgstr "" 281 282 #: ecpm-bua-settings.php:358 283 msgid "Would you like to show bottom ad?" 284 msgstr "" 285 286 #: ecpm-bua-settings.php:364 287 msgid "Bottom ad" 288 msgstr "" 289 290 #: ecpm-bua-settings.php:380 24 #: ecpm-bua-settings.php:9 291 25 msgid "User ID" 292 26 msgstr "" 293 27 294 #: ecpm-bua-settings.php: 38128 #: ecpm-bua-settings.php:10 295 29 msgid "Blocked since" 296 30 msgstr "" 297 31 298 #: ecpm-bua-settings.php:382 32 #: ecpm-bua-settings.php:11 33 msgid "Expires" 34 msgstr "" 35 36 #: ecpm-bua-settings.php:12 37 msgid "Notes" 38 msgstr "" 39 40 #: ecpm-bua-settings.php:13 299 41 msgid "No. of ads" 300 42 msgstr "" 301 43 302 #: ecpm-bua-settings.php: 38344 #: ecpm-bua-settings.php:14 303 45 msgid "Action" 304 46 msgstr "" 305 47 306 #: ecpm-bua-settings.php: 39348 #: ecpm-bua-settings.php:24 307 49 msgid "There are no blocked users so far" 308 50 msgstr "" 309 51 310 #: ecpm-bua-settings.php:421 52 #: ecpm-bua-settings.php:51 ecpm-bua-settings.php:101 53 msgid "Never" 54 msgstr "" 55 56 #: ecpm-bua-settings.php:69 311 57 #, php-format 312 58 msgid "Are you sure you want to unblock user %s?" 313 59 msgstr "" 314 60 315 #: ecpm-bua-settings.php: 42161 #: ecpm-bua-settings.php:69 316 62 msgid "Unblock" 317 63 msgstr "" 318 64 319 #: ecpm-bua-settings.php: 43665 #: ecpm-bua-settings.php:84 320 66 msgid "Select user to block..." 321 67 msgstr "" 322 68 323 #: ecpm-bua-settings.php:445 69 #: ecpm-bua-settings.php:102 70 msgid "Day" 71 msgstr "" 72 73 #: ecpm-bua-settings.php:103 74 msgid "Week" 75 msgstr "" 76 77 #: ecpm-bua-settings.php:104 78 msgid "Month" 79 msgstr "" 80 81 #: ecpm-bua-settings.php:105 82 msgid "Year" 83 msgstr "" 84 85 #: ecpm-bua-settings.php:115 324 86 msgid "Are you sure you want to block user?" 325 87 msgstr "" 326 88 327 #: ecpm-bua-settings.php: 44589 #: ecpm-bua-settings.php:115 328 90 msgid "Block user" 329 91 msgstr "" 330 92 93 #: ecpm-bua-settings.php:128 94 msgid "Image" 95 msgstr "" 96 97 #: ecpm-bua-settings.php:162 98 msgid "Image position" 99 msgstr "" 100 101 #: ecpm-bua-settings.php:166 102 msgid "Top" 103 msgstr "" 104 105 #: ecpm-bua-settings.php:167 106 msgid "Middle" 107 msgstr "" 108 109 #: ecpm-bua-settings.php:168 110 msgid "Bottom" 111 msgstr "" 112 113 #: ecpm-bua-settings.php:169 114 msgid "Hide image" 115 msgstr "" 116 117 #: ecpm-bua-settings.php:173 118 msgid "Where to position the image" 119 msgstr "" 120 121 #: ecpm-bua-settings.php:185 122 msgid "Show text on top" 123 msgstr "" 124 125 #: ecpm-bua-settings.php:191 126 msgid "Would you like to show notice on top of image?" 127 msgstr "" 128 129 #: ecpm-bua-settings.php:197 130 msgid "Top notice text" 131 msgstr "" 132 133 #: ecpm-bua-settings.php:201 ecpm-bua-settings.php:334 134 msgid "Variables you can use: [home], [dashboard]" 135 msgstr "" 136 137 #: ecpm-bua-settings.php:204 138 msgid "Notice text on top of the image)" 139 msgstr "" 140 141 #: ecpm-bua-settings.php:210 ecpm-bua-settings.php:343 142 msgid "Size" 143 msgstr "" 144 145 #: ecpm-bua-settings.php:215 ecpm-bua-settings.php:348 146 msgid "xx-small" 147 msgstr "" 148 149 #: ecpm-bua-settings.php:216 ecpm-bua-settings.php:349 150 msgid "x-small" 151 msgstr "" 152 153 #: ecpm-bua-settings.php:217 ecpm-bua-settings.php:350 154 msgid "small" 155 msgstr "" 156 157 #: ecpm-bua-settings.php:218 ecpm-bua-settings.php:351 158 msgid "medium" 159 msgstr "" 160 161 #: ecpm-bua-settings.php:219 ecpm-bua-settings.php:352 162 msgid "large" 163 msgstr "" 164 165 #: ecpm-bua-settings.php:220 ecpm-bua-settings.php:353 166 msgid "x-large" 167 msgstr "" 168 169 #: ecpm-bua-settings.php:221 ecpm-bua-settings.php:354 170 msgid "xx-large" 171 msgstr "" 172 173 #: ecpm-bua-settings.php:222 ecpm-bua-settings.php:355 174 msgid "smaller" 175 msgstr "" 176 177 #: ecpm-bua-settings.php:223 ecpm-bua-settings.php:356 178 msgid "larger" 179 msgstr "" 180 181 #: ecpm-bua-settings.php:227 182 msgid "Top notice font size" 183 msgstr "" 184 185 #: ecpm-bua-settings.php:232 ecpm-bua-settings.php:365 186 msgid "Weight" 187 msgstr "" 188 189 #: ecpm-bua-settings.php:236 ecpm-bua-settings.php:253 190 #: ecpm-bua-settings.php:369 ecpm-bua-settings.php:386 191 msgid "Normal" 192 msgstr "" 193 194 #: ecpm-bua-settings.php:237 ecpm-bua-settings.php:370 195 msgid "Lighter" 196 msgstr "" 197 198 #: ecpm-bua-settings.php:238 ecpm-bua-settings.php:371 199 msgid "Bold" 200 msgstr "" 201 202 #: ecpm-bua-settings.php:239 ecpm-bua-settings.php:372 203 msgid "Bolder" 204 msgstr "" 205 206 #: ecpm-bua-settings.php:243 207 msgid "Top notice font weight" 208 msgstr "" 209 210 #: ecpm-bua-settings.php:249 ecpm-bua-settings.php:382 211 msgid "Style" 212 msgstr "" 213 214 #: ecpm-bua-settings.php:254 ecpm-bua-settings.php:387 215 msgid "Italic" 216 msgstr "" 217 218 #: ecpm-bua-settings.php:255 ecpm-bua-settings.php:388 219 msgid "Oblique" 220 msgstr "" 221 222 #: ecpm-bua-settings.php:256 ecpm-bua-settings.php:389 223 msgid "Initial" 224 msgstr "" 225 226 #: ecpm-bua-settings.php:260 227 msgid "Top notice font style" 228 msgstr "" 229 230 #: ecpm-bua-settings.php:266 ecpm-bua-settings.php:399 231 msgid "Decoration" 232 msgstr "" 233 234 #: ecpm-bua-settings.php:270 ecpm-bua-settings.php:286 235 #: ecpm-bua-settings.php:403 ecpm-bua-settings.php:419 236 msgid "None" 237 msgstr "" 238 239 #: ecpm-bua-settings.php:271 ecpm-bua-settings.php:404 240 msgid "Underline" 241 msgstr "" 242 243 #: ecpm-bua-settings.php:272 ecpm-bua-settings.php:405 244 msgid "Overline" 245 msgstr "" 246 247 #: ecpm-bua-settings.php:273 ecpm-bua-settings.php:406 248 msgid "Line-through" 249 msgstr "" 250 251 #: ecpm-bua-settings.php:277 252 msgid "Top notice font decoration" 253 msgstr "" 254 255 #: ecpm-bua-settings.php:282 ecpm-bua-settings.php:415 256 msgid "Transform" 257 msgstr "" 258 259 #: ecpm-bua-settings.php:287 ecpm-bua-settings.php:420 260 msgid "Capitalize" 261 msgstr "" 262 263 #: ecpm-bua-settings.php:288 ecpm-bua-settings.php:421 264 msgid "Upper case" 265 msgstr "" 266 267 #: ecpm-bua-settings.php:289 ecpm-bua-settings.php:422 268 msgid "Lower case" 269 msgstr "" 270 271 #: ecpm-bua-settings.php:293 272 msgid "Top notice font transformation" 273 msgstr "" 274 275 #: ecpm-bua-settings.php:298 ecpm-bua-settings.php:431 276 msgid "Color" 277 msgstr "" 278 279 #: ecpm-bua-settings.php:306 280 msgid "Top notice label font color" 281 msgstr "" 282 283 #: ecpm-bua-settings.php:318 284 msgid "Show text on bottom" 285 msgstr "" 286 287 #: ecpm-bua-settings.php:324 288 msgid "Would you like to show notice on bottom of image?" 289 msgstr "" 290 291 #: ecpm-bua-settings.php:330 292 msgid "Bottom notice text" 293 msgstr "" 294 295 #: ecpm-bua-settings.php:337 296 msgid "Notice text bottom of the image)" 297 msgstr "" 298 299 #: ecpm-bua-settings.php:360 300 msgid "Bottom notice font size" 301 msgstr "" 302 303 #: ecpm-bua-settings.php:376 304 msgid "Bottom notice font weight" 305 msgstr "" 306 307 #: ecpm-bua-settings.php:393 308 msgid "Bottom notice font style" 309 msgstr "" 310 311 #: ecpm-bua-settings.php:410 312 msgid "Bottom notice font decoration" 313 msgstr "" 314 315 #: ecpm-bua-settings.php:426 316 msgid "Bottom notice font transformation" 317 msgstr "" 318 319 #: ecpm-bua-settings.php:439 320 msgid "Bottom notice label font color" 321 msgstr "" 322 323 #: ecpm-bua-settings.php:451 324 msgid "Show top ad" 325 msgstr "" 326 331 327 #: ecpm-bua-settings.php:457 328 msgid "Would you like to show top ad?" 329 msgstr "" 330 331 #: ecpm-bua-settings.php:463 332 msgid "Top ad" 333 msgstr "" 334 335 #: ecpm-bua-settings.php:472 336 msgid "Show bottom ad" 337 msgstr "" 338 339 #: ecpm-bua-settings.php:478 340 msgid "Would you like to show bottom ad?" 341 msgstr "" 342 343 #: ecpm-bua-settings.php:484 344 msgid "Bottom ad" 345 msgstr "" 346 347 #: ecpm-bua-settings.php:500 332 348 msgid "Remove user data on uninstall" 333 349 msgstr "" 334 350 335 #: ecpm-bua-settings.php: 463351 #: ecpm-bua-settings.php:506 336 352 msgid "Would you like to remove data about blocked users on plugin install?" 337 353 msgstr "" 338 354 339 #: ecpm-bua.php:1 77355 #: ecpm-bua.php:199 340 356 msgid "Settings saved." 341 357 msgstr "" 342 358 343 #: ecpm-bua.php:207 359 #: ecpm-bua.php:230 360 msgid "Blocked users" 361 msgstr "" 362 363 #: ecpm-bua.php:231 344 364 msgid "Image settings" 345 365 msgstr "" 346 366 347 #: ecpm-bua.php:2 08367 #: ecpm-bua.php:232 348 368 msgid "Top notice" 349 369 msgstr "" 350 370 351 #: ecpm-bua.php:2 09371 #: ecpm-bua.php:233 352 372 msgid "Bottom notice" 353 373 msgstr "" 354 374 355 #: ecpm-bua.php:2 10375 #: ecpm-bua.php:234 356 376 msgid "Ad settings" 357 377 msgstr "" 358 378 359 #: ecpm-bua.php:211 360 msgid "Blocked users" 361 msgstr "" 362 363 #: ecpm-bua.php:212 379 #: ecpm-bua.php:235 364 380 msgid "Settings" 365 381 msgstr "" 366 382 367 #: ecpm-bua.php:2 19383 #: ecpm-bua.php:242 368 384 msgid "Save settings" 369 385 msgstr "" -
block-user-ads/trunk/readme.txt
r2165763 r2183073 5 5 Requires at least: 3.5 6 6 Requires PHP: 5.2.4 7 Stable tag: 1.4. 08 Tested up to: 5.2. 37 Stable tag: 1.4.1 8 Tested up to: 5.2.4 9 9 License: GPLv2 or later 10 10 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 56 56 57 57 == Changelog == 58 = 1.4.1 = 59 * Made some corrections 60 58 61 = 1.4.0 = 59 62 * Added expire date for blocking and notes
Note: See TracChangeset
for help on using the changeset viewer.