| 84 | | $twitter_username= $ui->append( 'text', 'username', 'twitter__username', 'Twitter Username:' ); |
| 85 | | $twitter_password= $ui->append( 'password', 'password', 'twitter__password', 'Twitter Password:' ); |
| 86 | | $twitter_post= $ui->append( 'select', 'post_status', 'twitter__post_status', 'Autopost to Twitter:' ); |
| 87 | | $twitter_post->options= array( '0' => 'Disabled', '1' => 'Enabled' ); |
| 88 | | $twitter_show= $ui->append( 'select', 'show', 'twitter__show', 'Make Tweets available to Habari' ); |
| 89 | | $twitter_show->options= array( '0' => 'No', '1' => 'Yes' ); |
| 90 | | $twitter_show= $ui->append( 'select', 'hide_replies', 'twitter__hide_replies', 'Hide @replies' ); |
| 91 | | $twitter_show->options= array( '1' => 'Yes' , '0' => 'No' ); |
| 92 | | $twitter_cache_time= $ui->append( 'text', 'cache', 'twitter__cache', 'Cache expiry in seconds:' ); |
| | 87 | $twitter_username= $ui->append( 'text', 'username', 'twitter__username', |
| | 88 | _t('Twitter Username:') ); |
| | 89 | $twitter_password= $ui->append( 'password', 'password', 'twitter__password', |
| | 90 | _t('Twitter Password:') ); |
| | 91 | $twitter_post= $ui->append( 'select', 'post_status', 'twitter__post_status', |
| | 92 | _t('Autopost to Twitter:') ); |
| | 93 | $twitter_post->options= array( '0' => _t('Disabled'), '1' => _t('Enabled') ); |
| | 94 | $twitter_show= $ui->append( 'select', 'show', 'twitter__show', |
| | 95 | _t('Make Tweets available to Habari') ); |
| | 96 | $twitter_show->options= array( '0' => _t('No'), '1' => _t('Yes') ); |
| | 97 | $twitter_show= $ui->append( 'select', 'hide_replies', |
| | 98 | 'twitter__hide_replies', _t('Hide @replies') ); |
| | 99 | $twitter_show->options= array( '1' => _t('Yes') , '0' => _t('No') ); |
| | 100 | $twitter_show= $ui->append( 'select', 'linkify_urls', |
| | 101 | 'twitter__linkify_urls', _t('Linkify URLs') ); |
| | 102 | $twitter_show->options= array( '1' => _t('Yes') , '0' => _t('No') ); |
| | 103 | $twitter_cache_time= $ui->append( 'text', 'cache', 'twitter__cache', |
| | 104 | _t('Cache expiry in seconds:') ); |