@@ -292,8 +292,13 @@ class="<?php echo $_tab === $active_tab ? esc_attr( 'active' ) : ''; ?>"><?php e
292
292
<div class="form-block">
293
293
<div class="fz-form-group">
294
294
<label class="form-label"><?php esc_html_e ( 'User Agent ' , 'feedzy-rss-feeds ' ); ?> </label>
295
- <input type="text" class="form-control" name="user-agent" placeholder="Add the user agent string"
296
- value="<?php echo isset ( $ settings ['header ' ]['user-agent ' ] ) ? esc_attr ( $ settings ['header ' ]['user-agent ' ] ) : '' ; ?> ">
295
+ <input
296
+ type="text"
297
+ class="form-control"
298
+ name="user-agent"
299
+ placeholder="<?php esc_attr_e ( 'Add the user agent string ' , 'feedzy-rss-feeds ' ); ?> "
300
+ value="<?php echo isset ( $ settings ['header ' ]['user-agent ' ] ) ? esc_attr ( $ settings ['header ' ]['user-agent ' ] ) : '' ; ?> "
301
+ >
297
302
</div>
298
303
</div>
299
304
</div>
@@ -307,31 +312,41 @@ class="<?php echo $_tab === $active_tab ? esc_attr( 'active' ) : ''; ?>"><?php e
307
312
<div class="fz-form-col-6">
308
313
<div class="fz-form-group">
309
314
<label class="form-label"><?php esc_html_e ( 'Username ' , 'feedzy-rss-feeds ' ); ?> :</label>
310
- <input type="text" class="form-control" name="proxy-user" placeholder="Enter the authorized username"
315
+ <input type="text" class="form-control" name="proxy-user" placeholder="<?php esc_attr_e ( ' Enter the authorized username ' , ' feedzy-rss-feeds ' ); ?> "
311
316
value="<?php echo isset ( $ settings ['proxy ' ]['user ' ] ) ? esc_attr ( $ settings ['proxy ' ]['user ' ] ) : '' ; ?> ">
312
317
</div>
313
318
</div>
314
319
<div class="fz-form-col-6">
315
320
<div class="fz-form-group">
316
321
<label class="form-label"><?php esc_html_e ( 'Password ' , 'feedzy-rss-feeds ' ); ?> :</label>
317
- <input type="password" class="form-control" name="proxy-pass" placeholder="Enter the password for the authorized user"
322
+ <input type="password" class="form-control" name="proxy-pass" placeholder="<?php esc_attr_e ( ' Enter the password for the authorized user ' , ' feedzy-rss-feeds ' ); ?> "
318
323
value="<?php echo isset ( $ settings ['proxy ' ]['pass ' ] ) ? esc_attr ( $ settings ['proxy ' ]['pass ' ] ) : '' ; ?> ">
319
324
</div>
320
325
</div>
321
326
<div class="fz-form-col-8">
322
327
<div class="fz-form-group">
323
328
<label class="form-label"><?php esc_html_e ( 'Host ' , 'feedzy-rss-feeds ' ); ?> :</label>
324
- <input type="text" class="form-control" name="proxy-host" placeholder="Enter the IP address or Domain name of the proxy server"
329
+ <input type="text" class="form-control" name="proxy-host" placeholder="<?php esc_attr_e ( ' Enter the IP address or Domain name of the proxy server ' , ' feedzy-rss-feeds ' ); ?> "
325
330
value="<?php echo isset ( $ settings ['proxy ' ]['host ' ] ) ? esc_attr ( $ settings ['proxy ' ]['host ' ] ) : '' ; ?> ">
326
- <div class="help-text pt-8">Example: 127.0.0.1</div>
331
+ <div class="help-text pt-8">
332
+ <?php
333
+ /* translators: %s: the value to introduce. */
334
+ printf ( esc_html__ ( 'Example: %s ' , 'feedzy-rss-feeds ' ), '127.0.0.1 ' );
335
+ ?>
336
+ </div>
327
337
</div>
328
338
</div>
329
339
<div class="fz-form-col-4">
330
340
<div class="fz-form-group">
331
341
<label class="form-label"><?php esc_html_e ( 'Port ' , 'feedzy-rss-feeds ' ); ?> :</label>
332
- <input type="number" min="0" max="65535" class="form-control" name="proxy-port" placeholder="Add the port number"
342
+ <input type="number" min="0" max="65535" class="form-control" name="proxy-port" placeholder="<?php esc_attr_e ( ' Add the port number ' , ' feedzy-rss-feeds ' ); ?> "
333
343
value="<?php echo isset ( $ settings ['proxy ' ]['port ' ] ) ? esc_attr ( (int ) $ settings ['proxy ' ]['port ' ] ) : '' ; ?> ">
334
- <div class="help-text pt-8">Example: 8080</div>
344
+ <div class="help-text pt-8">
345
+ <?php
346
+ /* translators: %s: the value to introduce. */
347
+ printf ( esc_html__ ( 'Example: %s ' , 'feedzy-rss-feeds ' ), '8080 ' );
348
+ ?>
349
+ </div>
335
350
</div>
336
351
</div>
337
352
</div>
0 commit comments