Changeset 1342881
- Timestamp:
- 02/04/2016 06:21:33 AM (9 years ago)
- Location:
- channeller-telegram-channel-administrator
- Files:
-
- 18 added
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
channeller-telegram-channel-administrator/trunk/channeller.php
r1340465 r1342881 2 2 /** 3 3 * @package Websima Telegram Channel 4 * @version 1.3. 34 * @version 1.3.4 5 5 */ 6 6 /* … … 9 9 Description: Send Text, URL and photo from Wordpress to Telegram Channel using Telegram bot API. 10 10 Author: Websima Creative Agency 11 Version: 1.3. 311 Version: 1.3.4 12 12 Author URI: http://websima.com 13 13 */ -
channeller-telegram-channel-administrator/trunk/includes/ch-notification-metabox.php
r1340465 r1342881 81 81 82 82 83 <p class="textboxchannel"<?php if( !$selected == 'customtext' ){echo ' style="display:none;"';} ?>>83 <p class="textboxchannel"<?php if($selected == 'customtext' ) {} else {echo ' style="display:none;"';} ?>> 84 84 <label for="tchannel_text" style="display: block;"><?php printf(__( 'Custom Message', 'tchannel' )); ?></label> 85 85 <textarea style="width: 99%;"rows="3" onkeyup="countChar(this)" name="tchannel_text" id="tchannel_text"><?php echo $text; ?></textarea> … … 91 91 <option value="featured" <?php selected( $selectedimage, 'featured' ); ?>><?php printf(__( 'Featured Image', 'tchannel' )); ?></option> 92 92 <option value="custom" <?php selected( $selectedimage, 'custom' ); ?>><?php printf(__( 'Custom Image', 'tchannel' )); ?></option> 93 <option value="web" <?php selected( $selectedimage, 'web' ); ?>><?php printf(__( 'From Web', 'tchannel' )); ?></option> 93 94 <option value="noimage" <?php selected( $selectedimage, 'noimage' ); ?>><?php printf(__( 'No Image', 'tchannel' )); ?></option> 94 95 </select> 95 96 </p> 96 <p class="imageboxchannel"<?php if( !$selectedimage == 'custom' ){echo ' style="display:none;"';} ?>>97 <p class="imageboxchannel"<?php if($selectedimage == 'custom' ) {} else {echo ' style="display:none;"';} ?>> 97 98 <input id="tchannel_image" type="text" size="20" name="tchannel_image" placeholder="<?php printf(__( 'Custom Image', 'tchannel' )); ?>" /> 98 99 <input id="upload_image_button" type="button" value="<?php printf(__( 'Upload Image', 'tchannel' )); ?>" /><br /> 99 <span><?php printf(__( 'Please Enter Full Image URL on your site, Leave empty to not send images', 'tchannel' )); ?></span> 100 </p> 100 </p> 101 <p class="imageboxweb"<?php if($selectedimage == 'web' ){} else {echo ' style="display:none;"';} ?>> 102 <input id="tchannel_web" type="text" size="20" name="tchannel_web" placeholder="<?php printf(__( 'Url From the Web', 'tchannel' )); ?>" /> 103 <?php printf(__( 'Uploads file to your server ', 'tchannel' )); ?> 101 104 </div> 102 105 <style> … … 134 137 if (text=='custom' ) { 135 138 jQuery('.imageboxchannel').show("slow"); 139 jQuery('.imageboxweb').hide("slow"); 140 } else if (text=='web' ) { 141 jQuery('.imageboxchannel').hide("slow"); 142 jQuery('.imageboxweb').show("slow"); 136 143 } else { 137 jQuery('.imageboxchannel').hide("slow"); 144 jQuery('.imageboxchannel').hide("slow"); 145 jQuery('.imageboxweb').hide("slow"); 138 146 } 139 147 }) … … 166 174 update_post_meta( $post_id, 'tchannel_text', wp_kses( $_POST['tchannel_text'], $allowed ) ); 167 175 if( isset( $_POST['tchannel_image'] ) ) 168 update_post_meta( $post_id, 'tchannel_image', wp_kses( $_POST['tchannel_image'], $allowed ) ); 176 update_post_meta( $post_id, 'tchannel_image', wp_kses( $_POST['tchannel_image'], $allowed ) ); 177 if( isset( $_POST['tchannel_web'] ) ) 178 update_post_meta( $post_id, 'tchannel_web', wp_kses( $_POST['tchannel_web'], $allowed ) ); 169 179 if( isset( $_POST['tchannel_select'] ) ) 170 180 update_post_meta( $post_id, 'tchannel_select', esc_attr( $_POST['tchannel_select'] ) ); -
channeller-telegram-channel-administrator/trunk/includes/ch-publishsend.php
r1340465 r1342881 24 24 } elseif ($media == 'custom') { 25 25 $image = get_post_meta ($post_ID,'tchannel_image',true); 26 } elseif ($media == 'web') { 27 require_once(ABSPATH . 'wp-admin/includes/media.php'); 28 require_once(ABSPATH . 'wp-admin/includes/file.php'); 29 require_once(ABSPATH . 'wp-admin/includes/image.php'); 30 $photo = get_post_meta ($post_ID,'tchannel_web',true); 31 $image = media_sideload_image($photo, $post_ID, '', 'src'); 26 32 } elseif ($media == 'noimage') { 27 33 $image = 'no'; -
channeller-telegram-channel-administrator/trunk/includes/ch-send-functions.php
r1341140 r1342881 16 16 $token = $options['tchannel_text_token']; 17 17 $photo = tchannelFullPath($photo); 18 $finfo = finfo_open(FILEINFO_MIME_TYPE);19 $mime_type = finfo_file($finfo, $photo);18 // $finfo = finfo_open(FILEINFO_MIME_TYPE); 19 // $mime_type = finfo_file($finfo, $photo); 20 20 $chatter = get_site_option( $chat_id ); 21 $caption = truncate_channeller ($caption , 180);21 $caption = truncate_channeller ($caption , 200); 22 22 $fields = array( 23 23 'chat_id' => $chatter, … … 25 25 'photo' => 26 26 '@' . $photo 27 . ';filename=' . $photo 28 . ';type=' . $mime_type, 27 . ';filename=' . $photo, 29 28 'caption' => $caption 30 29 ); … … 56 55 $options = get_option( 'tchannel_settings' ); 57 56 $token = $options['tchannel_text_token']; 58 $message = truncate_channeller ($message , 2980);57 $message = truncate_channeller ($message , 3000); 59 58 if ($token) { 60 59 $url = 'https://api.telegram.org/bot'.$token.'/sendMessage'; -
channeller-telegram-channel-administrator/trunk/languages/tchannel-fa_IR.po
r1335646 r1342881 1 1 msgid "" 2 2 msgstr "" 3 "Content-Type: text/plain; charset= UTF-8\n"3 "Content-Type: text/plain; charset=utf-8\n" 4 4 "Content-Transfer-Encoding: 8bit\n" 5 "Plural-Forms: nplurals=1; plural=0;\n" 6 "Project-Id-Version: channeller\n" 5 "Project-Id-Version: \n" 7 6 "POT-Creation-Date: \n" 8 7 "PO-Revision-Date: \n" 9 8 "Last-Translator: \n" 10 "Language-Team: Websima <[email protected]>\n"9 "Language-Team: \n" 11 10 "MIME-Version: 1.0\n" 12 "Language: fa _IR\n"13 "X-Generator: Poedit 1. 6.10\n"14 15 #. Text in function 16 #: domains/supsima.com/public_html/sepand/wp-content/plugins/channeller-telegram-channel-administrator/includes/ch-api-settings.php:10511 "Language: fa\n" 12 "X-Generator: Poedit 1.8.6\n" 13 14 #. Text in function 15 #: includes/ch-api-settings.php:105 17 16 msgid "Before updating this settings please read the Documents carefully" 18 msgstr "" 19 "قبل از انجام تغییرات در این بخش، آموزش کار با افزونه را به دقت مطالعه کنید." 20 21 #. Text in function 22 #: domains/supsima.com/public_html/sepand/wp-content/plugins/channeller-telegram-channel-administrator/channeller.php:43 17 msgstr "قبل از انجام تغییرات در این بخش، آموزش کار با افزونه را به دقت مطالعه کنید." 18 19 #. Text in function 20 #: channeller.php:43 23 21 msgid "Channel/Group" 24 22 msgstr "کانال یا گروه" 25 23 26 24 #. Text in function 27 #: domains/supsima.com/public_html/sepand/wp-content/plugins/channeller-telegram-channel-administrator/channeller.php:51 28 #: domains/supsima.com/public_html/sepand/wp-content/plugins/channeller-telegram-channel-administrator/includes/ch-notification-metabox.php:1 25 #: channeller.php:51 includes/ch-notification-metabox.php:1 29 26 msgid "Channeller" 30 27 msgstr "کانالر" 31 28 32 29 #. Text in function 33 #: domains/supsima.com/public_html/sepand/wp-content/plugins/channeller-telegram-channel-administrator/includes/ch-notification-metabox.php:8330 #: includes/ch-notification-metabox.php:86 34 31 msgid "Characters Limit: " 35 32 msgstr "محدودیت کاراکتر: " 36 33 37 34 #. Text in function 38 #: domains/supsima.com/public_html/sepand/wp-content/plugins/channeller-telegram-channel-administrator/channeller.php:3735 #: channeller.php:37 39 36 msgid "Clear Log" 40 37 msgstr "حذف سوابق قبلی" 41 38 42 39 #. Text in function 43 #: domains/supsima.com/public_html/sepand/wp-content/plugins/channeller-telegram-channel-administrator/includes/ch-notification-metabox.php:8944 #: domains/supsima.com/public_html/sepand/wp-content/plugins/channeller-telegram-channel-administrator/includes/ch-notification-metabox.php:9440 #: includes/ch-notification-metabox.php:92 41 #: includes/ch-notification-metabox.php:98 45 42 msgid "Custom Image" 46 43 msgstr "تصویر دلخواه" 47 44 48 45 #. Text in function 49 #: domains/supsima.com/public_html/sepand/wp-content/plugins/channeller-telegram-channel-administrator/includes/ch-notification-metabox.php:7550 #: domains/supsima.com/public_html/sepand/wp-content/plugins/channeller-telegram-channel-administrator/includes/ch-notification-metabox.php:8146 #: includes/ch-notification-metabox.php:78 47 #: includes/ch-notification-metabox.php:84 51 48 msgid "Custom Message" 52 49 msgstr "متن دلخواه" 53 50 54 51 #. Text in function 55 #: domains/supsima.com/public_html/sepand/wp-content/plugins/channeller-telegram-channel-administrator/channeller.php:4252 #: channeller.php:42 56 53 msgid "Date" 57 54 msgstr "تاریخ" 58 55 59 56 #. Text in function 60 #: domains/supsima.com/public_html/sepand/wp-content/plugins/channeller-telegram-channel-administrator/includes/ch-api-settings.php:8257 #: includes/ch-api-settings.php:82 61 58 msgid "Enter Your Telegram Bot Token" 62 59 msgstr "Token دریافتی از تلگرام برای روبات را وارد کنید." 63 60 64 61 #. Text in function 65 #: domains/supsima.com/public_html/sepand/wp-content/plugins/channeller-telegram-channel-administrator/includes/ch-notification-metabox.php:8862 #: includes/ch-notification-metabox.php:91 66 63 msgid "Featured Image" 67 64 msgstr "تصویر شاخص" 68 65 69 66 #. Text in function 70 #: domains/supsima.com/public_html/sepand/wp-content/plugins/channeller-telegram-channel-administrator/includes/ch-notification-metabox.php:66 67 #: includes/ch-notification-metabox.php:93 68 msgid "From Web" 69 msgstr "خارج از سایت" 70 71 #. Text in function 72 #: includes/ch-notification-metabox.php:69 71 73 msgid "Full URL" 72 74 msgstr "آدرس کامل" 73 75 74 76 #. Text in function 75 #: domains/supsima.com/public_html/sepand/wp-content/plugins/channeller-telegram-channel-administrator/includes/ch-api-settings.php:8277 #: includes/ch-api-settings.php:82 76 78 msgid "Get Telegram API ready" 77 79 msgstr "تنظیمات خبرنامه روبات تلگرام" 78 80 79 81 #. Text in function 80 #: domains/supsima.com/public_html/sepand/wp-content/plugins/channeller-telegram-channel-administrator/includes/ch-notification-metabox.php:8682 #: includes/ch-notification-metabox.php:89 81 83 msgid "Image" 82 84 msgstr "تصویر" 83 85 84 86 #. Text in function 85 #: domains/supsima.com/public_html/sepand/wp-content/plugins/channeller-telegram-channel-administrator/includes/ch-notification-metabox.php:6487 #: includes/ch-notification-metabox.php:67 86 88 msgid "Link Type" 87 89 msgstr "لینک ارسالی" 88 90 89 91 #. Text in function 90 #: domains/supsima.com/public_html/sepand/wp-content/plugins/channeller-telegram-channel-administrator/includes/ch-api-settings.php:8292 #: includes/ch-api-settings.php:82 91 93 msgid "List of Channels" 92 94 msgstr "لیست کانال ها" 93 95 94 96 #. Text in function 95 #: domains/supsima.com/public_html/sepand/wp-content/plugins/channeller-telegram-channel-administrator/includes/ch-api-settings.php:8297 #: includes/ch-api-settings.php:82 96 98 msgid "List of Groups" 97 99 msgstr "لیست گروه ها" 98 100 99 101 #. Text in function 100 #: domains/supsima.com/public_html/sepand/wp-content/plugins/channeller-telegram-channel-administrator/channeller.php:51102 #: channeller.php:51 101 103 msgid "Log" 102 104 msgstr "سوابق" 103 105 104 106 #. Text in function 105 #: domains/supsima.com/public_html/sepand/wp-content/plugins/channeller-telegram-channel-administrator/includes/ch-api-settings.php:82107 #: includes/ch-api-settings.php:82 106 108 msgid "Log Your Activity?" 107 109 msgstr "سوابق ذخیره شود؟" 108 110 109 111 #. Text in function 110 #: domains/supsima.com/public_html/sepand/wp-content/plugins/channeller-telegram-channel-administrator/channeller.php:45112 #: channeller.php:45 111 113 msgid "Message" 112 114 msgstr "پیام" 113 115 114 116 #. Text in function 115 #: domains/supsima.com/public_html/sepand/wp-content/plugins/channeller-telegram-channel-administrator/includes/ch-notification-metabox.php:72117 #: includes/ch-notification-metabox.php:75 116 118 msgid "Message Text" 117 119 msgstr "متن پیام" 118 120 119 121 #. Text in function 120 #: domains/supsima.com/public_html/sepand/wp-content/plugins/channeller-telegram-channel-administrator/channeller.php:37122 #: channeller.php:37 121 123 msgid "Messages History" 122 124 msgstr "لیست پیام های ارسالی" 123 125 124 126 #. Text in function 125 #: domains/supsima.com/public_html/sepand/wp-content/plugins/channeller-telegram-channel-administrator/includes/ch-api-settings.php:79127 #: includes/ch-api-settings.php:79 126 128 msgid "No" 127 129 msgstr "خیر" 128 130 129 131 #. Text in function 130 #: domains/supsima.com/public_html/sepand/wp-content/plugins/channeller-telegram-channel-administrator/includes/ch-notification-metabox.php:90132 #: includes/ch-notification-metabox.php:94 131 133 msgid "No Image" 132 134 msgstr "بدون تصویر" 133 135 134 136 #. Text in function 135 #: domains/supsima.com/public_html/sepand/wp-content/plugins/channeller-telegram-channel-administrator/includes/ch-notification-metabox.php:68137 #: includes/ch-notification-metabox.php:71 136 138 msgid "No URL" 137 139 msgstr "بدون لینک" 138 140 139 141 #. Text in function 140 #: domains/supsima.com/public_html/sepand/wp-content/plugins/channeller-telegram-channel-administrator/includes/ch-send-functions.php:1142 #: includes/ch-send-functions.php:1 141 143 msgid "Not Sent" 142 144 msgstr "ناموفق" 143 145 144 146 #. Text in function 145 #: domains/supsima.com/public_html/sepand/wp-content/plugins/channeller-telegram-channel-administrator/includes/ch-notification-metabox.php:96 146 msgid "" 147 "Please Enter Full Image URL on your site, Leave empty to not send images" 148 msgstr "" 149 "آدرس کامل تصویر از روی هاست خود را وارد نمایید، دقت کنید که تصویر از طریق " 150 "پنل وردپرس شما آپلود شده باشد. (در صورت خالی بودن تنها متن ارسال میشود)" 151 152 #. Text in function 153 #: domains/supsima.com/public_html/sepand/wp-content/plugins/channeller-telegram-channel-administrator/includes/ch-api-settings.php:89 154 msgid "" 155 "Please write down Channel IDs separated by \"+\" including @ (ex: @websimaca" 156 "+@webasimachannel2)" 157 msgstr "" 158 "لطفا آی دی کانال ها را با علامت + از یکدیگر جدا کرده و حتما @ ابتدای آی دی " 159 "را وارد نمایید. مانند (ex: @websimaca+@webasimachannel2)" 160 161 #. Text in function 162 #: domains/supsima.com/public_html/sepand/wp-content/plugins/channeller-telegram-channel-administrator/includes/ch-api-settings.php:96 163 msgid "" 164 "Please write down Group IDs and Names separated by \"/\" and make theme " 165 "separated by + (ex: -56894843/websimaGroup+-78894843/samplegroup2)" 166 msgstr "" 167 "ابتدا آی دی گروه سپس یک کاراکتر / و در ادامه نام گروه را وارد نمایید، گروه " 168 "ها را با کاراکتر + از یکدیگر جدا کنید. مانند (ex: -56894843/websimaGroup" 169 "+-78894843/samplegroup2)" 170 171 #. Text in function 172 #: domains/supsima.com/public_html/sepand/wp-content/plugins/channeller-telegram-channel-administrator/includes/ch-notification-metabox.php:74 147 #: includes/ch-api-settings.php:89 148 msgid "Please write down Channel IDs separated by \"+\" including @ (ex: @websimaca+@webasimachannel2)" 149 msgstr "لطفا آی دی کانال ها را با علامت + از یکدیگر جدا کرده و حتما @ ابتدای آی دی را وارد نمایید. مانند (ex: @websimaca+@webasimachannel2)" 150 151 #. Text in function 152 #: includes/ch-api-settings.php:96 153 msgid "Please write down Group IDs and Names separated by \"/\" and make theme separated by + (ex: -56894843/websimaGroup+-78894843/samplegroup2)" 154 msgstr "ابتدا آی دی گروه سپس یک کاراکتر / و در ادامه نام گروه را وارد نمایید، گروه ها را با کاراکتر + از یکدیگر جدا کنید. مانند (ex: -56894843/websimaGroup+-78894843/samplegroup2)" 155 156 #. Text in function 157 #: includes/ch-notification-metabox.php:77 173 158 msgid "Post Content" 174 159 msgstr "محتوای نوشته" 175 160 176 161 #. Text in function 177 #: domains/supsima.com/public_html/sepand/wp-content/plugins/channeller-telegram-channel-administrator/includes/ch-api-settings.php:82162 #: includes/ch-api-settings.php:82 178 163 msgid "Send Notification for " 179 164 msgstr "قابلیت ارسال خبرنامه هنگام ایجاد " 180 165 181 166 #. Text in function 182 #: domains/supsima.com/public_html/sepand/wp-content/plugins/channeller-telegram-channel-administrator/includes/ch-send-functions.php:1167 #: includes/ch-send-functions.php:1 183 168 msgid "Send Photo" 184 169 msgstr "ارسال عکس" 185 170 186 171 #. Text in function 187 #: domains/supsima.com/public_html/sepand/wp-content/plugins/channeller-telegram-channel-administrator/includes/ch-send-functions.php:1172 #: includes/ch-send-functions.php:1 188 173 msgid "Send Text" 189 174 msgstr "ارسال متن" 190 175 191 176 #. Text in function 192 #: domains/supsima.com/public_html/sepand/wp-content/plugins/channeller-telegram-channel-administrator/includes/ch-notification-metabox.php:31177 #: includes/ch-notification-metabox.php:31 193 178 msgid "Send to Channels." 194 179 msgstr "ارسال به کانال ها" 195 180 196 181 #. Text in function 197 #: domains/supsima.com/public_html/sepand/wp-content/plugins/channeller-telegram-channel-administrator/includes/ch-notification-metabox.php:58182 #: includes/ch-notification-metabox.php:59 198 183 msgid "Send to Groups" 199 184 msgstr "ارسال به گروه ها" 200 185 201 186 #. Text in function 202 #: domains/supsima.com/public_html/sepand/wp-content/plugins/channeller-telegram-channel-administrator/includes/ch-send-functions.php:1187 #: includes/ch-send-functions.php:1 203 188 msgid "Sent" 204 189 msgstr "موفق" 205 190 206 191 #. Text in function 207 #: domains/supsima.com/public_html/sepand/wp-content/plugins/channeller-telegram-channel-administrator/includes/ch-notification-metabox.php:67192 #: includes/ch-notification-metabox.php:70 208 193 msgid "Short URL" 209 194 msgstr "لینک کوتاه" 210 195 211 196 #. Text in function 212 #: domains/supsima.com/public_html/sepand/wp-content/plugins/channeller-telegram-channel-administrator/channeller.php:44197 #: channeller.php:44 213 198 msgid "Status" 214 199 msgstr "وضعیت" 215 200 216 201 #. Text in function 217 #: domains/supsima.com/public_html/sepand/wp-content/plugins/channeller-telegram-channel-administrator/includes/ch-api-settings.php:127202 #: includes/ch-api-settings.php:127 218 203 msgid "Telegram Channel Admin" 219 204 msgstr "مدیر کانال تلگرام" 220 205 221 206 #. Text in function 222 #: domains/supsima.com/public_html/sepand/wp-content/plugins/channeller-telegram-channel-administrator/channeller.php:41207 #: channeller.php:41 223 208 msgid "Type" 224 209 msgstr "نوع پیام" 225 210 226 211 #. Text in function 227 #: domains/supsima.com/public_html/sepand/wp-content/plugins/channeller-telegram-channel-administrator/includes/ch-notification-metabox.php:95212 #: includes/ch-notification-metabox.php:99 228 213 msgid "Upload Image" 229 214 msgstr "آپلود تصویر" 230 215 231 216 #. Text in function 232 #: domains/supsima.com/public_html/sepand/wp-content/plugins/channeller-telegram-channel-administrator/includes/ch-api-settings.php:78 217 #: includes/ch-notification-metabox.php:103 218 msgid "Uploads file to your server " 219 msgstr "فایل بر روی سرور شما آپلود میشود" 220 221 #. Text in function 222 #: includes/ch-notification-metabox.php:102 223 msgid "Url From the Web" 224 msgstr "آدرس تصویر از اینترنت" 225 226 #. Text in function 227 #: includes/ch-api-settings.php:78 233 228 msgid "Yes" 234 229 msgstr "بله" -
channeller-telegram-channel-administrator/trunk/languages/tchannel.po
r1335646 r1342881 1 1 msgid "" 2 2 msgstr "" 3 "Content-Type: text/plain; charset= UTF-8\n"3 "Content-Type: text/plain; charset=utf-8\n" 4 4 "Content-Transfer-Encoding: 8bit\n" 5 "Plural-Forms: nplurals=1; plural=0;\n" 6 "Project-Id-Version: channeller\n" 7 "POT-Creation-Date: \n" 8 "PO-Revision-Date: \n" 9 "Last-Translator: \n" 10 "Language-Team: Websima <[email protected]>\n" 11 "MIME-Version: 1.0\n" 12 "Language: fa_IR\n" 13 "X-Generator: Poedit 1.6.10\n" 14 15 #. Text in function 16 #: domains/supsima.com/public_html/sepand/wp-content/plugins/channeller-telegram-channel-administrator/includes/ch-api-settings.php:105 5 6 #. Text in function 7 #: includes/ch-api-settings.php:105 17 8 msgid "Before updating this settings please read the Documents carefully" 18 msgstr "" 19 "قبل از انجام تغییرات در این بخش، آموزش کار با افزونه را به دقت مطالعه کنید." 20 21 #. Text in function 22 #: domains/supsima.com/public_html/sepand/wp-content/plugins/channeller-telegram-channel-administrator/channeller.php:43 9 msgstr "قبل از انجام تغییرات در این بخش، آموزش کار با افزونه را به دقت مطالعه کنید." 10 11 #. Text in function 12 #: channeller.php:43 23 13 msgid "Channel/Group" 24 14 msgstr "کانال یا گروه" 25 15 26 16 #. Text in function 27 #: domains/supsima.com/public_html/sepand/wp-content/plugins/channeller-telegram-channel-administrator/channeller.php:5128 #: domains/supsima.com/public_html/sepand/wp-content/plugins/channeller-telegram-channel-administrator/includes/ch-notification-metabox.php:117 #: channeller.php:51 18 #: includes/ch-notification-metabox.php:1 29 19 msgid "Channeller" 30 20 msgstr "کانالر" 31 21 32 22 #. Text in function 33 #: domains/supsima.com/public_html/sepand/wp-content/plugins/channeller-telegram-channel-administrator/includes/ch-notification-metabox.php:8323 #: includes/ch-notification-metabox.php:86 34 24 msgid "Characters Limit: " 35 25 msgstr "محدودیت کاراکتر: " 36 26 37 27 #. Text in function 38 #: domains/supsima.com/public_html/sepand/wp-content/plugins/channeller-telegram-channel-administrator/channeller.php:3728 #: channeller.php:37 39 29 msgid "Clear Log" 40 30 msgstr "حذف سوابق قبلی" 41 31 42 32 #. Text in function 43 #: domains/supsima.com/public_html/sepand/wp-content/plugins/channeller-telegram-channel-administrator/includes/ch-notification-metabox.php:8944 #: domains/supsima.com/public_html/sepand/wp-content/plugins/channeller-telegram-channel-administrator/includes/ch-notification-metabox.php:9433 #: includes/ch-notification-metabox.php:92 34 #: includes/ch-notification-metabox.php:98 45 35 msgid "Custom Image" 46 36 msgstr "تصویر دلخواه" 47 37 48 38 #. Text in function 49 #: domains/supsima.com/public_html/sepand/wp-content/plugins/channeller-telegram-channel-administrator/includes/ch-notification-metabox.php:7550 #: domains/supsima.com/public_html/sepand/wp-content/plugins/channeller-telegram-channel-administrator/includes/ch-notification-metabox.php:8139 #: includes/ch-notification-metabox.php:78 40 #: includes/ch-notification-metabox.php:84 51 41 msgid "Custom Message" 52 42 msgstr "متن دلخواه" 53 43 54 44 #. Text in function 55 #: domains/supsima.com/public_html/sepand/wp-content/plugins/channeller-telegram-channel-administrator/channeller.php:4245 #: channeller.php:42 56 46 msgid "Date" 57 47 msgstr "تاریخ" 58 48 59 49 #. Text in function 60 #: domains/supsima.com/public_html/sepand/wp-content/plugins/channeller-telegram-channel-administrator/includes/ch-api-settings.php:8250 #: includes/ch-api-settings.php:82 61 51 msgid "Enter Your Telegram Bot Token" 62 52 msgstr "Token دریافتی از تلگرام برای روبات را وارد کنید." 63 53 64 54 #. Text in function 65 #: domains/supsima.com/public_html/sepand/wp-content/plugins/channeller-telegram-channel-administrator/includes/ch-notification-metabox.php:8855 #: includes/ch-notification-metabox.php:91 66 56 msgid "Featured Image" 67 57 msgstr "تصویر شاخص" 68 58 69 59 #. Text in function 70 #: domains/supsima.com/public_html/sepand/wp-content/plugins/channeller-telegram-channel-administrator/includes/ch-notification-metabox.php:66 60 #: includes/ch-notification-metabox.php:93 61 msgid "From Web" 62 msgstr "" 63 64 #. Text in function 65 #: includes/ch-notification-metabox.php:69 71 66 msgid "Full URL" 72 67 msgstr "آدرس کامل" 73 68 74 69 #. Text in function 75 #: domains/supsima.com/public_html/sepand/wp-content/plugins/channeller-telegram-channel-administrator/includes/ch-api-settings.php:8270 #: includes/ch-api-settings.php:82 76 71 msgid "Get Telegram API ready" 77 72 msgstr "تنظیمات خبرنامه روبات تلگرام" 78 73 79 74 #. Text in function 80 #: domains/supsima.com/public_html/sepand/wp-content/plugins/channeller-telegram-channel-administrator/includes/ch-notification-metabox.php:8675 #: includes/ch-notification-metabox.php:89 81 76 msgid "Image" 82 77 msgstr "تصویر" 83 78 84 79 #. Text in function 85 #: domains/supsima.com/public_html/sepand/wp-content/plugins/channeller-telegram-channel-administrator/includes/ch-notification-metabox.php:6480 #: includes/ch-notification-metabox.php:67 86 81 msgid "Link Type" 87 82 msgstr "لینک ارسالی" 88 83 89 84 #. Text in function 90 #: domains/supsima.com/public_html/sepand/wp-content/plugins/channeller-telegram-channel-administrator/includes/ch-api-settings.php:8285 #: includes/ch-api-settings.php:82 91 86 msgid "List of Channels" 92 87 msgstr "لیست کانال ها" 93 88 94 89 #. Text in function 95 #: domains/supsima.com/public_html/sepand/wp-content/plugins/channeller-telegram-channel-administrator/includes/ch-api-settings.php:8290 #: includes/ch-api-settings.php:82 96 91 msgid "List of Groups" 97 92 msgstr "لیست گروه ها" 98 93 99 94 #. Text in function 100 #: domains/supsima.com/public_html/sepand/wp-content/plugins/channeller-telegram-channel-administrator/channeller.php:5195 #: channeller.php:51 101 96 msgid "Log" 102 97 msgstr "سوابق" 103 98 104 99 #. Text in function 105 #: domains/supsima.com/public_html/sepand/wp-content/plugins/channeller-telegram-channel-administrator/includes/ch-api-settings.php:82100 #: includes/ch-api-settings.php:82 106 101 msgid "Log Your Activity?" 107 102 msgstr "سوابق ذخیره شود؟" 108 103 109 104 #. Text in function 110 #: domains/supsima.com/public_html/sepand/wp-content/plugins/channeller-telegram-channel-administrator/channeller.php:45105 #: channeller.php:45 111 106 msgid "Message" 112 107 msgstr "پیام" 113 108 114 109 #. Text in function 115 #: domains/supsima.com/public_html/sepand/wp-content/plugins/channeller-telegram-channel-administrator/includes/ch-notification-metabox.php:72110 #: includes/ch-notification-metabox.php:75 116 111 msgid "Message Text" 117 112 msgstr "متن پیام" 118 113 119 114 #. Text in function 120 #: domains/supsima.com/public_html/sepand/wp-content/plugins/channeller-telegram-channel-administrator/channeller.php:37115 #: channeller.php:37 121 116 msgid "Messages History" 122 117 msgstr "لیست پیام های ارسالی" 123 118 124 119 #. Text in function 125 #: domains/supsima.com/public_html/sepand/wp-content/plugins/channeller-telegram-channel-administrator/includes/ch-api-settings.php:79120 #: includes/ch-api-settings.php:79 126 121 msgid "No" 127 122 msgstr "خیر" 128 123 129 124 #. Text in function 130 #: domains/supsima.com/public_html/sepand/wp-content/plugins/channeller-telegram-channel-administrator/includes/ch-notification-metabox.php:90125 #: includes/ch-notification-metabox.php:94 131 126 msgid "No Image" 132 127 msgstr "بدون تصویر" 133 128 134 129 #. Text in function 135 #: domains/supsima.com/public_html/sepand/wp-content/plugins/channeller-telegram-channel-administrator/includes/ch-notification-metabox.php:68130 #: includes/ch-notification-metabox.php:71 136 131 msgid "No URL" 137 132 msgstr "بدون لینک" 138 133 139 134 #. Text in function 140 #: domains/supsima.com/public_html/sepand/wp-content/plugins/channeller-telegram-channel-administrator/includes/ch-send-functions.php:1135 #: includes/ch-send-functions.php:1 141 136 msgid "Not Sent" 142 137 msgstr "ناموفق" 143 138 144 139 #. Text in function 145 #: domains/supsima.com/public_html/sepand/wp-content/plugins/channeller-telegram-channel-administrator/includes/ch-notification-metabox.php:96 146 msgid "" 147 "Please Enter Full Image URL on your site, Leave empty to not send images" 148 msgstr "" 149 "آدرس کامل تصویر از روی هاست خود را وارد نمایید، دقت کنید که تصویر از طریق " 150 "پنل وردپرس شما آپلود شده باشد. (در صورت خالی بودن تنها متن ارسال میشود)" 151 152 #. Text in function 153 #: domains/supsima.com/public_html/sepand/wp-content/plugins/channeller-telegram-channel-administrator/includes/ch-api-settings.php:89 154 msgid "" 155 "Please write down Channel IDs separated by \"+\" including @ (ex: @websimaca" 156 "+@webasimachannel2)" 157 msgstr "" 158 "لطفا آی دی کانال ها را با علامت + از یکدیگر جدا کرده و حتما @ ابتدای آی دی " 159 "را وارد نمایید. مانند (ex: @websimaca+@webasimachannel2)" 160 161 #. Text in function 162 #: domains/supsima.com/public_html/sepand/wp-content/plugins/channeller-telegram-channel-administrator/includes/ch-api-settings.php:96 163 msgid "" 164 "Please write down Group IDs and Names separated by \"/\" and make theme " 165 "separated by + (ex: -56894843/websimaGroup+-78894843/samplegroup2)" 166 msgstr "" 167 "ابتدا آی دی گروه سپس یک کاراکتر / و در ادامه نام گروه را وارد نمایید، گروه " 168 "ها را با کاراکتر + از یکدیگر جدا کنید. مانند (ex: -56894843/websimaGroup" 169 "+-78894843/samplegroup2)" 170 171 #. Text in function 172 #: domains/supsima.com/public_html/sepand/wp-content/plugins/channeller-telegram-channel-administrator/includes/ch-notification-metabox.php:74 140 #: includes/ch-api-settings.php:89 141 msgid "Please write down Channel IDs separated by \"+\" including @ (ex: @websimaca+@webasimachannel2)" 142 msgstr "لطفا آی دی کانال ها را با علامت + از یکدیگر جدا کرده و حتما @ ابتدای آی دی را وارد نمایید. مانند (ex: @websimaca+@webasimachannel2)" 143 144 #. Text in function 145 #: includes/ch-api-settings.php:96 146 msgid "Please write down Group IDs and Names separated by \"/\" and make theme separated by + (ex: -56894843/websimaGroup+-78894843/samplegroup2)" 147 msgstr "ابتدا آی دی گروه سپس یک کاراکتر / و در ادامه نام گروه را وارد نمایید، گروه ها را با کاراکتر + از یکدیگر جدا کنید. مانند (ex: -56894843/websimaGroup+-78894843/samplegroup2)" 148 149 #. Text in function 150 #: includes/ch-notification-metabox.php:77 173 151 msgid "Post Content" 174 152 msgstr "محتوای نوشته" 175 153 176 154 #. Text in function 177 #: domains/supsima.com/public_html/sepand/wp-content/plugins/channeller-telegram-channel-administrator/includes/ch-api-settings.php:82155 #: includes/ch-api-settings.php:82 178 156 msgid "Send Notification for " 179 157 msgstr "قابلیت ارسال خبرنامه هنگام ایجاد " 180 158 181 159 #. Text in function 182 #: domains/supsima.com/public_html/sepand/wp-content/plugins/channeller-telegram-channel-administrator/includes/ch-send-functions.php:1160 #: includes/ch-send-functions.php:1 183 161 msgid "Send Photo" 184 162 msgstr "ارسال عکس" 185 163 186 164 #. Text in function 187 #: domains/supsima.com/public_html/sepand/wp-content/plugins/channeller-telegram-channel-administrator/includes/ch-send-functions.php:1165 #: includes/ch-send-functions.php:1 188 166 msgid "Send Text" 189 167 msgstr "ارسال متن" 190 168 191 169 #. Text in function 192 #: domains/supsima.com/public_html/sepand/wp-content/plugins/channeller-telegram-channel-administrator/includes/ch-notification-metabox.php:31170 #: includes/ch-notification-metabox.php:31 193 171 msgid "Send to Channels." 194 172 msgstr "ارسال به کانال ها" 195 173 196 174 #. Text in function 197 #: domains/supsima.com/public_html/sepand/wp-content/plugins/channeller-telegram-channel-administrator/includes/ch-notification-metabox.php:58175 #: includes/ch-notification-metabox.php:59 198 176 msgid "Send to Groups" 199 177 msgstr "ارسال به گروه ها" 200 178 201 179 #. Text in function 202 #: domains/supsima.com/public_html/sepand/wp-content/plugins/channeller-telegram-channel-administrator/includes/ch-send-functions.php:1180 #: includes/ch-send-functions.php:1 203 181 msgid "Sent" 204 182 msgstr "موفق" 205 183 206 184 #. Text in function 207 #: domains/supsima.com/public_html/sepand/wp-content/plugins/channeller-telegram-channel-administrator/includes/ch-notification-metabox.php:67185 #: includes/ch-notification-metabox.php:70 208 186 msgid "Short URL" 209 187 msgstr "لینک کوتاه" 210 188 211 189 #. Text in function 212 #: domains/supsima.com/public_html/sepand/wp-content/plugins/channeller-telegram-channel-administrator/channeller.php:44190 #: channeller.php:44 213 191 msgid "Status" 214 192 msgstr "وضعیت" 215 193 216 194 #. Text in function 217 #: domains/supsima.com/public_html/sepand/wp-content/plugins/channeller-telegram-channel-administrator/includes/ch-api-settings.php:127195 #: includes/ch-api-settings.php:127 218 196 msgid "Telegram Channel Admin" 219 197 msgstr "مدیر کانال تلگرام" 220 198 221 199 #. Text in function 222 #: domains/supsima.com/public_html/sepand/wp-content/plugins/channeller-telegram-channel-administrator/channeller.php:41200 #: channeller.php:41 223 201 msgid "Type" 224 202 msgstr "نوع پیام" 225 203 226 204 #. Text in function 227 #: domains/supsima.com/public_html/sepand/wp-content/plugins/channeller-telegram-channel-administrator/includes/ch-notification-metabox.php:95205 #: includes/ch-notification-metabox.php:99 228 206 msgid "Upload Image" 229 207 msgstr "آپلود تصویر" 230 208 231 209 #. Text in function 232 #: domains/supsima.com/public_html/sepand/wp-content/plugins/channeller-telegram-channel-administrator/includes/ch-api-settings.php:78 210 #: includes/ch-notification-metabox.php:103 211 msgid "Uploads file to your server " 212 msgstr "" 213 214 #. Text in function 215 #: includes/ch-notification-metabox.php:102 216 msgid "Url From the Web" 217 msgstr "" 218 219 #. Text in function 220 #: includes/ch-api-settings.php:78 233 221 msgid "Yes" 234 msgstr " بله"222 msgstr "" -
channeller-telegram-channel-administrator/trunk/readme.txt
r1340465 r1342881 5 5 Requires at least: 3.0.1 6 6 Tested up to: 4.4.1 7 Stable tag: 1.3. 37 Stable tag: 1.3.4 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 28 28 * Send Text and Photo Messages to Groups 29 29 * Supports Html Tags in Messages including a, b, strong, code, em and pre 30 * Send Images from other sites 30 31 31 32 Notice: add @Channeller_Bot robot to your group to get the Group ID, your bot should be one of the Group members for sending messages. … … 75 76 76 77 == Changelog == 78 = 1.3.4 = 79 Ability to send Image from web urls 80 no need to file_info function anymore 81 77 82 = 1.3.3 = 78 83 Limit image captions to 200 characters and messages to 3000 characters
Note: See TracChangeset
for help on using the changeset viewer.