Changeset 2386614
- Timestamp:
- 09/22/2020 07:46:24 PM (5 years ago)
- Location:
- hello-i-am-here
- Files:
-
- 20 edited
- 1 copied
-
tags/2.0 (copied) (copied from hello-i-am-here/trunk)
-
tags/2.0/README.txt (modified) (3 diffs)
-
tags/2.0/admin/class-hello-here-admin.php (modified) (3 diffs)
-
tags/2.0/admin/css/hello-here-admin.css (modified) (1 diff)
-
tags/2.0/admin/js/hello-here-main.js (modified) (2 diffs)
-
tags/2.0/admin/partials/hello-here-admin-main.php (modified) (4 diffs)
-
tags/2.0/hello-here.php (modified) (2 diffs)
-
tags/2.0/languages/hello-here-es_ES.mo (modified) (previous)
-
tags/2.0/languages/hello-here-es_ES.po (modified) (3 diffs)
-
tags/2.0/languages/hello-here.pot (modified) (4 diffs)
-
tags/2.0/public/class-hello-here-public.php (modified) (1 diff)
-
trunk/README.txt (modified) (3 diffs)
-
trunk/admin/class-hello-here-admin.php (modified) (3 diffs)
-
trunk/admin/css/hello-here-admin.css (modified) (1 diff)
-
trunk/admin/js/hello-here-main.js (modified) (2 diffs)
-
trunk/admin/partials/hello-here-admin-main.php (modified) (4 diffs)
-
trunk/hello-here.php (modified) (2 diffs)
-
trunk/languages/hello-here-es_ES.mo (modified) (previous)
-
trunk/languages/hello-here-es_ES.po (modified) (3 diffs)
-
trunk/languages/hello-here.pot (modified) (4 diffs)
-
trunk/public/class-hello-here-public.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
hello-i-am-here/tags/2.0/README.txt
r2328301 r2386614 3 3 Tags: video, conference, video conference, covid, covid19, jitsi 4 4 Requires at least: 4.6 5 Tested up to: 5. 45 Tested up to: 5.5.1 6 6 License: GPLv2 or later 7 7 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 14 14 15 15 Mantain communications in the actual COVID-19 crisis. 16 And maybe future COVID-XX :( 16 17 17 18 How to: … … 41 42 == Changelog == 42 43 44 = 2.0 = 45 * Divi, Buddypress and others shortcode compatibility 46 * Removed page title 47 * Save last used Jitsi server. Good for people that have their own Jitsi servers 48 * Added translations 49 43 50 = 1.0 = 44 51 * First version -
hello-i-am-here/tags/2.0/admin/class-hello-here-admin.php
r2328301 r2386614 125 125 $position = 100; 126 126 add_menu_page( $page_title, $menu_title, $capability, $slug, $callback, $icon, $position ); 127 128 $page_title = 'Instrucciones Banners';129 $menu_title = 'Instrucciones Banners';130 $capability = 'manage_options';131 $slug = 'logopedicum_instrucciones_banners';132 $callback = array( $this, 'logopedicum_instrucciones_banners_page_content' );133 $icon = 'dashicons-admin-plugins';134 $position = 100;135 // add_submenu_page('meet_reunion', $page_title, $menu_title,$capability,$slug,$callback,$position);136 127 } 137 128 … … 144 135 'nonce' => wp_create_nonce( 'my-ajax-nonce' ), 145 136 'slug' => sanitize_title(get_bloginfo('name')), 146 'action' => 'meetreunion_save_meetreunion' 137 'action' => 'meetreunion_save_meetreunion', 138 'domain' => get_option(HELLO_HERE_OPTIONS . 'domain'), 147 139 ) ); 148 140 wp_enqueue_script( 'flatpickr-js', HELLO_HERE_PLUGIN_DIR_URL . 'js/flatpickr.js', array('jquery'), $this->version, true ); … … 184 176 } 185 177 178 // save domain for future uses 179 update_option(HELLO_HERE_OPTIONS . 'domain', $data['domain']); 186 180 $message = $this->gmf->createGoMeet($data); 187 181 $response = [ -
hello-i-am-here/tags/2.0/admin/css/hello-here-admin.css
r2328301 r2386614 14 14 color: red; 15 15 } 16 17 #domainHelp code { 18 cursor: pointer; 19 } -
hello-i-am-here/tags/2.0/admin/js/hello-here-main.js
r2328301 r2386614 20 20 }, 21 21 created() { 22 this.domain = this.domain_default 22 if(ajax_var.domain){ 23 this.domain = ajax_var.domain 24 }else{ 25 this.domain = this.domain_default 26 } 23 27 this.slug = ajax_var.slug 24 28 this.nonce = ajax_var.nonce … … 84 88 vm.scheduled_date = '' 85 89 vm.is_scheduled = false 86 vm.setDomainDefault()90 // vm.setDomainDefault() 87 91 vm.getGoMeets() 88 92 } -
hello-i-am-here/tags/2.0/admin/partials/hello-here-admin-main.php
r2328301 r2386614 4 4 <div v-if="is_loading"><?php _e('Loading', 'hello-here'); ?></div> 5 5 <div v-else> 6 <div class="meetreunion-section"> 7 <button class="btn btn-sm btn-info" type="button" data-toggle="collapse" data-target="#instructions-text" aria-expanded="false" aria-controls="collapseExample"> 8 <?php _e('Instructions', 'hello-here'); ?> 9 </button> 10 <div class="collapse" id="instructions-text"> 11 <br> 12 <ol> 13 <li><?php _e('Create a new Hello I am here! from this page', 'hello-here');?></li> 14 <li><?php _e('Insert shortcode <code>[show-meet]</code> in any page. Or create a new page and insert there.', 'hello-here'); ?></li> 15 <li><?php _e('Send your client/student/friend/... the meeting code and the page url', 'hello-here'); ?></li> 16 <li><?php _e('You and your client/studen/friend/... put the meeting code in the page', 'hello-here'); ?></li> 17 </ol> 18 </div> 19 </div> 6 20 <div class="meetreunion-create meetreunion-section"> 7 21 <h5><?php _e('Create new meeting', 'hello-here'); ?></h5> … … 15 29 <label for="domain"><?php _e('Domain', 'hello-here'); ?></label> 16 30 <input v-model="domain" type="text" id="domain" name="domain"> 17 <small id="domainHelp" class="form-text text-muted"><?php _e('If you are not using your own Jitsi servers, set it to ', 'hello-here');?> <code @click="setDomainDefault">meet.jit.si</code></small> 31 <small id="domainHelp" class="form-text text-muted"> 32 <?php _e('If you are not using your own Jitsi servers, set it to ', 'hello-here');?> 33 <code @click="setDomainDefault">meet.jit.si (<?php _e('Click to set', 'hello-here'); ?>)</code> 34 </small> 18 35 </div> 19 36 <div class="form-group"> … … 40 57 <th><?php _e('Scheduled Date', "hello-here");?></th> 41 58 <th><?php _e('Created at', "hello-here");?></th> 42 <!-- <th>--><?php //_e('Meeting Room', "hello-here");?><!--</th>-->59 <th><?php _e('Domain', "hello-here");?></th> 43 60 </tr> 44 61 </thead> … … 59 76 {{meet.created_at}} 60 77 </td> 61 <!-- <td>-->62 <!-- <small>{{meet.meeting_room}}</small>-->63 <!-- </td>-->78 <td> 79 <small><code>{{meet.domain}}</code></small> 80 </td> 64 81 </tr> 65 82 </table> -
hello-i-am-here/tags/2.0/hello-here.php
r2328301 r2386614 4 4 * Plugin Name: Hello I am here! 5 5 * Description: Create intsant meetings with your clients or potential clients. 6 * Version: 1.06 * Version: 2.0 7 7 * Author: [email protected] 8 8 * Text Domain: hello-here … … 21 21 * Rename this for your plugin and update it as you release new versions. 22 22 */ 23 define( 'HELLO_HERE_VERSION', ' 1.0' );23 define( 'HELLO_HERE_VERSION', '2.0' ); 24 24 define ('HELLO_HERE_PLUGIN_DIR_URL', plugin_dir_url( __FILE__ )); 25 define( 'HELLO_HERE_OPTIONS', 'hello_i_am_here_' ); 25 26 26 27 /** -
hello-i-am-here/tags/2.0/languages/hello-here-es_ES.po
r2328301 r2386614 2 2 msgstr "" 3 3 "Language: es_ES\n" 4 "POT-Creation-Date: 2020-0 6-14 14:48+0000\n"4 "POT-Creation-Date: 2020-09-21 11:54+0000\n" 5 5 "Plural-Forms: nplurals=2; plural=n != 1;\n" 6 "PO-Revision-Date: 2020-0 6-14 14:48+0000\n"6 "PO-Revision-Date: 2020-09-21 11:56+0000\n" 7 7 "X-Generator: Loco https://localise.biz/\n" 8 8 "Project-Id-Version: Hello I am here!\n" 9 9 "Report-Msgid-Bugs-To: \n" 10 10 "Last-Translator: \n" 11 "Language-Team: Español\n"11 "Language-Team: Spanish (Spain)\n" 12 12 "MIME-Version: 1.0\n" 13 13 "Content-Type: text/plain; charset=UTF-8\n" 14 14 "Content-Transfer-Encoding: 8bit\n" 15 "X-Loco-Version: 2.4. 0; wp-5.4.2"15 "X-Loco-Version: 2.4.3; wp-5.5.1" 16 16 17 17 #. Name of the plugin 18 #: admin/class-hello-here-admin.php:1 52 public/class-hello-here-public.php:14318 #: admin/class-hello-here-admin.php:144 19 19 msgid "Hello I am here!" 20 20 msgstr "Hello I am here!" 21 21 22 #: admin/class-hello-here-admin.php:16 9 public/class-hello-here-public.php:15622 #: admin/class-hello-here-admin.php:161 public/class-hello-here-public.php:157 23 23 msgid "" 24 24 "Hello I am here! not created for security reasons (WP \"nonce\"). Refresh " … … 28 28 "¡Actualiza la página e inténtalo de nuevo!" 29 29 30 #: admin/class-hello-here-admin.php:1 8330 #: admin/class-hello-here-admin.php:175 31 31 msgid "Meeting created at" 32 32 msgstr "Reunión creada el" 33 33 34 #: admin/class-hello-here-admin.php:18 934 #: admin/class-hello-here-admin.php:183 35 35 msgid "Meeting created!" 36 36 msgstr "¡Reunión creada!" 37 37 38 #: admin/class-hello-here-admin.php: 20338 #: admin/class-hello-here-admin.php:197 39 39 msgid "Can't get any meeting" 40 40 msgstr "No existen reuniones" … … 49 49 msgstr "Cargando" 50 50 51 #: admin/partials/hello-here-admin-main.php:7 51 #: admin/partials/hello-here-admin-main.php:8 52 msgid "Instructions" 53 msgstr "Instrucciones" 54 55 #: admin/partials/hello-here-admin-main.php:13 56 msgid "Create a new Hello I am here! from this page" 57 msgstr "Crea una nueva reunión desde esta página" 58 59 #: admin/partials/hello-here-admin-main.php:14 60 msgid "" 61 "Insert shortcode <code>[show-meet]</code> in any page. Or create a new page " 62 "and insert there." 63 msgstr "" 64 "Inserta el shortcode <code>[show-meet]</code> en alguna página. O crea una " 65 "página nueva e insértalo ahí" 66 67 #: admin/partials/hello-here-admin-main.php:15 68 msgid "Send your client/student/friend/... the meeting code and the page url" 69 msgstr "" 70 "Envía a tu cliente/estudiante/amigo/... el código de reunión y la dirección " 71 "de la página donde está el shortcode anterior" 72 73 #: admin/partials/hello-here-admin-main.php:16 74 msgid "You and your client/studen/friend/... put the meeting code in the page" 75 msgstr "Tú y tu cliente/estudiante/amigo/... ponéis el código en la página" 76 77 #: admin/partials/hello-here-admin-main.php:21 52 78 msgid "Create new meeting" 53 79 msgstr "Crear nueva reunión" 54 80 55 #: admin/partials/hello-here-admin-main.php: 1056 #: admin/partials/hello-here-admin-main.php: 3881 #: admin/partials/hello-here-admin-main.php:24 82 #: admin/partials/hello-here-admin-main.php:55 57 83 msgid "Title" 58 84 msgstr "Título" 59 85 60 #: admin/partials/hello-here-admin-main.php: 1286 #: admin/partials/hello-here-admin-main.php:26 61 87 msgid "Set meeting title (optional)." 62 88 msgstr "Título de la reunión (opcional)." 63 89 64 #: admin/partials/hello-here-admin-main.php:15 90 #: admin/partials/hello-here-admin-main.php:29 91 #: admin/partials/hello-here-admin-main.php:59 65 92 msgid "Domain" 66 93 msgstr "Dominio" 67 94 68 #: admin/partials/hello-here-admin-main.php: 1795 #: admin/partials/hello-here-admin-main.php:32 69 96 msgid "If you are not using your own Jitsi servers, set it to " 70 97 msgstr "Si no estás usando tus propios servidores Jitsi, déjalo en" 71 98 72 #: admin/partials/hello-here-admin-main.php:21 99 #: admin/partials/hello-here-admin-main.php:33 100 msgid "Click to set" 101 msgstr "Click para usar" 102 103 #: admin/partials/hello-here-admin-main.php:38 73 104 msgid "Schedule it" 74 105 msgstr "Programar" 75 106 76 #: admin/partials/hello-here-admin-main.php: 24107 #: admin/partials/hello-here-admin-main.php:41 77 108 msgid "Date/Time" 78 109 msgstr "Fecha/Hora" 79 110 80 #: admin/partials/hello-here-admin-main.php: 26111 #: admin/partials/hello-here-admin-main.php:43 81 112 msgid "Select date and time." 82 113 msgstr "Selecciona fecha y hora" 83 114 84 #: admin/partials/hello-here-admin-main.php: 29115 #: admin/partials/hello-here-admin-main.php:46 85 116 msgid "Create meet!" 86 117 msgstr "Crear reunión!" 87 118 88 #: admin/partials/hello-here-admin-main.php: 34119 #: admin/partials/hello-here-admin-main.php:51 89 120 msgid "Created meetings" 90 121 msgstr "Reuniones creadas" 91 122 92 #: admin/partials/hello-here-admin-main.php: 39123 #: admin/partials/hello-here-admin-main.php:56 93 124 #: public/partials/hello-here-show-meet.php:11 94 125 msgid "Code" 95 126 msgstr "Código" 96 127 97 #: admin/partials/hello-here-admin-main.php: 40128 #: admin/partials/hello-here-admin-main.php:57 98 129 msgid "Scheduled Date" 99 130 msgstr "Fecha programada" 100 131 101 #: admin/partials/hello-here-admin-main.php: 41132 #: admin/partials/hello-here-admin-main.php:58 102 133 msgid "Created at" 103 134 msgstr "Creado el" 104 135 105 #: admin/partials/hello-here-admin-main.php: 49136 #: admin/partials/hello-here-admin-main.php:66 106 137 msgid "Delete" 107 138 msgstr "Borrar" -
hello-i-am-here/tags/2.0/languages/hello-here.pot
r2328301 r2386614 3 3 msgstr "" 4 4 "Language: \n" 5 "POT-Creation-Date: 2020-0 6-14 14:48+0000\n"5 "POT-Creation-Date: 2020-09-21 11:54+0000\n" 6 6 "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" 7 7 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" … … 9 9 10 10 #. Name of the plugin 11 #: admin/class-hello-here-admin.php:1 52 public/class-hello-here-public.php:14311 #: admin/class-hello-here-admin.php:144 12 12 msgid "Hello I am here!" 13 13 msgstr "" 14 14 15 #: admin/class-hello-here-admin.php:16 9 public/class-hello-here-public.php:15615 #: admin/class-hello-here-admin.php:161 public/class-hello-here-public.php:157 16 16 msgid "" 17 17 "Hello I am here! not created for security reasons (WP \"nonce\"). Refresh " … … 19 19 msgstr "" 20 20 21 #: admin/class-hello-here-admin.php:1 8321 #: admin/class-hello-here-admin.php:175 22 22 msgid "Meeting created at" 23 23 msgstr "" 24 24 25 #: admin/class-hello-here-admin.php:18 925 #: admin/class-hello-here-admin.php:183 26 26 msgid "Meeting created!" 27 27 msgstr "" 28 28 29 #: admin/class-hello-here-admin.php: 20329 #: admin/class-hello-here-admin.php:197 30 30 msgid "Can't get any meeting" 31 31 msgstr "" … … 40 40 msgstr "" 41 41 42 #: admin/partials/hello-here-admin-main.php:7 42 #: admin/partials/hello-here-admin-main.php:8 43 msgid "Instructions" 44 msgstr "" 45 46 #: admin/partials/hello-here-admin-main.php:13 47 msgid "Create a new Hello I am here! from this page" 48 msgstr "" 49 50 #: admin/partials/hello-here-admin-main.php:14 51 msgid "" 52 "Insert shortcode <code>[show-meet]</code> in any page. Or create a new page " 53 "and insert there." 54 msgstr "" 55 56 #: admin/partials/hello-here-admin-main.php:15 57 msgid "Send your client/student/friend/... the meeting code and the page url" 58 msgstr "" 59 60 #: admin/partials/hello-here-admin-main.php:16 61 msgid "You and your client/studen/friend/... put the meeting code in the page" 62 msgstr "" 63 64 #: admin/partials/hello-here-admin-main.php:21 43 65 msgid "Create new meeting" 44 66 msgstr "" 45 67 46 #: admin/partials/hello-here-admin-main.php: 1047 #: admin/partials/hello-here-admin-main.php: 3868 #: admin/partials/hello-here-admin-main.php:24 69 #: admin/partials/hello-here-admin-main.php:55 48 70 msgid "Title" 49 71 msgstr "" 50 72 51 #: admin/partials/hello-here-admin-main.php: 1273 #: admin/partials/hello-here-admin-main.php:26 52 74 msgid "Set meeting title (optional)." 53 75 msgstr "" 54 76 55 #: admin/partials/hello-here-admin-main.php:15 77 #: admin/partials/hello-here-admin-main.php:29 78 #: admin/partials/hello-here-admin-main.php:59 56 79 msgid "Domain" 57 80 msgstr "" 58 81 59 #: admin/partials/hello-here-admin-main.php: 1782 #: admin/partials/hello-here-admin-main.php:32 60 83 msgid "If you are not using your own Jitsi servers, set it to " 61 84 msgstr "" 62 85 63 #: admin/partials/hello-here-admin-main.php:21 86 #: admin/partials/hello-here-admin-main.php:33 87 msgid "Click to set" 88 msgstr "" 89 90 #: admin/partials/hello-here-admin-main.php:38 64 91 msgid "Schedule it" 65 92 msgstr "" 66 93 67 #: admin/partials/hello-here-admin-main.php: 2494 #: admin/partials/hello-here-admin-main.php:41 68 95 msgid "Date/Time" 69 96 msgstr "" 70 97 71 #: admin/partials/hello-here-admin-main.php: 2698 #: admin/partials/hello-here-admin-main.php:43 72 99 msgid "Select date and time." 73 100 msgstr "" 74 101 75 #: admin/partials/hello-here-admin-main.php: 29102 #: admin/partials/hello-here-admin-main.php:46 76 103 msgid "Create meet!" 77 104 msgstr "" 78 105 79 #: admin/partials/hello-here-admin-main.php: 34106 #: admin/partials/hello-here-admin-main.php:51 80 107 msgid "Created meetings" 81 108 msgstr "" 82 109 83 #: admin/partials/hello-here-admin-main.php: 39110 #: admin/partials/hello-here-admin-main.php:56 84 111 #: public/partials/hello-here-show-meet.php:11 85 112 msgid "Code" 86 113 msgstr "" 87 114 88 #: admin/partials/hello-here-admin-main.php: 40115 #: admin/partials/hello-here-admin-main.php:57 89 116 msgid "Scheduled Date" 90 117 msgstr "" 91 118 92 #: admin/partials/hello-here-admin-main.php: 41119 #: admin/partials/hello-here-admin-main.php:58 93 120 msgid "Created at" 94 121 msgstr "" 95 122 96 #: admin/partials/hello-here-admin-main.php: 49123 #: admin/partials/hello-here-admin-main.php:66 97 124 msgid "Delete" 98 125 msgstr "" -
hello-i-am-here/tags/2.0/public/class-hello-here-public.php
r2328301 r2386614 140 140 ) ); 141 141 ?> 142 <?php ob_start(); ?> 142 143 <div class="wrap"> 143 <h2><?php _e('Hello I am here!', 'hello-here'); ?></h2>144 144 <?php include( 'partials/hello-here-show-meet.php' ); ?> 145 145 </div> 146 <?php return ob_get_clean(); ?> 146 147 <?php 147 148 } -
hello-i-am-here/trunk/README.txt
r2328301 r2386614 3 3 Tags: video, conference, video conference, covid, covid19, jitsi 4 4 Requires at least: 4.6 5 Tested up to: 5. 45 Tested up to: 5.5.1 6 6 License: GPLv2 or later 7 7 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 14 14 15 15 Mantain communications in the actual COVID-19 crisis. 16 And maybe future COVID-XX :( 16 17 17 18 How to: … … 41 42 == Changelog == 42 43 44 = 2.0 = 45 * Divi, Buddypress and others shortcode compatibility 46 * Removed page title 47 * Save last used Jitsi server. Good for people that have their own Jitsi servers 48 * Added translations 49 43 50 = 1.0 = 44 51 * First version -
hello-i-am-here/trunk/admin/class-hello-here-admin.php
r2328301 r2386614 125 125 $position = 100; 126 126 add_menu_page( $page_title, $menu_title, $capability, $slug, $callback, $icon, $position ); 127 128 $page_title = 'Instrucciones Banners';129 $menu_title = 'Instrucciones Banners';130 $capability = 'manage_options';131 $slug = 'logopedicum_instrucciones_banners';132 $callback = array( $this, 'logopedicum_instrucciones_banners_page_content' );133 $icon = 'dashicons-admin-plugins';134 $position = 100;135 // add_submenu_page('meet_reunion', $page_title, $menu_title,$capability,$slug,$callback,$position);136 127 } 137 128 … … 144 135 'nonce' => wp_create_nonce( 'my-ajax-nonce' ), 145 136 'slug' => sanitize_title(get_bloginfo('name')), 146 'action' => 'meetreunion_save_meetreunion' 137 'action' => 'meetreunion_save_meetreunion', 138 'domain' => get_option(HELLO_HERE_OPTIONS . 'domain'), 147 139 ) ); 148 140 wp_enqueue_script( 'flatpickr-js', HELLO_HERE_PLUGIN_DIR_URL . 'js/flatpickr.js', array('jquery'), $this->version, true ); … … 184 176 } 185 177 178 // save domain for future uses 179 update_option(HELLO_HERE_OPTIONS . 'domain', $data['domain']); 186 180 $message = $this->gmf->createGoMeet($data); 187 181 $response = [ -
hello-i-am-here/trunk/admin/css/hello-here-admin.css
r2328301 r2386614 14 14 color: red; 15 15 } 16 17 #domainHelp code { 18 cursor: pointer; 19 } -
hello-i-am-here/trunk/admin/js/hello-here-main.js
r2328301 r2386614 20 20 }, 21 21 created() { 22 this.domain = this.domain_default 22 if(ajax_var.domain){ 23 this.domain = ajax_var.domain 24 }else{ 25 this.domain = this.domain_default 26 } 23 27 this.slug = ajax_var.slug 24 28 this.nonce = ajax_var.nonce … … 84 88 vm.scheduled_date = '' 85 89 vm.is_scheduled = false 86 vm.setDomainDefault()90 // vm.setDomainDefault() 87 91 vm.getGoMeets() 88 92 } -
hello-i-am-here/trunk/admin/partials/hello-here-admin-main.php
r2328301 r2386614 4 4 <div v-if="is_loading"><?php _e('Loading', 'hello-here'); ?></div> 5 5 <div v-else> 6 <div class="meetreunion-section"> 7 <button class="btn btn-sm btn-info" type="button" data-toggle="collapse" data-target="#instructions-text" aria-expanded="false" aria-controls="collapseExample"> 8 <?php _e('Instructions', 'hello-here'); ?> 9 </button> 10 <div class="collapse" id="instructions-text"> 11 <br> 12 <ol> 13 <li><?php _e('Create a new Hello I am here! from this page', 'hello-here');?></li> 14 <li><?php _e('Insert shortcode <code>[show-meet]</code> in any page. Or create a new page and insert there.', 'hello-here'); ?></li> 15 <li><?php _e('Send your client/student/friend/... the meeting code and the page url', 'hello-here'); ?></li> 16 <li><?php _e('You and your client/studen/friend/... put the meeting code in the page', 'hello-here'); ?></li> 17 </ol> 18 </div> 19 </div> 6 20 <div class="meetreunion-create meetreunion-section"> 7 21 <h5><?php _e('Create new meeting', 'hello-here'); ?></h5> … … 15 29 <label for="domain"><?php _e('Domain', 'hello-here'); ?></label> 16 30 <input v-model="domain" type="text" id="domain" name="domain"> 17 <small id="domainHelp" class="form-text text-muted"><?php _e('If you are not using your own Jitsi servers, set it to ', 'hello-here');?> <code @click="setDomainDefault">meet.jit.si</code></small> 31 <small id="domainHelp" class="form-text text-muted"> 32 <?php _e('If you are not using your own Jitsi servers, set it to ', 'hello-here');?> 33 <code @click="setDomainDefault">meet.jit.si (<?php _e('Click to set', 'hello-here'); ?>)</code> 34 </small> 18 35 </div> 19 36 <div class="form-group"> … … 40 57 <th><?php _e('Scheduled Date', "hello-here");?></th> 41 58 <th><?php _e('Created at', "hello-here");?></th> 42 <!-- <th>--><?php //_e('Meeting Room', "hello-here");?><!--</th>-->59 <th><?php _e('Domain', "hello-here");?></th> 43 60 </tr> 44 61 </thead> … … 59 76 {{meet.created_at}} 60 77 </td> 61 <!-- <td>-->62 <!-- <small>{{meet.meeting_room}}</small>-->63 <!-- </td>-->78 <td> 79 <small><code>{{meet.domain}}</code></small> 80 </td> 64 81 </tr> 65 82 </table> -
hello-i-am-here/trunk/hello-here.php
r2328301 r2386614 4 4 * Plugin Name: Hello I am here! 5 5 * Description: Create intsant meetings with your clients or potential clients. 6 * Version: 1.06 * Version: 2.0 7 7 * Author: [email protected] 8 8 * Text Domain: hello-here … … 21 21 * Rename this for your plugin and update it as you release new versions. 22 22 */ 23 define( 'HELLO_HERE_VERSION', ' 1.0' );23 define( 'HELLO_HERE_VERSION', '2.0' ); 24 24 define ('HELLO_HERE_PLUGIN_DIR_URL', plugin_dir_url( __FILE__ )); 25 define( 'HELLO_HERE_OPTIONS', 'hello_i_am_here_' ); 25 26 26 27 /** -
hello-i-am-here/trunk/languages/hello-here-es_ES.po
r2328301 r2386614 2 2 msgstr "" 3 3 "Language: es_ES\n" 4 "POT-Creation-Date: 2020-0 6-14 14:48+0000\n"4 "POT-Creation-Date: 2020-09-21 11:54+0000\n" 5 5 "Plural-Forms: nplurals=2; plural=n != 1;\n" 6 "PO-Revision-Date: 2020-0 6-14 14:48+0000\n"6 "PO-Revision-Date: 2020-09-21 11:56+0000\n" 7 7 "X-Generator: Loco https://localise.biz/\n" 8 8 "Project-Id-Version: Hello I am here!\n" 9 9 "Report-Msgid-Bugs-To: \n" 10 10 "Last-Translator: \n" 11 "Language-Team: Español\n"11 "Language-Team: Spanish (Spain)\n" 12 12 "MIME-Version: 1.0\n" 13 13 "Content-Type: text/plain; charset=UTF-8\n" 14 14 "Content-Transfer-Encoding: 8bit\n" 15 "X-Loco-Version: 2.4. 0; wp-5.4.2"15 "X-Loco-Version: 2.4.3; wp-5.5.1" 16 16 17 17 #. Name of the plugin 18 #: admin/class-hello-here-admin.php:1 52 public/class-hello-here-public.php:14318 #: admin/class-hello-here-admin.php:144 19 19 msgid "Hello I am here!" 20 20 msgstr "Hello I am here!" 21 21 22 #: admin/class-hello-here-admin.php:16 9 public/class-hello-here-public.php:15622 #: admin/class-hello-here-admin.php:161 public/class-hello-here-public.php:157 23 23 msgid "" 24 24 "Hello I am here! not created for security reasons (WP \"nonce\"). Refresh " … … 28 28 "¡Actualiza la página e inténtalo de nuevo!" 29 29 30 #: admin/class-hello-here-admin.php:1 8330 #: admin/class-hello-here-admin.php:175 31 31 msgid "Meeting created at" 32 32 msgstr "Reunión creada el" 33 33 34 #: admin/class-hello-here-admin.php:18 934 #: admin/class-hello-here-admin.php:183 35 35 msgid "Meeting created!" 36 36 msgstr "¡Reunión creada!" 37 37 38 #: admin/class-hello-here-admin.php: 20338 #: admin/class-hello-here-admin.php:197 39 39 msgid "Can't get any meeting" 40 40 msgstr "No existen reuniones" … … 49 49 msgstr "Cargando" 50 50 51 #: admin/partials/hello-here-admin-main.php:7 51 #: admin/partials/hello-here-admin-main.php:8 52 msgid "Instructions" 53 msgstr "Instrucciones" 54 55 #: admin/partials/hello-here-admin-main.php:13 56 msgid "Create a new Hello I am here! from this page" 57 msgstr "Crea una nueva reunión desde esta página" 58 59 #: admin/partials/hello-here-admin-main.php:14 60 msgid "" 61 "Insert shortcode <code>[show-meet]</code> in any page. Or create a new page " 62 "and insert there." 63 msgstr "" 64 "Inserta el shortcode <code>[show-meet]</code> en alguna página. O crea una " 65 "página nueva e insértalo ahí" 66 67 #: admin/partials/hello-here-admin-main.php:15 68 msgid "Send your client/student/friend/... the meeting code and the page url" 69 msgstr "" 70 "Envía a tu cliente/estudiante/amigo/... el código de reunión y la dirección " 71 "de la página donde está el shortcode anterior" 72 73 #: admin/partials/hello-here-admin-main.php:16 74 msgid "You and your client/studen/friend/... put the meeting code in the page" 75 msgstr "Tú y tu cliente/estudiante/amigo/... ponéis el código en la página" 76 77 #: admin/partials/hello-here-admin-main.php:21 52 78 msgid "Create new meeting" 53 79 msgstr "Crear nueva reunión" 54 80 55 #: admin/partials/hello-here-admin-main.php: 1056 #: admin/partials/hello-here-admin-main.php: 3881 #: admin/partials/hello-here-admin-main.php:24 82 #: admin/partials/hello-here-admin-main.php:55 57 83 msgid "Title" 58 84 msgstr "Título" 59 85 60 #: admin/partials/hello-here-admin-main.php: 1286 #: admin/partials/hello-here-admin-main.php:26 61 87 msgid "Set meeting title (optional)." 62 88 msgstr "Título de la reunión (opcional)." 63 89 64 #: admin/partials/hello-here-admin-main.php:15 90 #: admin/partials/hello-here-admin-main.php:29 91 #: admin/partials/hello-here-admin-main.php:59 65 92 msgid "Domain" 66 93 msgstr "Dominio" 67 94 68 #: admin/partials/hello-here-admin-main.php: 1795 #: admin/partials/hello-here-admin-main.php:32 69 96 msgid "If you are not using your own Jitsi servers, set it to " 70 97 msgstr "Si no estás usando tus propios servidores Jitsi, déjalo en" 71 98 72 #: admin/partials/hello-here-admin-main.php:21 99 #: admin/partials/hello-here-admin-main.php:33 100 msgid "Click to set" 101 msgstr "Click para usar" 102 103 #: admin/partials/hello-here-admin-main.php:38 73 104 msgid "Schedule it" 74 105 msgstr "Programar" 75 106 76 #: admin/partials/hello-here-admin-main.php: 24107 #: admin/partials/hello-here-admin-main.php:41 77 108 msgid "Date/Time" 78 109 msgstr "Fecha/Hora" 79 110 80 #: admin/partials/hello-here-admin-main.php: 26111 #: admin/partials/hello-here-admin-main.php:43 81 112 msgid "Select date and time." 82 113 msgstr "Selecciona fecha y hora" 83 114 84 #: admin/partials/hello-here-admin-main.php: 29115 #: admin/partials/hello-here-admin-main.php:46 85 116 msgid "Create meet!" 86 117 msgstr "Crear reunión!" 87 118 88 #: admin/partials/hello-here-admin-main.php: 34119 #: admin/partials/hello-here-admin-main.php:51 89 120 msgid "Created meetings" 90 121 msgstr "Reuniones creadas" 91 122 92 #: admin/partials/hello-here-admin-main.php: 39123 #: admin/partials/hello-here-admin-main.php:56 93 124 #: public/partials/hello-here-show-meet.php:11 94 125 msgid "Code" 95 126 msgstr "Código" 96 127 97 #: admin/partials/hello-here-admin-main.php: 40128 #: admin/partials/hello-here-admin-main.php:57 98 129 msgid "Scheduled Date" 99 130 msgstr "Fecha programada" 100 131 101 #: admin/partials/hello-here-admin-main.php: 41132 #: admin/partials/hello-here-admin-main.php:58 102 133 msgid "Created at" 103 134 msgstr "Creado el" 104 135 105 #: admin/partials/hello-here-admin-main.php: 49136 #: admin/partials/hello-here-admin-main.php:66 106 137 msgid "Delete" 107 138 msgstr "Borrar" -
hello-i-am-here/trunk/languages/hello-here.pot
r2328301 r2386614 3 3 msgstr "" 4 4 "Language: \n" 5 "POT-Creation-Date: 2020-0 6-14 14:48+0000\n"5 "POT-Creation-Date: 2020-09-21 11:54+0000\n" 6 6 "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" 7 7 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" … … 9 9 10 10 #. Name of the plugin 11 #: admin/class-hello-here-admin.php:1 52 public/class-hello-here-public.php:14311 #: admin/class-hello-here-admin.php:144 12 12 msgid "Hello I am here!" 13 13 msgstr "" 14 14 15 #: admin/class-hello-here-admin.php:16 9 public/class-hello-here-public.php:15615 #: admin/class-hello-here-admin.php:161 public/class-hello-here-public.php:157 16 16 msgid "" 17 17 "Hello I am here! not created for security reasons (WP \"nonce\"). Refresh " … … 19 19 msgstr "" 20 20 21 #: admin/class-hello-here-admin.php:1 8321 #: admin/class-hello-here-admin.php:175 22 22 msgid "Meeting created at" 23 23 msgstr "" 24 24 25 #: admin/class-hello-here-admin.php:18 925 #: admin/class-hello-here-admin.php:183 26 26 msgid "Meeting created!" 27 27 msgstr "" 28 28 29 #: admin/class-hello-here-admin.php: 20329 #: admin/class-hello-here-admin.php:197 30 30 msgid "Can't get any meeting" 31 31 msgstr "" … … 40 40 msgstr "" 41 41 42 #: admin/partials/hello-here-admin-main.php:7 42 #: admin/partials/hello-here-admin-main.php:8 43 msgid "Instructions" 44 msgstr "" 45 46 #: admin/partials/hello-here-admin-main.php:13 47 msgid "Create a new Hello I am here! from this page" 48 msgstr "" 49 50 #: admin/partials/hello-here-admin-main.php:14 51 msgid "" 52 "Insert shortcode <code>[show-meet]</code> in any page. Or create a new page " 53 "and insert there." 54 msgstr "" 55 56 #: admin/partials/hello-here-admin-main.php:15 57 msgid "Send your client/student/friend/... the meeting code and the page url" 58 msgstr "" 59 60 #: admin/partials/hello-here-admin-main.php:16 61 msgid "You and your client/studen/friend/... put the meeting code in the page" 62 msgstr "" 63 64 #: admin/partials/hello-here-admin-main.php:21 43 65 msgid "Create new meeting" 44 66 msgstr "" 45 67 46 #: admin/partials/hello-here-admin-main.php: 1047 #: admin/partials/hello-here-admin-main.php: 3868 #: admin/partials/hello-here-admin-main.php:24 69 #: admin/partials/hello-here-admin-main.php:55 48 70 msgid "Title" 49 71 msgstr "" 50 72 51 #: admin/partials/hello-here-admin-main.php: 1273 #: admin/partials/hello-here-admin-main.php:26 52 74 msgid "Set meeting title (optional)." 53 75 msgstr "" 54 76 55 #: admin/partials/hello-here-admin-main.php:15 77 #: admin/partials/hello-here-admin-main.php:29 78 #: admin/partials/hello-here-admin-main.php:59 56 79 msgid "Domain" 57 80 msgstr "" 58 81 59 #: admin/partials/hello-here-admin-main.php: 1782 #: admin/partials/hello-here-admin-main.php:32 60 83 msgid "If you are not using your own Jitsi servers, set it to " 61 84 msgstr "" 62 85 63 #: admin/partials/hello-here-admin-main.php:21 86 #: admin/partials/hello-here-admin-main.php:33 87 msgid "Click to set" 88 msgstr "" 89 90 #: admin/partials/hello-here-admin-main.php:38 64 91 msgid "Schedule it" 65 92 msgstr "" 66 93 67 #: admin/partials/hello-here-admin-main.php: 2494 #: admin/partials/hello-here-admin-main.php:41 68 95 msgid "Date/Time" 69 96 msgstr "" 70 97 71 #: admin/partials/hello-here-admin-main.php: 2698 #: admin/partials/hello-here-admin-main.php:43 72 99 msgid "Select date and time." 73 100 msgstr "" 74 101 75 #: admin/partials/hello-here-admin-main.php: 29102 #: admin/partials/hello-here-admin-main.php:46 76 103 msgid "Create meet!" 77 104 msgstr "" 78 105 79 #: admin/partials/hello-here-admin-main.php: 34106 #: admin/partials/hello-here-admin-main.php:51 80 107 msgid "Created meetings" 81 108 msgstr "" 82 109 83 #: admin/partials/hello-here-admin-main.php: 39110 #: admin/partials/hello-here-admin-main.php:56 84 111 #: public/partials/hello-here-show-meet.php:11 85 112 msgid "Code" 86 113 msgstr "" 87 114 88 #: admin/partials/hello-here-admin-main.php: 40115 #: admin/partials/hello-here-admin-main.php:57 89 116 msgid "Scheduled Date" 90 117 msgstr "" 91 118 92 #: admin/partials/hello-here-admin-main.php: 41119 #: admin/partials/hello-here-admin-main.php:58 93 120 msgid "Created at" 94 121 msgstr "" 95 122 96 #: admin/partials/hello-here-admin-main.php: 49123 #: admin/partials/hello-here-admin-main.php:66 97 124 msgid "Delete" 98 125 msgstr "" -
hello-i-am-here/trunk/public/class-hello-here-public.php
r2328301 r2386614 140 140 ) ); 141 141 ?> 142 <?php ob_start(); ?> 142 143 <div class="wrap"> 143 <h2><?php _e('Hello I am here!', 'hello-here'); ?></h2>144 144 <?php include( 'partials/hello-here-show-meet.php' ); ?> 145 145 </div> 146 <?php return ob_get_clean(); ?> 146 147 <?php 147 148 }
Note: See TracChangeset
for help on using the changeset viewer.